1
0
mirror of https://github.com/wine-mirror/wine synced 2024-07-03 08:19:41 +00:00

joy.cpl: Add DI_ prefix to dinput dialog constants.

This commit is contained in:
Rémi Bernon 2022-11-27 01:48:13 +01:00 committed by Alexandre Julliard
parent 05db7cf04d
commit 6375857829
52 changed files with 112 additions and 113 deletions

View File

@ -49,19 +49,19 @@ FONT 8, "Ms Shell Dlg"
LTEXT "After disabling or enabling a device, the connected joysticks won't be updated here until you restart this applet.", IDC_STATIC, 10, 270, 200, 25
}
IDD_TEST DIALOG 0, 0, 320, 300
IDD_TEST_DI DIALOG 0, 0, 320, 300
STYLE WS_CAPTION | WS_CHILD | WS_DISABLED
CAPTION "Test Joystick"
CAPTION "DInput"
FONT 8, "Ms Shell Dlg"
{
COMBOBOX IDC_TESTSELECTCOMBO, 15, 10, 291, 60, CBS_DROPDOWNLIST | CBS_HASSTRINGS
COMBOBOX IDC_DI_DEVICES, 15, 10, 291, 60, CBS_DROPDOWNLIST | CBS_HASSTRINGS
GROUPBOX "Buttons", IDC_STATIC, 15, 100, 291, 70
GROUPBOX "", IDC_TESTGROUPXY, 15, 30, 60, 60
GROUPBOX "", IDC_TESTGROUPRXRY, 92, 30, 60, 60
GROUPBOX "", IDC_TESTGROUPZRZ, 169, 30, 60, 60
GROUPBOX "", IDC_TESTGROUPPOV, 246, 30, 60, 60
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
LTEXT "Force Feedback Effect", IDC_STATIC, 15, 180, 291, 10
LISTBOX IDC_FFEFFECTLIST, 15, 190, 291, 70, WS_TABSTOP | WS_VSCROLL | LBS_NOTIFY
LISTBOX IDC_DI_EFFECTS, 15, 190, 291, 70, WS_TABSTOP | WS_VSCROLL | LBS_NOTIFY
LTEXT "Press any button in the controller to activate the chosen effect. The effect direction can be changed with the controller axis.",
IDC_STATIC, 15, 260, 291, 25
}

View File

@ -714,8 +714,8 @@ static void initialize_effects_list( HWND hwnd, IDirectInputDevice8W *device )
IDirectInputDevice8_EnumEffects( device, enum_effects, device, 0 );
SendDlgItemMessageW(hwnd, IDC_FFEFFECTLIST, LB_RESETCONTENT, 0, 0);
SendDlgItemMessageW(hwnd, IDC_FFEFFECTLIST, LB_ADDSTRING, 0, (LPARAM)L"None");
SendDlgItemMessageW( hwnd, IDC_DI_EFFECTS, LB_RESETCONTENT, 0, 0 );
SendDlgItemMessageW( hwnd, IDC_DI_EFFECTS, LB_ADDSTRING, 0, (LPARAM)L"None" );
LIST_FOR_EACH_ENTRY( effect, &effects, struct effect, entry )
{
@ -724,7 +724,7 @@ static void initialize_effects_list( HWND hwnd, IDirectInputDevice8W *device )
if (FAILED(IDirectInputEffect_GetEffectGuid( effect->effect, &guid ))) continue;
if (FAILED(IDirectInputDevice8_GetEffectInfo( device, &info, &guid ))) continue;
SendDlgItemMessageW(hwnd, IDC_FFEFFECTLIST, LB_ADDSTRING, 0, (LPARAM)(info.tszName + 5));
SendDlgItemMessageW( hwnd, IDC_DI_EFFECTS, LB_ADDSTRING, 0, (LPARAM)( info.tszName + 5 ) );
}
}
@ -737,7 +737,7 @@ static void test_handle_joychange(HWND hwnd, struct JoystickData *data)
set_selected_device( NULL );
i = SendDlgItemMessageW( hwnd, IDC_TESTSELECTCOMBO, CB_GETCURSEL, 0, 0 );
i = SendDlgItemMessageW( hwnd, IDC_DI_DEVICES, CB_GETCURSEL, 0, 0 );
if (i < 0) return;
entry = list_head( &devices );
@ -760,7 +760,7 @@ static void ff_handle_effectchange( HWND hwnd )
set_selected_effect( NULL );
sel = SendDlgItemMessageW(hwnd, IDC_FFEFFECTLIST, LB_GETCURSEL, 0, 0) - 1;
sel = SendDlgItemMessageW( hwnd, IDC_DI_EFFECTS, LB_GETCURSEL, 0, 0 ) - 1;
if (sel < 0) return;
entry = list_head( &effects );
@ -825,11 +825,10 @@ static void draw_joystick_buttons(HWND hwnd, struct JoystickData* data)
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);
static const WCHAR axes_names[TEST_MAX_AXES][7] = { L"X,Y", L"Rx,Ry", L"Z,Rz", L"POV"};
static const DWORD axes_idc[TEST_MAX_AXES] = { IDC_TESTGROUPXY, IDC_TESTGROUPRXRY,
IDC_TESTGROUPZRZ, IDC_TESTGROUPPOV };
for (i = 0; i < TEST_MAX_AXES; i++)
{
@ -853,17 +852,17 @@ static void draw_joystick_axes(HWND hwnd, struct JoystickData* data)
* test_dlgproc [internal]
*
*/
static void refresh_test_joystick_list(HWND hwnd, struct JoystickData *data)
static void di_update_select_combo( HWND hwnd )
{
struct device *entry;
SendDlgItemMessageW(hwnd, IDC_TESTSELECTCOMBO, CB_RESETCONTENT, 0, 0);
SendDlgItemMessageW( hwnd, IDC_DI_DEVICES, CB_RESETCONTENT, 0, 0 );
LIST_FOR_EACH_ENTRY( entry, &devices, struct device, entry )
{
DIDEVICEINSTANCEW info = {.dwSize = sizeof(DIDEVICEINSTANCEW)};
if (FAILED(IDirectInputDevice8_GetDeviceInfo( entry->device, &info ))) continue;
SendDlgItemMessageW( hwnd, IDC_TESTSELECTCOMBO, CB_ADDSTRING, 0, (LPARAM)info.tszInstanceName );
SendDlgItemMessageW( hwnd, IDC_DI_DEVICES, CB_ADDSTRING, 0, (LPARAM)info.tszInstanceName );
}
}
@ -879,7 +878,7 @@ static INT_PTR CALLBACK test_dlgproc(HWND hwnd, UINT msg, WPARAM wparam, LPARAM
{
data = (struct JoystickData*) ((PROPSHEETPAGEW*)lparam)->lParam;
refresh_test_joystick_list(hwnd, data);
di_update_select_combo( hwnd );
draw_joystick_buttons(hwnd, data);
draw_joystick_axes(hwnd, data);
@ -889,16 +888,16 @@ static INT_PTR CALLBACK test_dlgproc(HWND hwnd, UINT msg, WPARAM wparam, LPARAM
case WM_COMMAND:
switch(wparam)
{
case MAKEWPARAM(IDC_TESTSELECTCOMBO, CBN_SELCHANGE):
test_handle_joychange(hwnd, data);
case MAKEWPARAM( IDC_DI_DEVICES, CBN_SELCHANGE ):
test_handle_joychange( hwnd, data );
SendDlgItemMessageW(hwnd, IDC_FFEFFECTLIST, LB_SETCURSEL, 0, 0);
ff_handle_effectchange( hwnd );
break;
SendDlgItemMessageW( hwnd, IDC_DI_EFFECTS, LB_SETCURSEL, 0, 0 );
ff_handle_effectchange( hwnd );
break;
case MAKEWPARAM(IDC_FFEFFECTLIST, LBN_SELCHANGE):
ff_handle_effectchange( hwnd );
break;
case MAKEWPARAM( IDC_DI_EFFECTS, LBN_SELCHANGE ):
ff_handle_effectchange( hwnd );
break;
}
return TRUE;
@ -909,15 +908,15 @@ static INT_PTR CALLBACK test_dlgproc(HWND hwnd, UINT msg, WPARAM wparam, LPARAM
{
DWORD tid;
refresh_test_joystick_list(hwnd, data);
di_update_select_combo( hwnd );
data->stop = FALSE;
/* Set the first joystick as default */
SendDlgItemMessageW(hwnd, IDC_TESTSELECTCOMBO, CB_SETCURSEL, 0, 0);
SendDlgItemMessageW( hwnd, IDC_DI_DEVICES, CB_SETCURSEL, 0, 0 );
test_handle_joychange(hwnd, data);
SendDlgItemMessageW(hwnd, IDC_FFEFFECTLIST, LB_SETCURSEL, 0, 0);
SendDlgItemMessageW( hwnd, IDC_DI_EFFECTS, LB_SETCURSEL, 0, 0 );
ff_handle_effectchange( hwnd );
thread = CreateThread(NULL, 0, input_thread, (void*) data, 0, &tid);
@ -997,7 +996,7 @@ static void display_cpl_sheets(HWND parent, struct JoystickData *data)
psp[id].dwSize = sizeof (PROPSHEETPAGEW);
psp[id].hInstance = hcpl;
psp[id].u.pszTemplate = MAKEINTRESOURCEW(IDD_TEST);
psp[id].u.pszTemplate = MAKEINTRESOURCEW(IDD_TEST_DI);
psp[id].pfnDlgProc = test_dlgproc;
psp[id].lParam = (INT_PTR) data;
id++;

View File

@ -35,7 +35,7 @@
#define IDC_STATIC -1
#define IDD_LIST 1000
#define IDD_TEST 1001
#define IDD_TEST_DI 1001
#define IDC_JOYSTICKLIST 2000
#define IDC_DISABLEDLIST 2001
@ -45,12 +45,12 @@
#define IDC_BUTTONRESET 2012
#define IDC_BUTTONOVERRIDE 2013
#define IDC_TESTSELECTCOMBO 2100
#define IDC_TESTGROUPXY 2101
#define IDC_TESTGROUPRXRY 2102
#define IDC_TESTGROUPZRZ 2103
#define IDC_TESTGROUPPOV 2104
#define IDC_FFEFFECTLIST 2105
#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_EFFECTS 2105
#define ICO_MAIN 100

View File

@ -3779,8 +3779,8 @@ msgstr ""
"التطبيق."
#: dlls/joy.cpl/joy.rc:55
msgid "Test Joystick"
msgstr "اختبار مقبض اللعب"
msgid "DInput"
msgstr ""
#: dlls/joy.cpl/joy.rc:59
msgid "Buttons"

View File

@ -3672,7 +3672,7 @@ msgstr ""
"hasta que reanicies esti applet."
#: dlls/joy.cpl/joy.rc:55
msgid "Test Joystick"
msgid "DInput"
msgstr ""
#: dlls/joy.cpl/joy.rc:59

View File

@ -3791,7 +3791,7 @@ msgid ""
msgstr ""
#: dlls/joy.cpl/joy.rc:55
msgid "Test Joystick"
msgid "DInput"
msgstr ""
#: dlls/joy.cpl/joy.rc:59

View File

@ -3767,8 +3767,8 @@ msgstr ""
"palanques de control connectades fins que reinicieu aquesta miniaplicació."
#: dlls/joy.cpl/joy.rc:55
msgid "Test Joystick"
msgstr "Prova de palanca de control"
msgid "DInput"
msgstr ""
#: dlls/joy.cpl/joy.rc:59
msgid "Buttons"

View File

@ -3728,8 +3728,8 @@ msgstr ""
"aktualizován až po restartu tohoto appletu."
#: dlls/joy.cpl/joy.rc:55
msgid "Test Joystick"
msgstr "Otestovat pákový ovladač"
msgid "DInput"
msgstr ""
#: dlls/joy.cpl/joy.rc:59
msgid "Buttons"

View File

@ -3814,7 +3814,7 @@ msgid ""
msgstr ""
#: dlls/joy.cpl/joy.rc:55
msgid "Test Joystick"
msgid "DInput"
msgstr ""
#: dlls/joy.cpl/joy.rc:59

View File

@ -3755,8 +3755,8 @@ msgstr ""
"Controller bis zum Neustart dieses Applets nicht mehr aktualisiert."
#: dlls/joy.cpl/joy.rc:55
msgid "Test Joystick"
msgstr "Joystick testen"
msgid "DInput"
msgstr ""
#: dlls/joy.cpl/joy.rc:59
msgid "Buttons"

View File

@ -3703,7 +3703,7 @@ msgid ""
msgstr ""
#: dlls/joy.cpl/joy.rc:55
msgid "Test Joystick"
msgid "DInput"
msgstr ""
#: dlls/joy.cpl/joy.rc:59

View File

@ -3748,8 +3748,8 @@ msgstr ""
"updated here until you restart this applet."
#: dlls/joy.cpl/joy.rc:55
msgid "Test Joystick"
msgstr "Test Joystick"
msgid "DInput"
msgstr "DInput"
#: dlls/joy.cpl/joy.rc:59
msgid "Buttons"

View File

@ -3748,8 +3748,8 @@ msgstr ""
"updated here until you restart this applet."
#: dlls/joy.cpl/joy.rc:55
msgid "Test Joystick"
msgstr "Test Joystick"
msgid "DInput"
msgstr "DInput"
#: dlls/joy.cpl/joy.rc:59
msgid "Buttons"

View File

@ -3698,7 +3698,7 @@ msgid ""
msgstr ""
#: dlls/joy.cpl/joy.rc:55
msgid "Test Joystick"
msgid "DInput"
msgstr ""
#: dlls/joy.cpl/joy.rc:59

View File

@ -3768,8 +3768,8 @@ msgstr ""
"no se actualizarán aquí hasta que reinicie este subprograma."
#: dlls/joy.cpl/joy.rc:55
msgid "Test Joystick"
msgstr "Probar comando de juegos"
msgid "DInput"
msgstr ""
#: dlls/joy.cpl/joy.rc:59
msgid "Buttons"

View File

@ -3732,7 +3732,7 @@ msgid ""
msgstr ""
#: dlls/joy.cpl/joy.rc:55
msgid "Test Joystick"
msgid "DInput"
msgstr ""
#: dlls/joy.cpl/joy.rc:59

View File

@ -3742,8 +3742,8 @@ msgstr ""
"päivity tähän, ellei tätä sovelmaa käynnistetä uudelleen."
#: dlls/joy.cpl/joy.rc:55
msgid "Test Joystick"
msgstr "Testaa joystickia"
msgid "DInput"
msgstr ""
#: dlls/joy.cpl/joy.rc:59
msgid "Buttons"

View File

@ -3774,8 +3774,8 @@ msgstr ""
"applet."
#: dlls/joy.cpl/joy.rc:55
msgid "Test Joystick"
msgstr "Tester le joystick"
msgid "DInput"
msgstr ""
#: dlls/joy.cpl/joy.rc:59
msgid "Buttons"

View File

@ -3775,7 +3775,7 @@ msgid ""
msgstr ""
#: dlls/joy.cpl/joy.rc:55
msgid "Test Joystick"
msgid "DInput"
msgstr ""
#: dlls/joy.cpl/joy.rc:59

View File

@ -3664,7 +3664,7 @@ msgid ""
msgstr ""
#: dlls/joy.cpl/joy.rc:55
msgid "Test Joystick"
msgid "DInput"
msgstr ""
#: dlls/joy.cpl/joy.rc:59

View File

@ -3784,8 +3784,8 @@ msgstr ""
"osvježeni ovdje dok ponovno ne pokrenete ovaj applet."
#: dlls/joy.cpl/joy.rc:55
msgid "Test Joystick"
msgstr "Isprobaj joystick"
msgid "DInput"
msgstr ""
#: dlls/joy.cpl/joy.rc:59
msgid "Buttons"

View File

@ -3830,7 +3830,7 @@ msgid ""
msgstr ""
#: dlls/joy.cpl/joy.rc:55
msgid "Test Joystick"
msgid "DInput"
msgstr ""
#: dlls/joy.cpl/joy.rc:59

View File

@ -3838,7 +3838,7 @@ msgid ""
msgstr ""
#: dlls/joy.cpl/joy.rc:55
msgid "Test Joystick"
msgid "DInput"
msgstr ""
#: dlls/joy.cpl/joy.rc:59

View File

@ -3742,8 +3742,8 @@ msgstr ""
"ここにある接続済みジョイスティックの一覧は更新されません。"
#: dlls/joy.cpl/joy.rc:55
msgid "Test Joystick"
msgstr "ジョイスティックのテスト"
msgid "DInput"
msgstr ""
#: dlls/joy.cpl/joy.rc:59
msgid "Buttons"

View File

@ -3732,8 +3732,8 @@ msgstr ""
"스틱을 업데이트하지 않습니다."
#: dlls/joy.cpl/joy.rc:55
msgid "Test Joystick"
msgstr "조이스틱 테스트"
msgid "DInput"
msgstr ""
#: dlls/joy.cpl/joy.rc:59
msgid "Buttons"

View File

@ -3751,8 +3751,8 @@ msgstr ""
"čia atnaujintos, kol nepaleisite šios programėlės iš naujo."
#: dlls/joy.cpl/joy.rc:55
msgid "Test Joystick"
msgstr "Testuoti vairasvirtę"
msgid "DInput"
msgstr ""
#: dlls/joy.cpl/joy.rc:59
msgid "Buttons"

View File

@ -3666,7 +3666,7 @@ msgid ""
msgstr ""
#: dlls/joy.cpl/joy.rc:55
msgid "Test Joystick"
msgid "DInput"
msgstr ""
#: dlls/joy.cpl/joy.rc:59

View File

@ -3762,8 +3762,8 @@ msgstr ""
"her før programmet startes på nytt."
#: dlls/joy.cpl/joy.rc:55
msgid "Test Joystick"
msgstr "Test styrespake"
msgid "DInput"
msgstr ""
#: dlls/joy.cpl/joy.rc:59
msgid "Buttons"

View File

@ -3762,8 +3762,8 @@ msgstr ""
"niet vernieuwd worden totdat deze applicatie herstart wordt."
#: dlls/joy.cpl/joy.rc:55
msgid "Test Joystick"
msgstr "Joystick testen"
msgid "DInput"
msgstr ""
#: dlls/joy.cpl/joy.rc:59
msgid "Buttons"

View File

@ -3664,7 +3664,7 @@ msgid ""
msgstr ""
#: dlls/joy.cpl/joy.rc:55
msgid "Test Joystick"
msgid "DInput"
msgstr ""
#: dlls/joy.cpl/joy.rc:59

View File

@ -3664,7 +3664,7 @@ msgid ""
msgstr ""
#: dlls/joy.cpl/joy.rc:55
msgid "Test Joystick"
msgid "DInput"
msgstr ""
#: dlls/joy.cpl/joy.rc:59

View File

@ -3767,8 +3767,8 @@ msgstr ""
"uaktualnione do momentu ponownego uruchomienia tego apletu."
#: dlls/joy.cpl/joy.rc:55
msgid "Test Joystick"
msgstr "Próbowanie Joysticka"
msgid "DInput"
msgstr ""
#: dlls/joy.cpl/joy.rc:59
msgid "Buttons"

View File

@ -3763,8 +3763,8 @@ msgstr ""
"serão atualizados até que o applet seja reaberto."
#: dlls/joy.cpl/joy.rc:55
msgid "Test Joystick"
msgstr "Testar Controle"
msgid "DInput"
msgstr ""
#: dlls/joy.cpl/joy.rc:59
msgid "Buttons"

View File

@ -3810,8 +3810,8 @@ msgstr ""
"serão actualisados aqui até reiniciar esta mini-aplicação."
#: dlls/joy.cpl/joy.rc:55
msgid "Test Joystick"
msgstr "Testar Joystick"
msgid "DInput"
msgstr ""
#: dlls/joy.cpl/joy.rc:59
msgid "Buttons"

View File

@ -3693,7 +3693,7 @@ msgid ""
msgstr ""
#: dlls/joy.cpl/joy.rc:55
msgid "Test Joystick"
msgid "DInput"
msgstr ""
#: dlls/joy.cpl/joy.rc:59

View File

@ -3765,8 +3765,8 @@ msgid ""
msgstr ""
#: dlls/joy.cpl/joy.rc:55
msgid "Test Joystick"
msgstr "Testează joystick-ul"
msgid "DInput"
msgstr ""
#: dlls/joy.cpl/joy.rc:59
msgid "Buttons"

View File

@ -3770,8 +3770,8 @@ msgstr ""
"отключении устройств, требуется перезапуск этой программы."
#: dlls/joy.cpl/joy.rc:55
msgid "Test Joystick"
msgstr "Проверить джойстик"
msgid "DInput"
msgstr ""
#: dlls/joy.cpl/joy.rc:59
msgid "Buttons"

View File

@ -3697,7 +3697,7 @@ msgid ""
msgstr ""
#: dlls/joy.cpl/joy.rc:55
msgid "Test Joystick"
msgid "DInput"
msgstr ""
#: dlls/joy.cpl/joy.rc:59

View File

@ -3744,7 +3744,7 @@ msgid ""
msgstr ""
#: dlls/joy.cpl/joy.rc:55
msgid "Test Joystick"
msgid "DInput"
msgstr ""
#: dlls/joy.cpl/joy.rc:59

View File

@ -3832,7 +3832,7 @@ msgid ""
msgstr ""
#: dlls/joy.cpl/joy.rc:55
msgid "Test Joystick"
msgid "DInput"
msgstr ""
#: dlls/joy.cpl/joy.rc:59

View File

@ -3808,7 +3808,7 @@ msgid ""
msgstr ""
#: dlls/joy.cpl/joy.rc:55
msgid "Test Joystick"
msgid "DInput"
msgstr ""
#: dlls/joy.cpl/joy.rc:59

View File

@ -3893,7 +3893,7 @@ msgid ""
msgstr ""
#: dlls/joy.cpl/joy.rc:55
msgid "Test Joystick"
msgid "DInput"
msgstr ""
#: dlls/joy.cpl/joy.rc:59

View File

@ -3789,8 +3789,8 @@ msgstr ""
"styrspakarna inte att uppdateras här innan du startar om detta miniprogram."
#: dlls/joy.cpl/joy.rc:55
msgid "Test Joystick"
msgstr "Testa joysticken"
msgid "DInput"
msgstr ""
#: dlls/joy.cpl/joy.rc:59
msgid "Buttons"

View File

@ -3630,7 +3630,7 @@ msgid ""
msgstr ""
#: dlls/joy.cpl/joy.rc:55
msgid "Test Joystick"
msgid "DInput"
msgstr ""
#: dlls/joy.cpl/joy.rc:59

View File

@ -3664,7 +3664,7 @@ msgid ""
msgstr ""
#: dlls/joy.cpl/joy.rc:55
msgid "Test Joystick"
msgid "DInput"
msgstr ""
#: dlls/joy.cpl/joy.rc:59

View File

@ -3722,7 +3722,7 @@ msgid ""
msgstr ""
#: dlls/joy.cpl/joy.rc:55
msgid "Test Joystick"
msgid "DInput"
msgstr ""
#: dlls/joy.cpl/joy.rc:59

View File

@ -3763,8 +3763,8 @@ msgstr ""
"girene kadar bağlı oyun kolları burada güncellenmeyecektir."
#: dlls/joy.cpl/joy.rc:55
msgid "Test Joystick"
msgstr "Oyun Kolunu Test Et"
msgid "DInput"
msgstr ""
#: dlls/joy.cpl/joy.rc:59
msgid "Buttons"

View File

@ -3754,8 +3754,8 @@ msgstr ""
"оновлений, поки Ви не перезавантажите цей аплет."
#: dlls/joy.cpl/joy.rc:55
msgid "Test Joystick"
msgstr "Випробувати Джойстик"
msgid "DInput"
msgstr ""
#: dlls/joy.cpl/joy.rc:59
msgid "Buttons"

View File

@ -3728,7 +3728,7 @@ msgid ""
msgstr ""
#: dlls/joy.cpl/joy.rc:55
msgid "Test Joystick"
msgid "DInput"
msgstr ""
#: dlls/joy.cpl/joy.rc:59

View File

@ -3619,7 +3619,7 @@ msgid ""
msgstr ""
#: dlls/joy.cpl/joy.rc:55
msgid "Test Joystick"
msgid "DInput"
msgstr ""
#: dlls/joy.cpl/joy.rc:59

View File

@ -3700,8 +3700,8 @@ msgstr ""
"具为止。"
#: dlls/joy.cpl/joy.rc:55
msgid "Test Joystick"
msgstr "测试操纵杆"
msgid "DInput"
msgstr ""
#: dlls/joy.cpl/joy.rc:59
msgid "Buttons"

View File

@ -3702,8 +3702,8 @@ msgid ""
msgstr "停用或啟用裝置之後,已連接的搖桿將無法更新,直到您重新啟動這個程式。"
#: dlls/joy.cpl/joy.rc:55
msgid "Test Joystick"
msgstr "測試搖桿"
msgid "DInput"
msgstr ""
#: dlls/joy.cpl/joy.rc:59
msgid "Buttons"