Commit 3f4a7990 authored by Rémi Bernon's avatar Rémi Bernon Committed by Alexandre Julliard

joy.cpl: Add a new xinput controller test tab.

parent efe01bc7
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
......
......@@ -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 */
......
/*
* 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 */
......@@ -34,7 +34,7 @@
#include "wine/debug.h"
#include "wine/list.h"
#include "resource.h"
#include "joy_private.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 =
{
......
......@@ -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
/*
* 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;
}
......@@ -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 "متحكمات الألعاب"
......
......@@ -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 ""
......
......@@ -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"
......
......@@ -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"
......
......@@ -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"
......
......@@ -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"
......
......@@ -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"
......
......@@ -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"
......
......@@ -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"
......
......@@ -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"
......
......@@ -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"
......
......@@ -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"
......
......@@ -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"
......
......@@ -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"
......
......@@ -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"
......
......@@ -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"
......
......@@ -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 ""
......
......@@ -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"
......
......@@ -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"
......
......@@ -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"
......
......@@ -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 "ゲーム コントローラー"
......
......@@ -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 "게임 컨트롤러"
......
......@@ -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"
......
......@@ -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 ""
......
......@@ -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"
......
......@@ -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"
......
......@@ -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 ""
......
......@@ -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 ""
......
......@@ -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"
......
......@@ -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"
......
......@@ -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"
......
......@@ -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 ""
......
......@@ -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"
......
......@@ -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 "Игровые контроллеры"
......
......@@ -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 ""
......
......@@ -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 ""
......
......@@ -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"
......
......@@ -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"
......
......@@ -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"
......
......@@ -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"
......
......@@ -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 ""
......
......@@ -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 ""
......
......@@ -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"
......
......@@ -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"
......
......@@ -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 "Ігрові Контролери"
......
......@@ -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 ""
......
......@@ -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 ""
......
......@@ -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 "游戏控制器"
......
......@@ -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 "遊戲控制器"
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment