joy.cpl: Hardcode axis name strings that were in joy.rc.
diff --git a/dlls/joy.cpl/joy.h b/dlls/joy.cpl/joy.h
index c54d30f..c4a13b8 100644
--- a/dlls/joy.cpl/joy.h
+++ b/dlls/joy.cpl/joy.h
@@ -68,6 +68,9 @@
#define IDC_BUTTONENABLE 2002
#define IDC_DISABLEDLIST 2003
#define IDC_TESTSELECTCOMBO 2004
+#define IDC_TESTGROUPXY 2005
+#define IDC_TESTGROUPRXRY 2006
+#define IDC_TESTGROUPZRZ 2007
#define IDC_JOYSTICKBUTTON 3000
#define IDC_JOYSTICKAXES 4000
diff --git a/dlls/joy.cpl/joy.rc b/dlls/joy.cpl/joy.rc
index a52273b..1e94990 100644
--- a/dlls/joy.cpl/joy.rc
+++ b/dlls/joy.cpl/joy.rc
@@ -48,9 +48,9 @@
{
COMBOBOX IDC_TESTSELECTCOMBO, 5, 5, 100, 30, CBS_DROPDOWNLIST | CBS_HASSTRINGS
GROUPBOX "Buttons", IDC_STATIC, 0, 110, 250, 90
- GROUPBOX "X,Y", IDC_STATIC, 15, 30, 60, 60
- GROUPBOX "Rx,Ry", IDC_STATIC, 92, 30, 60, 60
- GROUPBOX "Z, Rz", IDC_STATIC, 169, 30, 60, 60
+ GROUPBOX "", IDC_TESTGROUPXY, 15, 30, 60, 60
+ GROUPBOX "", IDC_TESTGROUPRXRY, 92, 30, 60, 60
+ GROUPBOX "", IDC_TESTGROUPZRZ, 169, 30, 60, 60
}
IDD_FORCEFEEDBACK DIALOG 0, 0, 250, 200
diff --git a/dlls/joy.cpl/main.c b/dlls/joy.cpl/main.c
index a58d768..47894ca 100644
--- a/dlls/joy.cpl/main.c
+++ b/dlls/joy.cpl/main.c
@@ -308,7 +308,9 @@
struct Joystick *joy;
DIPROPRANGE propRange;
HINSTANCE hinst = (HINSTANCE) GetWindowLongPtrW(hwnd, GWLP_HINSTANCE);
- static WCHAR button_class[] = {'B','u','t','t','o','n','\0'};
+ static const WCHAR button_class[] = {'B','u','t','t','o','n','\0'};
+ static const WCHAR axes_names[TEST_MAX_AXES][7] = { {'X',',','Y','\0'}, {'R','x',',','R','y','\0'}, {'Z',',','R','z','\0'} };
+ static const DWORD axes_idc[TEST_MAX_AXES] = { IDC_TESTGROUPXY, IDC_TESTGROUPRXRY, IDC_TESTGROUPZRZ };
/* Set axis range to ease the GUI visualization */
for (i = 0; i < data->num_joysticks; i++)
@@ -326,6 +328,9 @@
for (i = 0; i < TEST_MAX_AXES; i++)
{
+ /* Set axis box name */
+ SetWindowTextW(GetDlgItem(hwnd, axes_idc[i]), axes_names[i]);
+
data->axes[i] = CreateWindowW( button_class, NULL, WS_CHILD | WS_VISIBLE,
TEST_AXIS_X + TEST_NEXT_AXIS_X*i, TEST_AXIS_Y,
TEST_AXIS_SIZE_X, TEST_AXIS_SIZE_Y,
diff --git a/po/ar.po b/po/ar.po
index 3c322d7..dafcef7 100644
--- a/po/ar.po
+++ b/po/ar.po
@@ -3424,18 +3424,6 @@
msgid "Buttons"
msgstr ""
-#: joy.rc:51
-msgid "X,Y"
-msgstr ""
-
-#: joy.rc:52
-msgid "Rx,Ry"
-msgstr ""
-
-#: joy.rc:53
-msgid "Z, Rz"
-msgstr ""
-
#: joy.rc:58
msgid "Test Force Feedback"
msgstr ""
diff --git a/po/bg.po b/po/bg.po
index 518598c..c8a79d8 100644
--- a/po/bg.po
+++ b/po/bg.po
@@ -3450,18 +3450,6 @@
msgid "Buttons"
msgstr ""
-#: joy.rc:51
-msgid "X,Y"
-msgstr ""
-
-#: joy.rc:52
-msgid "Rx,Ry"
-msgstr ""
-
-#: joy.rc:53
-msgid "Z, Rz"
-msgstr ""
-
#: joy.rc:58
msgid "Test Force Feedback"
msgstr ""
diff --git a/po/ca.po b/po/ca.po
index b8e634d..616149a 100644
--- a/po/ca.po
+++ b/po/ca.po
@@ -3494,18 +3494,6 @@
msgid "Buttons"
msgstr ""
-#: joy.rc:51
-msgid "X,Y"
-msgstr ""
-
-#: joy.rc:52
-msgid "Rx,Ry"
-msgstr ""
-
-#: joy.rc:53
-msgid "Z, Rz"
-msgstr ""
-
#: joy.rc:58
msgid "Test Force Feedback"
msgstr ""
diff --git a/po/cs.po b/po/cs.po
index eaeeb97..94c2e27 100644
--- a/po/cs.po
+++ b/po/cs.po
@@ -3498,18 +3498,6 @@
msgid "Buttons"
msgstr ""
-#: joy.rc:51
-msgid "X,Y"
-msgstr ""
-
-#: joy.rc:52
-msgid "Rx,Ry"
-msgstr ""
-
-#: joy.rc:53
-msgid "Z, Rz"
-msgstr ""
-
#: joy.rc:58
msgid "Test Force Feedback"
msgstr ""
diff --git a/po/da.po b/po/da.po
index 5e8b2f6..f2cbcf0 100644
--- a/po/da.po
+++ b/po/da.po
@@ -3470,18 +3470,6 @@
msgid "Buttons"
msgstr ""
-#: joy.rc:51
-msgid "X,Y"
-msgstr ""
-
-#: joy.rc:52
-msgid "Rx,Ry"
-msgstr ""
-
-#: joy.rc:53
-msgid "Z, Rz"
-msgstr ""
-
#: joy.rc:58
msgid "Test Force Feedback"
msgstr ""
diff --git a/po/de.po b/po/de.po
index 12d0ff9..72aa218 100644
--- a/po/de.po
+++ b/po/de.po
@@ -3457,18 +3457,6 @@
msgid "Buttons"
msgstr "Tasten"
-#: joy.rc:51
-msgid "X,Y"
-msgstr "X,Y"
-
-#: joy.rc:52
-msgid "Rx,Ry"
-msgstr "Rx,Ry"
-
-#: joy.rc:53
-msgid "Z, Rz"
-msgstr "Z, Rz"
-
#: joy.rc:58
msgid "Test Force Feedback"
msgstr "Force Feedback testen"
diff --git a/po/el.po b/po/el.po
index 0b2ca60..3dca6ef 100644
--- a/po/el.po
+++ b/po/el.po
@@ -3384,18 +3384,6 @@
msgid "Buttons"
msgstr ""
-#: joy.rc:51
-msgid "X,Y"
-msgstr ""
-
-#: joy.rc:52
-msgid "Rx,Ry"
-msgstr ""
-
-#: joy.rc:53
-msgid "Z, Rz"
-msgstr ""
-
#: joy.rc:58
msgid "Test Force Feedback"
msgstr ""
diff --git a/po/en.po b/po/en.po
index a37a005..06d0e4f 100644
--- a/po/en.po
+++ b/po/en.po
@@ -3448,18 +3448,6 @@
msgid "Buttons"
msgstr "Buttons"
-#: joy.rc:51
-msgid "X,Y"
-msgstr "X,Y"
-
-#: joy.rc:52
-msgid "Rx,Ry"
-msgstr "Rx,Ry"
-
-#: joy.rc:53
-msgid "Z, Rz"
-msgstr "Z, Rz"
-
#: joy.rc:58
msgid "Test Force Feedback"
msgstr "Test Force Feedback"
diff --git a/po/en_US.po b/po/en_US.po
index 9e2fce4..56b776f 100644
--- a/po/en_US.po
+++ b/po/en_US.po
@@ -3450,18 +3450,6 @@
msgid "Buttons"
msgstr "Buttons"
-#: joy.rc:51
-msgid "X,Y"
-msgstr "X,Y"
-
-#: joy.rc:52
-msgid "Rx,Ry"
-msgstr "Rx,Ry"
-
-#: joy.rc:53
-msgid "Z, Rz"
-msgstr "Z, Rz"
-
#: joy.rc:58
msgid "Test Force Feedback"
msgstr "Test Force Feedback"
diff --git a/po/eo.po b/po/eo.po
index c421b13..2f0086a 100644
--- a/po/eo.po
+++ b/po/eo.po
@@ -3360,18 +3360,6 @@
msgid "Buttons"
msgstr ""
-#: joy.rc:51
-msgid "X,Y"
-msgstr ""
-
-#: joy.rc:52
-msgid "Rx,Ry"
-msgstr ""
-
-#: joy.rc:53
-msgid "Z, Rz"
-msgstr ""
-
#: joy.rc:58
msgid "Test Force Feedback"
msgstr ""
diff --git a/po/es.po b/po/es.po
index 1f43239..2f2ccfc 100644
--- a/po/es.po
+++ b/po/es.po
@@ -3484,18 +3484,6 @@
msgid "Buttons"
msgstr ""
-#: joy.rc:51
-msgid "X,Y"
-msgstr ""
-
-#: joy.rc:52
-msgid "Rx,Ry"
-msgstr ""
-
-#: joy.rc:53
-msgid "Z, Rz"
-msgstr ""
-
#: joy.rc:58
msgid "Test Force Feedback"
msgstr ""
diff --git a/po/fa.po b/po/fa.po
index 873a063..59a9a26 100644
--- a/po/fa.po
+++ b/po/fa.po
@@ -3424,18 +3424,6 @@
msgid "Buttons"
msgstr ""
-#: joy.rc:51
-msgid "X,Y"
-msgstr ""
-
-#: joy.rc:52
-msgid "Rx,Ry"
-msgstr ""
-
-#: joy.rc:53
-msgid "Z, Rz"
-msgstr ""
-
#: joy.rc:58
msgid "Test Force Feedback"
msgstr ""
diff --git a/po/fi.po b/po/fi.po
index b76bff5..11f2d07 100644
--- a/po/fi.po
+++ b/po/fi.po
@@ -3445,18 +3445,6 @@
msgid "Buttons"
msgstr ""
-#: joy.rc:51
-msgid "X,Y"
-msgstr ""
-
-#: joy.rc:52
-msgid "Rx,Ry"
-msgstr ""
-
-#: joy.rc:53
-msgid "Z, Rz"
-msgstr ""
-
#: joy.rc:58
msgid "Test Force Feedback"
msgstr "Testaa voimapalautetta"
diff --git a/po/fr.po b/po/fr.po
index e3627f8..1e47f2d 100644
--- a/po/fr.po
+++ b/po/fr.po
@@ -3480,18 +3480,6 @@
msgid "Buttons"
msgstr ""
-#: joy.rc:51
-msgid "X,Y"
-msgstr ""
-
-#: joy.rc:52
-msgid "Rx,Ry"
-msgstr ""
-
-#: joy.rc:53
-msgid "Z, Rz"
-msgstr ""
-
#: joy.rc:58
msgid "Test Force Feedback"
msgstr ""
diff --git a/po/he.po b/po/he.po
index 081838f..623447b 100644
--- a/po/he.po
+++ b/po/he.po
@@ -3447,18 +3447,6 @@
msgid "Buttons"
msgstr ""
-#: joy.rc:51
-msgid "X,Y"
-msgstr ""
-
-#: joy.rc:52
-msgid "Rx,Ry"
-msgstr ""
-
-#: joy.rc:53
-msgid "Z, Rz"
-msgstr ""
-
#: joy.rc:58
msgid "Test Force Feedback"
msgstr ""
diff --git a/po/hi.po b/po/hi.po
index 5b69792..8e4e912 100644
--- a/po/hi.po
+++ b/po/hi.po
@@ -3362,18 +3362,6 @@
msgid "Buttons"
msgstr ""
-#: joy.rc:51
-msgid "X,Y"
-msgstr ""
-
-#: joy.rc:52
-msgid "Rx,Ry"
-msgstr ""
-
-#: joy.rc:53
-msgid "Z, Rz"
-msgstr ""
-
#: joy.rc:58
msgid "Test Force Feedback"
msgstr ""
diff --git a/po/hu.po b/po/hu.po
index d0c02d1..bb020f3 100644
--- a/po/hu.po
+++ b/po/hu.po
@@ -3486,18 +3486,6 @@
msgid "Buttons"
msgstr ""
-#: joy.rc:51
-msgid "X,Y"
-msgstr ""
-
-#: joy.rc:52
-msgid "Rx,Ry"
-msgstr ""
-
-#: joy.rc:53
-msgid "Z, Rz"
-msgstr ""
-
#: joy.rc:58
msgid "Test Force Feedback"
msgstr ""
diff --git a/po/it.po b/po/it.po
index a687535..5a8a61a 100644
--- a/po/it.po
+++ b/po/it.po
@@ -3494,18 +3494,6 @@
msgid "Buttons"
msgstr ""
-#: joy.rc:51
-msgid "X,Y"
-msgstr ""
-
-#: joy.rc:52
-msgid "Rx,Ry"
-msgstr ""
-
-#: joy.rc:53
-msgid "Z, Rz"
-msgstr ""
-
#: joy.rc:58
msgid "Test Force Feedback"
msgstr ""
diff --git a/po/ja.po b/po/ja.po
index d8de955..b6ff9bf 100644
--- a/po/ja.po
+++ b/po/ja.po
@@ -3442,18 +3442,6 @@
msgid "Buttons"
msgstr ""
-#: joy.rc:51
-msgid "X,Y"
-msgstr ""
-
-#: joy.rc:52
-msgid "Rx,Ry"
-msgstr ""
-
-#: joy.rc:53
-msgid "Z, Rz"
-msgstr ""
-
#: joy.rc:58
msgid "Test Force Feedback"
msgstr "フォース フィードバックのテスト"
diff --git a/po/ko.po b/po/ko.po
index 2c13c69..66994dd 100644
--- a/po/ko.po
+++ b/po/ko.po
@@ -3446,18 +3446,6 @@
msgid "Buttons"
msgstr ""
-#: joy.rc:51
-msgid "X,Y"
-msgstr ""
-
-#: joy.rc:52
-msgid "Rx,Ry"
-msgstr ""
-
-#: joy.rc:53
-msgid "Z, Rz"
-msgstr ""
-
#: joy.rc:58
msgid "Test Force Feedback"
msgstr ""
diff --git a/po/lt.po b/po/lt.po
index f4703b0..1ef573b 100644
--- a/po/lt.po
+++ b/po/lt.po
@@ -3458,18 +3458,6 @@
msgid "Buttons"
msgstr "Mygtukai"
-#: joy.rc:51
-msgid "X,Y"
-msgstr "X,Y"
-
-#: joy.rc:52
-msgid "Rx,Ry"
-msgstr "Rx,Ry"
-
-#: joy.rc:53
-msgid "Z, Rz"
-msgstr "Z, Rz"
-
#: joy.rc:58
msgid "Test Force Feedback"
msgstr "Testuoti „Force Feedback“"
diff --git a/po/ml.po b/po/ml.po
index 95a42c9..38cad24 100644
--- a/po/ml.po
+++ b/po/ml.po
@@ -3362,18 +3362,6 @@
msgid "Buttons"
msgstr ""
-#: joy.rc:51
-msgid "X,Y"
-msgstr ""
-
-#: joy.rc:52
-msgid "Rx,Ry"
-msgstr ""
-
-#: joy.rc:53
-msgid "Z, Rz"
-msgstr ""
-
#: joy.rc:58
msgid "Test Force Feedback"
msgstr ""
diff --git a/po/nb_NO.po b/po/nb_NO.po
index 6f709ef..67dadb7 100644
--- a/po/nb_NO.po
+++ b/po/nb_NO.po
@@ -3619,18 +3619,6 @@
msgid "Buttons"
msgstr ""
-#: joy.rc:51
-msgid "X,Y"
-msgstr ""
-
-#: joy.rc:52
-msgid "Rx,Ry"
-msgstr ""
-
-#: joy.rc:53
-msgid "Z, Rz"
-msgstr ""
-
#: joy.rc:58
msgid "Test Force Feedback"
msgstr ""
diff --git a/po/nl.po b/po/nl.po
index 7c82f8f..dd5e329 100644
--- a/po/nl.po
+++ b/po/nl.po
@@ -3511,18 +3511,6 @@
msgid "Buttons"
msgstr ""
-#: joy.rc:51
-msgid "X,Y"
-msgstr ""
-
-#: joy.rc:52
-msgid "Rx,Ry"
-msgstr ""
-
-#: joy.rc:53
-msgid "Z, Rz"
-msgstr ""
-
#: joy.rc:58
msgid "Test Force Feedback"
msgstr ""
diff --git a/po/or.po b/po/or.po
index 4f3dd88..9efea13 100644
--- a/po/or.po
+++ b/po/or.po
@@ -3362,18 +3362,6 @@
msgid "Buttons"
msgstr ""
-#: joy.rc:51
-msgid "X,Y"
-msgstr ""
-
-#: joy.rc:52
-msgid "Rx,Ry"
-msgstr ""
-
-#: joy.rc:53
-msgid "Z, Rz"
-msgstr ""
-
#: joy.rc:58
msgid "Test Force Feedback"
msgstr ""
diff --git a/po/pa.po b/po/pa.po
index e612ecf..f020abd 100644
--- a/po/pa.po
+++ b/po/pa.po
@@ -3362,18 +3362,6 @@
msgid "Buttons"
msgstr ""
-#: joy.rc:51
-msgid "X,Y"
-msgstr ""
-
-#: joy.rc:52
-msgid "Rx,Ry"
-msgstr ""
-
-#: joy.rc:53
-msgid "Z, Rz"
-msgstr ""
-
#: joy.rc:58
msgid "Test Force Feedback"
msgstr ""
diff --git a/po/pl.po b/po/pl.po
index 9b4b70d..52812c2 100644
--- a/po/pl.po
+++ b/po/pl.po
@@ -3470,18 +3470,6 @@
msgid "Buttons"
msgstr "Przyciski"
-#: joy.rc:51
-msgid "X,Y"
-msgstr "X,Y"
-
-#: joy.rc:52
-msgid "Rx,Ry"
-msgstr "Rx,Ry"
-
-#: joy.rc:53
-msgid "Z, Rz"
-msgstr "Z, Rz"
-
#: joy.rc:58
msgid "Test Force Feedback"
msgstr "Testuj odczucie siły zwrotnej"
diff --git a/po/pt_BR.po b/po/pt_BR.po
index 419b333..604ce19 100644
--- a/po/pt_BR.po
+++ b/po/pt_BR.po
@@ -3492,18 +3492,6 @@
msgid "Buttons"
msgstr ""
-#: joy.rc:51
-msgid "X,Y"
-msgstr ""
-
-#: joy.rc:52
-msgid "Rx,Ry"
-msgstr ""
-
-#: joy.rc:53
-msgid "Z, Rz"
-msgstr ""
-
#: joy.rc:58
msgid "Test Force Feedback"
msgstr ""
diff --git a/po/pt_PT.po b/po/pt_PT.po
index 8e8a1b6..337f5f8 100644
--- a/po/pt_PT.po
+++ b/po/pt_PT.po
@@ -3491,18 +3491,6 @@
msgid "Buttons"
msgstr ""
-#: joy.rc:51
-msgid "X,Y"
-msgstr ""
-
-#: joy.rc:52
-msgid "Rx,Ry"
-msgstr ""
-
-#: joy.rc:53
-msgid "Z, Rz"
-msgstr ""
-
#: joy.rc:58
msgid "Test Force Feedback"
msgstr ""
diff --git a/po/rm.po b/po/rm.po
index a6d6589..5743165 100644
--- a/po/rm.po
+++ b/po/rm.po
@@ -3390,18 +3390,6 @@
msgid "Buttons"
msgstr ""
-#: joy.rc:51
-msgid "X,Y"
-msgstr ""
-
-#: joy.rc:52
-msgid "Rx,Ry"
-msgstr ""
-
-#: joy.rc:53
-msgid "Z, Rz"
-msgstr ""
-
#: joy.rc:58
msgid "Test Force Feedback"
msgstr ""
diff --git a/po/ro.po b/po/ro.po
index 0cf4921..36cfc11 100644
--- a/po/ro.po
+++ b/po/ro.po
@@ -3451,18 +3451,6 @@
msgid "Buttons"
msgstr ""
-#: joy.rc:51
-msgid "X,Y"
-msgstr ""
-
-#: joy.rc:52
-msgid "Rx,Ry"
-msgstr ""
-
-#: joy.rc:53
-msgid "Z, Rz"
-msgstr ""
-
#: joy.rc:58
msgid "Test Force Feedback"
msgstr ""
diff --git a/po/ru.po b/po/ru.po
index 2d7d6ef..5f33838 100644
--- a/po/ru.po
+++ b/po/ru.po
@@ -3463,18 +3463,6 @@
msgid "Buttons"
msgstr ""
-#: joy.rc:51
-msgid "X,Y"
-msgstr ""
-
-#: joy.rc:52
-msgid "Rx,Ry"
-msgstr ""
-
-#: joy.rc:53
-msgid "Z, Rz"
-msgstr ""
-
#: joy.rc:58
msgid "Test Force Feedback"
msgstr ""
diff --git a/po/sk.po b/po/sk.po
index ab945bb..a12d29a 100644
--- a/po/sk.po
+++ b/po/sk.po
@@ -3393,18 +3393,6 @@
msgid "Buttons"
msgstr ""
-#: joy.rc:51
-msgid "X,Y"
-msgstr ""
-
-#: joy.rc:52
-msgid "Rx,Ry"
-msgstr ""
-
-#: joy.rc:53
-msgid "Z, Rz"
-msgstr ""
-
#: joy.rc:58
msgid "Test Force Feedback"
msgstr ""
diff --git a/po/sl.po b/po/sl.po
index e9705b5..f8b50eb 100644
--- a/po/sl.po
+++ b/po/sl.po
@@ -3483,18 +3483,6 @@
msgid "Buttons"
msgstr ""
-#: joy.rc:51
-msgid "X,Y"
-msgstr ""
-
-#: joy.rc:52
-msgid "Rx,Ry"
-msgstr ""
-
-#: joy.rc:53
-msgid "Z, Rz"
-msgstr ""
-
#: joy.rc:58
msgid "Test Force Feedback"
msgstr ""
diff --git a/po/sr_RS@cyrillic.po b/po/sr_RS@cyrillic.po
index da4a1d4..cae5a77 100644
--- a/po/sr_RS@cyrillic.po
+++ b/po/sr_RS@cyrillic.po
@@ -3481,18 +3481,6 @@
msgid "Buttons"
msgstr ""
-#: joy.rc:51
-msgid "X,Y"
-msgstr ""
-
-#: joy.rc:52
-msgid "Rx,Ry"
-msgstr ""
-
-#: joy.rc:53
-msgid "Z, Rz"
-msgstr ""
-
#: joy.rc:58
msgid "Test Force Feedback"
msgstr ""
diff --git a/po/sr_RS@latin.po b/po/sr_RS@latin.po
index abedea1..b798de2 100644
--- a/po/sr_RS@latin.po
+++ b/po/sr_RS@latin.po
@@ -3559,18 +3559,6 @@
msgid "Buttons"
msgstr ""
-#: joy.rc:51
-msgid "X,Y"
-msgstr ""
-
-#: joy.rc:52
-msgid "Rx,Ry"
-msgstr ""
-
-#: joy.rc:53
-msgid "Z, Rz"
-msgstr ""
-
#: joy.rc:58
msgid "Test Force Feedback"
msgstr ""
diff --git a/po/sv.po b/po/sv.po
index e00a84f..dfaa5c6 100644
--- a/po/sv.po
+++ b/po/sv.po
@@ -3440,18 +3440,6 @@
msgid "Buttons"
msgstr ""
-#: joy.rc:51
-msgid "X,Y"
-msgstr ""
-
-#: joy.rc:52
-msgid "Rx,Ry"
-msgstr ""
-
-#: joy.rc:53
-msgid "Z, Rz"
-msgstr ""
-
#: joy.rc:58
msgid "Test Force Feedback"
msgstr "Testa kraftåterkoppling"
diff --git a/po/te.po b/po/te.po
index ee6537f..cb01181 100644
--- a/po/te.po
+++ b/po/te.po
@@ -3362,18 +3362,6 @@
msgid "Buttons"
msgstr ""
-#: joy.rc:51
-msgid "X,Y"
-msgstr ""
-
-#: joy.rc:52
-msgid "Rx,Ry"
-msgstr ""
-
-#: joy.rc:53
-msgid "Z, Rz"
-msgstr ""
-
#: joy.rc:58
msgid "Test Force Feedback"
msgstr ""
diff --git a/po/th.po b/po/th.po
index 6bb9bcb..a1c4537 100644
--- a/po/th.po
+++ b/po/th.po
@@ -3401,18 +3401,6 @@
msgid "Buttons"
msgstr ""
-#: joy.rc:51
-msgid "X,Y"
-msgstr ""
-
-#: joy.rc:52
-msgid "Rx,Ry"
-msgstr ""
-
-#: joy.rc:53
-msgid "Z, Rz"
-msgstr ""
-
#: joy.rc:58
msgid "Test Force Feedback"
msgstr ""
diff --git a/po/tr.po b/po/tr.po
index 593bfea..5a53985 100644
--- a/po/tr.po
+++ b/po/tr.po
@@ -3355,18 +3355,6 @@
msgid "Buttons"
msgstr ""
-#: joy.rc:51
-msgid "X,Y"
-msgstr ""
-
-#: joy.rc:52
-msgid "Rx,Ry"
-msgstr ""
-
-#: joy.rc:53
-msgid "Z, Rz"
-msgstr ""
-
#: joy.rc:58
msgid "Test Force Feedback"
msgstr ""
diff --git a/po/uk.po b/po/uk.po
index eeef260..bc70752 100644
--- a/po/uk.po
+++ b/po/uk.po
@@ -3477,18 +3477,6 @@
msgid "Buttons"
msgstr ""
-#: joy.rc:51
-msgid "X,Y"
-msgstr ""
-
-#: joy.rc:52
-msgid "Rx,Ry"
-msgstr ""
-
-#: joy.rc:53
-msgid "Z, Rz"
-msgstr ""
-
#: joy.rc:58
msgid "Test Force Feedback"
msgstr ""
diff --git a/po/wa.po b/po/wa.po
index cf94a25..6800edb 100644
--- a/po/wa.po
+++ b/po/wa.po
@@ -3409,18 +3409,6 @@
msgid "Buttons"
msgstr ""
-#: joy.rc:51
-msgid "X,Y"
-msgstr ""
-
-#: joy.rc:52
-msgid "Rx,Ry"
-msgstr ""
-
-#: joy.rc:53
-msgid "Z, Rz"
-msgstr ""
-
#: joy.rc:58
msgid "Test Force Feedback"
msgstr ""
diff --git a/po/wine.pot b/po/wine.pot
index 76a1f68..bc2c8d1 100644
--- a/po/wine.pot
+++ b/po/wine.pot
@@ -3324,18 +3324,6 @@
msgid "Buttons"
msgstr ""
-#: joy.rc:51
-msgid "X,Y"
-msgstr ""
-
-#: joy.rc:52
-msgid "Rx,Ry"
-msgstr ""
-
-#: joy.rc:53
-msgid "Z, Rz"
-msgstr ""
-
#: joy.rc:58
msgid "Test Force Feedback"
msgstr ""
diff --git a/po/zh_CN.po b/po/zh_CN.po
index 293b273..539c666 100644
--- a/po/zh_CN.po
+++ b/po/zh_CN.po
@@ -3370,18 +3370,6 @@
msgid "Buttons"
msgstr ""
-#: joy.rc:51
-msgid "X,Y"
-msgstr ""
-
-#: joy.rc:52
-msgid "Rx,Ry"
-msgstr ""
-
-#: joy.rc:53
-msgid "Z, Rz"
-msgstr ""
-
#: joy.rc:58
msgid "Test Force Feedback"
msgstr ""
diff --git a/po/zh_TW.po b/po/zh_TW.po
index f121d07..74d2fd6 100644
--- a/po/zh_TW.po
+++ b/po/zh_TW.po
@@ -3374,18 +3374,6 @@
msgid "Buttons"
msgstr ""
-#: joy.rc:51
-msgid "X,Y"
-msgstr ""
-
-#: joy.rc:52
-msgid "Rx,Ry"
-msgstr ""
-
-#: joy.rc:53
-msgid "Z, Rz"
-msgstr ""
-
#: joy.rc:58
msgid "Test Force Feedback"
msgstr ""