Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-winehq
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
wine
wine-winehq
Commits
3f4a7990
Commit
3f4a7990
authored
Nov 27, 2022
by
Rémi Bernon
Committed by
Alexandre Julliard
Nov 30, 2022
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
joy.cpl: Add a new xinput controller test tab.
parent
efe01bc7
Hide whitespace changes
Inline
Side-by-side
Showing
55 changed files
with
2691 additions
and
3 deletions
+2691
-3
Makefile.in
dlls/joy.cpl/Makefile.in
+3
-2
joy.rc
dlls/joy.cpl/joy.rc
+28
-0
joy_private.h
dlls/joy.cpl/joy_private.h
+33
-0
main.c
dlls/joy.cpl/main.c
+7
-1
resource.h
dlls/joy.cpl/resource.h
+10
-0
xinput.c
dlls/joy.cpl/xinput.c
+166
-0
ar.po
po/ar.po
+52
-0
ast.po
po/ast.po
+52
-0
bg.po
po/bg.po
+52
-0
ca.po
po/ca.po
+52
-0
cs.po
po/cs.po
+52
-0
da.po
po/da.po
+52
-0
de.po
po/de.po
+52
-0
el.po
po/el.po
+44
-0
en.po
po/en.po
+52
-0
en_US.po
po/en_US.po
+52
-0
eo.po
po/eo.po
+52
-0
es.po
po/es.po
+52
-0
fa.po
po/fa.po
+44
-0
fi.po
po/fi.po
+52
-0
fr.po
po/fr.po
+52
-0
he.po
po/he.po
+52
-0
hi.po
po/hi.po
+44
-0
hr.po
po/hr.po
+52
-0
hu.po
po/hu.po
+52
-0
it.po
po/it.po
+52
-0
ja.po
po/ja.po
+52
-0
ko.po
po/ko.po
+52
-0
lt.po
po/lt.po
+52
-0
ml.po
po/ml.po
+44
-0
nb_NO.po
po/nb_NO.po
+52
-0
nl.po
po/nl.po
+52
-0
or.po
po/or.po
+44
-0
pa.po
po/pa.po
+44
-0
pl.po
po/pl.po
+52
-0
pt_BR.po
po/pt_BR.po
+52
-0
pt_PT.po
po/pt_PT.po
+52
-0
rm.po
po/rm.po
+44
-0
ro.po
po/ro.po
+52
-0
ru.po
po/ru.po
+52
-0
si.po
po/si.po
+52
-0
sk.po
po/sk.po
+44
-0
sl.po
po/sl.po
+52
-0
sr_RS@cyrillic.po
po/sr_RS@cyrillic.po
+52
-0
sr_RS@latin.po
po/sr_RS@latin.po
+52
-0
sv.po
po/sv.po
+52
-0
ta.po
po/ta.po
+44
-0
te.po
po/te.po
+44
-0
th.po
po/th.po
+44
-0
tr.po
po/tr.po
+52
-0
uk.po
po/uk.po
+52
-0
wa.po
po/wa.po
+44
-0
wine.pot
po/wine.pot
+44
-0
zh_CN.po
po/zh_CN.po
+52
-0
zh_TW.po
po/zh_TW.po
+52
-0
No files found.
dlls/joy.cpl/Makefile.in
View file @
3f4a7990
MODULE
=
joy.cpl
IMPORTS
=
dxguid dinput dinput8 ole32 comctl32 user32 advapi32
IMPORTS
=
dxguid dinput dinput8 ole32 comctl32 user32 advapi32
xinput
EXTRADLLFLAGS
=
-Wb
,--prefer-native
C_SRCS
=
\
main.c
main.c
\
xinput.c
RC_SRCS
=
joy.rc
...
...
dlls/joy.cpl/joy.rc
View file @
3f4a7990
...
...
@@ -66,6 +66,34 @@ FONT 8, "Ms Shell Dlg"
IDC_STATIC, 15, 260, 291, 25
}
IDD_TEST_XI DIALOG 0, 0, 320, 300
STYLE WS_CAPTION | WS_CHILD | WS_DISABLED
CAPTION "XInput"
FONT 8, "Ms Shell Dlg"
{
GROUPBOX "User #0", IDC_XI_USER_0, 15, 10, 291, 60
GROUPBOX "User #1", IDC_XI_USER_1, 15, 80, 291, 60
GROUPBOX "User #2", IDC_XI_USER_2, 15, 150, 291, 60
GROUPBOX "User #3", IDC_XI_USER_3, 15, 220, 291, 60
LTEXT "No user detected on slot #0, make sure your " \
"gamepad is plugged in, and not overriden for " \
"DInput in the Joysticks tab.",
IDC_XI_NO_USER_0, 15, 10, 291, 60
LTEXT "No user detected on slot #1, make sure your " \
"gamepad is plugged in, and not overriden for " \
"DInput in the Joysticks tab.",
IDC_XI_NO_USER_1, 15, 80, 291, 60
LTEXT "No user detected on slot #2, make sure your " \
"gamepad is plugged in, and not overriden for " \
"DInput in the Joysticks tab.",
IDC_XI_NO_USER_2, 15, 150, 291, 60
LTEXT "No user detected on slot #3, make sure your " \
"gamepad is plugged in, and not overriden for " \
"DInput in the Joysticks tab.",
IDC_XI_NO_USER_3, 15, 220, 291, 60
}
LANGUAGE LANG_NEUTRAL, SUBLANG_NEUTRAL
/* @makedep: joy.manifest */
...
...
dlls/joy.cpl/joy_private.h
0 → 100644
View file @
3f4a7990
/*
* Copyright 2022 Rémi Bernon for CodeWeavers
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License as published by the Free Software Foundation; either
* version 2.1 of the License, or (at your option) any later version.
*
* This library is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public
* License along with this library; if not, write to the Free Software
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
*
*/
#ifndef __JOY_PRIVATE_H
#define __JOY_PRIVATE_H
#include <stdarg.h>
#include <stddef.h>
#include "windef.h"
#include "winbase.h"
#include "resource.h"
extern
INT_PTR
CALLBACK
test_xi_dialog_proc
(
HWND
hwnd
,
UINT
msg
,
WPARAM
wparam
,
LPARAM
lparam
);
#endif
/* __JOY_PRIVATE_H */
dlls/joy.cpl/main.c
View file @
3f4a7990
...
...
@@ -34,7 +34,7 @@
#include "wine/debug.h"
#include "wine/list.h"
#include "
resourc
e.h"
#include "
joy_privat
e.h"
WINE_DEFAULT_DEBUG_CHANNEL
(
joycpl
);
...
...
@@ -972,6 +972,12 @@ static void display_cpl_sheets( HWND parent, struct JoystickData *data )
.
pfnDlgProc
=
test_dlgproc
,
.
lParam
=
(
INT_PTR
)
data
,
},
{
.
dwSize
=
sizeof
(
PROPSHEETPAGEW
),
.
hInstance
=
hcpl
,
.
pszTemplate
=
MAKEINTRESOURCEW
(
IDD_TEST_XI
),
.
pfnDlgProc
=
test_xi_dialog_proc
,
},
};
PROPSHEETHEADERW
header
=
{
...
...
dlls/joy.cpl/resource.h
View file @
3f4a7990
...
...
@@ -36,6 +36,7 @@
#define IDD_LIST 1000
#define IDD_TEST_DI 1001
#define IDD_TEST_XI 1002
#define IDC_JOYSTICKLIST 2000
#define IDC_DISABLEDLIST 2001
...
...
@@ -52,6 +53,15 @@
#define IDC_DI_AXIS_POV_0 2104
#define IDC_DI_EFFECTS 2105
#define IDC_XI_USER_0 2200
#define IDC_XI_USER_1 2201
#define IDC_XI_USER_2 2202
#define IDC_XI_USER_3 2203
#define IDC_XI_NO_USER_0 2210
#define IDC_XI_NO_USER_1 2211
#define IDC_XI_NO_USER_2 2212
#define IDC_XI_NO_USER_3 2213
#define ICO_MAIN 100
#endif
dlls/joy.cpl/xinput.c
0 → 100644
View file @
3f4a7990
/*
* Copyright 2022 Rémi Bernon for CodeWeavers
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License as published by the Free Software Foundation; either
* version 2.1 of the License, or (at your option) any later version.
*
* This library is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public
* License along with this library; if not, write to the Free Software
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
*
*/
#include <stdarg.h>
#include <stddef.h>
#include "windef.h"
#include "winbase.h"
#include "winuser.h"
#include "xinput.h"
#include "wine/debug.h"
#include "wine/list.h"
#include "joy_private.h"
WINE_DEFAULT_DEBUG_CHANNEL
(
joycpl
);
struct
device_state
{
XINPUT_CAPABILITIES
caps
;
XINPUT_STATE
state
;
DWORD
status
;
};
static
CRITICAL_SECTION
state_cs
;
static
CRITICAL_SECTION_DEBUG
state_cs_debug
=
{
0
,
0
,
&
state_cs
,
{
&
state_cs_debug
.
ProcessLocksList
,
&
state_cs_debug
.
ProcessLocksList
},
0
,
0
,
{
(
DWORD_PTR
)(
__FILE__
": state_cs"
)
}
};
static
CRITICAL_SECTION
state_cs
=
{
&
state_cs_debug
,
-
1
,
0
,
0
,
0
,
0
};
static
struct
device_state
devices_state
[
XUSER_MAX_COUNT
]
=
{
{.
status
=
ERROR_DEVICE_NOT_CONNECTED
},
{.
status
=
ERROR_DEVICE_NOT_CONNECTED
},
{.
status
=
ERROR_DEVICE_NOT_CONNECTED
},
{.
status
=
ERROR_DEVICE_NOT_CONNECTED
},
};
static
HWND
dialog_hwnd
;
static
void
set_device_state
(
DWORD
index
,
struct
device_state
*
state
)
{
BOOL
modified
;
EnterCriticalSection
(
&
state_cs
);
modified
=
memcmp
(
devices_state
+
index
,
state
,
sizeof
(
*
state
)
);
devices_state
[
index
]
=
*
state
;
LeaveCriticalSection
(
&
state_cs
);
if
(
modified
)
SendMessageW
(
dialog_hwnd
,
WM_USER
,
index
,
0
);
}
static
void
get_device_state
(
DWORD
index
,
struct
device_state
*
state
)
{
EnterCriticalSection
(
&
state_cs
);
*
state
=
devices_state
[
index
];
LeaveCriticalSection
(
&
state_cs
);
}
static
DWORD
WINAPI
input_thread_proc
(
void
*
param
)
{
HANDLE
thread_stop
=
param
;
DWORD
i
;
while
(
WaitForSingleObject
(
thread_stop
,
20
)
==
WAIT_TIMEOUT
)
{
for
(
i
=
0
;
i
<
ARRAY_SIZE
(
devices_state
);
++
i
)
{
struct
device_state
state
=
{
0
};
state
.
status
=
XInputGetCapabilities
(
i
,
0
,
&
state
.
caps
);
if
(
!
state
.
status
)
state
.
status
=
XInputGetState
(
i
,
&
state
.
state
);
set_device_state
(
i
,
&
state
);
}
}
return
0
;
}
static
void
create_user_view
(
HWND
hwnd
,
DWORD
index
)
{
HWND
parent
;
parent
=
GetDlgItem
(
hwnd
,
IDC_XI_USER_0
+
index
);
ShowWindow
(
parent
,
SW_HIDE
);
}
static
void
update_user_view
(
HWND
hwnd
,
DWORD
index
)
{
struct
device_state
state
;
HWND
parent
;
get_device_state
(
index
,
&
state
);
parent
=
GetDlgItem
(
hwnd
,
IDC_XI_NO_USER_0
+
index
);
ShowWindow
(
parent
,
state
.
status
?
SW_SHOW
:
SW_HIDE
);
parent
=
GetDlgItem
(
hwnd
,
IDC_XI_USER_0
+
index
);
ShowWindow
(
parent
,
state
.
status
?
SW_HIDE
:
SW_SHOW
);
}
extern
INT_PTR
CALLBACK
test_xi_dialog_proc
(
HWND
hwnd
,
UINT
msg
,
WPARAM
wparam
,
LPARAM
lparam
)
{
static
HANDLE
thread
,
thread_stop
;
TRACE
(
"hwnd %p, msg %#x, wparam %#Ix, lparam %#Ix
\n
"
,
hwnd
,
msg
,
wparam
,
lparam
);
switch
(
msg
)
{
case
WM_INITDIALOG
:
create_user_view
(
hwnd
,
0
);
create_user_view
(
hwnd
,
1
);
create_user_view
(
hwnd
,
2
);
create_user_view
(
hwnd
,
3
);
return
TRUE
;
case
WM_COMMAND
:
return
TRUE
;
case
WM_NOTIFY
:
switch
(((
NMHDR
*
)
lparam
)
->
code
)
{
case
PSN_SETACTIVE
:
dialog_hwnd
=
hwnd
;
thread_stop
=
CreateEventW
(
NULL
,
FALSE
,
FALSE
,
NULL
);
thread
=
CreateThread
(
NULL
,
0
,
input_thread_proc
,
(
void
*
)
thread_stop
,
0
,
NULL
);
break
;
case
PSN_RESET
:
case
PSN_KILLACTIVE
:
SetEvent
(
thread_stop
);
MsgWaitForMultipleObjects
(
1
,
&
thread
,
FALSE
,
INFINITE
,
0
);
CloseHandle
(
thread_stop
);
CloseHandle
(
thread
);
dialog_hwnd
=
0
;
break
;
}
return
TRUE
;
case
WM_USER
:
update_user_view
(
hwnd
,
wparam
);
return
TRUE
;
}
return
FALSE
;
}
po/ar.po
View file @
3f4a7990
...
...
@@ -3800,6 +3800,58 @@ msgstr ""
"اضغط أي زر في المتحكم لتفعيل المؤثر المختار ،الاتجاه المؤثر يمكن تغييره "
"بمحور المتحكم."
#: dlls/joy.cpl/joy.rc:72
msgid "XInput"
msgstr ""
#: dlls/joy.cpl/joy.rc:75
#, fuzzy
#| msgid "User"
msgid "User #0"
msgstr "المستخدم"
#: dlls/joy.cpl/joy.rc:76
#, fuzzy
#| msgid "User"
msgid "User #1"
msgstr "المستخدم"
#: dlls/joy.cpl/joy.rc:77
#, fuzzy
#| msgid "User"
msgid "User #2"
msgstr "المستخدم"
#: dlls/joy.cpl/joy.rc:78
#, fuzzy
#| msgid "User"
msgid "User #3"
msgstr "المستخدم"
#: dlls/joy.cpl/joy.rc:80
msgid ""
"No user detected on slot #0, make sure your gamepad is plugged in, and not "
"overriden for DInput in the Joysticks tab."
msgstr ""
#: dlls/joy.cpl/joy.rc:84
msgid ""
"No user detected on slot #1, make sure your gamepad is plugged in, and not "
"overriden for DInput in the Joysticks tab."
msgstr ""
#: dlls/joy.cpl/joy.rc:88
msgid ""
"No user detected on slot #2, make sure your gamepad is plugged in, and not "
"overriden for DInput in the Joysticks tab."
msgstr ""
#: dlls/joy.cpl/joy.rc:92
msgid ""
"No user detected on slot #3, make sure your gamepad is plugged in, and not "
"overriden for DInput in the Joysticks tab."
msgstr ""
#: dlls/joy.cpl/joy.rc:31
msgid "Game Controllers"
msgstr "متحكمات الألعاب"
...
...
po/ast.po
View file @
3f4a7990
...
...
@@ -3689,6 +3689,58 @@ msgid ""
"direction can be changed with the controller axis."
msgstr ""
#: dlls/joy.cpl/joy.rc:72
msgid "XInput"
msgstr ""
#: dlls/joy.cpl/joy.rc:75
#, fuzzy
#| msgid "Users"
msgid "User #0"
msgstr "Usuarios"
#: dlls/joy.cpl/joy.rc:76
#, fuzzy
#| msgid "Users"
msgid "User #1"
msgstr "Usuarios"
#: dlls/joy.cpl/joy.rc:77
#, fuzzy
#| msgid "Users"
msgid "User #2"
msgstr "Usuarios"
#: dlls/joy.cpl/joy.rc:78
#, fuzzy
#| msgid "Users"
msgid "User #3"
msgstr "Usuarios"
#: dlls/joy.cpl/joy.rc:80
msgid ""
"No user detected on slot #0, make sure your gamepad is plugged in, and not "
"overriden for DInput in the Joysticks tab."
msgstr ""
#: dlls/joy.cpl/joy.rc:84
msgid ""
"No user detected on slot #1, make sure your gamepad is plugged in, and not "
"overriden for DInput in the Joysticks tab."
msgstr ""
#: dlls/joy.cpl/joy.rc:88
msgid ""
"No user detected on slot #2, make sure your gamepad is plugged in, and not "
"overriden for DInput in the Joysticks tab."
msgstr ""
#: dlls/joy.cpl/joy.rc:92
msgid ""
"No user detected on slot #3, make sure your gamepad is plugged in, and not "
"overriden for DInput in the Joysticks tab."
msgstr ""
#: dlls/joy.cpl/joy.rc:31
msgid "Game Controllers"
msgstr ""
...
...
po/bg.po
View file @
3f4a7990
...
...
@@ -3808,6 +3808,58 @@ msgid ""
"direction can be changed with the controller axis."
msgstr ""
#: dlls/joy.cpl/joy.rc:72
msgid "XInput"
msgstr ""
#: dlls/joy.cpl/joy.rc:75
#, fuzzy
#| msgid "User"
msgid "User #0"
msgstr "Потребител"
#: dlls/joy.cpl/joy.rc:76
#, fuzzy
#| msgid "User"
msgid "User #1"
msgstr "Потребител"
#: dlls/joy.cpl/joy.rc:77
#, fuzzy
#| msgid "User"
msgid "User #2"
msgstr "Потребител"
#: dlls/joy.cpl/joy.rc:78
#, fuzzy
#| msgid "User"
msgid "User #3"
msgstr "Потребител"
#: dlls/joy.cpl/joy.rc:80
msgid ""
"No user detected on slot #0, make sure your gamepad is plugged in, and not "
"overriden for DInput in the Joysticks tab."
msgstr ""
#: dlls/joy.cpl/joy.rc:84
msgid ""
"No user detected on slot #1, make sure your gamepad is plugged in, and not "
"overriden for DInput in the Joysticks tab."
msgstr ""
#: dlls/joy.cpl/joy.rc:88
msgid ""
"No user detected on slot #2, make sure your gamepad is plugged in, and not "
"overriden for DInput in the Joysticks tab."
msgstr ""
#: dlls/joy.cpl/joy.rc:92
msgid ""
"No user detected on slot #3, make sure your gamepad is plugged in, and not "
"overriden for DInput in the Joysticks tab."
msgstr ""
#: dlls/joy.cpl/joy.rc:31
#, fuzzy
msgid "Game Controllers"
...
...
po/ca.po
View file @
3f4a7990
...
...
@@ -3788,6 +3788,58 @@ msgstr ""
"Premeu qualsevol botó en el controlador per a activar l'efecte escollit. Es "
"pot canviar la direcció de l'efecte amb l'eix de controlador."
#: dlls/joy.cpl/joy.rc:72
msgid "XInput"
msgstr ""
#: dlls/joy.cpl/joy.rc:75
#, fuzzy
#| msgid "User"
msgid "User #0"
msgstr "Usuari"
#: dlls/joy.cpl/joy.rc:76
#, fuzzy
#| msgid "User"
msgid "User #1"
msgstr "Usuari"
#: dlls/joy.cpl/joy.rc:77
#, fuzzy
#| msgid "User"
msgid "User #2"
msgstr "Usuari"
#: dlls/joy.cpl/joy.rc:78
#, fuzzy
#| msgid "User"
msgid "User #3"
msgstr "Usuari"
#: dlls/joy.cpl/joy.rc:80
msgid ""
"No user detected on slot #0, make sure your gamepad is plugged in, and not "
"overriden for DInput in the Joysticks tab."
msgstr ""
#: dlls/joy.cpl/joy.rc:84
msgid ""
"No user detected on slot #1, make sure your gamepad is plugged in, and not "
"overriden for DInput in the Joysticks tab."
msgstr ""
#: dlls/joy.cpl/joy.rc:88
msgid ""
"No user detected on slot #2, make sure your gamepad is plugged in, and not "
"overriden for DInput in the Joysticks tab."
msgstr ""
#: dlls/joy.cpl/joy.rc:92
msgid ""
"No user detected on slot #3, make sure your gamepad is plugged in, and not "
"overriden for DInput in the Joysticks tab."
msgstr ""
#: dlls/joy.cpl/joy.rc:31
msgid "Game Controllers"
msgstr "Controladors de joc"
...
...
po/cs.po
View file @
3f4a7990
...
...
@@ -3749,6 +3749,58 @@ msgstr ""
"Pro aktivaci zvoleného efektu stiskněte libvolné tlačítko na ovladači. Směr "
"efektu je možné měnit pohybem ovladače."
#: dlls/joy.cpl/joy.rc:72
msgid "XInput"
msgstr ""
#: dlls/joy.cpl/joy.rc:75
#, fuzzy
#| msgid "User"
msgid "User #0"
msgstr "Uživatel"
#: dlls/joy.cpl/joy.rc:76
#, fuzzy
#| msgid "User"
msgid "User #1"
msgstr "Uživatel"
#: dlls/joy.cpl/joy.rc:77
#, fuzzy
#| msgid "User"
msgid "User #2"
msgstr "Uživatel"
#: dlls/joy.cpl/joy.rc:78
#, fuzzy
#| msgid "User"
msgid "User #3"
msgstr "Uživatel"
#: dlls/joy.cpl/joy.rc:80
msgid ""
"No user detected on slot #0, make sure your gamepad is plugged in, and not "
"overriden for DInput in the Joysticks tab."
msgstr ""
#: dlls/joy.cpl/joy.rc:84
msgid ""
"No user detected on slot #1, make sure your gamepad is plugged in, and not "
"overriden for DInput in the Joysticks tab."
msgstr ""
#: dlls/joy.cpl/joy.rc:88
msgid ""
"No user detected on slot #2, make sure your gamepad is plugged in, and not "
"overriden for DInput in the Joysticks tab."
msgstr ""
#: dlls/joy.cpl/joy.rc:92
msgid ""
"No user detected on slot #3, make sure your gamepad is plugged in, and not "
"overriden for DInput in the Joysticks tab."
msgstr ""
#: dlls/joy.cpl/joy.rc:31
msgid "Game Controllers"
msgstr "Herní ovladače"
...
...
po/da.po
View file @
3f4a7990
...
...
@@ -3831,6 +3831,58 @@ msgid ""
"direction can be changed with the controller axis."
msgstr ""
#: dlls/joy.cpl/joy.rc:72
msgid "XInput"
msgstr ""
#: dlls/joy.cpl/joy.rc:75
#, fuzzy
#| msgid "User"
msgid "User #0"
msgstr "Bruger"
#: dlls/joy.cpl/joy.rc:76
#, fuzzy
#| msgid "User"
msgid "User #1"
msgstr "Bruger"
#: dlls/joy.cpl/joy.rc:77
#, fuzzy
#| msgid "User"
msgid "User #2"
msgstr "Bruger"
#: dlls/joy.cpl/joy.rc:78
#, fuzzy
#| msgid "User"
msgid "User #3"
msgstr "Bruger"
#: dlls/joy.cpl/joy.rc:80
msgid ""
"No user detected on slot #0, make sure your gamepad is plugged in, and not "
"overriden for DInput in the Joysticks tab."
msgstr ""
#: dlls/joy.cpl/joy.rc:84
msgid ""
"No user detected on slot #1, make sure your gamepad is plugged in, and not "
"overriden for DInput in the Joysticks tab."
msgstr ""
#: dlls/joy.cpl/joy.rc:88
msgid ""
"No user detected on slot #2, make sure your gamepad is plugged in, and not "
"overriden for DInput in the Joysticks tab."
msgstr ""
#: dlls/joy.cpl/joy.rc:92
msgid ""
"No user detected on slot #3, make sure your gamepad is plugged in, and not "
"overriden for DInput in the Joysticks tab."
msgstr ""
#: dlls/joy.cpl/joy.rc:31
#, fuzzy
#| msgid "Create Control"
...
...
po/de.po
View file @
3f4a7990
...
...
@@ -3777,6 +3777,58 @@ msgstr ""
"aktivieren. Die Richtung des Effekts kann mit der Controller-Achse geändert "
"werden."
#: dlls/joy.cpl/joy.rc:72
msgid "XInput"
msgstr ""
#: dlls/joy.cpl/joy.rc:75
#, fuzzy
#| msgid "User"
msgid "User #0"
msgstr "Benutzername"
#: dlls/joy.cpl/joy.rc:76
#, fuzzy
#| msgid "User"
msgid "User #1"
msgstr "Benutzername"
#: dlls/joy.cpl/joy.rc:77
#, fuzzy
#| msgid "User"
msgid "User #2"
msgstr "Benutzername"
#: dlls/joy.cpl/joy.rc:78
#, fuzzy
#| msgid "User"
msgid "User #3"
msgstr "Benutzername"
#: dlls/joy.cpl/joy.rc:80
msgid ""
"No user detected on slot #0, make sure your gamepad is plugged in, and not "
"overriden for DInput in the Joysticks tab."
msgstr ""
#: dlls/joy.cpl/joy.rc:84
msgid ""
"No user detected on slot #1, make sure your gamepad is plugged in, and not "
"overriden for DInput in the Joysticks tab."
msgstr ""
#: dlls/joy.cpl/joy.rc:88
msgid ""
"No user detected on slot #2, make sure your gamepad is plugged in, and not "
"overriden for DInput in the Joysticks tab."
msgstr ""
#: dlls/joy.cpl/joy.rc:92
msgid ""
"No user detected on slot #3, make sure your gamepad is plugged in, and not "
"overriden for DInput in the Joysticks tab."
msgstr ""
#: dlls/joy.cpl/joy.rc:31
msgid "Game Controllers"
msgstr "Gamecontroller"
...
...
po/el.po
View file @
3f4a7990
...
...
@@ -3720,6 +3720,50 @@ msgid ""
"direction can be changed with the controller axis."
msgstr ""
#: dlls/joy.cpl/joy.rc:72
msgid "XInput"
msgstr ""
#: dlls/joy.cpl/joy.rc:75
msgid "User #0"
msgstr ""
#: dlls/joy.cpl/joy.rc:76
msgid "User #1"
msgstr ""
#: dlls/joy.cpl/joy.rc:77
msgid "User #2"
msgstr ""
#: dlls/joy.cpl/joy.rc:78
msgid "User #3"
msgstr ""
#: dlls/joy.cpl/joy.rc:80
msgid ""
"No user detected on slot #0, make sure your gamepad is plugged in, and not "
"overriden for DInput in the Joysticks tab."
msgstr ""
#: dlls/joy.cpl/joy.rc:84
msgid ""
"No user detected on slot #1, make sure your gamepad is plugged in, and not "
"overriden for DInput in the Joysticks tab."
msgstr ""
#: dlls/joy.cpl/joy.rc:88
msgid ""
"No user detected on slot #2, make sure your gamepad is plugged in, and not "
"overriden for DInput in the Joysticks tab."
msgstr ""
#: dlls/joy.cpl/joy.rc:92
msgid ""
"No user detected on slot #3, make sure your gamepad is plugged in, and not "
"overriden for DInput in the Joysticks tab."
msgstr ""
#: dlls/joy.cpl/joy.rc:31
#, fuzzy
msgid "Game Controllers"
...
...
po/en.po
View file @
3f4a7990
...
...
@@ -3767,6 +3767,58 @@ msgstr ""
"Press any button in the controller to activate the chosen effect. The effect "
"direction can be changed with the controller axis."
#: dlls/joy.cpl/joy.rc:72
msgid "XInput"
msgstr "XInput"
#: dlls/joy.cpl/joy.rc:75
msgid "User #0"
msgstr "User #0"
#: dlls/joy.cpl/joy.rc:76
msgid "User #1"
msgstr "User #1"
#: dlls/joy.cpl/joy.rc:77
msgid "User #2"
msgstr "User #2"
#: dlls/joy.cpl/joy.rc:78
msgid "User #3"
msgstr "User #3"
#: dlls/joy.cpl/joy.rc:80
msgid ""
"No user detected on slot #0, make sure your gamepad is plugged in, and not "
"overriden for DInput in the Joysticks tab."
msgstr ""
"No user detected on slot #0, make sure your gamepad is plugged in, and not "
"overriden for DInput in the Joysticks tab."
#: dlls/joy.cpl/joy.rc:84
msgid ""
"No user detected on slot #1, make sure your gamepad is plugged in, and not "
"overriden for DInput in the Joysticks tab."
msgstr ""
"No user detected on slot #1, make sure your gamepad is plugged in, and not "
"overriden for DInput in the Joysticks tab."
#: dlls/joy.cpl/joy.rc:88
msgid ""
"No user detected on slot #2, make sure your gamepad is plugged in, and not "
"overriden for DInput in the Joysticks tab."
msgstr ""
"No user detected on slot #2, make sure your gamepad is plugged in, and not "
"overriden for DInput in the Joysticks tab."
#: dlls/joy.cpl/joy.rc:92
msgid ""
"No user detected on slot #3, make sure your gamepad is plugged in, and not "
"overriden for DInput in the Joysticks tab."
msgstr ""
"No user detected on slot #3, make sure your gamepad is plugged in, and not "
"overriden for DInput in the Joysticks tab."
#: dlls/joy.cpl/joy.rc:31
msgid "Game Controllers"
msgstr "Game Controllers"
...
...
po/en_US.po
View file @
3f4a7990
...
...
@@ -3767,6 +3767,58 @@ msgstr ""
"Press any button in the controller to activate the chosen effect. The effect "
"direction can be changed with the controller axis."
#: dlls/joy.cpl/joy.rc:72
msgid "XInput"
msgstr "XInput"
#: dlls/joy.cpl/joy.rc:75
msgid "User #0"
msgstr "User #0"
#: dlls/joy.cpl/joy.rc:76
msgid "User #1"
msgstr "User #1"
#: dlls/joy.cpl/joy.rc:77
msgid "User #2"
msgstr "User #2"
#: dlls/joy.cpl/joy.rc:78
msgid "User #3"
msgstr "User #3"
#: dlls/joy.cpl/joy.rc:80
msgid ""
"No user detected on slot #0, make sure your gamepad is plugged in, and not "
"overriden for DInput in the Joysticks tab."
msgstr ""
"No user detected on slot #0, make sure your gamepad is plugged in, and not "
"overriden for DInput in the Joysticks tab."
#: dlls/joy.cpl/joy.rc:84
msgid ""
"No user detected on slot #1, make sure your gamepad is plugged in, and not "
"overriden for DInput in the Joysticks tab."
msgstr ""
"No user detected on slot #1, make sure your gamepad is plugged in, and not "
"overriden for DInput in the Joysticks tab."
#: dlls/joy.cpl/joy.rc:88
msgid ""
"No user detected on slot #2, make sure your gamepad is plugged in, and not "
"overriden for DInput in the Joysticks tab."
msgstr ""
"No user detected on slot #2, make sure your gamepad is plugged in, and not "
"overriden for DInput in the Joysticks tab."
#: dlls/joy.cpl/joy.rc:92
msgid ""
"No user detected on slot #3, make sure your gamepad is plugged in, and not "
"overriden for DInput in the Joysticks tab."
msgstr ""
"No user detected on slot #3, make sure your gamepad is plugged in, and not "
"overriden for DInput in the Joysticks tab."
#: dlls/joy.cpl/joy.rc:31
msgid "Game Controllers"
msgstr "Game Controllers"
...
...
po/eo.po
View file @
3f4a7990
...
...
@@ -3715,6 +3715,58 @@ msgid ""
"direction can be changed with the controller axis."
msgstr ""
#: dlls/joy.cpl/joy.rc:72
msgid "XInput"
msgstr ""
#: dlls/joy.cpl/joy.rc:75
#, fuzzy
#| msgid "User"
msgid "User #0"
msgstr "Uzanto"
#: dlls/joy.cpl/joy.rc:76
#, fuzzy
#| msgid "User"
msgid "User #1"
msgstr "Uzanto"
#: dlls/joy.cpl/joy.rc:77
#, fuzzy
#| msgid "User"
msgid "User #2"
msgstr "Uzanto"
#: dlls/joy.cpl/joy.rc:78
#, fuzzy
#| msgid "User"
msgid "User #3"
msgstr "Uzanto"
#: dlls/joy.cpl/joy.rc:80
msgid ""
"No user detected on slot #0, make sure your gamepad is plugged in, and not "
"overriden for DInput in the Joysticks tab."
msgstr ""
#: dlls/joy.cpl/joy.rc:84
msgid ""
"No user detected on slot #1, make sure your gamepad is plugged in, and not "
"overriden for DInput in the Joysticks tab."
msgstr ""
#: dlls/joy.cpl/joy.rc:88
msgid ""
"No user detected on slot #2, make sure your gamepad is plugged in, and not "
"overriden for DInput in the Joysticks tab."
msgstr ""
#: dlls/joy.cpl/joy.rc:92
msgid ""
"No user detected on slot #3, make sure your gamepad is plugged in, and not "
"overriden for DInput in the Joysticks tab."
msgstr ""
#: dlls/joy.cpl/joy.rc:31
#, fuzzy
#| msgid "Create Control"
...
...
po/es.po
View file @
3f4a7990
...
...
@@ -3789,6 +3789,58 @@ msgstr ""
"Presione cualquier botón del controlador para activar el efecto elegido. La "
"dirección del efecto se puede cambiar con el eje del controlador."
#: dlls/joy.cpl/joy.rc:72
msgid "XInput"
msgstr ""
#: dlls/joy.cpl/joy.rc:75
#, fuzzy
#| msgid "User"
msgid "User #0"
msgstr "Usuario"
#: dlls/joy.cpl/joy.rc:76
#, fuzzy
#| msgid "User"
msgid "User #1"
msgstr "Usuario"
#: dlls/joy.cpl/joy.rc:77
#, fuzzy
#| msgid "User"
msgid "User #2"
msgstr "Usuario"
#: dlls/joy.cpl/joy.rc:78
#, fuzzy
#| msgid "User"
msgid "User #3"
msgstr "Usuario"
#: dlls/joy.cpl/joy.rc:80
msgid ""
"No user detected on slot #0, make sure your gamepad is plugged in, and not "
"overriden for DInput in the Joysticks tab."
msgstr ""
#: dlls/joy.cpl/joy.rc:84
msgid ""
"No user detected on slot #1, make sure your gamepad is plugged in, and not "
"overriden for DInput in the Joysticks tab."
msgstr ""
#: dlls/joy.cpl/joy.rc:88
msgid ""
"No user detected on slot #2, make sure your gamepad is plugged in, and not "
"overriden for DInput in the Joysticks tab."
msgstr ""
#: dlls/joy.cpl/joy.rc:92
msgid ""
"No user detected on slot #3, make sure your gamepad is plugged in, and not "
"overriden for DInput in the Joysticks tab."
msgstr ""
#: dlls/joy.cpl/joy.rc:31
msgid "Game Controllers"
msgstr "Mandos de juego"
...
...
po/fa.po
View file @
3f4a7990
...
...
@@ -3749,6 +3749,50 @@ msgid ""
"direction can be changed with the controller axis."
msgstr ""
#: dlls/joy.cpl/joy.rc:72
msgid "XInput"
msgstr ""
#: dlls/joy.cpl/joy.rc:75
msgid "User #0"
msgstr ""
#: dlls/joy.cpl/joy.rc:76
msgid "User #1"
msgstr ""
#: dlls/joy.cpl/joy.rc:77
msgid "User #2"
msgstr ""
#: dlls/joy.cpl/joy.rc:78
msgid "User #3"
msgstr ""
#: dlls/joy.cpl/joy.rc:80
msgid ""
"No user detected on slot #0, make sure your gamepad is plugged in, and not "
"overriden for DInput in the Joysticks tab."
msgstr ""
#: dlls/joy.cpl/joy.rc:84
msgid ""
"No user detected on slot #1, make sure your gamepad is plugged in, and not "
"overriden for DInput in the Joysticks tab."
msgstr ""
#: dlls/joy.cpl/joy.rc:88
msgid ""
"No user detected on slot #2, make sure your gamepad is plugged in, and not "
"overriden for DInput in the Joysticks tab."
msgstr ""
#: dlls/joy.cpl/joy.rc:92
msgid ""
"No user detected on slot #3, make sure your gamepad is plugged in, and not "
"overriden for DInput in the Joysticks tab."
msgstr ""
#: dlls/joy.cpl/joy.rc:31
#, fuzzy
msgid "Game Controllers"
...
...
po/fi.po
View file @
3f4a7990
...
...
@@ -3763,6 +3763,58 @@ msgstr ""
"Aktivoi valittu efekti painamalla mitä tahansa ohjaimen painiketta. Efektin "
"suuntaa voi muuttaa ohjaimen akselilla."
#: dlls/joy.cpl/joy.rc:72
msgid "XInput"
msgstr ""
#: dlls/joy.cpl/joy.rc:75
#, fuzzy
#| msgid "User"
msgid "User #0"
msgstr "Käyttäjä"
#: dlls/joy.cpl/joy.rc:76
#, fuzzy
#| msgid "User"
msgid "User #1"
msgstr "Käyttäjä"
#: dlls/joy.cpl/joy.rc:77
#, fuzzy
#| msgid "User"
msgid "User #2"
msgstr "Käyttäjä"
#: dlls/joy.cpl/joy.rc:78
#, fuzzy
#| msgid "User"
msgid "User #3"
msgstr "Käyttäjä"
#: dlls/joy.cpl/joy.rc:80
msgid ""
"No user detected on slot #0, make sure your gamepad is plugged in, and not "
"overriden for DInput in the Joysticks tab."
msgstr ""
#: dlls/joy.cpl/joy.rc:84
msgid ""
"No user detected on slot #1, make sure your gamepad is plugged in, and not "
"overriden for DInput in the Joysticks tab."
msgstr ""
#: dlls/joy.cpl/joy.rc:88
msgid ""
"No user detected on slot #2, make sure your gamepad is plugged in, and not "
"overriden for DInput in the Joysticks tab."
msgstr ""
#: dlls/joy.cpl/joy.rc:92
msgid ""
"No user detected on slot #3, make sure your gamepad is plugged in, and not "
"overriden for DInput in the Joysticks tab."
msgstr ""
#: dlls/joy.cpl/joy.rc:31
msgid "Game Controllers"
msgstr "Peliohjaimet"
...
...
po/fr.po
View file @
3f4a7990
...
...
@@ -3795,6 +3795,58 @@ msgstr ""
"Appuyez sur un bouton du contrôleur pour activer l'effet choisi. La "
"direction de l'effet peut être modifiée en utilisant l'axe du contrôleur."
#: dlls/joy.cpl/joy.rc:72
msgid "XInput"
msgstr ""
#: dlls/joy.cpl/joy.rc:75
#, fuzzy
#| msgid "User"
msgid "User #0"
msgstr "Utilisateur"
#: dlls/joy.cpl/joy.rc:76
#, fuzzy
#| msgid "User"
msgid "User #1"
msgstr "Utilisateur"
#: dlls/joy.cpl/joy.rc:77
#, fuzzy
#| msgid "User"
msgid "User #2"
msgstr "Utilisateur"
#: dlls/joy.cpl/joy.rc:78
#, fuzzy
#| msgid "User"
msgid "User #3"
msgstr "Utilisateur"
#: dlls/joy.cpl/joy.rc:80
msgid ""
"No user detected on slot #0, make sure your gamepad is plugged in, and not "
"overriden for DInput in the Joysticks tab."
msgstr ""
#: dlls/joy.cpl/joy.rc:84
msgid ""
"No user detected on slot #1, make sure your gamepad is plugged in, and not "
"overriden for DInput in the Joysticks tab."
msgstr ""
#: dlls/joy.cpl/joy.rc:88
msgid ""
"No user detected on slot #2, make sure your gamepad is plugged in, and not "
"overriden for DInput in the Joysticks tab."
msgstr ""
#: dlls/joy.cpl/joy.rc:92
msgid ""
"No user detected on slot #3, make sure your gamepad is plugged in, and not "
"overriden for DInput in the Joysticks tab."
msgstr ""
#: dlls/joy.cpl/joy.rc:31
msgid "Game Controllers"
msgstr "Contrôleurs de jeu"
...
...
po/he.po
View file @
3f4a7990
...
...
@@ -3792,6 +3792,58 @@ msgid ""
"direction can be changed with the controller axis."
msgstr ""
#: dlls/joy.cpl/joy.rc:72
msgid "XInput"
msgstr ""
#: dlls/joy.cpl/joy.rc:75
#, fuzzy
#| msgid "User"
msgid "User #0"
msgstr "משתמש"
#: dlls/joy.cpl/joy.rc:76
#, fuzzy
#| msgid "User"
msgid "User #1"
msgstr "משתמש"
#: dlls/joy.cpl/joy.rc:77
#, fuzzy
#| msgid "User"
msgid "User #2"
msgstr "משתמש"
#: dlls/joy.cpl/joy.rc:78
#, fuzzy
#| msgid "User"
msgid "User #3"
msgstr "משתמש"
#: dlls/joy.cpl/joy.rc:80
msgid ""
"No user detected on slot #0, make sure your gamepad is plugged in, and not "
"overriden for DInput in the Joysticks tab."
msgstr ""
#: dlls/joy.cpl/joy.rc:84
msgid ""
"No user detected on slot #1, make sure your gamepad is plugged in, and not "
"overriden for DInput in the Joysticks tab."
msgstr ""
#: dlls/joy.cpl/joy.rc:88
msgid ""
"No user detected on slot #2, make sure your gamepad is plugged in, and not "
"overriden for DInput in the Joysticks tab."
msgstr ""
#: dlls/joy.cpl/joy.rc:92
msgid ""
"No user detected on slot #3, make sure your gamepad is plugged in, and not "
"overriden for DInput in the Joysticks tab."
msgstr ""
#: dlls/joy.cpl/joy.rc:31
#, fuzzy
#| msgid "Create Control"
...
...
po/hi.po
View file @
3f4a7990
...
...
@@ -3681,6 +3681,50 @@ msgid ""
"direction can be changed with the controller axis."
msgstr ""
#: dlls/joy.cpl/joy.rc:72
msgid "XInput"
msgstr ""
#: dlls/joy.cpl/joy.rc:75
msgid "User #0"
msgstr ""
#: dlls/joy.cpl/joy.rc:76
msgid "User #1"
msgstr ""
#: dlls/joy.cpl/joy.rc:77
msgid "User #2"
msgstr ""
#: dlls/joy.cpl/joy.rc:78
msgid "User #3"
msgstr ""
#: dlls/joy.cpl/joy.rc:80
msgid ""
"No user detected on slot #0, make sure your gamepad is plugged in, and not "
"overriden for DInput in the Joysticks tab."
msgstr ""
#: dlls/joy.cpl/joy.rc:84
msgid ""
"No user detected on slot #1, make sure your gamepad is plugged in, and not "
"overriden for DInput in the Joysticks tab."
msgstr ""
#: dlls/joy.cpl/joy.rc:88
msgid ""
"No user detected on slot #2, make sure your gamepad is plugged in, and not "
"overriden for DInput in the Joysticks tab."
msgstr ""
#: dlls/joy.cpl/joy.rc:92
msgid ""
"No user detected on slot #3, make sure your gamepad is plugged in, and not "
"overriden for DInput in the Joysticks tab."
msgstr ""
#: dlls/joy.cpl/joy.rc:31
msgid "Game Controllers"
msgstr ""
...
...
po/hr.po
View file @
3f4a7990
...
...
@@ -3805,6 +3805,58 @@ msgstr ""
"Pritsnite bilo koji gumb na upravljaču kako bi aktivirali odabaran efekt. "
"Smjer efetka se može promijeniti pomoću osi upravljača."
#: dlls/joy.cpl/joy.rc:72
msgid "XInput"
msgstr ""
#: dlls/joy.cpl/joy.rc:75
#, fuzzy
#| msgid "User"
msgid "User #0"
msgstr "Korisničko ime"
#: dlls/joy.cpl/joy.rc:76
#, fuzzy
#| msgid "User"
msgid "User #1"
msgstr "Korisničko ime"
#: dlls/joy.cpl/joy.rc:77
#, fuzzy
#| msgid "User"
msgid "User #2"
msgstr "Korisničko ime"
#: dlls/joy.cpl/joy.rc:78
#, fuzzy
#| msgid "User"
msgid "User #3"
msgstr "Korisničko ime"
#: dlls/joy.cpl/joy.rc:80
msgid ""
"No user detected on slot #0, make sure your gamepad is plugged in, and not "
"overriden for DInput in the Joysticks tab."
msgstr ""
#: dlls/joy.cpl/joy.rc:84
msgid ""
"No user detected on slot #1, make sure your gamepad is plugged in, and not "
"overriden for DInput in the Joysticks tab."
msgstr ""
#: dlls/joy.cpl/joy.rc:88
msgid ""
"No user detected on slot #2, make sure your gamepad is plugged in, and not "
"overriden for DInput in the Joysticks tab."
msgstr ""
#: dlls/joy.cpl/joy.rc:92
msgid ""
"No user detected on slot #3, make sure your gamepad is plugged in, and not "
"overriden for DInput in the Joysticks tab."
msgstr ""
#: dlls/joy.cpl/joy.rc:31
msgid "Game Controllers"
msgstr "Igraći upravljači"
...
...
po/hu.po
View file @
3f4a7990
...
...
@@ -3847,6 +3847,58 @@ msgid ""
"direction can be changed with the controller axis."
msgstr ""
#: dlls/joy.cpl/joy.rc:72
msgid "XInput"
msgstr ""
#: dlls/joy.cpl/joy.rc:75
#, fuzzy
#| msgid "User"
msgid "User #0"
msgstr "Felhasználónév"
#: dlls/joy.cpl/joy.rc:76
#, fuzzy
#| msgid "User"
msgid "User #1"
msgstr "Felhasználónév"
#: dlls/joy.cpl/joy.rc:77
#, fuzzy
#| msgid "User"
msgid "User #2"
msgstr "Felhasználónév"
#: dlls/joy.cpl/joy.rc:78
#, fuzzy
#| msgid "User"
msgid "User #3"
msgstr "Felhasználónév"
#: dlls/joy.cpl/joy.rc:80
msgid ""
"No user detected on slot #0, make sure your gamepad is plugged in, and not "
"overriden for DInput in the Joysticks tab."
msgstr ""
#: dlls/joy.cpl/joy.rc:84
msgid ""
"No user detected on slot #1, make sure your gamepad is plugged in, and not "
"overriden for DInput in the Joysticks tab."
msgstr ""
#: dlls/joy.cpl/joy.rc:88
msgid ""
"No user detected on slot #2, make sure your gamepad is plugged in, and not "
"overriden for DInput in the Joysticks tab."
msgstr ""
#: dlls/joy.cpl/joy.rc:92
msgid ""
"No user detected on slot #3, make sure your gamepad is plugged in, and not "
"overriden for DInput in the Joysticks tab."
msgstr ""
#: dlls/joy.cpl/joy.rc:31
#, fuzzy
#| msgid "Create Control"
...
...
po/it.po
View file @
3f4a7990
...
...
@@ -3855,6 +3855,58 @@ msgid ""
"direction can be changed with the controller axis."
msgstr ""
#: dlls/joy.cpl/joy.rc:72
msgid "XInput"
msgstr ""
#: dlls/joy.cpl/joy.rc:75
#, fuzzy
#| msgid "User"
msgid "User #0"
msgstr "Utente"
#: dlls/joy.cpl/joy.rc:76
#, fuzzy
#| msgid "User"
msgid "User #1"
msgstr "Utente"
#: dlls/joy.cpl/joy.rc:77
#, fuzzy
#| msgid "User"
msgid "User #2"
msgstr "Utente"
#: dlls/joy.cpl/joy.rc:78
#, fuzzy
#| msgid "User"
msgid "User #3"
msgstr "Utente"
#: dlls/joy.cpl/joy.rc:80
msgid ""
"No user detected on slot #0, make sure your gamepad is plugged in, and not "
"overriden for DInput in the Joysticks tab."
msgstr ""
#: dlls/joy.cpl/joy.rc:84
msgid ""
"No user detected on slot #1, make sure your gamepad is plugged in, and not "
"overriden for DInput in the Joysticks tab."
msgstr ""
#: dlls/joy.cpl/joy.rc:88
msgid ""
"No user detected on slot #2, make sure your gamepad is plugged in, and not "
"overriden for DInput in the Joysticks tab."
msgstr ""
#: dlls/joy.cpl/joy.rc:92
msgid ""
"No user detected on slot #3, make sure your gamepad is plugged in, and not "
"overriden for DInput in the Joysticks tab."
msgstr ""
#: dlls/joy.cpl/joy.rc:31
#, fuzzy
#| msgid "Create Control"
...
...
po/ja.po
View file @
3f4a7990
...
...
@@ -3763,6 +3763,58 @@ msgstr ""
"選択した効果を有効化するにはコントローラーのボタンを押してください。効果の方"
"向はコントローラーの軸で変更できます。"
#: dlls/joy.cpl/joy.rc:72
msgid "XInput"
msgstr ""
#: dlls/joy.cpl/joy.rc:75
#, fuzzy
#| msgid "User"
msgid "User #0"
msgstr "ユーザー名"
#: dlls/joy.cpl/joy.rc:76
#, fuzzy
#| msgid "User"
msgid "User #1"
msgstr "ユーザー名"
#: dlls/joy.cpl/joy.rc:77
#, fuzzy
#| msgid "User"
msgid "User #2"
msgstr "ユーザー名"
#: dlls/joy.cpl/joy.rc:78
#, fuzzy
#| msgid "User"
msgid "User #3"
msgstr "ユーザー名"
#: dlls/joy.cpl/joy.rc:80
msgid ""
"No user detected on slot #0, make sure your gamepad is plugged in, and not "
"overriden for DInput in the Joysticks tab."
msgstr ""
#: dlls/joy.cpl/joy.rc:84
msgid ""
"No user detected on slot #1, make sure your gamepad is plugged in, and not "
"overriden for DInput in the Joysticks tab."
msgstr ""
#: dlls/joy.cpl/joy.rc:88
msgid ""
"No user detected on slot #2, make sure your gamepad is plugged in, and not "
"overriden for DInput in the Joysticks tab."
msgstr ""
#: dlls/joy.cpl/joy.rc:92
msgid ""
"No user detected on slot #3, make sure your gamepad is plugged in, and not "
"overriden for DInput in the Joysticks tab."
msgstr ""
#: dlls/joy.cpl/joy.rc:31
msgid "Game Controllers"
msgstr "ゲーム コントローラー"
...
...
po/ko.po
View file @
3f4a7990
...
...
@@ -3753,6 +3753,58 @@ msgstr ""
"컨트롤러의 아무 버튼이나 눌러 선택한 효과를 활성화합니다. 컨트롤러 축을 이용"
"하여 효과 방향을 바꿀 수 있습니다."
#: dlls/joy.cpl/joy.rc:72
msgid "XInput"
msgstr ""
#: dlls/joy.cpl/joy.rc:75
#, fuzzy
#| msgid "User"
msgid "User #0"
msgstr "사용자"
#: dlls/joy.cpl/joy.rc:76
#, fuzzy
#| msgid "User"
msgid "User #1"
msgstr "사용자"
#: dlls/joy.cpl/joy.rc:77
#, fuzzy
#| msgid "User"
msgid "User #2"
msgstr "사용자"
#: dlls/joy.cpl/joy.rc:78
#, fuzzy
#| msgid "User"
msgid "User #3"
msgstr "사용자"
#: dlls/joy.cpl/joy.rc:80
msgid ""
"No user detected on slot #0, make sure your gamepad is plugged in, and not "
"overriden for DInput in the Joysticks tab."
msgstr ""
#: dlls/joy.cpl/joy.rc:84
msgid ""
"No user detected on slot #1, make sure your gamepad is plugged in, and not "
"overriden for DInput in the Joysticks tab."
msgstr ""
#: dlls/joy.cpl/joy.rc:88
msgid ""
"No user detected on slot #2, make sure your gamepad is plugged in, and not "
"overriden for DInput in the Joysticks tab."
msgstr ""
#: dlls/joy.cpl/joy.rc:92
msgid ""
"No user detected on slot #3, make sure your gamepad is plugged in, and not "
"overriden for DInput in the Joysticks tab."
msgstr ""
#: dlls/joy.cpl/joy.rc:31
msgid "Game Controllers"
msgstr "게임 컨트롤러"
...
...
po/lt.po
View file @
3f4a7990
...
...
@@ -3772,6 +3772,58 @@ msgstr ""
"Spauskite bet kurį valdiklio mygtuką pasirinktam efektui aktyvuoti. Efekto "
"kryptis gali būti pakeista valdiklio ašimi."
#: dlls/joy.cpl/joy.rc:72
msgid "XInput"
msgstr ""
#: dlls/joy.cpl/joy.rc:75
#, fuzzy
#| msgid "User"
msgid "User #0"
msgstr "Naudotojas"
#: dlls/joy.cpl/joy.rc:76
#, fuzzy
#| msgid "User"
msgid "User #1"
msgstr "Naudotojas"
#: dlls/joy.cpl/joy.rc:77
#, fuzzy
#| msgid "User"
msgid "User #2"
msgstr "Naudotojas"
#: dlls/joy.cpl/joy.rc:78
#, fuzzy
#| msgid "User"
msgid "User #3"
msgstr "Naudotojas"
#: dlls/joy.cpl/joy.rc:80
msgid ""
"No user detected on slot #0, make sure your gamepad is plugged in, and not "
"overriden for DInput in the Joysticks tab."
msgstr ""
#: dlls/joy.cpl/joy.rc:84
msgid ""
"No user detected on slot #1, make sure your gamepad is plugged in, and not "
"overriden for DInput in the Joysticks tab."
msgstr ""
#: dlls/joy.cpl/joy.rc:88
msgid ""
"No user detected on slot #2, make sure your gamepad is plugged in, and not "
"overriden for DInput in the Joysticks tab."
msgstr ""
#: dlls/joy.cpl/joy.rc:92
msgid ""
"No user detected on slot #3, make sure your gamepad is plugged in, and not "
"overriden for DInput in the Joysticks tab."
msgstr ""
#: dlls/joy.cpl/joy.rc:31
msgid "Game Controllers"
msgstr "Žaidimų valdikliai"
...
...
po/ml.po
View file @
3f4a7990
...
...
@@ -3683,6 +3683,50 @@ msgid ""
"direction can be changed with the controller axis."
msgstr ""
#: dlls/joy.cpl/joy.rc:72
msgid "XInput"
msgstr ""
#: dlls/joy.cpl/joy.rc:75
msgid "User #0"
msgstr ""
#: dlls/joy.cpl/joy.rc:76
msgid "User #1"
msgstr ""
#: dlls/joy.cpl/joy.rc:77
msgid "User #2"
msgstr ""
#: dlls/joy.cpl/joy.rc:78
msgid "User #3"
msgstr ""
#: dlls/joy.cpl/joy.rc:80
msgid ""
"No user detected on slot #0, make sure your gamepad is plugged in, and not "
"overriden for DInput in the Joysticks tab."
msgstr ""
#: dlls/joy.cpl/joy.rc:84
msgid ""
"No user detected on slot #1, make sure your gamepad is plugged in, and not "
"overriden for DInput in the Joysticks tab."
msgstr ""
#: dlls/joy.cpl/joy.rc:88
msgid ""
"No user detected on slot #2, make sure your gamepad is plugged in, and not "
"overriden for DInput in the Joysticks tab."
msgstr ""
#: dlls/joy.cpl/joy.rc:92
msgid ""
"No user detected on slot #3, make sure your gamepad is plugged in, and not "
"overriden for DInput in the Joysticks tab."
msgstr ""
#: dlls/joy.cpl/joy.rc:31
msgid "Game Controllers"
msgstr ""
...
...
po/nb_NO.po
View file @
3f4a7990
...
...
@@ -3783,6 +3783,58 @@ msgstr ""
"Trykk en knapp på kontrolleren for å aktivere den valgte effekten. Effektens "
"retning kan endres med kontrollerens akse."
#: dlls/joy.cpl/joy.rc:72
msgid "XInput"
msgstr ""
#: dlls/joy.cpl/joy.rc:75
#, fuzzy
#| msgid "User"
msgid "User #0"
msgstr "Bruker"
#: dlls/joy.cpl/joy.rc:76
#, fuzzy
#| msgid "User"
msgid "User #1"
msgstr "Bruker"
#: dlls/joy.cpl/joy.rc:77
#, fuzzy
#| msgid "User"
msgid "User #2"
msgstr "Bruker"
#: dlls/joy.cpl/joy.rc:78
#, fuzzy
#| msgid "User"
msgid "User #3"
msgstr "Bruker"
#: dlls/joy.cpl/joy.rc:80
msgid ""
"No user detected on slot #0, make sure your gamepad is plugged in, and not "
"overriden for DInput in the Joysticks tab."
msgstr ""
#: dlls/joy.cpl/joy.rc:84
msgid ""
"No user detected on slot #1, make sure your gamepad is plugged in, and not "
"overriden for DInput in the Joysticks tab."
msgstr ""
#: dlls/joy.cpl/joy.rc:88
msgid ""
"No user detected on slot #2, make sure your gamepad is plugged in, and not "
"overriden for DInput in the Joysticks tab."
msgstr ""
#: dlls/joy.cpl/joy.rc:92
msgid ""
"No user detected on slot #3, make sure your gamepad is plugged in, and not "
"overriden for DInput in the Joysticks tab."
msgstr ""
#: dlls/joy.cpl/joy.rc:31
msgid "Game Controllers"
msgstr "Spillkontrollere"
...
...
po/nl.po
View file @
3f4a7990
...
...
@@ -3783,6 +3783,58 @@ msgstr ""
"Druk op een knop op de controller om het gewenste effect te activeren. De "
"richting van het effect kan veranderd worden met de assen van de controller."
#: dlls/joy.cpl/joy.rc:72
msgid "XInput"
msgstr ""
#: dlls/joy.cpl/joy.rc:75
#, fuzzy
#| msgid "User"
msgid "User #0"
msgstr "Gebruiker"
#: dlls/joy.cpl/joy.rc:76
#, fuzzy
#| msgid "User"
msgid "User #1"
msgstr "Gebruiker"
#: dlls/joy.cpl/joy.rc:77
#, fuzzy
#| msgid "User"
msgid "User #2"
msgstr "Gebruiker"
#: dlls/joy.cpl/joy.rc:78
#, fuzzy
#| msgid "User"
msgid "User #3"
msgstr "Gebruiker"
#: dlls/joy.cpl/joy.rc:80
msgid ""
"No user detected on slot #0, make sure your gamepad is plugged in, and not "
"overriden for DInput in the Joysticks tab."
msgstr ""
#: dlls/joy.cpl/joy.rc:84
msgid ""
"No user detected on slot #1, make sure your gamepad is plugged in, and not "
"overriden for DInput in the Joysticks tab."
msgstr ""
#: dlls/joy.cpl/joy.rc:88
msgid ""
"No user detected on slot #2, make sure your gamepad is plugged in, and not "
"overriden for DInput in the Joysticks tab."
msgstr ""
#: dlls/joy.cpl/joy.rc:92
msgid ""
"No user detected on slot #3, make sure your gamepad is plugged in, and not "
"overriden for DInput in the Joysticks tab."
msgstr ""
#: dlls/joy.cpl/joy.rc:31
msgid "Game Controllers"
msgstr "Spelbesturing"
...
...
po/or.po
View file @
3f4a7990
...
...
@@ -3681,6 +3681,50 @@ msgid ""
"direction can be changed with the controller axis."
msgstr ""
#: dlls/joy.cpl/joy.rc:72
msgid "XInput"
msgstr ""
#: dlls/joy.cpl/joy.rc:75
msgid "User #0"
msgstr ""
#: dlls/joy.cpl/joy.rc:76
msgid "User #1"
msgstr ""
#: dlls/joy.cpl/joy.rc:77
msgid "User #2"
msgstr ""
#: dlls/joy.cpl/joy.rc:78
msgid "User #3"
msgstr ""
#: dlls/joy.cpl/joy.rc:80
msgid ""
"No user detected on slot #0, make sure your gamepad is plugged in, and not "
"overriden for DInput in the Joysticks tab."
msgstr ""
#: dlls/joy.cpl/joy.rc:84
msgid ""
"No user detected on slot #1, make sure your gamepad is plugged in, and not "
"overriden for DInput in the Joysticks tab."
msgstr ""
#: dlls/joy.cpl/joy.rc:88
msgid ""
"No user detected on slot #2, make sure your gamepad is plugged in, and not "
"overriden for DInput in the Joysticks tab."
msgstr ""
#: dlls/joy.cpl/joy.rc:92
msgid ""
"No user detected on slot #3, make sure your gamepad is plugged in, and not "
"overriden for DInput in the Joysticks tab."
msgstr ""
#: dlls/joy.cpl/joy.rc:31
msgid "Game Controllers"
msgstr ""
...
...
po/pa.po
View file @
3f4a7990
...
...
@@ -3681,6 +3681,50 @@ msgid ""
"direction can be changed with the controller axis."
msgstr ""
#: dlls/joy.cpl/joy.rc:72
msgid "XInput"
msgstr ""
#: dlls/joy.cpl/joy.rc:75
msgid "User #0"
msgstr ""
#: dlls/joy.cpl/joy.rc:76
msgid "User #1"
msgstr ""
#: dlls/joy.cpl/joy.rc:77
msgid "User #2"
msgstr ""
#: dlls/joy.cpl/joy.rc:78
msgid "User #3"
msgstr ""
#: dlls/joy.cpl/joy.rc:80
msgid ""
"No user detected on slot #0, make sure your gamepad is plugged in, and not "
"overriden for DInput in the Joysticks tab."
msgstr ""
#: dlls/joy.cpl/joy.rc:84
msgid ""
"No user detected on slot #1, make sure your gamepad is plugged in, and not "
"overriden for DInput in the Joysticks tab."
msgstr ""
#: dlls/joy.cpl/joy.rc:88
msgid ""
"No user detected on slot #2, make sure your gamepad is plugged in, and not "
"overriden for DInput in the Joysticks tab."
msgstr ""
#: dlls/joy.cpl/joy.rc:92
msgid ""
"No user detected on slot #3, make sure your gamepad is plugged in, and not "
"overriden for DInput in the Joysticks tab."
msgstr ""
#: dlls/joy.cpl/joy.rc:31
msgid "Game Controllers"
msgstr ""
...
...
po/pl.po
View file @
3f4a7990
...
...
@@ -3788,6 +3788,58 @@ msgstr ""
"Naciśnij jakikolwiek klawisz na kontrolerze, aby aktywować wybrany efekt. "
"Kierunek efektu może być zmieniony przy użyciu osi kontrolera."
#: dlls/joy.cpl/joy.rc:72
msgid "XInput"
msgstr ""
#: dlls/joy.cpl/joy.rc:75
#, fuzzy
#| msgid "User"
msgid "User #0"
msgstr "Użytkownik"
#: dlls/joy.cpl/joy.rc:76
#, fuzzy
#| msgid "User"
msgid "User #1"
msgstr "Użytkownik"
#: dlls/joy.cpl/joy.rc:77
#, fuzzy
#| msgid "User"
msgid "User #2"
msgstr "Użytkownik"
#: dlls/joy.cpl/joy.rc:78
#, fuzzy
#| msgid "User"
msgid "User #3"
msgstr "Użytkownik"
#: dlls/joy.cpl/joy.rc:80
msgid ""
"No user detected on slot #0, make sure your gamepad is plugged in, and not "
"overriden for DInput in the Joysticks tab."
msgstr ""
#: dlls/joy.cpl/joy.rc:84
msgid ""
"No user detected on slot #1, make sure your gamepad is plugged in, and not "
"overriden for DInput in the Joysticks tab."
msgstr ""
#: dlls/joy.cpl/joy.rc:88
msgid ""
"No user detected on slot #2, make sure your gamepad is plugged in, and not "
"overriden for DInput in the Joysticks tab."
msgstr ""
#: dlls/joy.cpl/joy.rc:92
msgid ""
"No user detected on slot #3, make sure your gamepad is plugged in, and not "
"overriden for DInput in the Joysticks tab."
msgstr ""
#: dlls/joy.cpl/joy.rc:31
msgid "Game Controllers"
msgstr "Kontrolery gier"
...
...
po/pt_BR.po
View file @
3f4a7990
...
...
@@ -3784,6 +3784,58 @@ msgstr ""
"Pressione qualquer botão no controle para ativar o efeito escolhido. A "
"direção do efeito pode ser alterada usando o direcional do controle."
#: dlls/joy.cpl/joy.rc:72
msgid "XInput"
msgstr ""
#: dlls/joy.cpl/joy.rc:75
#, fuzzy
#| msgid "User"
msgid "User #0"
msgstr "Usuário"
#: dlls/joy.cpl/joy.rc:76
#, fuzzy
#| msgid "User"
msgid "User #1"
msgstr "Usuário"
#: dlls/joy.cpl/joy.rc:77
#, fuzzy
#| msgid "User"
msgid "User #2"
msgstr "Usuário"
#: dlls/joy.cpl/joy.rc:78
#, fuzzy
#| msgid "User"
msgid "User #3"
msgstr "Usuário"
#: dlls/joy.cpl/joy.rc:80
msgid ""
"No user detected on slot #0, make sure your gamepad is plugged in, and not "
"overriden for DInput in the Joysticks tab."
msgstr ""
#: dlls/joy.cpl/joy.rc:84
msgid ""
"No user detected on slot #1, make sure your gamepad is plugged in, and not "
"overriden for DInput in the Joysticks tab."
msgstr ""
#: dlls/joy.cpl/joy.rc:88
msgid ""
"No user detected on slot #2, make sure your gamepad is plugged in, and not "
"overriden for DInput in the Joysticks tab."
msgstr ""
#: dlls/joy.cpl/joy.rc:92
msgid ""
"No user detected on slot #3, make sure your gamepad is plugged in, and not "
"overriden for DInput in the Joysticks tab."
msgstr ""
#: dlls/joy.cpl/joy.rc:31
msgid "Game Controllers"
msgstr "Controles de Jogos"
...
...
po/pt_PT.po
View file @
3f4a7990
...
...
@@ -3831,6 +3831,58 @@ msgstr ""
"Prima um botão qualquer do controlodor para activar o efeito escolhido. A "
"direção do efeito pode ser mudada com o eixo do controlador."
#: dlls/joy.cpl/joy.rc:72
msgid "XInput"
msgstr ""
#: dlls/joy.cpl/joy.rc:75
#, fuzzy
#| msgid "User"
msgid "User #0"
msgstr "Utilizador"
#: dlls/joy.cpl/joy.rc:76
#, fuzzy
#| msgid "User"
msgid "User #1"
msgstr "Utilizador"
#: dlls/joy.cpl/joy.rc:77
#, fuzzy
#| msgid "User"
msgid "User #2"
msgstr "Utilizador"
#: dlls/joy.cpl/joy.rc:78
#, fuzzy
#| msgid "User"
msgid "User #3"
msgstr "Utilizador"
#: dlls/joy.cpl/joy.rc:80
msgid ""
"No user detected on slot #0, make sure your gamepad is plugged in, and not "
"overriden for DInput in the Joysticks tab."
msgstr ""
#: dlls/joy.cpl/joy.rc:84
msgid ""
"No user detected on slot #1, make sure your gamepad is plugged in, and not "
"overriden for DInput in the Joysticks tab."
msgstr ""
#: dlls/joy.cpl/joy.rc:88
msgid ""
"No user detected on slot #2, make sure your gamepad is plugged in, and not "
"overriden for DInput in the Joysticks tab."
msgstr ""
#: dlls/joy.cpl/joy.rc:92
msgid ""
"No user detected on slot #3, make sure your gamepad is plugged in, and not "
"overriden for DInput in the Joysticks tab."
msgstr ""
#: dlls/joy.cpl/joy.rc:31
msgid "Game Controllers"
msgstr "Controladores de Jogo"
...
...
po/rm.po
View file @
3f4a7990
...
...
@@ -3710,6 +3710,50 @@ msgid ""
"direction can be changed with the controller axis."
msgstr ""
#: dlls/joy.cpl/joy.rc:72
msgid "XInput"
msgstr ""
#: dlls/joy.cpl/joy.rc:75
msgid "User #0"
msgstr ""
#: dlls/joy.cpl/joy.rc:76
msgid "User #1"
msgstr ""
#: dlls/joy.cpl/joy.rc:77
msgid "User #2"
msgstr ""
#: dlls/joy.cpl/joy.rc:78
msgid "User #3"
msgstr ""
#: dlls/joy.cpl/joy.rc:80
msgid ""
"No user detected on slot #0, make sure your gamepad is plugged in, and not "
"overriden for DInput in the Joysticks tab."
msgstr ""
#: dlls/joy.cpl/joy.rc:84
msgid ""
"No user detected on slot #1, make sure your gamepad is plugged in, and not "
"overriden for DInput in the Joysticks tab."
msgstr ""
#: dlls/joy.cpl/joy.rc:88
msgid ""
"No user detected on slot #2, make sure your gamepad is plugged in, and not "
"overriden for DInput in the Joysticks tab."
msgstr ""
#: dlls/joy.cpl/joy.rc:92
msgid ""
"No user detected on slot #3, make sure your gamepad is plugged in, and not "
"overriden for DInput in the Joysticks tab."
msgstr ""
#: dlls/joy.cpl/joy.rc:31
msgid "Game Controllers"
msgstr ""
...
...
po/ro.po
View file @
3f4a7990
...
...
@@ -3782,6 +3782,58 @@ msgid ""
"direction can be changed with the controller axis."
msgstr ""
#: dlls/joy.cpl/joy.rc:72
msgid "XInput"
msgstr ""
#: dlls/joy.cpl/joy.rc:75
#, fuzzy
#| msgid "User"
msgid "User #0"
msgstr "Utilizator"
#: dlls/joy.cpl/joy.rc:76
#, fuzzy
#| msgid "User"
msgid "User #1"
msgstr "Utilizator"
#: dlls/joy.cpl/joy.rc:77
#, fuzzy
#| msgid "User"
msgid "User #2"
msgstr "Utilizator"
#: dlls/joy.cpl/joy.rc:78
#, fuzzy
#| msgid "User"
msgid "User #3"
msgstr "Utilizator"
#: dlls/joy.cpl/joy.rc:80
msgid ""
"No user detected on slot #0, make sure your gamepad is plugged in, and not "
"overriden for DInput in the Joysticks tab."
msgstr ""
#: dlls/joy.cpl/joy.rc:84
msgid ""
"No user detected on slot #1, make sure your gamepad is plugged in, and not "
"overriden for DInput in the Joysticks tab."
msgstr ""
#: dlls/joy.cpl/joy.rc:88
msgid ""
"No user detected on slot #2, make sure your gamepad is plugged in, and not "
"overriden for DInput in the Joysticks tab."
msgstr ""
#: dlls/joy.cpl/joy.rc:92
msgid ""
"No user detected on slot #3, make sure your gamepad is plugged in, and not "
"overriden for DInput in the Joysticks tab."
msgstr ""
#: dlls/joy.cpl/joy.rc:31
#, fuzzy
#| msgid "Create Control"
...
...
po/ru.po
View file @
3f4a7990
...
...
@@ -3791,6 +3791,58 @@ msgstr ""
"Нажмите любую кнопку на контроллере, чтобы активировать выбранный эффект. "
"Направление эффекта может быть изменено с помощью осей контроллера."
#: dlls/joy.cpl/joy.rc:72
msgid "XInput"
msgstr ""
#: dlls/joy.cpl/joy.rc:75
#, fuzzy
#| msgid "User"
msgid "User #0"
msgstr "Имя"
#: dlls/joy.cpl/joy.rc:76
#, fuzzy
#| msgid "User"
msgid "User #1"
msgstr "Имя"
#: dlls/joy.cpl/joy.rc:77
#, fuzzy
#| msgid "User"
msgid "User #2"
msgstr "Имя"
#: dlls/joy.cpl/joy.rc:78
#, fuzzy
#| msgid "User"
msgid "User #3"
msgstr "Имя"
#: dlls/joy.cpl/joy.rc:80
msgid ""
"No user detected on slot #0, make sure your gamepad is plugged in, and not "
"overriden for DInput in the Joysticks tab."
msgstr ""
#: dlls/joy.cpl/joy.rc:84
msgid ""
"No user detected on slot #1, make sure your gamepad is plugged in, and not "
"overriden for DInput in the Joysticks tab."
msgstr ""
#: dlls/joy.cpl/joy.rc:88
msgid ""
"No user detected on slot #2, make sure your gamepad is plugged in, and not "
"overriden for DInput in the Joysticks tab."
msgstr ""
#: dlls/joy.cpl/joy.rc:92
msgid ""
"No user detected on slot #3, make sure your gamepad is plugged in, and not "
"overriden for DInput in the Joysticks tab."
msgstr ""
#: dlls/joy.cpl/joy.rc:31
msgid "Game Controllers"
msgstr "Игровые контроллеры"
...
...
po/si.po
View file @
3f4a7990
...
...
@@ -3714,6 +3714,58 @@ msgid ""
"direction can be changed with the controller axis."
msgstr ""
#: dlls/joy.cpl/joy.rc:72
msgid "XInput"
msgstr ""
#: dlls/joy.cpl/joy.rc:75
#, fuzzy
#| msgid "User"
msgid "User #0"
msgstr "පරිශීලකය"
#: dlls/joy.cpl/joy.rc:76
#, fuzzy
#| msgid "User"
msgid "User #1"
msgstr "පරිශීලකය"
#: dlls/joy.cpl/joy.rc:77
#, fuzzy
#| msgid "User"
msgid "User #2"
msgstr "පරිශීලකය"
#: dlls/joy.cpl/joy.rc:78
#, fuzzy
#| msgid "User"
msgid "User #3"
msgstr "පරිශීලකය"
#: dlls/joy.cpl/joy.rc:80
msgid ""
"No user detected on slot #0, make sure your gamepad is plugged in, and not "
"overriden for DInput in the Joysticks tab."
msgstr ""
#: dlls/joy.cpl/joy.rc:84
msgid ""
"No user detected on slot #1, make sure your gamepad is plugged in, and not "
"overriden for DInput in the Joysticks tab."
msgstr ""
#: dlls/joy.cpl/joy.rc:88
msgid ""
"No user detected on slot #2, make sure your gamepad is plugged in, and not "
"overriden for DInput in the Joysticks tab."
msgstr ""
#: dlls/joy.cpl/joy.rc:92
msgid ""
"No user detected on slot #3, make sure your gamepad is plugged in, and not "
"overriden for DInput in the Joysticks tab."
msgstr ""
#: dlls/joy.cpl/joy.rc:31
msgid "Game Controllers"
msgstr ""
...
...
po/sk.po
View file @
3f4a7990
...
...
@@ -3761,6 +3761,50 @@ msgid ""
"direction can be changed with the controller axis."
msgstr ""
#: dlls/joy.cpl/joy.rc:72
msgid "XInput"
msgstr ""
#: dlls/joy.cpl/joy.rc:75
msgid "User #0"
msgstr ""
#: dlls/joy.cpl/joy.rc:76
msgid "User #1"
msgstr ""
#: dlls/joy.cpl/joy.rc:77
msgid "User #2"
msgstr ""
#: dlls/joy.cpl/joy.rc:78
msgid "User #3"
msgstr ""
#: dlls/joy.cpl/joy.rc:80
msgid ""
"No user detected on slot #0, make sure your gamepad is plugged in, and not "
"overriden for DInput in the Joysticks tab."
msgstr ""
#: dlls/joy.cpl/joy.rc:84
msgid ""
"No user detected on slot #1, make sure your gamepad is plugged in, and not "
"overriden for DInput in the Joysticks tab."
msgstr ""
#: dlls/joy.cpl/joy.rc:88
msgid ""
"No user detected on slot #2, make sure your gamepad is plugged in, and not "
"overriden for DInput in the Joysticks tab."
msgstr ""
#: dlls/joy.cpl/joy.rc:92
msgid ""
"No user detected on slot #3, make sure your gamepad is plugged in, and not "
"overriden for DInput in the Joysticks tab."
msgstr ""
#: dlls/joy.cpl/joy.rc:31
msgid "Game Controllers"
msgstr ""
...
...
po/sl.po
View file @
3f4a7990
...
...
@@ -3849,6 +3849,58 @@ msgid ""
"direction can be changed with the controller axis."
msgstr ""
#: dlls/joy.cpl/joy.rc:72
msgid "XInput"
msgstr ""
#: dlls/joy.cpl/joy.rc:75
#, fuzzy
#| msgid "User"
msgid "User #0"
msgstr "Uporabniško ime"
#: dlls/joy.cpl/joy.rc:76
#, fuzzy
#| msgid "User"
msgid "User #1"
msgstr "Uporabniško ime"
#: dlls/joy.cpl/joy.rc:77
#, fuzzy
#| msgid "User"
msgid "User #2"
msgstr "Uporabniško ime"
#: dlls/joy.cpl/joy.rc:78
#, fuzzy
#| msgid "User"
msgid "User #3"
msgstr "Uporabniško ime"
#: dlls/joy.cpl/joy.rc:80
msgid ""
"No user detected on slot #0, make sure your gamepad is plugged in, and not "
"overriden for DInput in the Joysticks tab."
msgstr ""
#: dlls/joy.cpl/joy.rc:84
msgid ""
"No user detected on slot #1, make sure your gamepad is plugged in, and not "
"overriden for DInput in the Joysticks tab."
msgstr ""
#: dlls/joy.cpl/joy.rc:88
msgid ""
"No user detected on slot #2, make sure your gamepad is plugged in, and not "
"overriden for DInput in the Joysticks tab."
msgstr ""
#: dlls/joy.cpl/joy.rc:92
msgid ""
"No user detected on slot #3, make sure your gamepad is plugged in, and not "
"overriden for DInput in the Joysticks tab."
msgstr ""
#: dlls/joy.cpl/joy.rc:31
#, fuzzy
#| msgid "Create Control"
...
...
po/sr_RS@cyrillic.po
View file @
3f4a7990
...
...
@@ -3825,6 +3825,58 @@ msgid ""
"direction can be changed with the controller axis."
msgstr ""
#: dlls/joy.cpl/joy.rc:72
msgid "XInput"
msgstr ""
#: dlls/joy.cpl/joy.rc:75
#, fuzzy
#| msgid "User"
msgid "User #0"
msgstr "Корисничко име"
#: dlls/joy.cpl/joy.rc:76
#, fuzzy
#| msgid "User"
msgid "User #1"
msgstr "Корисничко име"
#: dlls/joy.cpl/joy.rc:77
#, fuzzy
#| msgid "User"
msgid "User #2"
msgstr "Корисничко име"
#: dlls/joy.cpl/joy.rc:78
#, fuzzy
#| msgid "User"
msgid "User #3"
msgstr "Корисничко име"
#: dlls/joy.cpl/joy.rc:80
msgid ""
"No user detected on slot #0, make sure your gamepad is plugged in, and not "
"overriden for DInput in the Joysticks tab."
msgstr ""
#: dlls/joy.cpl/joy.rc:84
msgid ""
"No user detected on slot #1, make sure your gamepad is plugged in, and not "
"overriden for DInput in the Joysticks tab."
msgstr ""
#: dlls/joy.cpl/joy.rc:88
msgid ""
"No user detected on slot #2, make sure your gamepad is plugged in, and not "
"overriden for DInput in the Joysticks tab."
msgstr ""
#: dlls/joy.cpl/joy.rc:92
msgid ""
"No user detected on slot #3, make sure your gamepad is plugged in, and not "
"overriden for DInput in the Joysticks tab."
msgstr ""
#: dlls/joy.cpl/joy.rc:31
#, fuzzy
#| msgid "Create Control"
...
...
po/sr_RS@latin.po
View file @
3f4a7990
...
...
@@ -3910,6 +3910,58 @@ msgid ""
"direction can be changed with the controller axis."
msgstr ""
#: dlls/joy.cpl/joy.rc:72
msgid "XInput"
msgstr ""
#: dlls/joy.cpl/joy.rc:75
#, fuzzy
#| msgid "User"
msgid "User #0"
msgstr "Korisničko ime"
#: dlls/joy.cpl/joy.rc:76
#, fuzzy
#| msgid "User"
msgid "User #1"
msgstr "Korisničko ime"
#: dlls/joy.cpl/joy.rc:77
#, fuzzy
#| msgid "User"
msgid "User #2"
msgstr "Korisničko ime"
#: dlls/joy.cpl/joy.rc:78
#, fuzzy
#| msgid "User"
msgid "User #3"
msgstr "Korisničko ime"
#: dlls/joy.cpl/joy.rc:80
msgid ""
"No user detected on slot #0, make sure your gamepad is plugged in, and not "
"overriden for DInput in the Joysticks tab."
msgstr ""
#: dlls/joy.cpl/joy.rc:84
msgid ""
"No user detected on slot #1, make sure your gamepad is plugged in, and not "
"overriden for DInput in the Joysticks tab."
msgstr ""
#: dlls/joy.cpl/joy.rc:88
msgid ""
"No user detected on slot #2, make sure your gamepad is plugged in, and not "
"overriden for DInput in the Joysticks tab."
msgstr ""
#: dlls/joy.cpl/joy.rc:92
msgid ""
"No user detected on slot #3, make sure your gamepad is plugged in, and not "
"overriden for DInput in the Joysticks tab."
msgstr ""
#: dlls/joy.cpl/joy.rc:31
#, fuzzy
#| msgid "Create Control"
...
...
po/sv.po
View file @
3f4a7990
...
...
@@ -3810,6 +3810,58 @@ msgstr ""
"Tryck på en knapp i kontrollen för att aktivera vald effekt. "
"Effektriktningen kan ändras med kontrollaxeln."
#: dlls/joy.cpl/joy.rc:72
msgid "XInput"
msgstr ""
#: dlls/joy.cpl/joy.rc:75
#, fuzzy
#| msgid "User"
msgid "User #0"
msgstr "Användare"
#: dlls/joy.cpl/joy.rc:76
#, fuzzy
#| msgid "User"
msgid "User #1"
msgstr "Användare"
#: dlls/joy.cpl/joy.rc:77
#, fuzzy
#| msgid "User"
msgid "User #2"
msgstr "Användare"
#: dlls/joy.cpl/joy.rc:78
#, fuzzy
#| msgid "User"
msgid "User #3"
msgstr "Användare"
#: dlls/joy.cpl/joy.rc:80
msgid ""
"No user detected on slot #0, make sure your gamepad is plugged in, and not "
"overriden for DInput in the Joysticks tab."
msgstr ""
#: dlls/joy.cpl/joy.rc:84
msgid ""
"No user detected on slot #1, make sure your gamepad is plugged in, and not "
"overriden for DInput in the Joysticks tab."
msgstr ""
#: dlls/joy.cpl/joy.rc:88
msgid ""
"No user detected on slot #2, make sure your gamepad is plugged in, and not "
"overriden for DInput in the Joysticks tab."
msgstr ""
#: dlls/joy.cpl/joy.rc:92
msgid ""
"No user detected on slot #3, make sure your gamepad is plugged in, and not "
"overriden for DInput in the Joysticks tab."
msgstr ""
#: dlls/joy.cpl/joy.rc:31
msgid "Game Controllers"
msgstr "Spelkontroller"
...
...
po/ta.po
View file @
3f4a7990
...
...
@@ -3647,6 +3647,50 @@ msgid ""
"direction can be changed with the controller axis."
msgstr ""
#: dlls/joy.cpl/joy.rc:72
msgid "XInput"
msgstr ""
#: dlls/joy.cpl/joy.rc:75
msgid "User #0"
msgstr ""
#: dlls/joy.cpl/joy.rc:76
msgid "User #1"
msgstr ""
#: dlls/joy.cpl/joy.rc:77
msgid "User #2"
msgstr ""
#: dlls/joy.cpl/joy.rc:78
msgid "User #3"
msgstr ""
#: dlls/joy.cpl/joy.rc:80
msgid ""
"No user detected on slot #0, make sure your gamepad is plugged in, and not "
"overriden for DInput in the Joysticks tab."
msgstr ""
#: dlls/joy.cpl/joy.rc:84
msgid ""
"No user detected on slot #1, make sure your gamepad is plugged in, and not "
"overriden for DInput in the Joysticks tab."
msgstr ""
#: dlls/joy.cpl/joy.rc:88
msgid ""
"No user detected on slot #2, make sure your gamepad is plugged in, and not "
"overriden for DInput in the Joysticks tab."
msgstr ""
#: dlls/joy.cpl/joy.rc:92
msgid ""
"No user detected on slot #3, make sure your gamepad is plugged in, and not "
"overriden for DInput in the Joysticks tab."
msgstr ""
#: dlls/joy.cpl/joy.rc:31
msgid "Game Controllers"
msgstr ""
...
...
po/te.po
View file @
3f4a7990
...
...
@@ -3681,6 +3681,50 @@ msgid ""
"direction can be changed with the controller axis."
msgstr ""
#: dlls/joy.cpl/joy.rc:72
msgid "XInput"
msgstr ""
#: dlls/joy.cpl/joy.rc:75
msgid "User #0"
msgstr ""
#: dlls/joy.cpl/joy.rc:76
msgid "User #1"
msgstr ""
#: dlls/joy.cpl/joy.rc:77
msgid "User #2"
msgstr ""
#: dlls/joy.cpl/joy.rc:78
msgid "User #3"
msgstr ""
#: dlls/joy.cpl/joy.rc:80
msgid ""
"No user detected on slot #0, make sure your gamepad is plugged in, and not "
"overriden for DInput in the Joysticks tab."
msgstr ""
#: dlls/joy.cpl/joy.rc:84
msgid ""
"No user detected on slot #1, make sure your gamepad is plugged in, and not "
"overriden for DInput in the Joysticks tab."
msgstr ""
#: dlls/joy.cpl/joy.rc:88
msgid ""
"No user detected on slot #2, make sure your gamepad is plugged in, and not "
"overriden for DInput in the Joysticks tab."
msgstr ""
#: dlls/joy.cpl/joy.rc:92
msgid ""
"No user detected on slot #3, make sure your gamepad is plugged in, and not "
"overriden for DInput in the Joysticks tab."
msgstr ""
#: dlls/joy.cpl/joy.rc:31
msgid "Game Controllers"
msgstr ""
...
...
po/th.po
View file @
3f4a7990
...
...
@@ -3739,6 +3739,50 @@ msgid ""
"direction can be changed with the controller axis."
msgstr ""
#: dlls/joy.cpl/joy.rc:72
msgid "XInput"
msgstr ""
#: dlls/joy.cpl/joy.rc:75
msgid "User #0"
msgstr ""
#: dlls/joy.cpl/joy.rc:76
msgid "User #1"
msgstr ""
#: dlls/joy.cpl/joy.rc:77
msgid "User #2"
msgstr ""
#: dlls/joy.cpl/joy.rc:78
msgid "User #3"
msgstr ""
#: dlls/joy.cpl/joy.rc:80
msgid ""
"No user detected on slot #0, make sure your gamepad is plugged in, and not "
"overriden for DInput in the Joysticks tab."
msgstr ""
#: dlls/joy.cpl/joy.rc:84
msgid ""
"No user detected on slot #1, make sure your gamepad is plugged in, and not "
"overriden for DInput in the Joysticks tab."
msgstr ""
#: dlls/joy.cpl/joy.rc:88
msgid ""
"No user detected on slot #2, make sure your gamepad is plugged in, and not "
"overriden for DInput in the Joysticks tab."
msgstr ""
#: dlls/joy.cpl/joy.rc:92
msgid ""
"No user detected on slot #3, make sure your gamepad is plugged in, and not "
"overriden for DInput in the Joysticks tab."
msgstr ""
#: dlls/joy.cpl/joy.rc:31
#, fuzzy
msgid "Game Controllers"
...
...
po/tr.po
View file @
3f4a7990
...
...
@@ -3784,6 +3784,58 @@ msgstr ""
"Seçili efekti etkinleştirmek için denetleyicide bir tuşa basın. Efekt yönü "
"denetleyici ekseni ile değiştirilebilir."
#: dlls/joy.cpl/joy.rc:72
msgid "XInput"
msgstr ""
#: dlls/joy.cpl/joy.rc:75
#, fuzzy
#| msgid "User"
msgid "User #0"
msgstr "Kullanıcı"
#: dlls/joy.cpl/joy.rc:76
#, fuzzy
#| msgid "User"
msgid "User #1"
msgstr "Kullanıcı"
#: dlls/joy.cpl/joy.rc:77
#, fuzzy
#| msgid "User"
msgid "User #2"
msgstr "Kullanıcı"
#: dlls/joy.cpl/joy.rc:78
#, fuzzy
#| msgid "User"
msgid "User #3"
msgstr "Kullanıcı"
#: dlls/joy.cpl/joy.rc:80
msgid ""
"No user detected on slot #0, make sure your gamepad is plugged in, and not "
"overriden for DInput in the Joysticks tab."
msgstr ""
#: dlls/joy.cpl/joy.rc:84
msgid ""
"No user detected on slot #1, make sure your gamepad is plugged in, and not "
"overriden for DInput in the Joysticks tab."
msgstr ""
#: dlls/joy.cpl/joy.rc:88
msgid ""
"No user detected on slot #2, make sure your gamepad is plugged in, and not "
"overriden for DInput in the Joysticks tab."
msgstr ""
#: dlls/joy.cpl/joy.rc:92
msgid ""
"No user detected on slot #3, make sure your gamepad is plugged in, and not "
"overriden for DInput in the Joysticks tab."
msgstr ""
#: dlls/joy.cpl/joy.rc:31
msgid "Game Controllers"
msgstr "Oyun Denetleyicileri"
...
...
po/uk.po
View file @
3f4a7990
...
...
@@ -3775,6 +3775,58 @@ msgstr ""
"Натисніть будь-яку клавішу контролера щоб активувати обраний ефект. Напрямок "
"ефекту можна змінити віссю контролера."
#: dlls/joy.cpl/joy.rc:72
msgid "XInput"
msgstr ""
#: dlls/joy.cpl/joy.rc:75
#, fuzzy
#| msgid "User"
msgid "User #0"
msgstr "Користувач"
#: dlls/joy.cpl/joy.rc:76
#, fuzzy
#| msgid "User"
msgid "User #1"
msgstr "Користувач"
#: dlls/joy.cpl/joy.rc:77
#, fuzzy
#| msgid "User"
msgid "User #2"
msgstr "Користувач"
#: dlls/joy.cpl/joy.rc:78
#, fuzzy
#| msgid "User"
msgid "User #3"
msgstr "Користувач"
#: dlls/joy.cpl/joy.rc:80
msgid ""
"No user detected on slot #0, make sure your gamepad is plugged in, and not "
"overriden for DInput in the Joysticks tab."
msgstr ""
#: dlls/joy.cpl/joy.rc:84
msgid ""
"No user detected on slot #1, make sure your gamepad is plugged in, and not "
"overriden for DInput in the Joysticks tab."
msgstr ""
#: dlls/joy.cpl/joy.rc:88
msgid ""
"No user detected on slot #2, make sure your gamepad is plugged in, and not "
"overriden for DInput in the Joysticks tab."
msgstr ""
#: dlls/joy.cpl/joy.rc:92
msgid ""
"No user detected on slot #3, make sure your gamepad is plugged in, and not "
"overriden for DInput in the Joysticks tab."
msgstr ""
#: dlls/joy.cpl/joy.rc:31
msgid "Game Controllers"
msgstr "Ігрові Контролери"
...
...
po/wa.po
View file @
3f4a7990
...
...
@@ -3745,6 +3745,50 @@ msgid ""
"direction can be changed with the controller axis."
msgstr ""
#: dlls/joy.cpl/joy.rc:72
msgid "XInput"
msgstr ""
#: dlls/joy.cpl/joy.rc:75
msgid "User #0"
msgstr ""
#: dlls/joy.cpl/joy.rc:76
msgid "User #1"
msgstr ""
#: dlls/joy.cpl/joy.rc:77
msgid "User #2"
msgstr ""
#: dlls/joy.cpl/joy.rc:78
msgid "User #3"
msgstr ""
#: dlls/joy.cpl/joy.rc:80
msgid ""
"No user detected on slot #0, make sure your gamepad is plugged in, and not "
"overriden for DInput in the Joysticks tab."
msgstr ""
#: dlls/joy.cpl/joy.rc:84
msgid ""
"No user detected on slot #1, make sure your gamepad is plugged in, and not "
"overriden for DInput in the Joysticks tab."
msgstr ""
#: dlls/joy.cpl/joy.rc:88
msgid ""
"No user detected on slot #2, make sure your gamepad is plugged in, and not "
"overriden for DInput in the Joysticks tab."
msgstr ""
#: dlls/joy.cpl/joy.rc:92
msgid ""
"No user detected on slot #3, make sure your gamepad is plugged in, and not "
"overriden for DInput in the Joysticks tab."
msgstr ""
#: dlls/joy.cpl/joy.rc:31
msgid "Game Controllers"
msgstr ""
...
...
po/wine.pot
View file @
3f4a7990
...
...
@@ -3636,6 +3636,50 @@ msgid ""
"direction can be changed with the controller axis."
msgstr ""
#: dlls/joy.cpl/joy.rc:72
msgid "XInput"
msgstr ""
#: dlls/joy.cpl/joy.rc:75
msgid "User #0"
msgstr ""
#: dlls/joy.cpl/joy.rc:76
msgid "User #1"
msgstr ""
#: dlls/joy.cpl/joy.rc:77
msgid "User #2"
msgstr ""
#: dlls/joy.cpl/joy.rc:78
msgid "User #3"
msgstr ""
#: dlls/joy.cpl/joy.rc:80
msgid ""
"No user detected on slot #0, make sure your gamepad is plugged in, and not "
"overriden for DInput in the Joysticks tab."
msgstr ""
#: dlls/joy.cpl/joy.rc:84
msgid ""
"No user detected on slot #1, make sure your gamepad is plugged in, and not "
"overriden for DInput in the Joysticks tab."
msgstr ""
#: dlls/joy.cpl/joy.rc:88
msgid ""
"No user detected on slot #2, make sure your gamepad is plugged in, and not "
"overriden for DInput in the Joysticks tab."
msgstr ""
#: dlls/joy.cpl/joy.rc:92
msgid ""
"No user detected on slot #3, make sure your gamepad is plugged in, and not "
"overriden for DInput in the Joysticks tab."
msgstr ""
#: dlls/joy.cpl/joy.rc:31
msgid "Game Controllers"
msgstr ""
...
...
po/zh_CN.po
View file @
3f4a7990
...
...
@@ -3719,6 +3719,58 @@ msgid ""
"direction can be changed with the controller axis."
msgstr "在控制器上按任意键以激活选中的效果。可根据控制器轴改变效果的方向。"
#: dlls/joy.cpl/joy.rc:72
msgid "XInput"
msgstr ""
#: dlls/joy.cpl/joy.rc:75
#, fuzzy
#| msgid "User"
msgid "User #0"
msgstr "用户名"
#: dlls/joy.cpl/joy.rc:76
#, fuzzy
#| msgid "User"
msgid "User #1"
msgstr "用户名"
#: dlls/joy.cpl/joy.rc:77
#, fuzzy
#| msgid "User"
msgid "User #2"
msgstr "用户名"
#: dlls/joy.cpl/joy.rc:78
#, fuzzy
#| msgid "User"
msgid "User #3"
msgstr "用户名"
#: dlls/joy.cpl/joy.rc:80
msgid ""
"No user detected on slot #0, make sure your gamepad is plugged in, and not "
"overriden for DInput in the Joysticks tab."
msgstr ""
#: dlls/joy.cpl/joy.rc:84
msgid ""
"No user detected on slot #1, make sure your gamepad is plugged in, and not "
"overriden for DInput in the Joysticks tab."
msgstr ""
#: dlls/joy.cpl/joy.rc:88
msgid ""
"No user detected on slot #2, make sure your gamepad is plugged in, and not "
"overriden for DInput in the Joysticks tab."
msgstr ""
#: dlls/joy.cpl/joy.rc:92
msgid ""
"No user detected on slot #3, make sure your gamepad is plugged in, and not "
"overriden for DInput in the Joysticks tab."
msgstr ""
#: dlls/joy.cpl/joy.rc:31
msgid "Game Controllers"
msgstr "游戏控制器"
...
...
po/zh_TW.po
View file @
3f4a7990
...
...
@@ -3723,6 +3723,58 @@ msgstr ""
"請按下控制器中的任何按鈕以啟用所選的效果。效果的方向可以利用控制器的軸向來變"
"更。"
#: dlls/joy.cpl/joy.rc:72
msgid "XInput"
msgstr ""
#: dlls/joy.cpl/joy.rc:75
#, fuzzy
#| msgid "User"
msgid "User #0"
msgstr "使用者"
#: dlls/joy.cpl/joy.rc:76
#, fuzzy
#| msgid "User"
msgid "User #1"
msgstr "使用者"
#: dlls/joy.cpl/joy.rc:77
#, fuzzy
#| msgid "User"
msgid "User #2"
msgstr "使用者"
#: dlls/joy.cpl/joy.rc:78
#, fuzzy
#| msgid "User"
msgid "User #3"
msgstr "使用者"
#: dlls/joy.cpl/joy.rc:80
msgid ""
"No user detected on slot #0, make sure your gamepad is plugged in, and not "
"overriden for DInput in the Joysticks tab."
msgstr ""
#: dlls/joy.cpl/joy.rc:84
msgid ""
"No user detected on slot #1, make sure your gamepad is plugged in, and not "
"overriden for DInput in the Joysticks tab."
msgstr ""
#: dlls/joy.cpl/joy.rc:88
msgid ""
"No user detected on slot #2, make sure your gamepad is plugged in, and not "
"overriden for DInput in the Joysticks tab."
msgstr ""
#: dlls/joy.cpl/joy.rc:92
msgid ""
"No user detected on slot #3, make sure your gamepad is plugged in, and not "
"overriden for DInput in the Joysticks tab."
msgstr ""
#: dlls/joy.cpl/joy.rc:31
msgid "Game Controllers"
msgstr "遊戲控制器"
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment