From 63758578293d876c7f18e27473881d4b7614fc27 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?R=C3=A9mi=20Bernon?= Date: Sun, 27 Nov 2022 01:48:13 +0100 Subject: [PATCH] joy.cpl: Add DI_ prefix to dinput dialog constants. --- dlls/joy.cpl/joy.rc | 16 +++++++------- dlls/joy.cpl/main.c | 47 ++++++++++++++++++++--------------------- dlls/joy.cpl/resource.h | 14 ++++++------ po/ar.po | 4 ++-- po/ast.po | 2 +- po/bg.po | 2 +- po/ca.po | 4 ++-- po/cs.po | 4 ++-- po/da.po | 2 +- po/de.po | 4 ++-- po/el.po | 2 +- po/en.po | 4 ++-- po/en_US.po | 4 ++-- po/eo.po | 2 +- po/es.po | 4 ++-- po/fa.po | 2 +- po/fi.po | 4 ++-- po/fr.po | 4 ++-- po/he.po | 2 +- po/hi.po | 2 +- po/hr.po | 4 ++-- po/hu.po | 2 +- po/it.po | 2 +- po/ja.po | 4 ++-- po/ko.po | 4 ++-- po/lt.po | 4 ++-- po/ml.po | 2 +- po/nb_NO.po | 4 ++-- po/nl.po | 4 ++-- po/or.po | 2 +- po/pa.po | 2 +- po/pl.po | 4 ++-- po/pt_BR.po | 4 ++-- po/pt_PT.po | 4 ++-- po/rm.po | 2 +- po/ro.po | 4 ++-- po/ru.po | 4 ++-- po/si.po | 2 +- po/sk.po | 2 +- po/sl.po | 2 +- po/sr_RS@cyrillic.po | 2 +- po/sr_RS@latin.po | 2 +- po/sv.po | 4 ++-- po/ta.po | 2 +- po/te.po | 2 +- po/th.po | 2 +- po/tr.po | 4 ++-- po/uk.po | 4 ++-- po/wa.po | 2 +- po/wine.pot | 2 +- po/zh_CN.po | 4 ++-- po/zh_TW.po | 4 ++-- 52 files changed, 112 insertions(+), 113 deletions(-) diff --git a/dlls/joy.cpl/joy.rc b/dlls/joy.cpl/joy.rc index 0d4c719166d..46b0eae532c 100644 --- a/dlls/joy.cpl/joy.rc +++ b/dlls/joy.cpl/joy.rc @@ -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 } diff --git a/dlls/joy.cpl/main.c b/dlls/joy.cpl/main.c index e5377a71aa9..279b5c07e22 100644 --- a/dlls/joy.cpl/main.c +++ b/dlls/joy.cpl/main.c @@ -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++; diff --git a/dlls/joy.cpl/resource.h b/dlls/joy.cpl/resource.h index c15f8dfbdeb..74a81d74cf0 100644 --- a/dlls/joy.cpl/resource.h +++ b/dlls/joy.cpl/resource.h @@ -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 diff --git a/po/ar.po b/po/ar.po index c129846f594..7f5079a2bff 100644 --- a/po/ar.po +++ b/po/ar.po @@ -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" diff --git a/po/ast.po b/po/ast.po index 09a778463c6..1bc6c5835a4 100644 --- a/po/ast.po +++ b/po/ast.po @@ -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 diff --git a/po/bg.po b/po/bg.po index 29534552eb7..ef3d126f9a9 100644 --- a/po/bg.po +++ b/po/bg.po @@ -3791,7 +3791,7 @@ msgid "" msgstr "" #: dlls/joy.cpl/joy.rc:55 -msgid "Test Joystick" +msgid "DInput" msgstr "" #: dlls/joy.cpl/joy.rc:59 diff --git a/po/ca.po b/po/ca.po index 92eff11fca8..fd6f2a7ab68 100644 --- a/po/ca.po +++ b/po/ca.po @@ -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" diff --git a/po/cs.po b/po/cs.po index 36c69b7454b..53aa17abdeb 100644 --- a/po/cs.po +++ b/po/cs.po @@ -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" diff --git a/po/da.po b/po/da.po index 0282cedefcd..50b1461c123 100644 --- a/po/da.po +++ b/po/da.po @@ -3814,7 +3814,7 @@ msgid "" msgstr "" #: dlls/joy.cpl/joy.rc:55 -msgid "Test Joystick" +msgid "DInput" msgstr "" #: dlls/joy.cpl/joy.rc:59 diff --git a/po/de.po b/po/de.po index 406c111396b..c1dfc1fecc2 100644 --- a/po/de.po +++ b/po/de.po @@ -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" diff --git a/po/el.po b/po/el.po index 3012ebb06b8..9c0961df56e 100644 --- a/po/el.po +++ b/po/el.po @@ -3703,7 +3703,7 @@ msgid "" msgstr "" #: dlls/joy.cpl/joy.rc:55 -msgid "Test Joystick" +msgid "DInput" msgstr "" #: dlls/joy.cpl/joy.rc:59 diff --git a/po/en.po b/po/en.po index 80d95f8084a..ff1cd60e219 100644 --- a/po/en.po +++ b/po/en.po @@ -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" diff --git a/po/en_US.po b/po/en_US.po index b234b644aee..bb6ba5e1d3e 100644 --- a/po/en_US.po +++ b/po/en_US.po @@ -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" diff --git a/po/eo.po b/po/eo.po index 51b09106ec8..a7c415d0854 100644 --- a/po/eo.po +++ b/po/eo.po @@ -3698,7 +3698,7 @@ msgid "" msgstr "" #: dlls/joy.cpl/joy.rc:55 -msgid "Test Joystick" +msgid "DInput" msgstr "" #: dlls/joy.cpl/joy.rc:59 diff --git a/po/es.po b/po/es.po index 32cf1f2f466..b2a599e4c1c 100644 --- a/po/es.po +++ b/po/es.po @@ -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" diff --git a/po/fa.po b/po/fa.po index 857af17df4e..489762287f0 100644 --- a/po/fa.po +++ b/po/fa.po @@ -3732,7 +3732,7 @@ msgid "" msgstr "" #: dlls/joy.cpl/joy.rc:55 -msgid "Test Joystick" +msgid "DInput" msgstr "" #: dlls/joy.cpl/joy.rc:59 diff --git a/po/fi.po b/po/fi.po index 443c69f4af6..c605a55d91c 100644 --- a/po/fi.po +++ b/po/fi.po @@ -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" diff --git a/po/fr.po b/po/fr.po index a1b2c433452..5a505b45c02 100644 --- a/po/fr.po +++ b/po/fr.po @@ -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" diff --git a/po/he.po b/po/he.po index 062d1509b2c..4a924fc8476 100644 --- a/po/he.po +++ b/po/he.po @@ -3775,7 +3775,7 @@ msgid "" msgstr "" #: dlls/joy.cpl/joy.rc:55 -msgid "Test Joystick" +msgid "DInput" msgstr "" #: dlls/joy.cpl/joy.rc:59 diff --git a/po/hi.po b/po/hi.po index 688f14a210c..3a7dba7b72c 100644 --- a/po/hi.po +++ b/po/hi.po @@ -3664,7 +3664,7 @@ msgid "" msgstr "" #: dlls/joy.cpl/joy.rc:55 -msgid "Test Joystick" +msgid "DInput" msgstr "" #: dlls/joy.cpl/joy.rc:59 diff --git a/po/hr.po b/po/hr.po index 5a20180d70d..186fb55ca69 100644 --- a/po/hr.po +++ b/po/hr.po @@ -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" diff --git a/po/hu.po b/po/hu.po index 410fdc772cc..63637585b82 100644 --- a/po/hu.po +++ b/po/hu.po @@ -3830,7 +3830,7 @@ msgid "" msgstr "" #: dlls/joy.cpl/joy.rc:55 -msgid "Test Joystick" +msgid "DInput" msgstr "" #: dlls/joy.cpl/joy.rc:59 diff --git a/po/it.po b/po/it.po index c7d9b56db84..fd8abfe89b2 100644 --- a/po/it.po +++ b/po/it.po @@ -3838,7 +3838,7 @@ msgid "" msgstr "" #: dlls/joy.cpl/joy.rc:55 -msgid "Test Joystick" +msgid "DInput" msgstr "" #: dlls/joy.cpl/joy.rc:59 diff --git a/po/ja.po b/po/ja.po index 3f3ce8fdbb4..0ecde38e3d7 100644 --- a/po/ja.po +++ b/po/ja.po @@ -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" diff --git a/po/ko.po b/po/ko.po index c46f84011e0..3db7b65263f 100644 --- a/po/ko.po +++ b/po/ko.po @@ -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" diff --git a/po/lt.po b/po/lt.po index 02847a1c27c..b5a48c7265e 100644 --- a/po/lt.po +++ b/po/lt.po @@ -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" diff --git a/po/ml.po b/po/ml.po index 9c5d39246c4..8e6a0fd8018 100644 --- a/po/ml.po +++ b/po/ml.po @@ -3666,7 +3666,7 @@ msgid "" msgstr "" #: dlls/joy.cpl/joy.rc:55 -msgid "Test Joystick" +msgid "DInput" msgstr "" #: dlls/joy.cpl/joy.rc:59 diff --git a/po/nb_NO.po b/po/nb_NO.po index 3533dc066ae..b5703edbd3c 100644 --- a/po/nb_NO.po +++ b/po/nb_NO.po @@ -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" diff --git a/po/nl.po b/po/nl.po index df48054f489..bf985315ff8 100644 --- a/po/nl.po +++ b/po/nl.po @@ -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" diff --git a/po/or.po b/po/or.po index bf4927b4eee..cc31d3d74c7 100644 --- a/po/or.po +++ b/po/or.po @@ -3664,7 +3664,7 @@ msgid "" msgstr "" #: dlls/joy.cpl/joy.rc:55 -msgid "Test Joystick" +msgid "DInput" msgstr "" #: dlls/joy.cpl/joy.rc:59 diff --git a/po/pa.po b/po/pa.po index f0cf7c8e7f2..f28ab08672d 100644 --- a/po/pa.po +++ b/po/pa.po @@ -3664,7 +3664,7 @@ msgid "" msgstr "" #: dlls/joy.cpl/joy.rc:55 -msgid "Test Joystick" +msgid "DInput" msgstr "" #: dlls/joy.cpl/joy.rc:59 diff --git a/po/pl.po b/po/pl.po index 3840b87ded3..2216c9882d4 100644 --- a/po/pl.po +++ b/po/pl.po @@ -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" diff --git a/po/pt_BR.po b/po/pt_BR.po index b540268e520..b53722dfada 100644 --- a/po/pt_BR.po +++ b/po/pt_BR.po @@ -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" diff --git a/po/pt_PT.po b/po/pt_PT.po index a7399d323df..19c918d54bf 100644 --- a/po/pt_PT.po +++ b/po/pt_PT.po @@ -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" diff --git a/po/rm.po b/po/rm.po index 5ca6fb54d72..b711a8c4a13 100644 --- a/po/rm.po +++ b/po/rm.po @@ -3693,7 +3693,7 @@ msgid "" msgstr "" #: dlls/joy.cpl/joy.rc:55 -msgid "Test Joystick" +msgid "DInput" msgstr "" #: dlls/joy.cpl/joy.rc:59 diff --git a/po/ro.po b/po/ro.po index adf37ce0754..eab12f2d5ef 100644 --- a/po/ro.po +++ b/po/ro.po @@ -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" diff --git a/po/ru.po b/po/ru.po index f43e0c5ffd3..4f9e70623de 100644 --- a/po/ru.po +++ b/po/ru.po @@ -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" diff --git a/po/si.po b/po/si.po index 23825064a32..aea4752caca 100644 --- a/po/si.po +++ b/po/si.po @@ -3697,7 +3697,7 @@ msgid "" msgstr "" #: dlls/joy.cpl/joy.rc:55 -msgid "Test Joystick" +msgid "DInput" msgstr "" #: dlls/joy.cpl/joy.rc:59 diff --git a/po/sk.po b/po/sk.po index b96a3432967..47d5efa8d95 100644 --- a/po/sk.po +++ b/po/sk.po @@ -3744,7 +3744,7 @@ msgid "" msgstr "" #: dlls/joy.cpl/joy.rc:55 -msgid "Test Joystick" +msgid "DInput" msgstr "" #: dlls/joy.cpl/joy.rc:59 diff --git a/po/sl.po b/po/sl.po index 5556d25f01e..75a8d28d936 100644 --- a/po/sl.po +++ b/po/sl.po @@ -3832,7 +3832,7 @@ msgid "" msgstr "" #: dlls/joy.cpl/joy.rc:55 -msgid "Test Joystick" +msgid "DInput" msgstr "" #: dlls/joy.cpl/joy.rc:59 diff --git a/po/sr_RS@cyrillic.po b/po/sr_RS@cyrillic.po index cadd0118ff7..00867e31c98 100644 --- a/po/sr_RS@cyrillic.po +++ b/po/sr_RS@cyrillic.po @@ -3808,7 +3808,7 @@ msgid "" msgstr "" #: dlls/joy.cpl/joy.rc:55 -msgid "Test Joystick" +msgid "DInput" msgstr "" #: dlls/joy.cpl/joy.rc:59 diff --git a/po/sr_RS@latin.po b/po/sr_RS@latin.po index b4c070c6851..d8483fd6269 100644 --- a/po/sr_RS@latin.po +++ b/po/sr_RS@latin.po @@ -3893,7 +3893,7 @@ msgid "" msgstr "" #: dlls/joy.cpl/joy.rc:55 -msgid "Test Joystick" +msgid "DInput" msgstr "" #: dlls/joy.cpl/joy.rc:59 diff --git a/po/sv.po b/po/sv.po index 9aeade4a423..93dd93c995d 100644 --- a/po/sv.po +++ b/po/sv.po @@ -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" diff --git a/po/ta.po b/po/ta.po index 617fb19eb34..5dfb02cf6c0 100644 --- a/po/ta.po +++ b/po/ta.po @@ -3630,7 +3630,7 @@ msgid "" msgstr "" #: dlls/joy.cpl/joy.rc:55 -msgid "Test Joystick" +msgid "DInput" msgstr "" #: dlls/joy.cpl/joy.rc:59 diff --git a/po/te.po b/po/te.po index 57d7837ed4a..668225866fd 100644 --- a/po/te.po +++ b/po/te.po @@ -3664,7 +3664,7 @@ msgid "" msgstr "" #: dlls/joy.cpl/joy.rc:55 -msgid "Test Joystick" +msgid "DInput" msgstr "" #: dlls/joy.cpl/joy.rc:59 diff --git a/po/th.po b/po/th.po index 3baf79ee981..c7347a1544c 100644 --- a/po/th.po +++ b/po/th.po @@ -3722,7 +3722,7 @@ msgid "" msgstr "" #: dlls/joy.cpl/joy.rc:55 -msgid "Test Joystick" +msgid "DInput" msgstr "" #: dlls/joy.cpl/joy.rc:59 diff --git a/po/tr.po b/po/tr.po index 6860d9b00dc..379c9227eb5 100644 --- a/po/tr.po +++ b/po/tr.po @@ -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" diff --git a/po/uk.po b/po/uk.po index 5dd1f46f189..58a74a9ff69 100644 --- a/po/uk.po +++ b/po/uk.po @@ -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" diff --git a/po/wa.po b/po/wa.po index 0f0d05de6b9..c6e8f8593ea 100644 --- a/po/wa.po +++ b/po/wa.po @@ -3728,7 +3728,7 @@ msgid "" msgstr "" #: dlls/joy.cpl/joy.rc:55 -msgid "Test Joystick" +msgid "DInput" msgstr "" #: dlls/joy.cpl/joy.rc:59 diff --git a/po/wine.pot b/po/wine.pot index 41436c38cc6..2c84cd8550c 100644 --- a/po/wine.pot +++ b/po/wine.pot @@ -3619,7 +3619,7 @@ msgid "" msgstr "" #: dlls/joy.cpl/joy.rc:55 -msgid "Test Joystick" +msgid "DInput" msgstr "" #: dlls/joy.cpl/joy.rc:59 diff --git a/po/zh_CN.po b/po/zh_CN.po index 933d032287c..4a1f8eb15e9 100644 --- a/po/zh_CN.po +++ b/po/zh_CN.po @@ -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" diff --git a/po/zh_TW.po b/po/zh_TW.po index df8e81d6688..a413a3c1585 100644 --- a/po/zh_TW.po +++ b/po/zh_TW.po @@ -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"