joy.cpl: Draw dinput axes state with gdi32.

This commit is contained in:
Rémi Bernon 2022-11-27 23:35:23 +01:00 committed by Alexandre Julliard
parent 792babb282
commit e67b943983
54 changed files with 1327 additions and 788 deletions

View file

@ -19,6 +19,7 @@
#include <stdarg.h>
#include <stddef.h>
#include <math.h>
#include "windef.h"
#include "winbase.h"
@ -68,6 +69,104 @@ static void get_device_state( DIJOYSTATE *state, DIDEVCAPS *caps )
LeaveCriticalSection( &state_cs );
}
static void draw_axis_view( HDC hdc, RECT rect, const WCHAR *name, LONG value )
{
POINT center =
{
.x = (rect.left + rect.right) / 2 + 10,
.y = (rect.top + rect.bottom) / 2,
};
LONG w = (rect.bottom - rect.top + 1) / 3;
LONG x = rect.left + 20 + (w + 1) / 2 + MulDiv( value, rect.right - rect.left - 20 - w, 0xffff );
COLORREF color;
HFONT font;
FillRect( hdc, &rect, (HBRUSH)(COLOR_WINDOW + 1) );
color = SetTextColor( hdc, GetSysColor( COLOR_WINDOWTEXT ) );
font = SelectObject( hdc, GetStockObject( ANSI_VAR_FONT ) );
DrawTextW( hdc, name, -1, &rect, DT_LEFT | DT_VCENTER | DT_SINGLELINE | DT_NOCLIP );
SetTextColor( hdc, color );
SelectObject( hdc, font );
SetDCBrushColor( hdc, GetSysColor( COLOR_WINDOW ) );
SetDCPenColor( hdc, GetSysColor( COLOR_WINDOWFRAME ) );
SelectObject( hdc, GetStockObject( DC_BRUSH ) );
SelectObject( hdc, GetStockObject( DC_PEN ) );
RoundRect( hdc, rect.left + 20, rect.top, rect.right, rect.bottom, 5, 5 );
if (x < center.x)
{
MoveToEx( hdc, center.x, center.y - 3, NULL );
LineTo( hdc, center.x, center.y + 3 );
}
SetDCBrushColor( hdc, GetSysColor( COLOR_HIGHLIGHT ) );
SetDCPenColor( hdc, GetSysColor( COLOR_HIGHLIGHTTEXT ) );
Rectangle( hdc, rect.left + 20, rect.top + w, x, rect.bottom - w );
if (x > center.x)
{
MoveToEx( hdc, center.x, center.y - 3, NULL );
LineTo( hdc, center.x, center.y + 3 );
}
}
static void draw_pov_view( HDC hdc, RECT rect, DWORD value )
{
POINT points[] =
{
/* 0° */
{.x = round( rect.left * 0.71 + rect.right * 0.29 ), .y = round( rect.top * 1.00 + rect.bottom * 0.00 )},
{.x = round( rect.left * 0.50 + rect.right * 0.50 ), .y = round( rect.top * 0.50 + rect.bottom * 0.50 )},
/* 45° */
{.x = round( rect.left * 0.29 + rect.right * 0.71 ), .y = round( rect.top * 1.00 + rect.bottom * 0.00 )},
{.x = round( rect.left * 0.50 + rect.right * 0.50 ), .y = round( rect.top * 0.50 + rect.bottom * 0.50 )},
/* 90° */
{.x = round( rect.left * 0.00 + rect.right * 1.00 ), .y = round( rect.top * 0.71 + rect.bottom * 0.29 )},
{.x = round( rect.left * 0.50 + rect.right * 0.50 ), .y = round( rect.top * 0.50 + rect.bottom * 0.50 )},
/* 135° */
{.x = round( rect.left * 0.00 + rect.right * 1.00 ), .y = round( rect.top * 0.29 + rect.bottom * 0.71 )},
{.x = round( rect.left * 0.50 + rect.right * 0.50 ), .y = round( rect.top * 0.50 + rect.bottom * 0.50 )},
/* 180° */
{.x = round( rect.left * 0.29 + rect.right * 0.71 ), .y = round( rect.top * 0.00 + rect.bottom * 1.00 )},
{.x = round( rect.left * 0.50 + rect.right * 0.50 ), .y = round( rect.top * 0.50 + rect.bottom * 0.50 )},
/* 225° */
{.x = round( rect.left * 0.71 + rect.right * 0.29 ), .y = round( rect.top * 0.00 + rect.bottom * 1.00 )},
{.x = round( rect.left * 0.50 + rect.right * 0.50 ), .y = round( rect.top * 0.50 + rect.bottom * 0.50 )},
/* 270° */
{.x = round( rect.left * 1.00 + rect.right * 0.00 ), .y = round( rect.top * 0.29 + rect.bottom * 0.71 )},
{.x = round( rect.left * 0.50 + rect.right * 0.50 ), .y = round( rect.top * 0.50 + rect.bottom * 0.50 )},
/* 315° */
{.x = round( rect.left * 1.00 + rect.right * 0.00 ), .y = round( rect.top * 0.71 + rect.bottom * 0.29 )},
{.x = round( rect.left * 0.50 + rect.right * 0.50 ), .y = round( rect.top * 0.50 + rect.bottom * 0.50 )},
/* 360° */
{.x = round( rect.left * 0.71 + rect.right * 0.29 ), .y = round( rect.top * 1.00 + rect.bottom * 0.00 )},
{.x = round( rect.left * 0.50 + rect.right * 0.50 ), .y = round( rect.top * 0.50 + rect.bottom * 0.50 )},
{.x = round( rect.left * 0.71 + rect.right * 0.29 ), .y = round( rect.top * 1.00 + rect.bottom * 0.00 )},
};
DWORD i;
FillRect( hdc, &rect, (HBRUSH)(COLOR_WINDOW + 1) );
SetDCBrushColor( hdc, GetSysColor( COLOR_WINDOW ) );
SetDCPenColor( hdc, GetSysColor( COLOR_WINDOWFRAME ) );
SelectObject( hdc, GetStockObject( DC_BRUSH ) );
SelectObject( hdc, GetStockObject( DC_PEN ) );
for (i = 0; i < ARRAY_SIZE(points) - 1; i += 2)
{
MoveToEx( hdc, (points[i].x + points[i + 1].x) / 2, (points[i].y + points[i + 1].y) / 2, NULL );
LineTo( hdc, points[i].x, points[i].y );
}
SetDCPenColor( hdc, GetSysColor( (value != -1) ? COLOR_HIGHLIGHTTEXT : COLOR_WINDOWFRAME ) );
SetDCBrushColor( hdc, GetSysColor( (value != -1) ? COLOR_HIGHLIGHT : COLOR_WINDOW ) );
if (value != -1) Polygon( hdc, points + value / 4500 * 2, 3 );
}
static inline void draw_button_view( HDC hdc, RECT rect, BOOL set, const WCHAR *name )
{
COLORREF color;
@ -92,6 +191,103 @@ static inline void draw_button_view( HDC hdc, RECT rect, BOOL set, const WCHAR *
SelectObject( hdc, font );
}
LRESULT CALLBACK test_di_axes_window_proc( HWND hwnd, UINT msg, WPARAM wparam, LPARAM lparam )
{
TRACE( "hwnd %p, msg %#x, wparam %#Ix, lparam %#Ix\n", hwnd, msg, wparam, lparam );
if (msg == WM_PAINT)
{
RECT rect, tmp_rect;
PAINTSTRUCT paint;
DIJOYSTATE state;
DIDEVCAPS caps;
HDC hdc;
get_device_state( &state, &caps );
hdc = BeginPaint( hwnd, &paint );
GetClientRect( hwnd, &rect );
rect.bottom = rect.top + (rect.bottom - rect.top - 2) / 4 - 2;
rect.right = rect.left + (rect.right - rect.left) / 2 - 10;
OffsetRect( &rect, 5, 2 );
draw_axis_view( hdc, rect, L"X", state.lX );
tmp_rect = rect;
OffsetRect( &rect, rect.right - rect.left + 10, 0 );
draw_axis_view( hdc, rect, L"Rx", state.lRx );
rect = tmp_rect;
OffsetRect( &rect, 0, rect.bottom - rect.top + 2 );
draw_axis_view( hdc, rect, L"Y", state.lY );
tmp_rect = rect;
OffsetRect( &rect, rect.right - rect.left + 10, 0 );
draw_axis_view( hdc, rect, L"Ry", state.lRy );
rect = tmp_rect;
OffsetRect( &rect, 0, rect.bottom - rect.top + 2 );
draw_axis_view( hdc, rect, L"Z", state.lZ );
tmp_rect = rect;
OffsetRect( &rect, rect.right - rect.left + 10, 0 );
draw_axis_view( hdc, rect, L"Rz", state.lRz );
rect = tmp_rect;
OffsetRect( &rect, 0, rect.bottom - rect.top + 2 );
draw_axis_view( hdc, rect, L"S", state.rglSlider[0] );
tmp_rect = rect;
OffsetRect( &rect, rect.right - rect.left + 10, 0 );
draw_axis_view( hdc, rect, L"Rs", state.rglSlider[1] );
rect = tmp_rect;
EndPaint( hwnd, &paint );
return 0;
}
return DefWindowProcW( hwnd, msg, wparam, lparam );
}
LRESULT CALLBACK test_di_povs_window_proc( HWND hwnd, UINT msg, WPARAM wparam, LPARAM lparam )
{
TRACE( "hwnd %p, msg %#x, wparam %#Ix, lparam %#Ix\n", hwnd, msg, wparam, lparam );
if (msg == WM_PAINT)
{
PAINTSTRUCT paint;
DIJOYSTATE state;
DIDEVCAPS caps;
RECT rect;
HDC hdc;
get_device_state( &state, &caps );
hdc = BeginPaint( hwnd, &paint );
GetClientRect( hwnd, &rect );
rect.bottom = rect.top + (rect.bottom - rect.top - 5) / 2 - 5;
rect.right = rect.left + (rect.bottom - rect.top);
OffsetRect( &rect, 5, 5 );
draw_pov_view( hdc, rect, state.rgdwPOV[0] );
OffsetRect( &rect, rect.right - rect.left + 5, 0 );
draw_pov_view( hdc, rect, state.rgdwPOV[1] );
OffsetRect( &rect, rect.left - rect.right - 5, rect.bottom - rect.top + 5 );
draw_pov_view( hdc, rect, state.rgdwPOV[1] );
OffsetRect( &rect, rect.right - rect.left + 5, 0 );
draw_pov_view( hdc, rect, state.rgdwPOV[2] );
EndPaint( hwnd, &paint );
return 0;
}
return DefWindowProcW( hwnd, msg, wparam, lparam );
}
LRESULT CALLBACK test_di_buttons_window_proc( HWND hwnd, UINT msg, WPARAM wparam, LPARAM lparam )
{
TRACE( "hwnd %p, msg %#x, wparam %#Ix, lparam %#Ix\n", hwnd, msg, wparam, lparam );

View file

@ -55,10 +55,8 @@ CAPTION "DInput"
FONT 8, "Ms Shell Dlg"
{
COMBOBOX IDC_DI_DEVICES, 15, 10, 291, 60, CBS_DROPDOWNLIST | CBS_HASSTRINGS
GROUPBOX "", IDC_DI_AXIS_X_Y, 15, 30, 60, 60
GROUPBOX "", IDC_DI_AXIS_RX_RY, 92, 30, 60, 60
GROUPBOX "", IDC_DI_AXIS_Z_RZ, 169, 30, 60, 60
GROUPBOX "", IDC_DI_AXIS_POV_0, 246, 30, 60, 60
GROUPBOX "Axes", IDC_DI_AXES, 15, 30, 214, 60
GROUPBOX "POVs", IDC_DI_POVS, 246, 30, 60, 60
GROUPBOX "Buttons", IDC_DI_BUTTONS, 15, 100, 291, 70
LTEXT "Force Feedback Effect", IDC_STATIC, 15, 180, 291, 10
LISTBOX IDC_DI_EFFECTS, 15, 190, 291, 70, WS_TABSTOP | WS_VSCROLL | LBS_NOTIFY

View file

@ -31,6 +31,8 @@
#include "resource.h"
extern void set_di_device_state( HWND hwnd, DIJOYSTATE *state, DIDEVCAPS *caps );
extern LRESULT CALLBACK test_di_axes_window_proc( HWND hwnd, UINT msg, WPARAM wparam, LPARAM lparam );
extern LRESULT CALLBACK test_di_povs_window_proc( HWND hwnd, UINT msg, WPARAM wparam, LPARAM lparam );
extern LRESULT CALLBACK test_di_buttons_window_proc( HWND hwnd, UINT msg, WPARAM wparam, LPARAM lparam );
extern INT_PTR CALLBACK test_xi_dialog_proc( HWND hwnd, UINT msg, WPARAM wparam, LPARAM lparam );

View file

@ -39,17 +39,8 @@
WINE_DEFAULT_DEBUG_CHANNEL(joycpl);
#define TEST_MAX_BUTTONS 32
#define TEST_MAX_AXES 4
#define TEST_POLL_TIME 100
#define TEST_AXIS_X 43
#define TEST_AXIS_Y 60
#define TEST_NEXT_AXIS_X 77
#define TEST_AXIS_SIZE_X 3
#define TEST_AXIS_SIZE_Y 3
#define TEST_AXIS_MIN -25
#define TEST_AXIS_MAX 25
#define FF_PLAY_TIME 2*DI_SECONDS
#define FF_PERIOD_TIME FF_PLAY_TIME/4
@ -68,7 +59,6 @@ struct device
struct Graphics
{
HWND hwnd;
HWND axes[TEST_MAX_AXES];
};
struct JoystickData
@ -245,25 +235,14 @@ static BOOL CALLBACK enum_devices( const DIDEVICEINSTANCEW *instance, void *cont
{
DIDEVCAPS caps = {.dwSize = sizeof(DIDEVCAPS)};
struct JoystickData *data = context;
DIPROPRANGE proprange;
struct device *entry;
if (!(entry = calloc( 1, sizeof(*entry) ))) return DIENUM_STOP;
IDirectInput8_CreateDevice( data->di, &instance->guidInstance, &entry->device, NULL );
IDirectInputDevice8_SetDataFormat( entry->device, &c_dfDIJoystick );
IDirectInputDevice8_GetCapabilities( entry->device, &caps );
/* Set axis range to ease the GUI visualization */
proprange.diph.dwSize = sizeof(DIPROPRANGE);
proprange.diph.dwHeaderSize = sizeof(DIPROPHEADER);
proprange.diph.dwHow = DIPH_DEVICE;
proprange.diph.dwObj = 0;
proprange.lMin = TEST_AXIS_MIN;
proprange.lMax = TEST_AXIS_MAX;
IDirectInputDevice_SetProperty( entry->device, DIPROP_RANGE, &proprange.diph );
list_add_tail( &devices, &entry->entry );
return DIENUM_CONTINUE;
@ -595,28 +574,14 @@ static void dump_joy_state(DIJOYSTATE* st)
static DWORD WINAPI input_thread(void *param)
{
int axes_pos[TEST_MAX_AXES][2];
struct JoystickData *data = param;
/* Setup POV as clock positions
* 0
* 31500 4500
* 27000 -1 9000
* 22500 13500
* 18000
*/
int ma = TEST_AXIS_MAX;
int pov_val[9] = {0, 4500, 9000, 13500,
18000, 22500, 27000, 31500, -1};
int pov_pos[9][2] = { {0, -ma}, {ma/2, -ma/2}, {ma, 0}, {ma/2, ma/2},
{0, ma}, {-ma/2, ma/2}, {-ma, 0}, {-ma/2, -ma/2}, {0, 0} };
while (!data->stop)
{
IDirectInputDevice8W *device;
IDirectInputEffect *effect;
DIJOYSTATE state = {0};
unsigned int i, j;
unsigned int i;
if (WaitForSingleObject( device_state_event, TEST_POLL_TIME ) == WAIT_TIMEOUT) continue;
@ -630,36 +595,6 @@ static DWORD WINAPI input_thread(void *param)
dump_joy_state(&state);
set_di_device_state( data->di_dialog_hwnd, &state, &caps );
/* Indicate axis positions, axes showing are hardcoded for now */
axes_pos[0][0] = state.lX;
axes_pos[0][1] = state.lY;
axes_pos[1][0] = state.lRx;
axes_pos[1][1] = state.lRy;
axes_pos[2][0] = state.lZ;
axes_pos[2][1] = state.lRz;
/* Set pov values */
for (j = 0; j < ARRAY_SIZE(pov_val); j++)
{
if (state.rgdwPOV[0] == pov_val[j])
{
axes_pos[3][0] = pov_pos[j][0];
axes_pos[3][1] = pov_pos[j][1];
}
}
for (i = 0; i < TEST_MAX_AXES; i++)
{
RECT r;
r.left = (TEST_AXIS_X + TEST_NEXT_AXIS_X*i + axes_pos[i][0]);
r.top = (TEST_AXIS_Y + axes_pos[i][1]);
r.bottom = r.right = 0; /* unused */
MapDialogRect(data->graphics.hwnd, &r);
SetWindowPos(data->graphics.axes[i], 0, r.left, r.top, 0, 0, SWP_NOZORDER | SWP_NOSIZE);
}
}
if ((effect = get_selected_effect()))
@ -770,31 +705,6 @@ static void ff_handle_effectchange( HWND hwnd )
}
}
static void draw_joystick_axes(HWND hwnd, struct JoystickData* data)
{
static const WCHAR *axes_names[TEST_MAX_AXES] = {L"X,Y", L"Rx,Ry", L"Z,Rz", L"POV"};
static const DWORD axes_idc[TEST_MAX_AXES] = {IDC_DI_AXIS_X_Y, IDC_DI_AXIS_RX_RY, IDC_DI_AXIS_Z_RZ, IDC_DI_AXIS_POV_0};
int i;
HINSTANCE hinst = (HINSTANCE) GetWindowLongPtrW(hwnd, GWLP_HINSTANCE);
for (i = 0; i < TEST_MAX_AXES; i++)
{
RECT r;
/* Set axis box name */
SetWindowTextW(GetDlgItem(hwnd, axes_idc[i]), axes_names[i]);
r.left = (TEST_AXIS_X + TEST_NEXT_AXIS_X*i);
r.top = TEST_AXIS_Y;
r.right = r.left + TEST_AXIS_SIZE_X;
r.bottom = r.top + TEST_AXIS_SIZE_Y;
MapDialogRect(hwnd, &r);
data->graphics.axes[i] = CreateWindowW(L"Button", NULL, WS_CHILD | WS_VISIBLE,
r.left, r.top, r.right - r.left, r.bottom - r.top,
hwnd, NULL, NULL, hinst);
}
}
/*********************************************************************
* test_dlgproc [internal]
*
@ -817,6 +727,14 @@ static void update_device_views( HWND hwnd )
{
HWND parent, view;
parent = GetDlgItem( hwnd, IDC_DI_AXES );
view = FindWindowExW( parent, NULL, L"JoyCplDInputAxes", NULL );
InvalidateRect( view, NULL, TRUE );
parent = GetDlgItem( hwnd, IDC_DI_POVS );
view = FindWindowExW( parent, NULL, L"JoyCplDInputPOVs", NULL );
InvalidateRect( view, NULL, TRUE );
parent = GetDlgItem( hwnd, IDC_DI_BUTTONS );
view = FindWindowExW( parent, NULL, L"JoyCplDInputButtons", NULL );
InvalidateRect( view, NULL, TRUE );
@ -829,6 +747,26 @@ static void create_device_views( HWND hwnd )
LONG margin;
RECT rect;
parent = GetDlgItem( hwnd, IDC_DI_AXES );
GetClientRect( parent, &rect );
rect.top += 10;
margin = (rect.bottom - rect.top) * 10 / 100;
InflateRect( &rect, -margin, -margin );
CreateWindowW( L"JoyCplDInputAxes", NULL, WS_CHILD | WS_VISIBLE, rect.left, rect.top,
rect.right - rect.left, rect.bottom - rect.top, parent, NULL, NULL, instance );
parent = GetDlgItem( hwnd, IDC_DI_POVS );
GetClientRect( parent, &rect );
rect.top += 10;
margin = (rect.bottom - rect.top) * 10 / 100;
InflateRect( &rect, -margin, -margin );
CreateWindowW( L"JoyCplDInputPOVs", NULL, WS_CHILD | WS_VISIBLE, rect.left, rect.top,
rect.right - rect.left, rect.bottom - rect.top, parent, NULL, NULL, instance );
parent = GetDlgItem( hwnd, IDC_DI_BUTTONS );
GetClientRect( parent, &rect );
rect.top += 10;
@ -853,7 +791,6 @@ static INT_PTR CALLBACK test_dlgproc(HWND hwnd, UINT msg, WPARAM wparam, LPARAM
data = (struct JoystickData*) ((PROPSHEETPAGEW*)lparam)->lParam;
di_update_select_combo( hwnd );
draw_joystick_axes(hwnd, data);
create_device_views( hwnd );
return TRUE;
@ -1003,6 +940,18 @@ static void register_window_class(void)
.lpfnWndProc = &test_xi_window_proc,
.lpszClassName = L"JoyCplXInput",
};
WNDCLASSW di_axes_class =
{
.hInstance = hcpl,
.lpfnWndProc = &test_di_axes_window_proc,
.lpszClassName = L"JoyCplDInputAxes",
};
WNDCLASSW di_povs_class =
{
.hInstance = hcpl,
.lpfnWndProc = &test_di_povs_window_proc,
.lpszClassName = L"JoyCplDInputPOVs",
};
WNDCLASSW di_buttons_class =
{
.hInstance = hcpl,
@ -1011,11 +960,15 @@ static void register_window_class(void)
};
RegisterClassW( &xi_class );
RegisterClassW( &di_axes_class );
RegisterClassW( &di_povs_class );
RegisterClassW( &di_buttons_class );
}
static void unregister_window_class(void)
{
UnregisterClassW( L"JoyCplDInputAxes", hcpl );
UnregisterClassW( L"JoyCplDInputPOVs", hcpl );
UnregisterClassW( L"JoyCplDInputButtons", hcpl );
UnregisterClassW( L"JoyCplXInput", hcpl );
}

View file

@ -47,12 +47,10 @@
#define IDC_BUTTONOVERRIDE 2013
#define IDC_DI_DEVICES 2100
#define IDC_DI_AXIS_X_Y 2101
#define IDC_DI_AXIS_RX_RY 2102
#define IDC_DI_AXIS_Z_RZ 2103
#define IDC_DI_AXIS_POV_0 2104
#define IDC_DI_BUTTONS 2105
#define IDC_DI_EFFECTS 2106
#define IDC_DI_AXES 2101
#define IDC_DI_POVS 2102
#define IDC_DI_BUTTONS 2103
#define IDC_DI_EFFECTS 2104
#define IDC_XI_USER_0 2200
#define IDC_XI_USER_1 2201

View file

@ -3782,17 +3782,25 @@ msgstr ""
msgid "DInput"
msgstr ""
#: dlls/joy.cpl/joy.rc:63
#: dlls/joy.cpl/joy.rc:59
msgid "Axes"
msgstr ""
#: dlls/joy.cpl/joy.rc:60
msgid "POVs"
msgstr ""
#: dlls/joy.cpl/joy.rc:61
msgid "Buttons"
msgstr "الأزرار"
#: dlls/joy.cpl/joy.rc:64
#: dlls/joy.cpl/joy.rc:62
#, fuzzy
#| msgid "Test Force Feedback"
msgid "Force Feedback Effect"
msgstr "اختبار الهزّاز"
#: dlls/joy.cpl/joy.rc:66
#: dlls/joy.cpl/joy.rc:64
msgid ""
"Press any button in the controller to activate the chosen effect. The effect "
"direction can be changed with the controller axis."
@ -3800,60 +3808,60 @@ msgstr ""
"اضغط أي زر في المتحكم لتفعيل المؤثر المختار ،الاتجاه المؤثر يمكن تغييره "
"بمحور المتحكم."
#: dlls/joy.cpl/joy.rc:72
#: dlls/joy.cpl/joy.rc:70
msgid "XInput"
msgstr ""
#: dlls/joy.cpl/joy.rc:75
#: dlls/joy.cpl/joy.rc:73
#, fuzzy
#| msgid "User"
msgid "User #0"
msgstr "المستخدم"
#: dlls/joy.cpl/joy.rc:76
#: dlls/joy.cpl/joy.rc:74
#, fuzzy
#| msgid "User"
msgid "User #1"
msgstr "المستخدم"
#: dlls/joy.cpl/joy.rc:77
#: dlls/joy.cpl/joy.rc:75
#, fuzzy
#| msgid "User"
msgid "User #2"
msgstr "المستخدم"
#: dlls/joy.cpl/joy.rc:78
#: dlls/joy.cpl/joy.rc:76
#, fuzzy
#| msgid "User"
msgid "User #3"
msgstr "المستخدم"
#: dlls/joy.cpl/joy.rc:80
#: dlls/joy.cpl/joy.rc:78
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
#: dlls/joy.cpl/joy.rc:82
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
#: dlls/joy.cpl/joy.rc:86
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
#: dlls/joy.cpl/joy.rc:90
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:97 dlls/joy.cpl/joy.rc:98 dlls/joy.cpl/joy.rc:99
#: dlls/joy.cpl/joy.rc:100
#: dlls/joy.cpl/joy.rc:95 dlls/joy.cpl/joy.rc:96 dlls/joy.cpl/joy.rc:97
#: dlls/joy.cpl/joy.rc:98
msgid "Rumble"
msgstr ""

View file

@ -3675,74 +3675,82 @@ msgstr ""
msgid "DInput"
msgstr ""
#: dlls/joy.cpl/joy.rc:63
#: dlls/joy.cpl/joy.rc:59
msgid "Axes"
msgstr ""
#: dlls/joy.cpl/joy.rc:60
msgid "POVs"
msgstr ""
#: dlls/joy.cpl/joy.rc:61
msgid "Buttons"
msgstr "Botones"
#: dlls/joy.cpl/joy.rc:64
#: dlls/joy.cpl/joy.rc:62
msgid "Force Feedback Effect"
msgstr ""
#: dlls/joy.cpl/joy.rc:66
#: dlls/joy.cpl/joy.rc:64
msgid ""
"Press any button in the controller to activate the chosen effect. The effect "
"direction can be changed with the controller axis."
msgstr ""
#: dlls/joy.cpl/joy.rc:72
#: dlls/joy.cpl/joy.rc:70
msgid "XInput"
msgstr ""
#: dlls/joy.cpl/joy.rc:75
#: dlls/joy.cpl/joy.rc:73
#, fuzzy
#| msgid "Users"
msgid "User #0"
msgstr "Usuarios"
#: dlls/joy.cpl/joy.rc:76
#: dlls/joy.cpl/joy.rc:74
#, fuzzy
#| msgid "Users"
msgid "User #1"
msgstr "Usuarios"
#: dlls/joy.cpl/joy.rc:77
#: dlls/joy.cpl/joy.rc:75
#, fuzzy
#| msgid "Users"
msgid "User #2"
msgstr "Usuarios"
#: dlls/joy.cpl/joy.rc:78
#: dlls/joy.cpl/joy.rc:76
#, fuzzy
#| msgid "Users"
msgid "User #3"
msgstr "Usuarios"
#: dlls/joy.cpl/joy.rc:80
#: dlls/joy.cpl/joy.rc:78
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
#: dlls/joy.cpl/joy.rc:82
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
#: dlls/joy.cpl/joy.rc:86
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
#: dlls/joy.cpl/joy.rc:90
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:97 dlls/joy.cpl/joy.rc:98 dlls/joy.cpl/joy.rc:99
#: dlls/joy.cpl/joy.rc:100
#: dlls/joy.cpl/joy.rc:95 dlls/joy.cpl/joy.rc:96 dlls/joy.cpl/joy.rc:97
#: dlls/joy.cpl/joy.rc:98
msgid "Rumble"
msgstr ""

View file

@ -3794,74 +3794,82 @@ msgstr ""
msgid "DInput"
msgstr ""
#: dlls/joy.cpl/joy.rc:63
#: dlls/joy.cpl/joy.rc:59
msgid "Axes"
msgstr ""
#: dlls/joy.cpl/joy.rc:60
msgid "POVs"
msgstr ""
#: dlls/joy.cpl/joy.rc:61
msgid "Buttons"
msgstr ""
#: dlls/joy.cpl/joy.rc:64
#: dlls/joy.cpl/joy.rc:62
msgid "Force Feedback Effect"
msgstr ""
#: dlls/joy.cpl/joy.rc:66
#: dlls/joy.cpl/joy.rc:64
msgid ""
"Press any button in the controller to activate the chosen effect. The effect "
"direction can be changed with the controller axis."
msgstr ""
#: dlls/joy.cpl/joy.rc:72
#: dlls/joy.cpl/joy.rc:70
msgid "XInput"
msgstr ""
#: dlls/joy.cpl/joy.rc:75
#: dlls/joy.cpl/joy.rc:73
#, fuzzy
#| msgid "User"
msgid "User #0"
msgstr "Потребител"
#: dlls/joy.cpl/joy.rc:76
#: dlls/joy.cpl/joy.rc:74
#, fuzzy
#| msgid "User"
msgid "User #1"
msgstr "Потребител"
#: dlls/joy.cpl/joy.rc:77
#: dlls/joy.cpl/joy.rc:75
#, fuzzy
#| msgid "User"
msgid "User #2"
msgstr "Потребител"
#: dlls/joy.cpl/joy.rc:78
#: dlls/joy.cpl/joy.rc:76
#, fuzzy
#| msgid "User"
msgid "User #3"
msgstr "Потребител"
#: dlls/joy.cpl/joy.rc:80
#: dlls/joy.cpl/joy.rc:78
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
#: dlls/joy.cpl/joy.rc:82
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
#: dlls/joy.cpl/joy.rc:86
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
#: dlls/joy.cpl/joy.rc:90
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:97 dlls/joy.cpl/joy.rc:98 dlls/joy.cpl/joy.rc:99
#: dlls/joy.cpl/joy.rc:100
#: dlls/joy.cpl/joy.rc:95 dlls/joy.cpl/joy.rc:96 dlls/joy.cpl/joy.rc:97
#: dlls/joy.cpl/joy.rc:98
msgid "Rumble"
msgstr ""

View file

@ -3770,17 +3770,25 @@ msgstr ""
msgid "DInput"
msgstr ""
#: dlls/joy.cpl/joy.rc:63
#: dlls/joy.cpl/joy.rc:59
msgid "Axes"
msgstr ""
#: dlls/joy.cpl/joy.rc:60
msgid "POVs"
msgstr ""
#: dlls/joy.cpl/joy.rc:61
msgid "Buttons"
msgstr "Botons"
#: dlls/joy.cpl/joy.rc:64
#: dlls/joy.cpl/joy.rc:62
#, fuzzy
#| msgid "Test Force Feedback"
msgid "Force Feedback Effect"
msgstr "Prova de retroacció de força"
#: dlls/joy.cpl/joy.rc:66
#: dlls/joy.cpl/joy.rc:64
msgid ""
"Press any button in the controller to activate the chosen effect. The effect "
"direction can be changed with the controller axis."
@ -3788,60 +3796,60 @@ 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
#: dlls/joy.cpl/joy.rc:70
msgid "XInput"
msgstr ""
#: dlls/joy.cpl/joy.rc:75
#: dlls/joy.cpl/joy.rc:73
#, fuzzy
#| msgid "User"
msgid "User #0"
msgstr "Usuari"
#: dlls/joy.cpl/joy.rc:76
#: dlls/joy.cpl/joy.rc:74
#, fuzzy
#| msgid "User"
msgid "User #1"
msgstr "Usuari"
#: dlls/joy.cpl/joy.rc:77
#: dlls/joy.cpl/joy.rc:75
#, fuzzy
#| msgid "User"
msgid "User #2"
msgstr "Usuari"
#: dlls/joy.cpl/joy.rc:78
#: dlls/joy.cpl/joy.rc:76
#, fuzzy
#| msgid "User"
msgid "User #3"
msgstr "Usuari"
#: dlls/joy.cpl/joy.rc:80
#: dlls/joy.cpl/joy.rc:78
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
#: dlls/joy.cpl/joy.rc:82
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
#: dlls/joy.cpl/joy.rc:86
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
#: dlls/joy.cpl/joy.rc:90
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:97 dlls/joy.cpl/joy.rc:98 dlls/joy.cpl/joy.rc:99
#: dlls/joy.cpl/joy.rc:100
#: dlls/joy.cpl/joy.rc:95 dlls/joy.cpl/joy.rc:96 dlls/joy.cpl/joy.rc:97
#: dlls/joy.cpl/joy.rc:98
msgid "Rumble"
msgstr ""

View file

@ -3731,17 +3731,25 @@ msgstr ""
msgid "DInput"
msgstr ""
#: dlls/joy.cpl/joy.rc:63
#: dlls/joy.cpl/joy.rc:59
msgid "Axes"
msgstr ""
#: dlls/joy.cpl/joy.rc:60
msgid "POVs"
msgstr ""
#: dlls/joy.cpl/joy.rc:61
msgid "Buttons"
msgstr "Tlačítka"
#: dlls/joy.cpl/joy.rc:64
#: dlls/joy.cpl/joy.rc:62
#, fuzzy
#| msgid "Test Force Feedback"
msgid "Force Feedback Effect"
msgstr "Otestovat silovou zpětnou vazbu"
#: dlls/joy.cpl/joy.rc:66
#: dlls/joy.cpl/joy.rc:64
msgid ""
"Press any button in the controller to activate the chosen effect. The effect "
"direction can be changed with the controller axis."
@ -3749,60 +3757,60 @@ 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
#: dlls/joy.cpl/joy.rc:70
msgid "XInput"
msgstr ""
#: dlls/joy.cpl/joy.rc:75
#: dlls/joy.cpl/joy.rc:73
#, fuzzy
#| msgid "User"
msgid "User #0"
msgstr "Uživatel"
#: dlls/joy.cpl/joy.rc:76
#: dlls/joy.cpl/joy.rc:74
#, fuzzy
#| msgid "User"
msgid "User #1"
msgstr "Uživatel"
#: dlls/joy.cpl/joy.rc:77
#: dlls/joy.cpl/joy.rc:75
#, fuzzy
#| msgid "User"
msgid "User #2"
msgstr "Uživatel"
#: dlls/joy.cpl/joy.rc:78
#: dlls/joy.cpl/joy.rc:76
#, fuzzy
#| msgid "User"
msgid "User #3"
msgstr "Uživatel"
#: dlls/joy.cpl/joy.rc:80
#: dlls/joy.cpl/joy.rc:78
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
#: dlls/joy.cpl/joy.rc:82
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
#: dlls/joy.cpl/joy.rc:86
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
#: dlls/joy.cpl/joy.rc:90
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:97 dlls/joy.cpl/joy.rc:98 dlls/joy.cpl/joy.rc:99
#: dlls/joy.cpl/joy.rc:100
#: dlls/joy.cpl/joy.rc:95 dlls/joy.cpl/joy.rc:96 dlls/joy.cpl/joy.rc:97
#: dlls/joy.cpl/joy.rc:98
msgid "Rumble"
msgstr ""

View file

@ -3817,74 +3817,82 @@ msgstr ""
msgid "DInput"
msgstr ""
#: dlls/joy.cpl/joy.rc:63
#: dlls/joy.cpl/joy.rc:59
msgid "Axes"
msgstr ""
#: dlls/joy.cpl/joy.rc:60
msgid "POVs"
msgstr ""
#: dlls/joy.cpl/joy.rc:61
msgid "Buttons"
msgstr ""
#: dlls/joy.cpl/joy.rc:64
#: dlls/joy.cpl/joy.rc:62
msgid "Force Feedback Effect"
msgstr ""
#: dlls/joy.cpl/joy.rc:66
#: dlls/joy.cpl/joy.rc:64
msgid ""
"Press any button in the controller to activate the chosen effect. The effect "
"direction can be changed with the controller axis."
msgstr ""
#: dlls/joy.cpl/joy.rc:72
#: dlls/joy.cpl/joy.rc:70
msgid "XInput"
msgstr ""
#: dlls/joy.cpl/joy.rc:75
#: dlls/joy.cpl/joy.rc:73
#, fuzzy
#| msgid "User"
msgid "User #0"
msgstr "Bruger"
#: dlls/joy.cpl/joy.rc:76
#: dlls/joy.cpl/joy.rc:74
#, fuzzy
#| msgid "User"
msgid "User #1"
msgstr "Bruger"
#: dlls/joy.cpl/joy.rc:77
#: dlls/joy.cpl/joy.rc:75
#, fuzzy
#| msgid "User"
msgid "User #2"
msgstr "Bruger"
#: dlls/joy.cpl/joy.rc:78
#: dlls/joy.cpl/joy.rc:76
#, fuzzy
#| msgid "User"
msgid "User #3"
msgstr "Bruger"
#: dlls/joy.cpl/joy.rc:80
#: dlls/joy.cpl/joy.rc:78
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
#: dlls/joy.cpl/joy.rc:82
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
#: dlls/joy.cpl/joy.rc:86
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
#: dlls/joy.cpl/joy.rc:90
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:97 dlls/joy.cpl/joy.rc:98 dlls/joy.cpl/joy.rc:99
#: dlls/joy.cpl/joy.rc:100
#: dlls/joy.cpl/joy.rc:95 dlls/joy.cpl/joy.rc:96 dlls/joy.cpl/joy.rc:97
#: dlls/joy.cpl/joy.rc:98
msgid "Rumble"
msgstr ""

View file

@ -3758,17 +3758,25 @@ msgstr ""
msgid "DInput"
msgstr ""
#: dlls/joy.cpl/joy.rc:63
#: dlls/joy.cpl/joy.rc:59
msgid "Axes"
msgstr ""
#: dlls/joy.cpl/joy.rc:60
msgid "POVs"
msgstr ""
#: dlls/joy.cpl/joy.rc:61
msgid "Buttons"
msgstr "Tasten"
#: dlls/joy.cpl/joy.rc:64
#: dlls/joy.cpl/joy.rc:62
#, fuzzy
#| msgid "Test Force Feedback"
msgid "Force Feedback Effect"
msgstr "Force Feedback testen"
#: dlls/joy.cpl/joy.rc:66
#: dlls/joy.cpl/joy.rc:64
msgid ""
"Press any button in the controller to activate the chosen effect. The effect "
"direction can be changed with the controller axis."
@ -3777,60 +3785,60 @@ msgstr ""
"aktivieren. Die Richtung des Effekts kann mit der Controller-Achse geändert "
"werden."
#: dlls/joy.cpl/joy.rc:72
#: dlls/joy.cpl/joy.rc:70
msgid "XInput"
msgstr ""
#: dlls/joy.cpl/joy.rc:75
#: dlls/joy.cpl/joy.rc:73
#, fuzzy
#| msgid "User"
msgid "User #0"
msgstr "Benutzername"
#: dlls/joy.cpl/joy.rc:76
#: dlls/joy.cpl/joy.rc:74
#, fuzzy
#| msgid "User"
msgid "User #1"
msgstr "Benutzername"
#: dlls/joy.cpl/joy.rc:77
#: dlls/joy.cpl/joy.rc:75
#, fuzzy
#| msgid "User"
msgid "User #2"
msgstr "Benutzername"
#: dlls/joy.cpl/joy.rc:78
#: dlls/joy.cpl/joy.rc:76
#, fuzzy
#| msgid "User"
msgid "User #3"
msgstr "Benutzername"
#: dlls/joy.cpl/joy.rc:80
#: dlls/joy.cpl/joy.rc:78
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
#: dlls/joy.cpl/joy.rc:82
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
#: dlls/joy.cpl/joy.rc:86
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
#: dlls/joy.cpl/joy.rc:90
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:97 dlls/joy.cpl/joy.rc:98 dlls/joy.cpl/joy.rc:99
#: dlls/joy.cpl/joy.rc:100
#: dlls/joy.cpl/joy.rc:95 dlls/joy.cpl/joy.rc:96 dlls/joy.cpl/joy.rc:97
#: dlls/joy.cpl/joy.rc:98
msgid "Rumble"
msgstr ""

View file

@ -3706,66 +3706,74 @@ msgstr ""
msgid "DInput"
msgstr ""
#: dlls/joy.cpl/joy.rc:63
#: dlls/joy.cpl/joy.rc:59
msgid "Axes"
msgstr ""
#: dlls/joy.cpl/joy.rc:60
msgid "POVs"
msgstr ""
#: dlls/joy.cpl/joy.rc:61
msgid "Buttons"
msgstr ""
#: dlls/joy.cpl/joy.rc:64
#: dlls/joy.cpl/joy.rc:62
msgid "Force Feedback Effect"
msgstr ""
#: dlls/joy.cpl/joy.rc:66
#: dlls/joy.cpl/joy.rc:64
msgid ""
"Press any button in the controller to activate the chosen effect. The effect "
"direction can be changed with the controller axis."
msgstr ""
#: dlls/joy.cpl/joy.rc:72
#: dlls/joy.cpl/joy.rc:70
msgid "XInput"
msgstr ""
#: dlls/joy.cpl/joy.rc:75
#: dlls/joy.cpl/joy.rc:73
msgid "User #0"
msgstr ""
#: dlls/joy.cpl/joy.rc:76
#: dlls/joy.cpl/joy.rc:74
msgid "User #1"
msgstr ""
#: dlls/joy.cpl/joy.rc:77
#: dlls/joy.cpl/joy.rc:75
msgid "User #2"
msgstr ""
#: dlls/joy.cpl/joy.rc:78
#: dlls/joy.cpl/joy.rc:76
msgid "User #3"
msgstr ""
#: dlls/joy.cpl/joy.rc:80
#: dlls/joy.cpl/joy.rc:78
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
#: dlls/joy.cpl/joy.rc:82
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
#: dlls/joy.cpl/joy.rc:86
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
#: dlls/joy.cpl/joy.rc:90
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:97 dlls/joy.cpl/joy.rc:98 dlls/joy.cpl/joy.rc:99
#: dlls/joy.cpl/joy.rc:100
#: dlls/joy.cpl/joy.rc:95 dlls/joy.cpl/joy.rc:96 dlls/joy.cpl/joy.rc:97
#: dlls/joy.cpl/joy.rc:98
msgid "Rumble"
msgstr ""

View file

@ -3751,15 +3751,23 @@ msgstr ""
msgid "DInput"
msgstr "DInput"
#: dlls/joy.cpl/joy.rc:63
#: dlls/joy.cpl/joy.rc:59
msgid "Axes"
msgstr "Axes"
#: dlls/joy.cpl/joy.rc:60
msgid "POVs"
msgstr "POVs"
#: dlls/joy.cpl/joy.rc:61
msgid "Buttons"
msgstr "Buttons"
#: dlls/joy.cpl/joy.rc:64
#: dlls/joy.cpl/joy.rc:62
msgid "Force Feedback Effect"
msgstr "Force Feedback Effect"
#: dlls/joy.cpl/joy.rc:66
#: dlls/joy.cpl/joy.rc:64
msgid ""
"Press any button in the controller to activate the chosen effect. The effect "
"direction can be changed with the controller axis."
@ -3767,27 +3775,27 @@ 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
#: dlls/joy.cpl/joy.rc:70
msgid "XInput"
msgstr "XInput"
#: dlls/joy.cpl/joy.rc:75
#: dlls/joy.cpl/joy.rc:73
msgid "User #0"
msgstr "User #0"
#: dlls/joy.cpl/joy.rc:76
#: dlls/joy.cpl/joy.rc:74
msgid "User #1"
msgstr "User #1"
#: dlls/joy.cpl/joy.rc:77
#: dlls/joy.cpl/joy.rc:75
msgid "User #2"
msgstr "User #2"
#: dlls/joy.cpl/joy.rc:78
#: dlls/joy.cpl/joy.rc:76
msgid "User #3"
msgstr "User #3"
#: dlls/joy.cpl/joy.rc:80
#: dlls/joy.cpl/joy.rc:78
msgid ""
"No user detected on slot #0, make sure your gamepad is plugged in, and not "
"overriden for DInput in the Joysticks tab."
@ -3795,7 +3803,7 @@ 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
#: dlls/joy.cpl/joy.rc:82
msgid ""
"No user detected on slot #1, make sure your gamepad is plugged in, and not "
"overriden for DInput in the Joysticks tab."
@ -3803,7 +3811,7 @@ 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
#: dlls/joy.cpl/joy.rc:86
msgid ""
"No user detected on slot #2, make sure your gamepad is plugged in, and not "
"overriden for DInput in the Joysticks tab."
@ -3811,7 +3819,7 @@ 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
#: dlls/joy.cpl/joy.rc:90
msgid ""
"No user detected on slot #3, make sure your gamepad is plugged in, and not "
"overriden for DInput in the Joysticks tab."
@ -3819,8 +3827,8 @@ 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:97 dlls/joy.cpl/joy.rc:98 dlls/joy.cpl/joy.rc:99
#: dlls/joy.cpl/joy.rc:100
#: dlls/joy.cpl/joy.rc:95 dlls/joy.cpl/joy.rc:96 dlls/joy.cpl/joy.rc:97
#: dlls/joy.cpl/joy.rc:98
msgid "Rumble"
msgstr "Rumble"

View file

@ -3751,15 +3751,23 @@ msgstr ""
msgid "DInput"
msgstr "DInput"
#: dlls/joy.cpl/joy.rc:63
#: dlls/joy.cpl/joy.rc:59
msgid "Axes"
msgstr "Axes"
#: dlls/joy.cpl/joy.rc:60
msgid "POVs"
msgstr "POVs"
#: dlls/joy.cpl/joy.rc:61
msgid "Buttons"
msgstr "Buttons"
#: dlls/joy.cpl/joy.rc:64
#: dlls/joy.cpl/joy.rc:62
msgid "Force Feedback Effect"
msgstr "Force Feedback Effect"
#: dlls/joy.cpl/joy.rc:66
#: dlls/joy.cpl/joy.rc:64
msgid ""
"Press any button in the controller to activate the chosen effect. The effect "
"direction can be changed with the controller axis."
@ -3767,27 +3775,27 @@ 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
#: dlls/joy.cpl/joy.rc:70
msgid "XInput"
msgstr "XInput"
#: dlls/joy.cpl/joy.rc:75
#: dlls/joy.cpl/joy.rc:73
msgid "User #0"
msgstr "User #0"
#: dlls/joy.cpl/joy.rc:76
#: dlls/joy.cpl/joy.rc:74
msgid "User #1"
msgstr "User #1"
#: dlls/joy.cpl/joy.rc:77
#: dlls/joy.cpl/joy.rc:75
msgid "User #2"
msgstr "User #2"
#: dlls/joy.cpl/joy.rc:78
#: dlls/joy.cpl/joy.rc:76
msgid "User #3"
msgstr "User #3"
#: dlls/joy.cpl/joy.rc:80
#: dlls/joy.cpl/joy.rc:78
msgid ""
"No user detected on slot #0, make sure your gamepad is plugged in, and not "
"overriden for DInput in the Joysticks tab."
@ -3795,7 +3803,7 @@ 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
#: dlls/joy.cpl/joy.rc:82
msgid ""
"No user detected on slot #1, make sure your gamepad is plugged in, and not "
"overriden for DInput in the Joysticks tab."
@ -3803,7 +3811,7 @@ 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
#: dlls/joy.cpl/joy.rc:86
msgid ""
"No user detected on slot #2, make sure your gamepad is plugged in, and not "
"overriden for DInput in the Joysticks tab."
@ -3811,7 +3819,7 @@ 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
#: dlls/joy.cpl/joy.rc:90
msgid ""
"No user detected on slot #3, make sure your gamepad is plugged in, and not "
"overriden for DInput in the Joysticks tab."
@ -3819,8 +3827,8 @@ 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:97 dlls/joy.cpl/joy.rc:98 dlls/joy.cpl/joy.rc:99
#: dlls/joy.cpl/joy.rc:100
#: dlls/joy.cpl/joy.rc:95 dlls/joy.cpl/joy.rc:96 dlls/joy.cpl/joy.rc:97
#: dlls/joy.cpl/joy.rc:98
msgid "Rumble"
msgstr "Rumble"

View file

@ -3701,74 +3701,82 @@ msgstr ""
msgid "DInput"
msgstr ""
#: dlls/joy.cpl/joy.rc:63
#: dlls/joy.cpl/joy.rc:59
msgid "Axes"
msgstr ""
#: dlls/joy.cpl/joy.rc:60
msgid "POVs"
msgstr ""
#: dlls/joy.cpl/joy.rc:61
msgid "Buttons"
msgstr ""
#: dlls/joy.cpl/joy.rc:64
#: dlls/joy.cpl/joy.rc:62
msgid "Force Feedback Effect"
msgstr ""
#: dlls/joy.cpl/joy.rc:66
#: dlls/joy.cpl/joy.rc:64
msgid ""
"Press any button in the controller to activate the chosen effect. The effect "
"direction can be changed with the controller axis."
msgstr ""
#: dlls/joy.cpl/joy.rc:72
#: dlls/joy.cpl/joy.rc:70
msgid "XInput"
msgstr ""
#: dlls/joy.cpl/joy.rc:75
#: dlls/joy.cpl/joy.rc:73
#, fuzzy
#| msgid "User"
msgid "User #0"
msgstr "Uzanto"
#: dlls/joy.cpl/joy.rc:76
#: dlls/joy.cpl/joy.rc:74
#, fuzzy
#| msgid "User"
msgid "User #1"
msgstr "Uzanto"
#: dlls/joy.cpl/joy.rc:77
#: dlls/joy.cpl/joy.rc:75
#, fuzzy
#| msgid "User"
msgid "User #2"
msgstr "Uzanto"
#: dlls/joy.cpl/joy.rc:78
#: dlls/joy.cpl/joy.rc:76
#, fuzzy
#| msgid "User"
msgid "User #3"
msgstr "Uzanto"
#: dlls/joy.cpl/joy.rc:80
#: dlls/joy.cpl/joy.rc:78
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
#: dlls/joy.cpl/joy.rc:82
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
#: dlls/joy.cpl/joy.rc:86
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
#: dlls/joy.cpl/joy.rc:90
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:97 dlls/joy.cpl/joy.rc:98 dlls/joy.cpl/joy.rc:99
#: dlls/joy.cpl/joy.rc:100
#: dlls/joy.cpl/joy.rc:95 dlls/joy.cpl/joy.rc:96 dlls/joy.cpl/joy.rc:97
#: dlls/joy.cpl/joy.rc:98
msgid "Rumble"
msgstr ""

View file

@ -3771,17 +3771,25 @@ msgstr ""
msgid "DInput"
msgstr ""
#: dlls/joy.cpl/joy.rc:63
#: dlls/joy.cpl/joy.rc:59
msgid "Axes"
msgstr ""
#: dlls/joy.cpl/joy.rc:60
msgid "POVs"
msgstr ""
#: dlls/joy.cpl/joy.rc:61
msgid "Buttons"
msgstr "Botones"
#: dlls/joy.cpl/joy.rc:64
#: dlls/joy.cpl/joy.rc:62
#, fuzzy
#| msgid "Test Force Feedback"
msgid "Force Feedback Effect"
msgstr "Probar Force Feedback"
#: dlls/joy.cpl/joy.rc:66
#: dlls/joy.cpl/joy.rc:64
msgid ""
"Press any button in the controller to activate the chosen effect. The effect "
"direction can be changed with the controller axis."
@ -3789,60 +3797,60 @@ 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
#: dlls/joy.cpl/joy.rc:70
msgid "XInput"
msgstr ""
#: dlls/joy.cpl/joy.rc:75
#: dlls/joy.cpl/joy.rc:73
#, fuzzy
#| msgid "User"
msgid "User #0"
msgstr "Usuario"
#: dlls/joy.cpl/joy.rc:76
#: dlls/joy.cpl/joy.rc:74
#, fuzzy
#| msgid "User"
msgid "User #1"
msgstr "Usuario"
#: dlls/joy.cpl/joy.rc:77
#: dlls/joy.cpl/joy.rc:75
#, fuzzy
#| msgid "User"
msgid "User #2"
msgstr "Usuario"
#: dlls/joy.cpl/joy.rc:78
#: dlls/joy.cpl/joy.rc:76
#, fuzzy
#| msgid "User"
msgid "User #3"
msgstr "Usuario"
#: dlls/joy.cpl/joy.rc:80
#: dlls/joy.cpl/joy.rc:78
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
#: dlls/joy.cpl/joy.rc:82
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
#: dlls/joy.cpl/joy.rc:86
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
#: dlls/joy.cpl/joy.rc:90
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:97 dlls/joy.cpl/joy.rc:98 dlls/joy.cpl/joy.rc:99
#: dlls/joy.cpl/joy.rc:100
#: dlls/joy.cpl/joy.rc:95 dlls/joy.cpl/joy.rc:96 dlls/joy.cpl/joy.rc:97
#: dlls/joy.cpl/joy.rc:98
msgid "Rumble"
msgstr ""

View file

@ -3735,66 +3735,74 @@ msgstr ""
msgid "DInput"
msgstr ""
#: dlls/joy.cpl/joy.rc:63
#: dlls/joy.cpl/joy.rc:59
msgid "Axes"
msgstr ""
#: dlls/joy.cpl/joy.rc:60
msgid "POVs"
msgstr ""
#: dlls/joy.cpl/joy.rc:61
msgid "Buttons"
msgstr ""
#: dlls/joy.cpl/joy.rc:64
#: dlls/joy.cpl/joy.rc:62
msgid "Force Feedback Effect"
msgstr ""
#: dlls/joy.cpl/joy.rc:66
#: dlls/joy.cpl/joy.rc:64
msgid ""
"Press any button in the controller to activate the chosen effect. The effect "
"direction can be changed with the controller axis."
msgstr ""
#: dlls/joy.cpl/joy.rc:72
#: dlls/joy.cpl/joy.rc:70
msgid "XInput"
msgstr ""
#: dlls/joy.cpl/joy.rc:75
#: dlls/joy.cpl/joy.rc:73
msgid "User #0"
msgstr ""
#: dlls/joy.cpl/joy.rc:76
#: dlls/joy.cpl/joy.rc:74
msgid "User #1"
msgstr ""
#: dlls/joy.cpl/joy.rc:77
#: dlls/joy.cpl/joy.rc:75
msgid "User #2"
msgstr ""
#: dlls/joy.cpl/joy.rc:78
#: dlls/joy.cpl/joy.rc:76
msgid "User #3"
msgstr ""
#: dlls/joy.cpl/joy.rc:80
#: dlls/joy.cpl/joy.rc:78
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
#: dlls/joy.cpl/joy.rc:82
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
#: dlls/joy.cpl/joy.rc:86
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
#: dlls/joy.cpl/joy.rc:90
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:97 dlls/joy.cpl/joy.rc:98 dlls/joy.cpl/joy.rc:99
#: dlls/joy.cpl/joy.rc:100
#: dlls/joy.cpl/joy.rc:95 dlls/joy.cpl/joy.rc:96 dlls/joy.cpl/joy.rc:97
#: dlls/joy.cpl/joy.rc:98
msgid "Rumble"
msgstr ""

View file

@ -3745,17 +3745,25 @@ msgstr ""
msgid "DInput"
msgstr ""
#: dlls/joy.cpl/joy.rc:63
#: dlls/joy.cpl/joy.rc:59
msgid "Axes"
msgstr ""
#: dlls/joy.cpl/joy.rc:60
msgid "POVs"
msgstr ""
#: dlls/joy.cpl/joy.rc:61
msgid "Buttons"
msgstr "Painikkeet"
#: dlls/joy.cpl/joy.rc:64
#: dlls/joy.cpl/joy.rc:62
#, fuzzy
#| msgid "Test Force Feedback"
msgid "Force Feedback Effect"
msgstr "Testaa voimapalautetta"
#: dlls/joy.cpl/joy.rc:66
#: dlls/joy.cpl/joy.rc:64
msgid ""
"Press any button in the controller to activate the chosen effect. The effect "
"direction can be changed with the controller axis."
@ -3763,60 +3771,60 @@ msgstr ""
"Aktivoi valittu efekti painamalla mitä tahansa ohjaimen painiketta. Efektin "
"suuntaa voi muuttaa ohjaimen akselilla."
#: dlls/joy.cpl/joy.rc:72
#: dlls/joy.cpl/joy.rc:70
msgid "XInput"
msgstr ""
#: dlls/joy.cpl/joy.rc:75
#: dlls/joy.cpl/joy.rc:73
#, fuzzy
#| msgid "User"
msgid "User #0"
msgstr "Käyttäjä"
#: dlls/joy.cpl/joy.rc:76
#: dlls/joy.cpl/joy.rc:74
#, fuzzy
#| msgid "User"
msgid "User #1"
msgstr "Käyttäjä"
#: dlls/joy.cpl/joy.rc:77
#: dlls/joy.cpl/joy.rc:75
#, fuzzy
#| msgid "User"
msgid "User #2"
msgstr "Käyttäjä"
#: dlls/joy.cpl/joy.rc:78
#: dlls/joy.cpl/joy.rc:76
#, fuzzy
#| msgid "User"
msgid "User #3"
msgstr "Käyttäjä"
#: dlls/joy.cpl/joy.rc:80
#: dlls/joy.cpl/joy.rc:78
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
#: dlls/joy.cpl/joy.rc:82
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
#: dlls/joy.cpl/joy.rc:86
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
#: dlls/joy.cpl/joy.rc:90
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:97 dlls/joy.cpl/joy.rc:98 dlls/joy.cpl/joy.rc:99
#: dlls/joy.cpl/joy.rc:100
#: dlls/joy.cpl/joy.rc:95 dlls/joy.cpl/joy.rc:96 dlls/joy.cpl/joy.rc:97
#: dlls/joy.cpl/joy.rc:98
msgid "Rumble"
msgstr ""

View file

@ -3777,17 +3777,25 @@ msgstr ""
msgid "DInput"
msgstr ""
#: dlls/joy.cpl/joy.rc:63
#: dlls/joy.cpl/joy.rc:59
msgid "Axes"
msgstr ""
#: dlls/joy.cpl/joy.rc:60
msgid "POVs"
msgstr ""
#: dlls/joy.cpl/joy.rc:61
msgid "Buttons"
msgstr "Boutons"
#: dlls/joy.cpl/joy.rc:64
#: dlls/joy.cpl/joy.rc:62
#, fuzzy
#| msgid "Test Force Feedback"
msgid "Force Feedback Effect"
msgstr "Tester le retour de force"
#: dlls/joy.cpl/joy.rc:66
#: dlls/joy.cpl/joy.rc:64
msgid ""
"Press any button in the controller to activate the chosen effect. The effect "
"direction can be changed with the controller axis."
@ -3795,60 +3803,60 @@ 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
#: dlls/joy.cpl/joy.rc:70
msgid "XInput"
msgstr ""
#: dlls/joy.cpl/joy.rc:75
#: dlls/joy.cpl/joy.rc:73
#, fuzzy
#| msgid "User"
msgid "User #0"
msgstr "Utilisateur"
#: dlls/joy.cpl/joy.rc:76
#: dlls/joy.cpl/joy.rc:74
#, fuzzy
#| msgid "User"
msgid "User #1"
msgstr "Utilisateur"
#: dlls/joy.cpl/joy.rc:77
#: dlls/joy.cpl/joy.rc:75
#, fuzzy
#| msgid "User"
msgid "User #2"
msgstr "Utilisateur"
#: dlls/joy.cpl/joy.rc:78
#: dlls/joy.cpl/joy.rc:76
#, fuzzy
#| msgid "User"
msgid "User #3"
msgstr "Utilisateur"
#: dlls/joy.cpl/joy.rc:80
#: dlls/joy.cpl/joy.rc:78
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
#: dlls/joy.cpl/joy.rc:82
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
#: dlls/joy.cpl/joy.rc:86
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
#: dlls/joy.cpl/joy.rc:90
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:97 dlls/joy.cpl/joy.rc:98 dlls/joy.cpl/joy.rc:99
#: dlls/joy.cpl/joy.rc:100
#: dlls/joy.cpl/joy.rc:95 dlls/joy.cpl/joy.rc:96 dlls/joy.cpl/joy.rc:97
#: dlls/joy.cpl/joy.rc:98
msgid "Rumble"
msgstr ""

View file

@ -3778,74 +3778,82 @@ msgstr ""
msgid "DInput"
msgstr ""
#: dlls/joy.cpl/joy.rc:63
#: dlls/joy.cpl/joy.rc:59
msgid "Axes"
msgstr ""
#: dlls/joy.cpl/joy.rc:60
msgid "POVs"
msgstr ""
#: dlls/joy.cpl/joy.rc:61
msgid "Buttons"
msgstr ""
#: dlls/joy.cpl/joy.rc:64
#: dlls/joy.cpl/joy.rc:62
msgid "Force Feedback Effect"
msgstr ""
#: dlls/joy.cpl/joy.rc:66
#: dlls/joy.cpl/joy.rc:64
msgid ""
"Press any button in the controller to activate the chosen effect. The effect "
"direction can be changed with the controller axis."
msgstr ""
#: dlls/joy.cpl/joy.rc:72
#: dlls/joy.cpl/joy.rc:70
msgid "XInput"
msgstr ""
#: dlls/joy.cpl/joy.rc:75
#: dlls/joy.cpl/joy.rc:73
#, fuzzy
#| msgid "User"
msgid "User #0"
msgstr "משתמש"
#: dlls/joy.cpl/joy.rc:76
#: dlls/joy.cpl/joy.rc:74
#, fuzzy
#| msgid "User"
msgid "User #1"
msgstr "משתמש"
#: dlls/joy.cpl/joy.rc:77
#: dlls/joy.cpl/joy.rc:75
#, fuzzy
#| msgid "User"
msgid "User #2"
msgstr "משתמש"
#: dlls/joy.cpl/joy.rc:78
#: dlls/joy.cpl/joy.rc:76
#, fuzzy
#| msgid "User"
msgid "User #3"
msgstr "משתמש"
#: dlls/joy.cpl/joy.rc:80
#: dlls/joy.cpl/joy.rc:78
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
#: dlls/joy.cpl/joy.rc:82
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
#: dlls/joy.cpl/joy.rc:86
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
#: dlls/joy.cpl/joy.rc:90
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:97 dlls/joy.cpl/joy.rc:98 dlls/joy.cpl/joy.rc:99
#: dlls/joy.cpl/joy.rc:100
#: dlls/joy.cpl/joy.rc:95 dlls/joy.cpl/joy.rc:96 dlls/joy.cpl/joy.rc:97
#: dlls/joy.cpl/joy.rc:98
msgid "Rumble"
msgstr ""

View file

@ -3667,66 +3667,74 @@ msgstr ""
msgid "DInput"
msgstr ""
#: dlls/joy.cpl/joy.rc:63
#: dlls/joy.cpl/joy.rc:59
msgid "Axes"
msgstr ""
#: dlls/joy.cpl/joy.rc:60
msgid "POVs"
msgstr ""
#: dlls/joy.cpl/joy.rc:61
msgid "Buttons"
msgstr ""
#: dlls/joy.cpl/joy.rc:64
#: dlls/joy.cpl/joy.rc:62
msgid "Force Feedback Effect"
msgstr ""
#: dlls/joy.cpl/joy.rc:66
#: dlls/joy.cpl/joy.rc:64
msgid ""
"Press any button in the controller to activate the chosen effect. The effect "
"direction can be changed with the controller axis."
msgstr ""
#: dlls/joy.cpl/joy.rc:72
#: dlls/joy.cpl/joy.rc:70
msgid "XInput"
msgstr ""
#: dlls/joy.cpl/joy.rc:75
#: dlls/joy.cpl/joy.rc:73
msgid "User #0"
msgstr ""
#: dlls/joy.cpl/joy.rc:76
#: dlls/joy.cpl/joy.rc:74
msgid "User #1"
msgstr ""
#: dlls/joy.cpl/joy.rc:77
#: dlls/joy.cpl/joy.rc:75
msgid "User #2"
msgstr ""
#: dlls/joy.cpl/joy.rc:78
#: dlls/joy.cpl/joy.rc:76
msgid "User #3"
msgstr ""
#: dlls/joy.cpl/joy.rc:80
#: dlls/joy.cpl/joy.rc:78
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
#: dlls/joy.cpl/joy.rc:82
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
#: dlls/joy.cpl/joy.rc:86
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
#: dlls/joy.cpl/joy.rc:90
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:97 dlls/joy.cpl/joy.rc:98 dlls/joy.cpl/joy.rc:99
#: dlls/joy.cpl/joy.rc:100
#: dlls/joy.cpl/joy.rc:95 dlls/joy.cpl/joy.rc:96 dlls/joy.cpl/joy.rc:97
#: dlls/joy.cpl/joy.rc:98
msgid "Rumble"
msgstr ""

View file

@ -3787,17 +3787,25 @@ msgstr ""
msgid "DInput"
msgstr ""
#: dlls/joy.cpl/joy.rc:63
#: dlls/joy.cpl/joy.rc:59
msgid "Axes"
msgstr ""
#: dlls/joy.cpl/joy.rc:60
msgid "POVs"
msgstr ""
#: dlls/joy.cpl/joy.rc:61
msgid "Buttons"
msgstr "Gumbi"
#: dlls/joy.cpl/joy.rc:64
#: dlls/joy.cpl/joy.rc:62
#, fuzzy
#| msgid "Test Force Feedback"
msgid "Force Feedback Effect"
msgstr "Isprobaj povratnu vezu sile"
#: dlls/joy.cpl/joy.rc:66
#: dlls/joy.cpl/joy.rc:64
msgid ""
"Press any button in the controller to activate the chosen effect. The effect "
"direction can be changed with the controller axis."
@ -3805,60 +3813,60 @@ 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
#: dlls/joy.cpl/joy.rc:70
msgid "XInput"
msgstr ""
#: dlls/joy.cpl/joy.rc:75
#: dlls/joy.cpl/joy.rc:73
#, fuzzy
#| msgid "User"
msgid "User #0"
msgstr "Korisničko ime"
#: dlls/joy.cpl/joy.rc:76
#: dlls/joy.cpl/joy.rc:74
#, fuzzy
#| msgid "User"
msgid "User #1"
msgstr "Korisničko ime"
#: dlls/joy.cpl/joy.rc:77
#: dlls/joy.cpl/joy.rc:75
#, fuzzy
#| msgid "User"
msgid "User #2"
msgstr "Korisničko ime"
#: dlls/joy.cpl/joy.rc:78
#: dlls/joy.cpl/joy.rc:76
#, fuzzy
#| msgid "User"
msgid "User #3"
msgstr "Korisničko ime"
#: dlls/joy.cpl/joy.rc:80
#: dlls/joy.cpl/joy.rc:78
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
#: dlls/joy.cpl/joy.rc:82
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
#: dlls/joy.cpl/joy.rc:86
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
#: dlls/joy.cpl/joy.rc:90
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:97 dlls/joy.cpl/joy.rc:98 dlls/joy.cpl/joy.rc:99
#: dlls/joy.cpl/joy.rc:100
#: dlls/joy.cpl/joy.rc:95 dlls/joy.cpl/joy.rc:96 dlls/joy.cpl/joy.rc:97
#: dlls/joy.cpl/joy.rc:98
msgid "Rumble"
msgstr ""

View file

@ -3833,74 +3833,82 @@ msgstr ""
msgid "DInput"
msgstr ""
#: dlls/joy.cpl/joy.rc:63
#: dlls/joy.cpl/joy.rc:59
msgid "Axes"
msgstr ""
#: dlls/joy.cpl/joy.rc:60
msgid "POVs"
msgstr ""
#: dlls/joy.cpl/joy.rc:61
msgid "Buttons"
msgstr ""
#: dlls/joy.cpl/joy.rc:64
#: dlls/joy.cpl/joy.rc:62
msgid "Force Feedback Effect"
msgstr ""
#: dlls/joy.cpl/joy.rc:66
#: dlls/joy.cpl/joy.rc:64
msgid ""
"Press any button in the controller to activate the chosen effect. The effect "
"direction can be changed with the controller axis."
msgstr ""
#: dlls/joy.cpl/joy.rc:72
#: dlls/joy.cpl/joy.rc:70
msgid "XInput"
msgstr ""
#: dlls/joy.cpl/joy.rc:75
#: dlls/joy.cpl/joy.rc:73
#, fuzzy
#| msgid "User"
msgid "User #0"
msgstr "Felhasználónév"
#: dlls/joy.cpl/joy.rc:76
#: dlls/joy.cpl/joy.rc:74
#, fuzzy
#| msgid "User"
msgid "User #1"
msgstr "Felhasználónév"
#: dlls/joy.cpl/joy.rc:77
#: dlls/joy.cpl/joy.rc:75
#, fuzzy
#| msgid "User"
msgid "User #2"
msgstr "Felhasználónév"
#: dlls/joy.cpl/joy.rc:78
#: dlls/joy.cpl/joy.rc:76
#, fuzzy
#| msgid "User"
msgid "User #3"
msgstr "Felhasználónév"
#: dlls/joy.cpl/joy.rc:80
#: dlls/joy.cpl/joy.rc:78
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
#: dlls/joy.cpl/joy.rc:82
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
#: dlls/joy.cpl/joy.rc:86
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
#: dlls/joy.cpl/joy.rc:90
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:97 dlls/joy.cpl/joy.rc:98 dlls/joy.cpl/joy.rc:99
#: dlls/joy.cpl/joy.rc:100
#: dlls/joy.cpl/joy.rc:95 dlls/joy.cpl/joy.rc:96 dlls/joy.cpl/joy.rc:97
#: dlls/joy.cpl/joy.rc:98
msgid "Rumble"
msgstr ""

View file

@ -3841,74 +3841,82 @@ msgstr ""
msgid "DInput"
msgstr ""
#: dlls/joy.cpl/joy.rc:63
#: dlls/joy.cpl/joy.rc:59
msgid "Axes"
msgstr ""
#: dlls/joy.cpl/joy.rc:60
msgid "POVs"
msgstr ""
#: dlls/joy.cpl/joy.rc:61
msgid "Buttons"
msgstr ""
#: dlls/joy.cpl/joy.rc:64
#: dlls/joy.cpl/joy.rc:62
msgid "Force Feedback Effect"
msgstr ""
#: dlls/joy.cpl/joy.rc:66
#: dlls/joy.cpl/joy.rc:64
msgid ""
"Press any button in the controller to activate the chosen effect. The effect "
"direction can be changed with the controller axis."
msgstr ""
#: dlls/joy.cpl/joy.rc:72
#: dlls/joy.cpl/joy.rc:70
msgid "XInput"
msgstr ""
#: dlls/joy.cpl/joy.rc:75
#: dlls/joy.cpl/joy.rc:73
#, fuzzy
#| msgid "User"
msgid "User #0"
msgstr "Utente"
#: dlls/joy.cpl/joy.rc:76
#: dlls/joy.cpl/joy.rc:74
#, fuzzy
#| msgid "User"
msgid "User #1"
msgstr "Utente"
#: dlls/joy.cpl/joy.rc:77
#: dlls/joy.cpl/joy.rc:75
#, fuzzy
#| msgid "User"
msgid "User #2"
msgstr "Utente"
#: dlls/joy.cpl/joy.rc:78
#: dlls/joy.cpl/joy.rc:76
#, fuzzy
#| msgid "User"
msgid "User #3"
msgstr "Utente"
#: dlls/joy.cpl/joy.rc:80
#: dlls/joy.cpl/joy.rc:78
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
#: dlls/joy.cpl/joy.rc:82
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
#: dlls/joy.cpl/joy.rc:86
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
#: dlls/joy.cpl/joy.rc:90
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:97 dlls/joy.cpl/joy.rc:98 dlls/joy.cpl/joy.rc:99
#: dlls/joy.cpl/joy.rc:100
#: dlls/joy.cpl/joy.rc:95 dlls/joy.cpl/joy.rc:96 dlls/joy.cpl/joy.rc:97
#: dlls/joy.cpl/joy.rc:98
msgid "Rumble"
msgstr ""

View file

@ -3745,17 +3745,25 @@ msgstr ""
msgid "DInput"
msgstr ""
#: dlls/joy.cpl/joy.rc:63
#: dlls/joy.cpl/joy.rc:59
msgid "Axes"
msgstr ""
#: dlls/joy.cpl/joy.rc:60
msgid "POVs"
msgstr ""
#: dlls/joy.cpl/joy.rc:61
msgid "Buttons"
msgstr "ボタン"
#: dlls/joy.cpl/joy.rc:64
#: dlls/joy.cpl/joy.rc:62
#, fuzzy
#| msgid "Test Force Feedback"
msgid "Force Feedback Effect"
msgstr "フォース フィードバックのテスト"
#: dlls/joy.cpl/joy.rc:66
#: dlls/joy.cpl/joy.rc:64
msgid ""
"Press any button in the controller to activate the chosen effect. The effect "
"direction can be changed with the controller axis."
@ -3763,60 +3771,60 @@ msgstr ""
"選択した効果を有効化するにはコントローラーのボタンを押してください。効果の方"
"向はコントローラーの軸で変更できます。"
#: dlls/joy.cpl/joy.rc:72
#: dlls/joy.cpl/joy.rc:70
msgid "XInput"
msgstr ""
#: dlls/joy.cpl/joy.rc:75
#: dlls/joy.cpl/joy.rc:73
#, fuzzy
#| msgid "User"
msgid "User #0"
msgstr "ユーザー名"
#: dlls/joy.cpl/joy.rc:76
#: dlls/joy.cpl/joy.rc:74
#, fuzzy
#| msgid "User"
msgid "User #1"
msgstr "ユーザー名"
#: dlls/joy.cpl/joy.rc:77
#: dlls/joy.cpl/joy.rc:75
#, fuzzy
#| msgid "User"
msgid "User #2"
msgstr "ユーザー名"
#: dlls/joy.cpl/joy.rc:78
#: dlls/joy.cpl/joy.rc:76
#, fuzzy
#| msgid "User"
msgid "User #3"
msgstr "ユーザー名"
#: dlls/joy.cpl/joy.rc:80
#: dlls/joy.cpl/joy.rc:78
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
#: dlls/joy.cpl/joy.rc:82
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
#: dlls/joy.cpl/joy.rc:86
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
#: dlls/joy.cpl/joy.rc:90
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:97 dlls/joy.cpl/joy.rc:98 dlls/joy.cpl/joy.rc:99
#: dlls/joy.cpl/joy.rc:100
#: dlls/joy.cpl/joy.rc:95 dlls/joy.cpl/joy.rc:96 dlls/joy.cpl/joy.rc:97
#: dlls/joy.cpl/joy.rc:98
msgid "Rumble"
msgstr ""

View file

@ -3735,17 +3735,25 @@ msgstr ""
msgid "DInput"
msgstr ""
#: dlls/joy.cpl/joy.rc:63
#: dlls/joy.cpl/joy.rc:59
msgid "Axes"
msgstr ""
#: dlls/joy.cpl/joy.rc:60
msgid "POVs"
msgstr ""
#: dlls/joy.cpl/joy.rc:61
msgid "Buttons"
msgstr "버튼"
#: dlls/joy.cpl/joy.rc:64
#: dlls/joy.cpl/joy.rc:62
#, fuzzy
#| msgid "Test Force Feedback"
msgid "Force Feedback Effect"
msgstr "강제 피드백 테스트"
#: dlls/joy.cpl/joy.rc:66
#: dlls/joy.cpl/joy.rc:64
msgid ""
"Press any button in the controller to activate the chosen effect. The effect "
"direction can be changed with the controller axis."
@ -3753,60 +3761,60 @@ msgstr ""
"컨트롤러의 아무 버튼이나 눌러 선택한 효과를 활성화합니다. 컨트롤러 축을 이용"
"하여 효과 방향을 바꿀 수 있습니다."
#: dlls/joy.cpl/joy.rc:72
#: dlls/joy.cpl/joy.rc:70
msgid "XInput"
msgstr ""
#: dlls/joy.cpl/joy.rc:75
#: dlls/joy.cpl/joy.rc:73
#, fuzzy
#| msgid "User"
msgid "User #0"
msgstr "사용자"
#: dlls/joy.cpl/joy.rc:76
#: dlls/joy.cpl/joy.rc:74
#, fuzzy
#| msgid "User"
msgid "User #1"
msgstr "사용자"
#: dlls/joy.cpl/joy.rc:77
#: dlls/joy.cpl/joy.rc:75
#, fuzzy
#| msgid "User"
msgid "User #2"
msgstr "사용자"
#: dlls/joy.cpl/joy.rc:78
#: dlls/joy.cpl/joy.rc:76
#, fuzzy
#| msgid "User"
msgid "User #3"
msgstr "사용자"
#: dlls/joy.cpl/joy.rc:80
#: dlls/joy.cpl/joy.rc:78
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
#: dlls/joy.cpl/joy.rc:82
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
#: dlls/joy.cpl/joy.rc:86
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
#: dlls/joy.cpl/joy.rc:90
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:97 dlls/joy.cpl/joy.rc:98 dlls/joy.cpl/joy.rc:99
#: dlls/joy.cpl/joy.rc:100
#: dlls/joy.cpl/joy.rc:95 dlls/joy.cpl/joy.rc:96 dlls/joy.cpl/joy.rc:97
#: dlls/joy.cpl/joy.rc:98
msgid "Rumble"
msgstr ""

View file

@ -3754,17 +3754,25 @@ msgstr ""
msgid "DInput"
msgstr ""
#: dlls/joy.cpl/joy.rc:63
#: dlls/joy.cpl/joy.rc:59
msgid "Axes"
msgstr ""
#: dlls/joy.cpl/joy.rc:60
msgid "POVs"
msgstr ""
#: dlls/joy.cpl/joy.rc:61
msgid "Buttons"
msgstr "Mygtukai"
#: dlls/joy.cpl/joy.rc:64
#: dlls/joy.cpl/joy.rc:62
#, fuzzy
#| msgid "Test Force Feedback"
msgid "Force Feedback Effect"
msgstr "Testuoti „Force Feedback“"
#: dlls/joy.cpl/joy.rc:66
#: dlls/joy.cpl/joy.rc:64
msgid ""
"Press any button in the controller to activate the chosen effect. The effect "
"direction can be changed with the controller axis."
@ -3772,60 +3780,60 @@ msgstr ""
"Spauskite bet kurį valdiklio mygtuką pasirinktam efektui aktyvuoti. Efekto "
"kryptis gali būti pakeista valdiklio ašimi."
#: dlls/joy.cpl/joy.rc:72
#: dlls/joy.cpl/joy.rc:70
msgid "XInput"
msgstr ""
#: dlls/joy.cpl/joy.rc:75
#: dlls/joy.cpl/joy.rc:73
#, fuzzy
#| msgid "User"
msgid "User #0"
msgstr "Naudotojas"
#: dlls/joy.cpl/joy.rc:76
#: dlls/joy.cpl/joy.rc:74
#, fuzzy
#| msgid "User"
msgid "User #1"
msgstr "Naudotojas"
#: dlls/joy.cpl/joy.rc:77
#: dlls/joy.cpl/joy.rc:75
#, fuzzy
#| msgid "User"
msgid "User #2"
msgstr "Naudotojas"
#: dlls/joy.cpl/joy.rc:78
#: dlls/joy.cpl/joy.rc:76
#, fuzzy
#| msgid "User"
msgid "User #3"
msgstr "Naudotojas"
#: dlls/joy.cpl/joy.rc:80
#: dlls/joy.cpl/joy.rc:78
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
#: dlls/joy.cpl/joy.rc:82
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
#: dlls/joy.cpl/joy.rc:86
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
#: dlls/joy.cpl/joy.rc:90
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:97 dlls/joy.cpl/joy.rc:98 dlls/joy.cpl/joy.rc:99
#: dlls/joy.cpl/joy.rc:100
#: dlls/joy.cpl/joy.rc:95 dlls/joy.cpl/joy.rc:96 dlls/joy.cpl/joy.rc:97
#: dlls/joy.cpl/joy.rc:98
msgid "Rumble"
msgstr ""

View file

@ -3669,66 +3669,74 @@ msgstr ""
msgid "DInput"
msgstr ""
#: dlls/joy.cpl/joy.rc:63
#: dlls/joy.cpl/joy.rc:59
msgid "Axes"
msgstr ""
#: dlls/joy.cpl/joy.rc:60
msgid "POVs"
msgstr ""
#: dlls/joy.cpl/joy.rc:61
msgid "Buttons"
msgstr ""
#: dlls/joy.cpl/joy.rc:64
#: dlls/joy.cpl/joy.rc:62
msgid "Force Feedback Effect"
msgstr ""
#: dlls/joy.cpl/joy.rc:66
#: dlls/joy.cpl/joy.rc:64
msgid ""
"Press any button in the controller to activate the chosen effect. The effect "
"direction can be changed with the controller axis."
msgstr ""
#: dlls/joy.cpl/joy.rc:72
#: dlls/joy.cpl/joy.rc:70
msgid "XInput"
msgstr ""
#: dlls/joy.cpl/joy.rc:75
#: dlls/joy.cpl/joy.rc:73
msgid "User #0"
msgstr ""
#: dlls/joy.cpl/joy.rc:76
#: dlls/joy.cpl/joy.rc:74
msgid "User #1"
msgstr ""
#: dlls/joy.cpl/joy.rc:77
#: dlls/joy.cpl/joy.rc:75
msgid "User #2"
msgstr ""
#: dlls/joy.cpl/joy.rc:78
#: dlls/joy.cpl/joy.rc:76
msgid "User #3"
msgstr ""
#: dlls/joy.cpl/joy.rc:80
#: dlls/joy.cpl/joy.rc:78
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
#: dlls/joy.cpl/joy.rc:82
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
#: dlls/joy.cpl/joy.rc:86
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
#: dlls/joy.cpl/joy.rc:90
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:97 dlls/joy.cpl/joy.rc:98 dlls/joy.cpl/joy.rc:99
#: dlls/joy.cpl/joy.rc:100
#: dlls/joy.cpl/joy.rc:95 dlls/joy.cpl/joy.rc:96 dlls/joy.cpl/joy.rc:97
#: dlls/joy.cpl/joy.rc:98
msgid "Rumble"
msgstr ""

View file

@ -3765,17 +3765,25 @@ msgstr ""
msgid "DInput"
msgstr ""
#: dlls/joy.cpl/joy.rc:63
#: dlls/joy.cpl/joy.rc:59
msgid "Axes"
msgstr ""
#: dlls/joy.cpl/joy.rc:60
msgid "POVs"
msgstr ""
#: dlls/joy.cpl/joy.rc:61
msgid "Buttons"
msgstr "Knapper"
#: dlls/joy.cpl/joy.rc:64
#: dlls/joy.cpl/joy.rc:62
#, fuzzy
#| msgid "Test Force Feedback"
msgid "Force Feedback Effect"
msgstr "Test Force Feedback"
#: dlls/joy.cpl/joy.rc:66
#: dlls/joy.cpl/joy.rc:64
msgid ""
"Press any button in the controller to activate the chosen effect. The effect "
"direction can be changed with the controller axis."
@ -3783,60 +3791,60 @@ msgstr ""
"Trykk en knapp på kontrolleren for å aktivere den valgte effekten. Effektens "
"retning kan endres med kontrollerens akse."
#: dlls/joy.cpl/joy.rc:72
#: dlls/joy.cpl/joy.rc:70
msgid "XInput"
msgstr ""
#: dlls/joy.cpl/joy.rc:75
#: dlls/joy.cpl/joy.rc:73
#, fuzzy
#| msgid "User"
msgid "User #0"
msgstr "Bruker"
#: dlls/joy.cpl/joy.rc:76
#: dlls/joy.cpl/joy.rc:74
#, fuzzy
#| msgid "User"
msgid "User #1"
msgstr "Bruker"
#: dlls/joy.cpl/joy.rc:77
#: dlls/joy.cpl/joy.rc:75
#, fuzzy
#| msgid "User"
msgid "User #2"
msgstr "Bruker"
#: dlls/joy.cpl/joy.rc:78
#: dlls/joy.cpl/joy.rc:76
#, fuzzy
#| msgid "User"
msgid "User #3"
msgstr "Bruker"
#: dlls/joy.cpl/joy.rc:80
#: dlls/joy.cpl/joy.rc:78
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
#: dlls/joy.cpl/joy.rc:82
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
#: dlls/joy.cpl/joy.rc:86
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
#: dlls/joy.cpl/joy.rc:90
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:97 dlls/joy.cpl/joy.rc:98 dlls/joy.cpl/joy.rc:99
#: dlls/joy.cpl/joy.rc:100
#: dlls/joy.cpl/joy.rc:95 dlls/joy.cpl/joy.rc:96 dlls/joy.cpl/joy.rc:97
#: dlls/joy.cpl/joy.rc:98
msgid "Rumble"
msgstr ""

View file

@ -3765,17 +3765,25 @@ msgstr ""
msgid "DInput"
msgstr ""
#: dlls/joy.cpl/joy.rc:63
#: dlls/joy.cpl/joy.rc:59
msgid "Axes"
msgstr ""
#: dlls/joy.cpl/joy.rc:60
msgid "POVs"
msgstr ""
#: dlls/joy.cpl/joy.rc:61
msgid "Buttons"
msgstr "Knoppen"
#: dlls/joy.cpl/joy.rc:64
#: dlls/joy.cpl/joy.rc:62
#, fuzzy
#| msgid "Test Force Feedback"
msgid "Force Feedback Effect"
msgstr "Force Feedback Testen"
#: dlls/joy.cpl/joy.rc:66
#: dlls/joy.cpl/joy.rc:64
msgid ""
"Press any button in the controller to activate the chosen effect. The effect "
"direction can be changed with the controller axis."
@ -3783,60 +3791,60 @@ 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
#: dlls/joy.cpl/joy.rc:70
msgid "XInput"
msgstr ""
#: dlls/joy.cpl/joy.rc:75
#: dlls/joy.cpl/joy.rc:73
#, fuzzy
#| msgid "User"
msgid "User #0"
msgstr "Gebruiker"
#: dlls/joy.cpl/joy.rc:76
#: dlls/joy.cpl/joy.rc:74
#, fuzzy
#| msgid "User"
msgid "User #1"
msgstr "Gebruiker"
#: dlls/joy.cpl/joy.rc:77
#: dlls/joy.cpl/joy.rc:75
#, fuzzy
#| msgid "User"
msgid "User #2"
msgstr "Gebruiker"
#: dlls/joy.cpl/joy.rc:78
#: dlls/joy.cpl/joy.rc:76
#, fuzzy
#| msgid "User"
msgid "User #3"
msgstr "Gebruiker"
#: dlls/joy.cpl/joy.rc:80
#: dlls/joy.cpl/joy.rc:78
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
#: dlls/joy.cpl/joy.rc:82
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
#: dlls/joy.cpl/joy.rc:86
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
#: dlls/joy.cpl/joy.rc:90
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:97 dlls/joy.cpl/joy.rc:98 dlls/joy.cpl/joy.rc:99
#: dlls/joy.cpl/joy.rc:100
#: dlls/joy.cpl/joy.rc:95 dlls/joy.cpl/joy.rc:96 dlls/joy.cpl/joy.rc:97
#: dlls/joy.cpl/joy.rc:98
msgid "Rumble"
msgstr ""

View file

@ -3667,66 +3667,74 @@ msgstr ""
msgid "DInput"
msgstr ""
#: dlls/joy.cpl/joy.rc:63
#: dlls/joy.cpl/joy.rc:59
msgid "Axes"
msgstr ""
#: dlls/joy.cpl/joy.rc:60
msgid "POVs"
msgstr ""
#: dlls/joy.cpl/joy.rc:61
msgid "Buttons"
msgstr ""
#: dlls/joy.cpl/joy.rc:64
#: dlls/joy.cpl/joy.rc:62
msgid "Force Feedback Effect"
msgstr ""
#: dlls/joy.cpl/joy.rc:66
#: dlls/joy.cpl/joy.rc:64
msgid ""
"Press any button in the controller to activate the chosen effect. The effect "
"direction can be changed with the controller axis."
msgstr ""
#: dlls/joy.cpl/joy.rc:72
#: dlls/joy.cpl/joy.rc:70
msgid "XInput"
msgstr ""
#: dlls/joy.cpl/joy.rc:75
#: dlls/joy.cpl/joy.rc:73
msgid "User #0"
msgstr ""
#: dlls/joy.cpl/joy.rc:76
#: dlls/joy.cpl/joy.rc:74
msgid "User #1"
msgstr ""
#: dlls/joy.cpl/joy.rc:77
#: dlls/joy.cpl/joy.rc:75
msgid "User #2"
msgstr ""
#: dlls/joy.cpl/joy.rc:78
#: dlls/joy.cpl/joy.rc:76
msgid "User #3"
msgstr ""
#: dlls/joy.cpl/joy.rc:80
#: dlls/joy.cpl/joy.rc:78
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
#: dlls/joy.cpl/joy.rc:82
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
#: dlls/joy.cpl/joy.rc:86
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
#: dlls/joy.cpl/joy.rc:90
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:97 dlls/joy.cpl/joy.rc:98 dlls/joy.cpl/joy.rc:99
#: dlls/joy.cpl/joy.rc:100
#: dlls/joy.cpl/joy.rc:95 dlls/joy.cpl/joy.rc:96 dlls/joy.cpl/joy.rc:97
#: dlls/joy.cpl/joy.rc:98
msgid "Rumble"
msgstr ""

View file

@ -3667,66 +3667,74 @@ msgstr ""
msgid "DInput"
msgstr ""
#: dlls/joy.cpl/joy.rc:63
#: dlls/joy.cpl/joy.rc:59
msgid "Axes"
msgstr ""
#: dlls/joy.cpl/joy.rc:60
msgid "POVs"
msgstr ""
#: dlls/joy.cpl/joy.rc:61
msgid "Buttons"
msgstr ""
#: dlls/joy.cpl/joy.rc:64
#: dlls/joy.cpl/joy.rc:62
msgid "Force Feedback Effect"
msgstr ""
#: dlls/joy.cpl/joy.rc:66
#: dlls/joy.cpl/joy.rc:64
msgid ""
"Press any button in the controller to activate the chosen effect. The effect "
"direction can be changed with the controller axis."
msgstr ""
#: dlls/joy.cpl/joy.rc:72
#: dlls/joy.cpl/joy.rc:70
msgid "XInput"
msgstr ""
#: dlls/joy.cpl/joy.rc:75
#: dlls/joy.cpl/joy.rc:73
msgid "User #0"
msgstr ""
#: dlls/joy.cpl/joy.rc:76
#: dlls/joy.cpl/joy.rc:74
msgid "User #1"
msgstr ""
#: dlls/joy.cpl/joy.rc:77
#: dlls/joy.cpl/joy.rc:75
msgid "User #2"
msgstr ""
#: dlls/joy.cpl/joy.rc:78
#: dlls/joy.cpl/joy.rc:76
msgid "User #3"
msgstr ""
#: dlls/joy.cpl/joy.rc:80
#: dlls/joy.cpl/joy.rc:78
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
#: dlls/joy.cpl/joy.rc:82
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
#: dlls/joy.cpl/joy.rc:86
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
#: dlls/joy.cpl/joy.rc:90
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:97 dlls/joy.cpl/joy.rc:98 dlls/joy.cpl/joy.rc:99
#: dlls/joy.cpl/joy.rc:100
#: dlls/joy.cpl/joy.rc:95 dlls/joy.cpl/joy.rc:96 dlls/joy.cpl/joy.rc:97
#: dlls/joy.cpl/joy.rc:98
msgid "Rumble"
msgstr ""

View file

@ -3770,17 +3770,25 @@ msgstr ""
msgid "DInput"
msgstr ""
#: dlls/joy.cpl/joy.rc:63
#: dlls/joy.cpl/joy.rc:59
msgid "Axes"
msgstr ""
#: dlls/joy.cpl/joy.rc:60
msgid "POVs"
msgstr ""
#: dlls/joy.cpl/joy.rc:61
msgid "Buttons"
msgstr "Przyciski"
#: dlls/joy.cpl/joy.rc:64
#: dlls/joy.cpl/joy.rc:62
#, fuzzy
#| msgid "Test Force Feedback"
msgid "Force Feedback Effect"
msgstr "Próbowanie odczuć siły zwrotnej"
#: dlls/joy.cpl/joy.rc:66
#: dlls/joy.cpl/joy.rc:64
msgid ""
"Press any button in the controller to activate the chosen effect. The effect "
"direction can be changed with the controller axis."
@ -3788,60 +3796,60 @@ 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
#: dlls/joy.cpl/joy.rc:70
msgid "XInput"
msgstr ""
#: dlls/joy.cpl/joy.rc:75
#: dlls/joy.cpl/joy.rc:73
#, fuzzy
#| msgid "User"
msgid "User #0"
msgstr "Użytkownik"
#: dlls/joy.cpl/joy.rc:76
#: dlls/joy.cpl/joy.rc:74
#, fuzzy
#| msgid "User"
msgid "User #1"
msgstr "Użytkownik"
#: dlls/joy.cpl/joy.rc:77
#: dlls/joy.cpl/joy.rc:75
#, fuzzy
#| msgid "User"
msgid "User #2"
msgstr "Użytkownik"
#: dlls/joy.cpl/joy.rc:78
#: dlls/joy.cpl/joy.rc:76
#, fuzzy
#| msgid "User"
msgid "User #3"
msgstr "Użytkownik"
#: dlls/joy.cpl/joy.rc:80
#: dlls/joy.cpl/joy.rc:78
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
#: dlls/joy.cpl/joy.rc:82
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
#: dlls/joy.cpl/joy.rc:86
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
#: dlls/joy.cpl/joy.rc:90
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:97 dlls/joy.cpl/joy.rc:98 dlls/joy.cpl/joy.rc:99
#: dlls/joy.cpl/joy.rc:100
#: dlls/joy.cpl/joy.rc:95 dlls/joy.cpl/joy.rc:96 dlls/joy.cpl/joy.rc:97
#: dlls/joy.cpl/joy.rc:98
msgid "Rumble"
msgstr ""

View file

@ -3766,17 +3766,25 @@ msgstr ""
msgid "DInput"
msgstr ""
#: dlls/joy.cpl/joy.rc:63
#: dlls/joy.cpl/joy.rc:59
msgid "Axes"
msgstr ""
#: dlls/joy.cpl/joy.rc:60
msgid "POVs"
msgstr ""
#: dlls/joy.cpl/joy.rc:61
msgid "Buttons"
msgstr "Botões"
#: dlls/joy.cpl/joy.rc:64
#: dlls/joy.cpl/joy.rc:62
#, fuzzy
#| msgid "Test Force Feedback"
msgid "Force Feedback Effect"
msgstr "Testar Force Feedback"
#: dlls/joy.cpl/joy.rc:66
#: dlls/joy.cpl/joy.rc:64
msgid ""
"Press any button in the controller to activate the chosen effect. The effect "
"direction can be changed with the controller axis."
@ -3784,60 +3792,60 @@ 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
#: dlls/joy.cpl/joy.rc:70
msgid "XInput"
msgstr ""
#: dlls/joy.cpl/joy.rc:75
#: dlls/joy.cpl/joy.rc:73
#, fuzzy
#| msgid "User"
msgid "User #0"
msgstr "Usuário"
#: dlls/joy.cpl/joy.rc:76
#: dlls/joy.cpl/joy.rc:74
#, fuzzy
#| msgid "User"
msgid "User #1"
msgstr "Usuário"
#: dlls/joy.cpl/joy.rc:77
#: dlls/joy.cpl/joy.rc:75
#, fuzzy
#| msgid "User"
msgid "User #2"
msgstr "Usuário"
#: dlls/joy.cpl/joy.rc:78
#: dlls/joy.cpl/joy.rc:76
#, fuzzy
#| msgid "User"
msgid "User #3"
msgstr "Usuário"
#: dlls/joy.cpl/joy.rc:80
#: dlls/joy.cpl/joy.rc:78
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
#: dlls/joy.cpl/joy.rc:82
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
#: dlls/joy.cpl/joy.rc:86
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
#: dlls/joy.cpl/joy.rc:90
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:97 dlls/joy.cpl/joy.rc:98 dlls/joy.cpl/joy.rc:99
#: dlls/joy.cpl/joy.rc:100
#: dlls/joy.cpl/joy.rc:95 dlls/joy.cpl/joy.rc:96 dlls/joy.cpl/joy.rc:97
#: dlls/joy.cpl/joy.rc:98
msgid "Rumble"
msgstr ""

View file

@ -3813,17 +3813,25 @@ msgstr ""
msgid "DInput"
msgstr ""
#: dlls/joy.cpl/joy.rc:63
#: dlls/joy.cpl/joy.rc:59
msgid "Axes"
msgstr ""
#: dlls/joy.cpl/joy.rc:60
msgid "POVs"
msgstr ""
#: dlls/joy.cpl/joy.rc:61
msgid "Buttons"
msgstr "Botões"
#: dlls/joy.cpl/joy.rc:64
#: dlls/joy.cpl/joy.rc:62
#, fuzzy
#| msgid "Test Force Feedback"
msgid "Force Feedback Effect"
msgstr "Testar Force Feedback"
#: dlls/joy.cpl/joy.rc:66
#: dlls/joy.cpl/joy.rc:64
msgid ""
"Press any button in the controller to activate the chosen effect. The effect "
"direction can be changed with the controller axis."
@ -3831,60 +3839,60 @@ 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
#: dlls/joy.cpl/joy.rc:70
msgid "XInput"
msgstr ""
#: dlls/joy.cpl/joy.rc:75
#: dlls/joy.cpl/joy.rc:73
#, fuzzy
#| msgid "User"
msgid "User #0"
msgstr "Utilizador"
#: dlls/joy.cpl/joy.rc:76
#: dlls/joy.cpl/joy.rc:74
#, fuzzy
#| msgid "User"
msgid "User #1"
msgstr "Utilizador"
#: dlls/joy.cpl/joy.rc:77
#: dlls/joy.cpl/joy.rc:75
#, fuzzy
#| msgid "User"
msgid "User #2"
msgstr "Utilizador"
#: dlls/joy.cpl/joy.rc:78
#: dlls/joy.cpl/joy.rc:76
#, fuzzy
#| msgid "User"
msgid "User #3"
msgstr "Utilizador"
#: dlls/joy.cpl/joy.rc:80
#: dlls/joy.cpl/joy.rc:78
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
#: dlls/joy.cpl/joy.rc:82
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
#: dlls/joy.cpl/joy.rc:86
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
#: dlls/joy.cpl/joy.rc:90
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:97 dlls/joy.cpl/joy.rc:98 dlls/joy.cpl/joy.rc:99
#: dlls/joy.cpl/joy.rc:100
#: dlls/joy.cpl/joy.rc:95 dlls/joy.cpl/joy.rc:96 dlls/joy.cpl/joy.rc:97
#: dlls/joy.cpl/joy.rc:98
msgid "Rumble"
msgstr ""

View file

@ -3696,66 +3696,74 @@ msgstr ""
msgid "DInput"
msgstr ""
#: dlls/joy.cpl/joy.rc:63
#: dlls/joy.cpl/joy.rc:59
msgid "Axes"
msgstr ""
#: dlls/joy.cpl/joy.rc:60
msgid "POVs"
msgstr ""
#: dlls/joy.cpl/joy.rc:61
msgid "Buttons"
msgstr ""
#: dlls/joy.cpl/joy.rc:64
#: dlls/joy.cpl/joy.rc:62
msgid "Force Feedback Effect"
msgstr ""
#: dlls/joy.cpl/joy.rc:66
#: dlls/joy.cpl/joy.rc:64
msgid ""
"Press any button in the controller to activate the chosen effect. The effect "
"direction can be changed with the controller axis."
msgstr ""
#: dlls/joy.cpl/joy.rc:72
#: dlls/joy.cpl/joy.rc:70
msgid "XInput"
msgstr ""
#: dlls/joy.cpl/joy.rc:75
#: dlls/joy.cpl/joy.rc:73
msgid "User #0"
msgstr ""
#: dlls/joy.cpl/joy.rc:76
#: dlls/joy.cpl/joy.rc:74
msgid "User #1"
msgstr ""
#: dlls/joy.cpl/joy.rc:77
#: dlls/joy.cpl/joy.rc:75
msgid "User #2"
msgstr ""
#: dlls/joy.cpl/joy.rc:78
#: dlls/joy.cpl/joy.rc:76
msgid "User #3"
msgstr ""
#: dlls/joy.cpl/joy.rc:80
#: dlls/joy.cpl/joy.rc:78
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
#: dlls/joy.cpl/joy.rc:82
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
#: dlls/joy.cpl/joy.rc:86
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
#: dlls/joy.cpl/joy.rc:90
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:97 dlls/joy.cpl/joy.rc:98 dlls/joy.cpl/joy.rc:99
#: dlls/joy.cpl/joy.rc:100
#: dlls/joy.cpl/joy.rc:95 dlls/joy.cpl/joy.rc:96 dlls/joy.cpl/joy.rc:97
#: dlls/joy.cpl/joy.rc:98
msgid "Rumble"
msgstr ""

View file

@ -3768,74 +3768,82 @@ msgstr ""
msgid "DInput"
msgstr ""
#: dlls/joy.cpl/joy.rc:63
#: dlls/joy.cpl/joy.rc:59
msgid "Axes"
msgstr ""
#: dlls/joy.cpl/joy.rc:60
msgid "POVs"
msgstr ""
#: dlls/joy.cpl/joy.rc:61
msgid "Buttons"
msgstr "Butoane"
#: dlls/joy.cpl/joy.rc:64
#: dlls/joy.cpl/joy.rc:62
msgid "Force Feedback Effect"
msgstr ""
#: dlls/joy.cpl/joy.rc:66
#: dlls/joy.cpl/joy.rc:64
msgid ""
"Press any button in the controller to activate the chosen effect. The effect "
"direction can be changed with the controller axis."
msgstr ""
#: dlls/joy.cpl/joy.rc:72
#: dlls/joy.cpl/joy.rc:70
msgid "XInput"
msgstr ""
#: dlls/joy.cpl/joy.rc:75
#: dlls/joy.cpl/joy.rc:73
#, fuzzy
#| msgid "User"
msgid "User #0"
msgstr "Utilizator"
#: dlls/joy.cpl/joy.rc:76
#: dlls/joy.cpl/joy.rc:74
#, fuzzy
#| msgid "User"
msgid "User #1"
msgstr "Utilizator"
#: dlls/joy.cpl/joy.rc:77
#: dlls/joy.cpl/joy.rc:75
#, fuzzy
#| msgid "User"
msgid "User #2"
msgstr "Utilizator"
#: dlls/joy.cpl/joy.rc:78
#: dlls/joy.cpl/joy.rc:76
#, fuzzy
#| msgid "User"
msgid "User #3"
msgstr "Utilizator"
#: dlls/joy.cpl/joy.rc:80
#: dlls/joy.cpl/joy.rc:78
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
#: dlls/joy.cpl/joy.rc:82
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
#: dlls/joy.cpl/joy.rc:86
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
#: dlls/joy.cpl/joy.rc:90
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:97 dlls/joy.cpl/joy.rc:98 dlls/joy.cpl/joy.rc:99
#: dlls/joy.cpl/joy.rc:100
#: dlls/joy.cpl/joy.rc:95 dlls/joy.cpl/joy.rc:96 dlls/joy.cpl/joy.rc:97
#: dlls/joy.cpl/joy.rc:98
msgid "Rumble"
msgstr ""

View file

@ -3773,17 +3773,25 @@ msgstr ""
msgid "DInput"
msgstr ""
#: dlls/joy.cpl/joy.rc:63
#: dlls/joy.cpl/joy.rc:59
msgid "Axes"
msgstr ""
#: dlls/joy.cpl/joy.rc:60
msgid "POVs"
msgstr ""
#: dlls/joy.cpl/joy.rc:61
msgid "Buttons"
msgstr "Кнопки"
#: dlls/joy.cpl/joy.rc:64
#: dlls/joy.cpl/joy.rc:62
#, fuzzy
#| msgid "Test Force Feedback"
msgid "Force Feedback Effect"
msgstr "Проверить отдачу"
#: dlls/joy.cpl/joy.rc:66
#: dlls/joy.cpl/joy.rc:64
msgid ""
"Press any button in the controller to activate the chosen effect. The effect "
"direction can be changed with the controller axis."
@ -3791,60 +3799,60 @@ msgstr ""
"Нажмите любую кнопку на контроллере, чтобы активировать выбранный эффект. "
"Направление эффекта может быть изменено с помощью осей контроллера."
#: dlls/joy.cpl/joy.rc:72
#: dlls/joy.cpl/joy.rc:70
msgid "XInput"
msgstr ""
#: dlls/joy.cpl/joy.rc:75
#: dlls/joy.cpl/joy.rc:73
#, fuzzy
#| msgid "User"
msgid "User #0"
msgstr "Имя"
#: dlls/joy.cpl/joy.rc:76
#: dlls/joy.cpl/joy.rc:74
#, fuzzy
#| msgid "User"
msgid "User #1"
msgstr "Имя"
#: dlls/joy.cpl/joy.rc:77
#: dlls/joy.cpl/joy.rc:75
#, fuzzy
#| msgid "User"
msgid "User #2"
msgstr "Имя"
#: dlls/joy.cpl/joy.rc:78
#: dlls/joy.cpl/joy.rc:76
#, fuzzy
#| msgid "User"
msgid "User #3"
msgstr "Имя"
#: dlls/joy.cpl/joy.rc:80
#: dlls/joy.cpl/joy.rc:78
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
#: dlls/joy.cpl/joy.rc:82
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
#: dlls/joy.cpl/joy.rc:86
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
#: dlls/joy.cpl/joy.rc:90
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:97 dlls/joy.cpl/joy.rc:98 dlls/joy.cpl/joy.rc:99
#: dlls/joy.cpl/joy.rc:100
#: dlls/joy.cpl/joy.rc:95 dlls/joy.cpl/joy.rc:96 dlls/joy.cpl/joy.rc:97
#: dlls/joy.cpl/joy.rc:98
msgid "Rumble"
msgstr ""

View file

@ -3700,74 +3700,82 @@ msgstr ""
msgid "DInput"
msgstr ""
#: dlls/joy.cpl/joy.rc:63
#: dlls/joy.cpl/joy.rc:59
msgid "Axes"
msgstr ""
#: dlls/joy.cpl/joy.rc:60
msgid "POVs"
msgstr ""
#: dlls/joy.cpl/joy.rc:61
msgid "Buttons"
msgstr "බොත්තම්"
#: dlls/joy.cpl/joy.rc:64
#: dlls/joy.cpl/joy.rc:62
msgid "Force Feedback Effect"
msgstr ""
#: dlls/joy.cpl/joy.rc:66
#: dlls/joy.cpl/joy.rc:64
msgid ""
"Press any button in the controller to activate the chosen effect. The effect "
"direction can be changed with the controller axis."
msgstr ""
#: dlls/joy.cpl/joy.rc:72
#: dlls/joy.cpl/joy.rc:70
msgid "XInput"
msgstr ""
#: dlls/joy.cpl/joy.rc:75
#: dlls/joy.cpl/joy.rc:73
#, fuzzy
#| msgid "User"
msgid "User #0"
msgstr "පරිශීලකය"
#: dlls/joy.cpl/joy.rc:76
#: dlls/joy.cpl/joy.rc:74
#, fuzzy
#| msgid "User"
msgid "User #1"
msgstr "පරිශීලකය"
#: dlls/joy.cpl/joy.rc:77
#: dlls/joy.cpl/joy.rc:75
#, fuzzy
#| msgid "User"
msgid "User #2"
msgstr "පරිශීලකය"
#: dlls/joy.cpl/joy.rc:78
#: dlls/joy.cpl/joy.rc:76
#, fuzzy
#| msgid "User"
msgid "User #3"
msgstr "පරිශීලකය"
#: dlls/joy.cpl/joy.rc:80
#: dlls/joy.cpl/joy.rc:78
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
#: dlls/joy.cpl/joy.rc:82
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
#: dlls/joy.cpl/joy.rc:86
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
#: dlls/joy.cpl/joy.rc:90
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:97 dlls/joy.cpl/joy.rc:98 dlls/joy.cpl/joy.rc:99
#: dlls/joy.cpl/joy.rc:100
#: dlls/joy.cpl/joy.rc:95 dlls/joy.cpl/joy.rc:96 dlls/joy.cpl/joy.rc:97
#: dlls/joy.cpl/joy.rc:98
msgid "Rumble"
msgstr ""

View file

@ -3747,66 +3747,74 @@ msgstr ""
msgid "DInput"
msgstr ""
#: dlls/joy.cpl/joy.rc:63
#: dlls/joy.cpl/joy.rc:59
msgid "Axes"
msgstr ""
#: dlls/joy.cpl/joy.rc:60
msgid "POVs"
msgstr ""
#: dlls/joy.cpl/joy.rc:61
msgid "Buttons"
msgstr ""
#: dlls/joy.cpl/joy.rc:64
#: dlls/joy.cpl/joy.rc:62
msgid "Force Feedback Effect"
msgstr ""
#: dlls/joy.cpl/joy.rc:66
#: dlls/joy.cpl/joy.rc:64
msgid ""
"Press any button in the controller to activate the chosen effect. The effect "
"direction can be changed with the controller axis."
msgstr ""
#: dlls/joy.cpl/joy.rc:72
#: dlls/joy.cpl/joy.rc:70
msgid "XInput"
msgstr ""
#: dlls/joy.cpl/joy.rc:75
#: dlls/joy.cpl/joy.rc:73
msgid "User #0"
msgstr ""
#: dlls/joy.cpl/joy.rc:76
#: dlls/joy.cpl/joy.rc:74
msgid "User #1"
msgstr ""
#: dlls/joy.cpl/joy.rc:77
#: dlls/joy.cpl/joy.rc:75
msgid "User #2"
msgstr ""
#: dlls/joy.cpl/joy.rc:78
#: dlls/joy.cpl/joy.rc:76
msgid "User #3"
msgstr ""
#: dlls/joy.cpl/joy.rc:80
#: dlls/joy.cpl/joy.rc:78
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
#: dlls/joy.cpl/joy.rc:82
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
#: dlls/joy.cpl/joy.rc:86
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
#: dlls/joy.cpl/joy.rc:90
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:97 dlls/joy.cpl/joy.rc:98 dlls/joy.cpl/joy.rc:99
#: dlls/joy.cpl/joy.rc:100
#: dlls/joy.cpl/joy.rc:95 dlls/joy.cpl/joy.rc:96 dlls/joy.cpl/joy.rc:97
#: dlls/joy.cpl/joy.rc:98
msgid "Rumble"
msgstr ""

View file

@ -3835,74 +3835,82 @@ msgstr ""
msgid "DInput"
msgstr ""
#: dlls/joy.cpl/joy.rc:63
#: dlls/joy.cpl/joy.rc:59
msgid "Axes"
msgstr ""
#: dlls/joy.cpl/joy.rc:60
msgid "POVs"
msgstr ""
#: dlls/joy.cpl/joy.rc:61
msgid "Buttons"
msgstr ""
#: dlls/joy.cpl/joy.rc:64
#: dlls/joy.cpl/joy.rc:62
msgid "Force Feedback Effect"
msgstr ""
#: dlls/joy.cpl/joy.rc:66
#: dlls/joy.cpl/joy.rc:64
msgid ""
"Press any button in the controller to activate the chosen effect. The effect "
"direction can be changed with the controller axis."
msgstr ""
#: dlls/joy.cpl/joy.rc:72
#: dlls/joy.cpl/joy.rc:70
msgid "XInput"
msgstr ""
#: dlls/joy.cpl/joy.rc:75
#: dlls/joy.cpl/joy.rc:73
#, fuzzy
#| msgid "User"
msgid "User #0"
msgstr "Uporabniško ime"
#: dlls/joy.cpl/joy.rc:76
#: dlls/joy.cpl/joy.rc:74
#, fuzzy
#| msgid "User"
msgid "User #1"
msgstr "Uporabniško ime"
#: dlls/joy.cpl/joy.rc:77
#: dlls/joy.cpl/joy.rc:75
#, fuzzy
#| msgid "User"
msgid "User #2"
msgstr "Uporabniško ime"
#: dlls/joy.cpl/joy.rc:78
#: dlls/joy.cpl/joy.rc:76
#, fuzzy
#| msgid "User"
msgid "User #3"
msgstr "Uporabniško ime"
#: dlls/joy.cpl/joy.rc:80
#: dlls/joy.cpl/joy.rc:78
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
#: dlls/joy.cpl/joy.rc:82
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
#: dlls/joy.cpl/joy.rc:86
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
#: dlls/joy.cpl/joy.rc:90
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:97 dlls/joy.cpl/joy.rc:98 dlls/joy.cpl/joy.rc:99
#: dlls/joy.cpl/joy.rc:100
#: dlls/joy.cpl/joy.rc:95 dlls/joy.cpl/joy.rc:96 dlls/joy.cpl/joy.rc:97
#: dlls/joy.cpl/joy.rc:98
msgid "Rumble"
msgstr ""

View file

@ -3811,74 +3811,82 @@ msgstr ""
msgid "DInput"
msgstr ""
#: dlls/joy.cpl/joy.rc:63
#: dlls/joy.cpl/joy.rc:59
msgid "Axes"
msgstr ""
#: dlls/joy.cpl/joy.rc:60
msgid "POVs"
msgstr ""
#: dlls/joy.cpl/joy.rc:61
msgid "Buttons"
msgstr ""
#: dlls/joy.cpl/joy.rc:64
#: dlls/joy.cpl/joy.rc:62
msgid "Force Feedback Effect"
msgstr ""
#: dlls/joy.cpl/joy.rc:66
#: dlls/joy.cpl/joy.rc:64
msgid ""
"Press any button in the controller to activate the chosen effect. The effect "
"direction can be changed with the controller axis."
msgstr ""
#: dlls/joy.cpl/joy.rc:72
#: dlls/joy.cpl/joy.rc:70
msgid "XInput"
msgstr ""
#: dlls/joy.cpl/joy.rc:75
#: dlls/joy.cpl/joy.rc:73
#, fuzzy
#| msgid "User"
msgid "User #0"
msgstr "Корисничко име"
#: dlls/joy.cpl/joy.rc:76
#: dlls/joy.cpl/joy.rc:74
#, fuzzy
#| msgid "User"
msgid "User #1"
msgstr "Корисничко име"
#: dlls/joy.cpl/joy.rc:77
#: dlls/joy.cpl/joy.rc:75
#, fuzzy
#| msgid "User"
msgid "User #2"
msgstr "Корисничко име"
#: dlls/joy.cpl/joy.rc:78
#: dlls/joy.cpl/joy.rc:76
#, fuzzy
#| msgid "User"
msgid "User #3"
msgstr "Корисничко име"
#: dlls/joy.cpl/joy.rc:80
#: dlls/joy.cpl/joy.rc:78
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
#: dlls/joy.cpl/joy.rc:82
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
#: dlls/joy.cpl/joy.rc:86
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
#: dlls/joy.cpl/joy.rc:90
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:97 dlls/joy.cpl/joy.rc:98 dlls/joy.cpl/joy.rc:99
#: dlls/joy.cpl/joy.rc:100
#: dlls/joy.cpl/joy.rc:95 dlls/joy.cpl/joy.rc:96 dlls/joy.cpl/joy.rc:97
#: dlls/joy.cpl/joy.rc:98
msgid "Rumble"
msgstr ""

View file

@ -3896,74 +3896,82 @@ msgstr ""
msgid "DInput"
msgstr ""
#: dlls/joy.cpl/joy.rc:63
#: dlls/joy.cpl/joy.rc:59
msgid "Axes"
msgstr ""
#: dlls/joy.cpl/joy.rc:60
msgid "POVs"
msgstr ""
#: dlls/joy.cpl/joy.rc:61
msgid "Buttons"
msgstr ""
#: dlls/joy.cpl/joy.rc:64
#: dlls/joy.cpl/joy.rc:62
msgid "Force Feedback Effect"
msgstr ""
#: dlls/joy.cpl/joy.rc:66
#: dlls/joy.cpl/joy.rc:64
msgid ""
"Press any button in the controller to activate the chosen effect. The effect "
"direction can be changed with the controller axis."
msgstr ""
#: dlls/joy.cpl/joy.rc:72
#: dlls/joy.cpl/joy.rc:70
msgid "XInput"
msgstr ""
#: dlls/joy.cpl/joy.rc:75
#: dlls/joy.cpl/joy.rc:73
#, fuzzy
#| msgid "User"
msgid "User #0"
msgstr "Korisničko ime"
#: dlls/joy.cpl/joy.rc:76
#: dlls/joy.cpl/joy.rc:74
#, fuzzy
#| msgid "User"
msgid "User #1"
msgstr "Korisničko ime"
#: dlls/joy.cpl/joy.rc:77
#: dlls/joy.cpl/joy.rc:75
#, fuzzy
#| msgid "User"
msgid "User #2"
msgstr "Korisničko ime"
#: dlls/joy.cpl/joy.rc:78
#: dlls/joy.cpl/joy.rc:76
#, fuzzy
#| msgid "User"
msgid "User #3"
msgstr "Korisničko ime"
#: dlls/joy.cpl/joy.rc:80
#: dlls/joy.cpl/joy.rc:78
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
#: dlls/joy.cpl/joy.rc:82
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
#: dlls/joy.cpl/joy.rc:86
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
#: dlls/joy.cpl/joy.rc:90
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:97 dlls/joy.cpl/joy.rc:98 dlls/joy.cpl/joy.rc:99
#: dlls/joy.cpl/joy.rc:100
#: dlls/joy.cpl/joy.rc:95 dlls/joy.cpl/joy.rc:96 dlls/joy.cpl/joy.rc:97
#: dlls/joy.cpl/joy.rc:98
msgid "Rumble"
msgstr ""

View file

@ -3792,17 +3792,25 @@ msgstr ""
msgid "DInput"
msgstr ""
#: dlls/joy.cpl/joy.rc:63
#: dlls/joy.cpl/joy.rc:59
msgid "Axes"
msgstr ""
#: dlls/joy.cpl/joy.rc:60
msgid "POVs"
msgstr ""
#: dlls/joy.cpl/joy.rc:61
msgid "Buttons"
msgstr "Knappar"
#: dlls/joy.cpl/joy.rc:64
#: dlls/joy.cpl/joy.rc:62
#, fuzzy
#| msgid "Test Force Feedback"
msgid "Force Feedback Effect"
msgstr "Testa kraftåterkoppling"
#: dlls/joy.cpl/joy.rc:66
#: dlls/joy.cpl/joy.rc:64
msgid ""
"Press any button in the controller to activate the chosen effect. The effect "
"direction can be changed with the controller axis."
@ -3810,60 +3818,60 @@ msgstr ""
"Tryck på en knapp i kontrollen för att aktivera vald effekt. "
"Effektriktningen kan ändras med kontrollaxeln."
#: dlls/joy.cpl/joy.rc:72
#: dlls/joy.cpl/joy.rc:70
msgid "XInput"
msgstr ""
#: dlls/joy.cpl/joy.rc:75
#: dlls/joy.cpl/joy.rc:73
#, fuzzy
#| msgid "User"
msgid "User #0"
msgstr "Användare"
#: dlls/joy.cpl/joy.rc:76
#: dlls/joy.cpl/joy.rc:74
#, fuzzy
#| msgid "User"
msgid "User #1"
msgstr "Användare"
#: dlls/joy.cpl/joy.rc:77
#: dlls/joy.cpl/joy.rc:75
#, fuzzy
#| msgid "User"
msgid "User #2"
msgstr "Användare"
#: dlls/joy.cpl/joy.rc:78
#: dlls/joy.cpl/joy.rc:76
#, fuzzy
#| msgid "User"
msgid "User #3"
msgstr "Användare"
#: dlls/joy.cpl/joy.rc:80
#: dlls/joy.cpl/joy.rc:78
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
#: dlls/joy.cpl/joy.rc:82
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
#: dlls/joy.cpl/joy.rc:86
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
#: dlls/joy.cpl/joy.rc:90
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:97 dlls/joy.cpl/joy.rc:98 dlls/joy.cpl/joy.rc:99
#: dlls/joy.cpl/joy.rc:100
#: dlls/joy.cpl/joy.rc:95 dlls/joy.cpl/joy.rc:96 dlls/joy.cpl/joy.rc:97
#: dlls/joy.cpl/joy.rc:98
msgid "Rumble"
msgstr ""

View file

@ -3633,66 +3633,74 @@ msgstr ""
msgid "DInput"
msgstr ""
#: dlls/joy.cpl/joy.rc:63
#: dlls/joy.cpl/joy.rc:59
msgid "Axes"
msgstr ""
#: dlls/joy.cpl/joy.rc:60
msgid "POVs"
msgstr ""
#: dlls/joy.cpl/joy.rc:61
msgid "Buttons"
msgstr ""
#: dlls/joy.cpl/joy.rc:64
#: dlls/joy.cpl/joy.rc:62
msgid "Force Feedback Effect"
msgstr ""
#: dlls/joy.cpl/joy.rc:66
#: dlls/joy.cpl/joy.rc:64
msgid ""
"Press any button in the controller to activate the chosen effect. The effect "
"direction can be changed with the controller axis."
msgstr ""
#: dlls/joy.cpl/joy.rc:72
#: dlls/joy.cpl/joy.rc:70
msgid "XInput"
msgstr ""
#: dlls/joy.cpl/joy.rc:75
#: dlls/joy.cpl/joy.rc:73
msgid "User #0"
msgstr ""
#: dlls/joy.cpl/joy.rc:76
#: dlls/joy.cpl/joy.rc:74
msgid "User #1"
msgstr ""
#: dlls/joy.cpl/joy.rc:77
#: dlls/joy.cpl/joy.rc:75
msgid "User #2"
msgstr ""
#: dlls/joy.cpl/joy.rc:78
#: dlls/joy.cpl/joy.rc:76
msgid "User #3"
msgstr ""
#: dlls/joy.cpl/joy.rc:80
#: dlls/joy.cpl/joy.rc:78
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
#: dlls/joy.cpl/joy.rc:82
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
#: dlls/joy.cpl/joy.rc:86
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
#: dlls/joy.cpl/joy.rc:90
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:97 dlls/joy.cpl/joy.rc:98 dlls/joy.cpl/joy.rc:99
#: dlls/joy.cpl/joy.rc:100
#: dlls/joy.cpl/joy.rc:95 dlls/joy.cpl/joy.rc:96 dlls/joy.cpl/joy.rc:97
#: dlls/joy.cpl/joy.rc:98
msgid "Rumble"
msgstr ""

View file

@ -3667,66 +3667,74 @@ msgstr ""
msgid "DInput"
msgstr ""
#: dlls/joy.cpl/joy.rc:63
#: dlls/joy.cpl/joy.rc:59
msgid "Axes"
msgstr ""
#: dlls/joy.cpl/joy.rc:60
msgid "POVs"
msgstr ""
#: dlls/joy.cpl/joy.rc:61
msgid "Buttons"
msgstr ""
#: dlls/joy.cpl/joy.rc:64
#: dlls/joy.cpl/joy.rc:62
msgid "Force Feedback Effect"
msgstr ""
#: dlls/joy.cpl/joy.rc:66
#: dlls/joy.cpl/joy.rc:64
msgid ""
"Press any button in the controller to activate the chosen effect. The effect "
"direction can be changed with the controller axis."
msgstr ""
#: dlls/joy.cpl/joy.rc:72
#: dlls/joy.cpl/joy.rc:70
msgid "XInput"
msgstr ""
#: dlls/joy.cpl/joy.rc:75
#: dlls/joy.cpl/joy.rc:73
msgid "User #0"
msgstr ""
#: dlls/joy.cpl/joy.rc:76
#: dlls/joy.cpl/joy.rc:74
msgid "User #1"
msgstr ""
#: dlls/joy.cpl/joy.rc:77
#: dlls/joy.cpl/joy.rc:75
msgid "User #2"
msgstr ""
#: dlls/joy.cpl/joy.rc:78
#: dlls/joy.cpl/joy.rc:76
msgid "User #3"
msgstr ""
#: dlls/joy.cpl/joy.rc:80
#: dlls/joy.cpl/joy.rc:78
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
#: dlls/joy.cpl/joy.rc:82
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
#: dlls/joy.cpl/joy.rc:86
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
#: dlls/joy.cpl/joy.rc:90
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:97 dlls/joy.cpl/joy.rc:98 dlls/joy.cpl/joy.rc:99
#: dlls/joy.cpl/joy.rc:100
#: dlls/joy.cpl/joy.rc:95 dlls/joy.cpl/joy.rc:96 dlls/joy.cpl/joy.rc:97
#: dlls/joy.cpl/joy.rc:98
msgid "Rumble"
msgstr ""

View file

@ -3725,66 +3725,74 @@ msgstr ""
msgid "DInput"
msgstr ""
#: dlls/joy.cpl/joy.rc:63
#: dlls/joy.cpl/joy.rc:59
msgid "Axes"
msgstr ""
#: dlls/joy.cpl/joy.rc:60
msgid "POVs"
msgstr ""
#: dlls/joy.cpl/joy.rc:61
msgid "Buttons"
msgstr ""
#: dlls/joy.cpl/joy.rc:64
#: dlls/joy.cpl/joy.rc:62
msgid "Force Feedback Effect"
msgstr ""
#: dlls/joy.cpl/joy.rc:66
#: dlls/joy.cpl/joy.rc:64
msgid ""
"Press any button in the controller to activate the chosen effect. The effect "
"direction can be changed with the controller axis."
msgstr ""
#: dlls/joy.cpl/joy.rc:72
#: dlls/joy.cpl/joy.rc:70
msgid "XInput"
msgstr ""
#: dlls/joy.cpl/joy.rc:75
#: dlls/joy.cpl/joy.rc:73
msgid "User #0"
msgstr ""
#: dlls/joy.cpl/joy.rc:76
#: dlls/joy.cpl/joy.rc:74
msgid "User #1"
msgstr ""
#: dlls/joy.cpl/joy.rc:77
#: dlls/joy.cpl/joy.rc:75
msgid "User #2"
msgstr ""
#: dlls/joy.cpl/joy.rc:78
#: dlls/joy.cpl/joy.rc:76
msgid "User #3"
msgstr ""
#: dlls/joy.cpl/joy.rc:80
#: dlls/joy.cpl/joy.rc:78
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
#: dlls/joy.cpl/joy.rc:82
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
#: dlls/joy.cpl/joy.rc:86
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
#: dlls/joy.cpl/joy.rc:90
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:97 dlls/joy.cpl/joy.rc:98 dlls/joy.cpl/joy.rc:99
#: dlls/joy.cpl/joy.rc:100
#: dlls/joy.cpl/joy.rc:95 dlls/joy.cpl/joy.rc:96 dlls/joy.cpl/joy.rc:97
#: dlls/joy.cpl/joy.rc:98
msgid "Rumble"
msgstr ""

View file

@ -3766,17 +3766,25 @@ msgstr ""
msgid "DInput"
msgstr ""
#: dlls/joy.cpl/joy.rc:63
#: dlls/joy.cpl/joy.rc:59
msgid "Axes"
msgstr ""
#: dlls/joy.cpl/joy.rc:60
msgid "POVs"
msgstr ""
#: dlls/joy.cpl/joy.rc:61
msgid "Buttons"
msgstr "Düğmeler"
#: dlls/joy.cpl/joy.rc:64
#: dlls/joy.cpl/joy.rc:62
#, fuzzy
#| msgid "Test Force Feedback"
msgid "Force Feedback Effect"
msgstr "Zorunlu Geri Beslemeyi Kontrol Et"
#: dlls/joy.cpl/joy.rc:66
#: dlls/joy.cpl/joy.rc:64
msgid ""
"Press any button in the controller to activate the chosen effect. The effect "
"direction can be changed with the controller axis."
@ -3784,60 +3792,60 @@ 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
#: dlls/joy.cpl/joy.rc:70
msgid "XInput"
msgstr ""
#: dlls/joy.cpl/joy.rc:75
#: dlls/joy.cpl/joy.rc:73
#, fuzzy
#| msgid "User"
msgid "User #0"
msgstr "Kullanıcı"
#: dlls/joy.cpl/joy.rc:76
#: dlls/joy.cpl/joy.rc:74
#, fuzzy
#| msgid "User"
msgid "User #1"
msgstr "Kullanıcı"
#: dlls/joy.cpl/joy.rc:77
#: dlls/joy.cpl/joy.rc:75
#, fuzzy
#| msgid "User"
msgid "User #2"
msgstr "Kullanıcı"
#: dlls/joy.cpl/joy.rc:78
#: dlls/joy.cpl/joy.rc:76
#, fuzzy
#| msgid "User"
msgid "User #3"
msgstr "Kullanıcı"
#: dlls/joy.cpl/joy.rc:80
#: dlls/joy.cpl/joy.rc:78
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
#: dlls/joy.cpl/joy.rc:82
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
#: dlls/joy.cpl/joy.rc:86
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
#: dlls/joy.cpl/joy.rc:90
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:97 dlls/joy.cpl/joy.rc:98 dlls/joy.cpl/joy.rc:99
#: dlls/joy.cpl/joy.rc:100
#: dlls/joy.cpl/joy.rc:95 dlls/joy.cpl/joy.rc:96 dlls/joy.cpl/joy.rc:97
#: dlls/joy.cpl/joy.rc:98
msgid "Rumble"
msgstr ""

View file

@ -3757,17 +3757,25 @@ msgstr ""
msgid "DInput"
msgstr ""
#: dlls/joy.cpl/joy.rc:63
#: dlls/joy.cpl/joy.rc:59
msgid "Axes"
msgstr ""
#: dlls/joy.cpl/joy.rc:60
msgid "POVs"
msgstr ""
#: dlls/joy.cpl/joy.rc:61
msgid "Buttons"
msgstr "Кнопки"
#: dlls/joy.cpl/joy.rc:64
#: dlls/joy.cpl/joy.rc:62
#, fuzzy
#| msgid "Test Force Feedback"
msgid "Force Feedback Effect"
msgstr "Перевірка Force Feedback"
#: dlls/joy.cpl/joy.rc:66
#: dlls/joy.cpl/joy.rc:64
msgid ""
"Press any button in the controller to activate the chosen effect. The effect "
"direction can be changed with the controller axis."
@ -3775,60 +3783,60 @@ msgstr ""
"Натисніть будь-яку клавішу контролера щоб активувати обраний ефект. Напрямок "
"ефекту можна змінити віссю контролера."
#: dlls/joy.cpl/joy.rc:72
#: dlls/joy.cpl/joy.rc:70
msgid "XInput"
msgstr ""
#: dlls/joy.cpl/joy.rc:75
#: dlls/joy.cpl/joy.rc:73
#, fuzzy
#| msgid "User"
msgid "User #0"
msgstr "Користувач"
#: dlls/joy.cpl/joy.rc:76
#: dlls/joy.cpl/joy.rc:74
#, fuzzy
#| msgid "User"
msgid "User #1"
msgstr "Користувач"
#: dlls/joy.cpl/joy.rc:77
#: dlls/joy.cpl/joy.rc:75
#, fuzzy
#| msgid "User"
msgid "User #2"
msgstr "Користувач"
#: dlls/joy.cpl/joy.rc:78
#: dlls/joy.cpl/joy.rc:76
#, fuzzy
#| msgid "User"
msgid "User #3"
msgstr "Користувач"
#: dlls/joy.cpl/joy.rc:80
#: dlls/joy.cpl/joy.rc:78
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
#: dlls/joy.cpl/joy.rc:82
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
#: dlls/joy.cpl/joy.rc:86
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
#: dlls/joy.cpl/joy.rc:90
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:97 dlls/joy.cpl/joy.rc:98 dlls/joy.cpl/joy.rc:99
#: dlls/joy.cpl/joy.rc:100
#: dlls/joy.cpl/joy.rc:95 dlls/joy.cpl/joy.rc:96 dlls/joy.cpl/joy.rc:97
#: dlls/joy.cpl/joy.rc:98
msgid "Rumble"
msgstr ""

View file

@ -3731,66 +3731,74 @@ msgstr ""
msgid "DInput"
msgstr ""
#: dlls/joy.cpl/joy.rc:63
#: dlls/joy.cpl/joy.rc:59
msgid "Axes"
msgstr ""
#: dlls/joy.cpl/joy.rc:60
msgid "POVs"
msgstr ""
#: dlls/joy.cpl/joy.rc:61
msgid "Buttons"
msgstr ""
#: dlls/joy.cpl/joy.rc:64
#: dlls/joy.cpl/joy.rc:62
msgid "Force Feedback Effect"
msgstr ""
#: dlls/joy.cpl/joy.rc:66
#: dlls/joy.cpl/joy.rc:64
msgid ""
"Press any button in the controller to activate the chosen effect. The effect "
"direction can be changed with the controller axis."
msgstr ""
#: dlls/joy.cpl/joy.rc:72
#: dlls/joy.cpl/joy.rc:70
msgid "XInput"
msgstr ""
#: dlls/joy.cpl/joy.rc:75
#: dlls/joy.cpl/joy.rc:73
msgid "User #0"
msgstr ""
#: dlls/joy.cpl/joy.rc:76
#: dlls/joy.cpl/joy.rc:74
msgid "User #1"
msgstr ""
#: dlls/joy.cpl/joy.rc:77
#: dlls/joy.cpl/joy.rc:75
msgid "User #2"
msgstr ""
#: dlls/joy.cpl/joy.rc:78
#: dlls/joy.cpl/joy.rc:76
msgid "User #3"
msgstr ""
#: dlls/joy.cpl/joy.rc:80
#: dlls/joy.cpl/joy.rc:78
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
#: dlls/joy.cpl/joy.rc:82
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
#: dlls/joy.cpl/joy.rc:86
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
#: dlls/joy.cpl/joy.rc:90
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:97 dlls/joy.cpl/joy.rc:98 dlls/joy.cpl/joy.rc:99
#: dlls/joy.cpl/joy.rc:100
#: dlls/joy.cpl/joy.rc:95 dlls/joy.cpl/joy.rc:96 dlls/joy.cpl/joy.rc:97
#: dlls/joy.cpl/joy.rc:98
msgid "Rumble"
msgstr ""

View file

@ -3622,66 +3622,74 @@ msgstr ""
msgid "DInput"
msgstr ""
#: dlls/joy.cpl/joy.rc:63
#: dlls/joy.cpl/joy.rc:59
msgid "Axes"
msgstr ""
#: dlls/joy.cpl/joy.rc:60
msgid "POVs"
msgstr ""
#: dlls/joy.cpl/joy.rc:61
msgid "Buttons"
msgstr ""
#: dlls/joy.cpl/joy.rc:64
#: dlls/joy.cpl/joy.rc:62
msgid "Force Feedback Effect"
msgstr ""
#: dlls/joy.cpl/joy.rc:66
#: dlls/joy.cpl/joy.rc:64
msgid ""
"Press any button in the controller to activate the chosen effect. The effect "
"direction can be changed with the controller axis."
msgstr ""
#: dlls/joy.cpl/joy.rc:72
#: dlls/joy.cpl/joy.rc:70
msgid "XInput"
msgstr ""
#: dlls/joy.cpl/joy.rc:75
#: dlls/joy.cpl/joy.rc:73
msgid "User #0"
msgstr ""
#: dlls/joy.cpl/joy.rc:76
#: dlls/joy.cpl/joy.rc:74
msgid "User #1"
msgstr ""
#: dlls/joy.cpl/joy.rc:77
#: dlls/joy.cpl/joy.rc:75
msgid "User #2"
msgstr ""
#: dlls/joy.cpl/joy.rc:78
#: dlls/joy.cpl/joy.rc:76
msgid "User #3"
msgstr ""
#: dlls/joy.cpl/joy.rc:80
#: dlls/joy.cpl/joy.rc:78
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
#: dlls/joy.cpl/joy.rc:82
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
#: dlls/joy.cpl/joy.rc:86
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
#: dlls/joy.cpl/joy.rc:90
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:97 dlls/joy.cpl/joy.rc:98 dlls/joy.cpl/joy.rc:99
#: dlls/joy.cpl/joy.rc:100
#: dlls/joy.cpl/joy.rc:95 dlls/joy.cpl/joy.rc:96 dlls/joy.cpl/joy.rc:97
#: dlls/joy.cpl/joy.rc:98
msgid "Rumble"
msgstr ""

View file

@ -3703,76 +3703,84 @@ msgstr ""
msgid "DInput"
msgstr ""
#: dlls/joy.cpl/joy.rc:63
#: dlls/joy.cpl/joy.rc:59
msgid "Axes"
msgstr ""
#: dlls/joy.cpl/joy.rc:60
msgid "POVs"
msgstr ""
#: dlls/joy.cpl/joy.rc:61
msgid "Buttons"
msgstr "按钮"
#: dlls/joy.cpl/joy.rc:64
#: dlls/joy.cpl/joy.rc:62
#, fuzzy
#| msgid "Test Force Feedback"
msgid "Force Feedback Effect"
msgstr "测试力反馈"
#: dlls/joy.cpl/joy.rc:66
#: dlls/joy.cpl/joy.rc:64
msgid ""
"Press any button in the controller to activate the chosen effect. The effect "
"direction can be changed with the controller axis."
msgstr "在控制器上按任意键以激活选中的效果。可根据控制器轴改变效果的方向。"
#: dlls/joy.cpl/joy.rc:72
#: dlls/joy.cpl/joy.rc:70
msgid "XInput"
msgstr ""
#: dlls/joy.cpl/joy.rc:75
#: dlls/joy.cpl/joy.rc:73
#, fuzzy
#| msgid "User"
msgid "User #0"
msgstr "用户名"
#: dlls/joy.cpl/joy.rc:76
#: dlls/joy.cpl/joy.rc:74
#, fuzzy
#| msgid "User"
msgid "User #1"
msgstr "用户名"
#: dlls/joy.cpl/joy.rc:77
#: dlls/joy.cpl/joy.rc:75
#, fuzzy
#| msgid "User"
msgid "User #2"
msgstr "用户名"
#: dlls/joy.cpl/joy.rc:78
#: dlls/joy.cpl/joy.rc:76
#, fuzzy
#| msgid "User"
msgid "User #3"
msgstr "用户名"
#: dlls/joy.cpl/joy.rc:80
#: dlls/joy.cpl/joy.rc:78
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
#: dlls/joy.cpl/joy.rc:82
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
#: dlls/joy.cpl/joy.rc:86
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
#: dlls/joy.cpl/joy.rc:90
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:97 dlls/joy.cpl/joy.rc:98 dlls/joy.cpl/joy.rc:99
#: dlls/joy.cpl/joy.rc:100
#: dlls/joy.cpl/joy.rc:95 dlls/joy.cpl/joy.rc:96 dlls/joy.cpl/joy.rc:97
#: dlls/joy.cpl/joy.rc:98
msgid "Rumble"
msgstr ""

View file

@ -3705,17 +3705,25 @@ msgstr "停用或啟用裝置之後,已連接的搖桿將無法更新,直到
msgid "DInput"
msgstr ""
#: dlls/joy.cpl/joy.rc:63
#: dlls/joy.cpl/joy.rc:59
msgid "Axes"
msgstr ""
#: dlls/joy.cpl/joy.rc:60
msgid "POVs"
msgstr ""
#: dlls/joy.cpl/joy.rc:61
msgid "Buttons"
msgstr "按鈕"
#: dlls/joy.cpl/joy.rc:64
#: dlls/joy.cpl/joy.rc:62
#, fuzzy
#| msgid "Test Force Feedback"
msgid "Force Feedback Effect"
msgstr "測試應力回饋"
#: dlls/joy.cpl/joy.rc:66
#: dlls/joy.cpl/joy.rc:64
msgid ""
"Press any button in the controller to activate the chosen effect. The effect "
"direction can be changed with the controller axis."
@ -3723,60 +3731,60 @@ msgstr ""
"請按下控制器中的任何按鈕以啟用所選的效果。效果的方向可以利用控制器的軸向來變"
"更。"
#: dlls/joy.cpl/joy.rc:72
#: dlls/joy.cpl/joy.rc:70
msgid "XInput"
msgstr ""
#: dlls/joy.cpl/joy.rc:75
#: dlls/joy.cpl/joy.rc:73
#, fuzzy
#| msgid "User"
msgid "User #0"
msgstr "使用者"
#: dlls/joy.cpl/joy.rc:76
#: dlls/joy.cpl/joy.rc:74
#, fuzzy
#| msgid "User"
msgid "User #1"
msgstr "使用者"
#: dlls/joy.cpl/joy.rc:77
#: dlls/joy.cpl/joy.rc:75
#, fuzzy
#| msgid "User"
msgid "User #2"
msgstr "使用者"
#: dlls/joy.cpl/joy.rc:78
#: dlls/joy.cpl/joy.rc:76
#, fuzzy
#| msgid "User"
msgid "User #3"
msgstr "使用者"
#: dlls/joy.cpl/joy.rc:80
#: dlls/joy.cpl/joy.rc:78
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
#: dlls/joy.cpl/joy.rc:82
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
#: dlls/joy.cpl/joy.rc:86
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
#: dlls/joy.cpl/joy.rc:90
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:97 dlls/joy.cpl/joy.rc:98 dlls/joy.cpl/joy.rc:99
#: dlls/joy.cpl/joy.rc:100
#: dlls/joy.cpl/joy.rc:95 dlls/joy.cpl/joy.rc:96 dlls/joy.cpl/joy.rc:97
#: dlls/joy.cpl/joy.rc:98
msgid "Rumble"
msgstr ""