1
0
mirror of https://github.com/wine-mirror/wine synced 2024-07-08 20:06:18 +00:00

joy.cpl: Disable joysticks using joy.cpl.

This commit is contained in:
Lucas Zawacki 2012-08-24 04:55:08 -03:00 committed by Alexandre Julliard
parent 3da6f1754e
commit 78c8fe0db2
47 changed files with 695 additions and 284 deletions

View File

@ -39,6 +39,7 @@ FONT 8, "Ms Shell Dlg"
LISTBOX IDC_JOYSTICKLIST, 10, 20, 180, 70, WS_TABSTOP | WS_VSCROLL | LBS_NOTIFY LISTBOX IDC_JOYSTICKLIST, 10, 20, 180, 70, WS_TABSTOP | WS_VSCROLL | LBS_NOTIFY
LTEXT "Disabled", IDC_STATIC, 10, 95, 100, 10 LTEXT "Disabled", IDC_STATIC, 10, 95, 100, 10
LISTBOX IDC_DISABLEDLIST, 10, 105, 180, 70, WS_TABSTOP | WS_VSCROLL | LBS_NOTIFY LISTBOX IDC_DISABLEDLIST, 10, 105, 180, 70, WS_TABSTOP | WS_VSCROLL | LBS_NOTIFY
LTEXT "After disabling or enabling a device, the connected joysticks won't be updated here until you restart this applet.", IDC_STATIC, 10, 175, 200, 25
} }
IDD_TEST DIALOG 0, 0, 320, 220 IDD_TEST DIALOG 0, 0, 320, 220
@ -46,7 +47,7 @@ STYLE WS_CAPTION | WS_CHILD | WS_DISABLED
CAPTION "Test Joystick" CAPTION "Test Joystick"
FONT 8, "Ms Shell Dlg" FONT 8, "Ms Shell Dlg"
{ {
COMBOBOX IDC_TESTSELECTCOMBO, 5, 5, 100, 30, CBS_DROPDOWNLIST | CBS_HASSTRINGS COMBOBOX IDC_TESTSELECTCOMBO, 5, 5, 200, 30, CBS_DROPDOWNLIST | CBS_HASSTRINGS
GROUPBOX "Buttons", IDC_STATIC, 0, 110, 250, 110 GROUPBOX "Buttons", IDC_STATIC, 0, 110, 250, 110
GROUPBOX "", IDC_TESTGROUPXY, 15, 30, 60, 60 GROUPBOX "", IDC_TESTGROUPXY, 15, 30, 60, 60
GROUPBOX "", IDC_TESTGROUPRXRY, 92, 30, 60, 60 GROUPBOX "", IDC_TESTGROUPRXRY, 92, 30, 60, 60
@ -59,7 +60,7 @@ STYLE WS_CAPTION | WS_CHILD | WS_DISABLED
CAPTION "Test Force Feedback" CAPTION "Test Force Feedback"
FONT 8, "Ms Shell Dlg" FONT 8, "Ms Shell Dlg"
{ {
COMBOBOX IDC_FFSELECTCOMBO, 5, 5, 100, 30, CBS_DROPDOWNLIST | CBS_HASSTRINGS COMBOBOX IDC_FFSELECTCOMBO, 5, 5, 200, 30, CBS_DROPDOWNLIST | CBS_HASSTRINGS
LTEXT "Available Effects", IDC_STATIC, 10, 30, 100, 10 LTEXT "Available Effects", IDC_STATIC, 10, 30, 100, 10
LISTBOX IDC_FFEFFECTLIST, 10, 40, 180, 70, WS_TABSTOP | WS_VSCROLL | LBS_NOTIFY LISTBOX IDC_FFEFFECTLIST, 10, 40, 180, 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.", LTEXT "Press any button in the controller to activate the chosen effect. The effect direction can be changed with the controller axis.",

View File

@ -32,6 +32,7 @@
#include "ole2.h" #include "ole2.h"
#include "wine/debug.h" #include "wine/debug.h"
#include "wine/unicode.h"
#include "joy.h" #include "joy.h"
WINE_DEFAULT_DEBUG_CHANNEL(joycpl); WINE_DEFAULT_DEBUG_CHANNEL(joycpl);
@ -146,26 +147,134 @@ static void destroy_joysticks(struct JoystickData *data)
HeapFree(GetProcessHeap(), 0, data->joysticks); HeapFree(GetProcessHeap(), 0, data->joysticks);
} }
static void initialize_joysticks_list(HWND hwnd, struct JoystickData *data)
{
int i;
SendDlgItemMessageW(hwnd, IDC_JOYSTICKLIST, LB_RESETCONTENT, 0, 0);
/* Add enumerated joysticks */
for (i = 0; i < data->num_joysticks; i++)
{
struct Joystick *joy = &data->joysticks[i];
SendDlgItemMessageW(hwnd, IDC_JOYSTICKLIST, LB_ADDSTRING, 0, (LPARAM) joy->instance.tszInstanceName);
}
}
/******************************************************************************
* get_app_key [internal]
* Get the default DirectInput key and the selected app config key.
*/
static BOOL get_app_key(HKEY *defkey, HKEY *appkey)
{
static const WCHAR reg_key[] = { 'S','o','f','t','w','a','r','e','\\',
'W','i','n','e','\\',
'D','i','r','e','c','t','I','n','p','u','t','\\',
'J','o','y','s','t','i','c','k','s','\0' };
*appkey = 0;
/* Registry key can be found in HKCU\Software\Wine\DirectInput */
if (RegCreateKeyExW(HKEY_CURRENT_USER, reg_key, 0, NULL, 0, KEY_SET_VALUE | KEY_READ, NULL, defkey, NULL))
*defkey = 0;
return *defkey || *appkey;
}
/******************************************************************************
* set_config_key [internal]
* Writes a string value to a registry key, deletes the key if value == NULL
*/
static DWORD set_config_key(HKEY defkey, HKEY appkey, const WCHAR *name, const WCHAR *value, DWORD size)
{
if (value == NULL)
{
if (appkey && !RegDeleteValueW(appkey, name))
return 0;
if (defkey && !RegDeleteValueW(defkey, name))
return 0;
}
else
{
if (appkey && !RegSetValueExW(appkey, name, 0, REG_SZ, (const BYTE*) value, (size + 1)*sizeof(WCHAR)))
return 0;
if (defkey && !RegSetValueExW(defkey, name, 0, REG_SZ, (const BYTE*) value, (size + 1)*sizeof(WCHAR)))
return 0;
}
return ERROR_FILE_NOT_FOUND;
}
/******************************************************************************
* enable_joystick [internal]
* Writes to the DirectInput registry key that enables/disables a joystick
* from being enumerated.
*/
static void enable_joystick(WCHAR *joy_name, BOOL enable)
{
static const WCHAR disabled_str[] = {'d','i','s','a','b','l','e','d','\0'};
HKEY hkey, appkey;
get_app_key(&hkey, &appkey);
if (!enable)
set_config_key(hkey, appkey, joy_name, disabled_str, lstrlenW(disabled_str));
else
set_config_key(hkey, appkey, joy_name, NULL, 0);
if (hkey) RegCloseKey(hkey);
if (appkey) RegCloseKey(appkey);
}
static void initialize_disabled_joysticks_list(HWND hwnd)
{
static const WCHAR disabled_str[] = {'d','i','s','a','b','l','e','d','\0'};
HKEY hkey, appkey;
DWORD values = 0;
HRESULT hr;
int i;
SendDlgItemMessageW(hwnd, IDC_DISABLEDLIST, LB_RESETCONTENT, 0, 0);
/* Search for disabled joysticks */
get_app_key(&hkey, &appkey);
RegQueryInfoKeyW(hkey, NULL, NULL, NULL, NULL, NULL, NULL, &values, NULL, NULL, NULL, NULL);
for (i=0; i < values; i++)
{
DWORD name_len = MAX_PATH, data_len = MAX_PATH;
WCHAR buf_name[MAX_PATH + 9], buf_data[MAX_PATH];
hr = RegEnumValueW(hkey, i, buf_name, &name_len, NULL, NULL, (BYTE*) buf_data, &data_len);
if (SUCCEEDED(hr) && !lstrcmpW(disabled_str, buf_data))
SendDlgItemMessageW(hwnd, IDC_DISABLEDLIST, LB_ADDSTRING, 0, (LPARAM) buf_name);
}
if (hkey) RegCloseKey(hkey);
if (appkey) RegCloseKey(appkey);
}
/********************************************************************* /*********************************************************************
* list_dlgproc [internal] * list_dlgproc [internal]
* *
*/ */
static INT_PTR CALLBACK list_dlgproc(HWND hwnd, UINT msg, WPARAM wparam, LPARAM lparam) static INT_PTR CALLBACK list_dlgproc(HWND hwnd, UINT msg, WPARAM wparam, LPARAM lparam)
{ {
static struct JoystickData *data;
TRACE("(%p, 0x%08x/%d, 0x%lx)\n", hwnd, msg, msg, lparam); TRACE("(%p, 0x%08x/%d, 0x%lx)\n", hwnd, msg, msg, lparam);
switch (msg) switch (msg)
{ {
case WM_INITDIALOG: case WM_INITDIALOG:
{ {
int i; data = (struct JoystickData*) ((PROPSHEETPAGEW*)lparam)->lParam;
struct JoystickData *data = (struct JoystickData*) ((PROPSHEETPAGEW*)lparam)->lParam;
/* Set dialog information */ initialize_joysticks_list(hwnd, data);
for (i = 0; i < data->num_joysticks; i++) initialize_disabled_joysticks_list(hwnd);
{
struct Joystick *joy = &data->joysticks[i]; EnableWindow(GetDlgItem(hwnd, IDC_BUTTONENABLE), FALSE);
SendDlgItemMessageW(hwnd, IDC_JOYSTICKLIST, LB_ADDSTRING, 0, (LPARAM) joy->instance.tszInstanceName); EnableWindow(GetDlgItem(hwnd, IDC_BUTTONDISABLE), FALSE);
}
/* Store the hwnd to be used with MapDialogRect for unit conversions */ /* Store the hwnd to be used with MapDialogRect for unit conversions */
data->graphics.hwnd = hwnd; data->graphics.hwnd = hwnd;
@ -178,12 +287,39 @@ static INT_PTR CALLBACK list_dlgproc(HWND hwnd, UINT msg, WPARAM wparam, LPARAM
switch (LOWORD(wparam)) switch (LOWORD(wparam))
{ {
case IDC_BUTTONDISABLE: case IDC_BUTTONDISABLE:
FIXME("Disable selected joystick from being enumerated\n"); {
break; int sel = SendDlgItemMessageW(hwnd, IDC_JOYSTICKLIST, LB_GETCURSEL, 0, 0);
if (sel >= 0)
{
enable_joystick(data->joysticks[sel].instance.tszInstanceName, FALSE);
initialize_disabled_joysticks_list(hwnd);
}
}
break;
case IDC_BUTTONENABLE: case IDC_BUTTONENABLE:
FIXME("Re-Enable selected joystick\n"); {
break; int sel = SendDlgItemMessageW(hwnd, IDC_DISABLEDLIST, LB_GETCURSEL, 0, 0);
if (sel >= 0)
{
WCHAR text[MAX_PATH];
SendDlgItemMessageW(hwnd, IDC_DISABLEDLIST, LB_GETTEXT, sel, (LPARAM) text);
enable_joystick(text, TRUE);
initialize_disabled_joysticks_list(hwnd);
}
}
case IDC_JOYSTICKLIST:
EnableWindow(GetDlgItem(hwnd, IDC_BUTTONENABLE), FALSE);
EnableWindow(GetDlgItem(hwnd, IDC_BUTTONDISABLE), TRUE);
break;
case IDC_DISABLEDLIST:
EnableWindow(GetDlgItem(hwnd, IDC_BUTTONENABLE), TRUE);
EnableWindow(GetDlgItem(hwnd, IDC_BUTTONDISABLE), FALSE);
break;
} }
return TRUE; return TRUE;

View File

@ -635,7 +635,7 @@ msgstr ""
msgid "Match &Case" msgid "Match &Case"
msgstr "" msgstr ""
#: comdlg32.rc:317 joy.rc:67 #: comdlg32.rc:317 joy.rc:68
#, fuzzy #, fuzzy
msgid "Direction" msgid "Direction"
msgstr "معلومات" msgstr "معلومات"
@ -3416,23 +3416,29 @@ msgstr ""
msgid "Disabled" msgid "Disabled"
msgstr "" msgstr ""
#: joy.rc:46 #: joy.rc:42
msgid ""
"After disabling or enabling a device, the connected joysticks won't be "
"updated here until you restart this applet."
msgstr ""
#: joy.rc:47
msgid "Test Joystick" msgid "Test Joystick"
msgstr "" msgstr ""
#: joy.rc:50 #: joy.rc:51
msgid "Buttons" msgid "Buttons"
msgstr "" msgstr ""
#: joy.rc:59 #: joy.rc:60
msgid "Test Force Feedback" msgid "Test Force Feedback"
msgstr "" msgstr ""
#: joy.rc:63 #: joy.rc:64
msgid "Available Effects" msgid "Available Effects"
msgstr "" msgstr ""
#: joy.rc:65 #: joy.rc:66
msgid "" msgid ""
"Press any button in the controller to activate the chosen effect. The effect " "Press any button in the controller to activate the chosen effect. The effect "
"direction can be changed with the controller axis." "direction can be changed with the controller axis."

View File

@ -642,7 +642,7 @@ msgstr "&Само цели думи"
msgid "Match &Case" msgid "Match &Case"
msgstr "&Чувствителен регистър" msgstr "&Чувствителен регистър"
#: comdlg32.rc:317 joy.rc:67 #: comdlg32.rc:317 joy.rc:68
msgid "Direction" msgid "Direction"
msgstr "Посока" msgstr "Посока"
@ -3442,24 +3442,30 @@ msgstr "Файлът не е намерен"
msgid "Disabled" msgid "Disabled"
msgstr "&Забрани" msgstr "&Забрани"
#: joy.rc:46 #: joy.rc:42
msgid ""
"After disabling or enabling a device, the connected joysticks won't be "
"updated here until you restart this applet."
msgstr ""
#: joy.rc:47
msgid "Test Joystick" msgid "Test Joystick"
msgstr "" msgstr ""
#: joy.rc:50 #: joy.rc:51
msgid "Buttons" msgid "Buttons"
msgstr "" msgstr ""
#: joy.rc:59 #: joy.rc:60
msgid "Test Force Feedback" msgid "Test Force Feedback"
msgstr "" msgstr ""
#: joy.rc:63 #: joy.rc:64
#, fuzzy #, fuzzy
msgid "Available Effects" msgid "Available Effects"
msgstr "На&пред" msgstr "На&пред"
#: joy.rc:65 #: joy.rc:66
msgid "" msgid ""
"Press any button in the controller to activate the chosen effect. The effect " "Press any button in the controller to activate the chosen effect. The effect "
"direction can be changed with the controller axis." "direction can be changed with the controller axis."

View File

@ -652,7 +652,7 @@ msgstr "Troba només paraules &completes"
msgid "Match &Case" msgid "Match &Case"
msgstr "&Distingir majúscules de minúscules" msgstr "&Distingir majúscules de minúscules"
#: comdlg32.rc:317 joy.rc:67 #: comdlg32.rc:317 joy.rc:68
msgid "Direction" msgid "Direction"
msgstr "Direcció" msgstr "Direcció"
@ -3491,25 +3491,31 @@ msgstr "Desconnectat"
msgid "Disabled" msgid "Disabled"
msgstr "&Deshabilitada" msgstr "&Deshabilitada"
#: joy.rc:46 #: joy.rc:42
msgid ""
"After disabling or enabling a device, the connected joysticks won't be "
"updated here until you restart this applet."
msgstr ""
#: joy.rc:47
msgid "Test Joystick" msgid "Test Joystick"
msgstr "" msgstr ""
#: joy.rc:50 #: joy.rc:51
msgid "Buttons" msgid "Buttons"
msgstr "" msgstr ""
#: joy.rc:59 #: joy.rc:60
msgid "Test Force Feedback" msgid "Test Force Feedback"
msgstr "" msgstr ""
#: joy.rc:63 #: joy.rc:64
#, fuzzy #, fuzzy
#| msgid "Available formats" #| msgid "Available formats"
msgid "Available Effects" msgid "Available Effects"
msgstr "Formats disponibles" msgstr "Formats disponibles"
#: joy.rc:65 #: joy.rc:66
msgid "" msgid ""
"Press any button in the controller to activate the chosen effect. The effect " "Press any button in the controller to activate the chosen effect. The effect "
"direction can be changed with the controller axis." "direction can be changed with the controller axis."

View File

@ -660,7 +660,7 @@ msgstr "Pouze &celá slova"
msgid "Match &Case" msgid "Match &Case"
msgstr "&Rozlišovat velikost" msgstr "&Rozlišovat velikost"
#: comdlg32.rc:317 joy.rc:67 #: comdlg32.rc:317 joy.rc:68
msgid "Direction" msgid "Direction"
msgstr "Směr" msgstr "Směr"
@ -3490,25 +3490,31 @@ msgstr "Odpojen"
msgid "Disabled" msgid "Disabled"
msgstr "&Zakázat" msgstr "&Zakázat"
#: joy.rc:46 #: joy.rc:42
msgid ""
"After disabling or enabling a device, the connected joysticks won't be "
"updated here until you restart this applet."
msgstr ""
#: joy.rc:47
msgid "Test Joystick" msgid "Test Joystick"
msgstr "" msgstr ""
#: joy.rc:50 #: joy.rc:51
msgid "Buttons" msgid "Buttons"
msgstr "" msgstr ""
#: joy.rc:59 #: joy.rc:60
msgid "Test Force Feedback" msgid "Test Force Feedback"
msgstr "" msgstr ""
#: joy.rc:63 #: joy.rc:64
#, fuzzy #, fuzzy
#| msgid "Available formats" #| msgid "Available formats"
msgid "Available Effects" msgid "Available Effects"
msgstr "Dostupné formáty" msgstr "Dostupné formáty"
#: joy.rc:65 #: joy.rc:66
msgid "" msgid ""
"Press any button in the controller to activate the chosen effect. The effect " "Press any button in the controller to activate the chosen effect. The effect "
"direction can be changed with the controller axis." "direction can be changed with the controller axis."

View File

@ -643,7 +643,7 @@ msgstr "&Kun hele ord"
msgid "Match &Case" msgid "Match &Case"
msgstr "Forskel på store/små &bogstaver" msgstr "Forskel på store/små &bogstaver"
#: comdlg32.rc:317 joy.rc:67 #: comdlg32.rc:317 joy.rc:68
msgid "Direction" msgid "Direction"
msgstr "Retning" msgstr "Retning"
@ -3462,25 +3462,31 @@ msgstr "Forbindelse mistet"
msgid "Disabled" msgid "Disabled"
msgstr "&Deaktiver" msgstr "&Deaktiver"
#: joy.rc:46 #: joy.rc:42
msgid ""
"After disabling or enabling a device, the connected joysticks won't be "
"updated here until you restart this applet."
msgstr ""
#: joy.rc:47
msgid "Test Joystick" msgid "Test Joystick"
msgstr "" msgstr ""
#: joy.rc:50 #: joy.rc:51
msgid "Buttons" msgid "Buttons"
msgstr "" msgstr ""
#: joy.rc:59 #: joy.rc:60
msgid "Test Force Feedback" msgid "Test Force Feedback"
msgstr "" msgstr ""
#: joy.rc:63 #: joy.rc:64
#, fuzzy #, fuzzy
#| msgid "Available formats" #| msgid "Available formats"
msgid "Available Effects" msgid "Available Effects"
msgstr "Tilgængelige formater" msgstr "Tilgængelige formater"
#: joy.rc:65 #: joy.rc:66
msgid "" msgid ""
"Press any button in the controller to activate the chosen effect. The effect " "Press any button in the controller to activate the chosen effect. The effect "
"direction can be changed with the controller axis." "direction can be changed with the controller axis."

View File

@ -635,7 +635,7 @@ msgstr "Nu&r ganzes Wort suchen"
msgid "Match &Case" msgid "Match &Case"
msgstr "Groß-/Klein&schreibung" msgstr "Groß-/Klein&schreibung"
#: comdlg32.rc:317 joy.rc:67 #: comdlg32.rc:317 joy.rc:68
msgid "Direction" msgid "Direction"
msgstr "Suchrichtung" msgstr "Suchrichtung"
@ -3449,23 +3449,29 @@ msgstr "Verbunden"
msgid "Disabled" msgid "Disabled"
msgstr "Deaktiviert" msgstr "Deaktiviert"
#: joy.rc:46 #: joy.rc:42
msgid ""
"After disabling or enabling a device, the connected joysticks won't be "
"updated here until you restart this applet."
msgstr ""
#: joy.rc:47
msgid "Test Joystick" msgid "Test Joystick"
msgstr "Joystick testen" msgstr "Joystick testen"
#: joy.rc:50 #: joy.rc:51
msgid "Buttons" msgid "Buttons"
msgstr "Tasten" msgstr "Tasten"
#: joy.rc:59 #: joy.rc:60
msgid "Test Force Feedback" msgid "Test Force Feedback"
msgstr "Force Feedback testen" msgstr "Force Feedback testen"
#: joy.rc:63 #: joy.rc:64
msgid "Available Effects" msgid "Available Effects"
msgstr "Verfügbare Effekte" msgstr "Verfügbare Effekte"
#: joy.rc:65 #: joy.rc:66
msgid "" msgid ""
"Press any button in the controller to activate the chosen effect. The effect " "Press any button in the controller to activate the chosen effect. The effect "
"direction can be changed with the controller axis." "direction can be changed with the controller axis."

View File

@ -620,7 +620,7 @@ msgstr "Ταίριασμα &Ολόκληρης Λέξης Μόνο"
msgid "Match &Case" msgid "Match &Case"
msgstr "Ταίριασμα &Κεφαλαίων" msgstr "Ταίριασμα &Κεφαλαίων"
#: comdlg32.rc:317 joy.rc:67 #: comdlg32.rc:317 joy.rc:68
msgid "Direction" msgid "Direction"
msgstr "Κατεύθυνση" msgstr "Κατεύθυνση"
@ -3376,25 +3376,31 @@ msgstr "Το αρχείο δε βρέθηκε"
msgid "Disabled" msgid "Disabled"
msgstr "" msgstr ""
#: joy.rc:46 #: joy.rc:42
msgid ""
"After disabling or enabling a device, the connected joysticks won't be "
"updated here until you restart this applet."
msgstr ""
#: joy.rc:47
msgid "Test Joystick" msgid "Test Joystick"
msgstr "" msgstr ""
#: joy.rc:50 #: joy.rc:51
msgid "Buttons" msgid "Buttons"
msgstr "" msgstr ""
#: joy.rc:59 #: joy.rc:60
msgid "Test Force Feedback" msgid "Test Force Feedback"
msgstr "" msgstr ""
#: joy.rc:63 #: joy.rc:64
#, fuzzy #, fuzzy
#| msgid "A&vailable buttons:" #| msgid "A&vailable buttons:"
msgid "Available Effects" msgid "Available Effects"
msgstr "Δ&ιαθέσιμα κουμπιά:" msgstr "Δ&ιαθέσιμα κουμπιά:"
#: joy.rc:65 #: joy.rc:66
msgid "" msgid ""
"Press any button in the controller to activate the chosen effect. The effect " "Press any button in the controller to activate the chosen effect. The effect "
"direction can be changed with the controller axis." "direction can be changed with the controller axis."

View File

@ -634,7 +634,7 @@ msgstr "Match &Whole Word Only"
msgid "Match &Case" msgid "Match &Case"
msgstr "Match &Case" msgstr "Match &Case"
#: comdlg32.rc:317 joy.rc:67 #: comdlg32.rc:317 joy.rc:68
msgid "Direction" msgid "Direction"
msgstr "Direction" msgstr "Direction"
@ -3440,23 +3440,31 @@ msgstr "Connected"
msgid "Disabled" msgid "Disabled"
msgstr "Disabled" msgstr "Disabled"
#: joy.rc:46 #: joy.rc:42
msgid ""
"After disabling or enabling a device, the connected joysticks won't be "
"updated here until you restart this applet."
msgstr ""
"After disabling or enabling a device, the connected joysticks won't be "
"updated here until you restart this applet."
#: joy.rc:47
msgid "Test Joystick" msgid "Test Joystick"
msgstr "Test Joystick" msgstr "Test Joystick"
#: joy.rc:50 #: joy.rc:51
msgid "Buttons" msgid "Buttons"
msgstr "Buttons" msgstr "Buttons"
#: joy.rc:59 #: joy.rc:60
msgid "Test Force Feedback" msgid "Test Force Feedback"
msgstr "Test Force Feedback" msgstr "Test Force Feedback"
#: joy.rc:63 #: joy.rc:64
msgid "Available Effects" msgid "Available Effects"
msgstr "Available Effects" msgstr "Available Effects"
#: joy.rc:65 #: joy.rc:66
msgid "" msgid ""
"Press any button in the controller to activate the chosen effect. The effect " "Press any button in the controller to activate the chosen effect. The effect "
"direction can be changed with the controller axis." "direction can be changed with the controller axis."

View File

@ -634,7 +634,7 @@ msgstr "Match &Whole Word Only"
msgid "Match &Case" msgid "Match &Case"
msgstr "Match &Case" msgstr "Match &Case"
#: comdlg32.rc:317 joy.rc:67 #: comdlg32.rc:317 joy.rc:68
msgid "Direction" msgid "Direction"
msgstr "Direction" msgstr "Direction"
@ -3442,23 +3442,31 @@ msgstr "Connected"
msgid "Disabled" msgid "Disabled"
msgstr "Disabled" msgstr "Disabled"
#: joy.rc:46 #: joy.rc:42
msgid ""
"After disabling or enabling a device, the connected joysticks won't be "
"updated here until you restart this applet."
msgstr ""
"After disabling or enabling a device, the connected joysticks won't be "
"updated here until you restart this applet."
#: joy.rc:47
msgid "Test Joystick" msgid "Test Joystick"
msgstr "Test Joystick" msgstr "Test Joystick"
#: joy.rc:50 #: joy.rc:51
msgid "Buttons" msgid "Buttons"
msgstr "Buttons" msgstr "Buttons"
#: joy.rc:59 #: joy.rc:60
msgid "Test Force Feedback" msgid "Test Force Feedback"
msgstr "Test Force Feedback" msgstr "Test Force Feedback"
#: joy.rc:63 #: joy.rc:64
msgid "Available Effects" msgid "Available Effects"
msgstr "Available Effects" msgstr "Available Effects"
#: joy.rc:65 #: joy.rc:66
msgid "" msgid ""
"Press any button in the controller to activate the chosen effect. The effect " "Press any button in the controller to activate the chosen effect. The effect "
"direction can be changed with the controller axis." "direction can be changed with the controller axis."

View File

@ -625,7 +625,7 @@ msgstr "Nur tutan &vorton"
msgid "Match &Case" msgid "Match &Case"
msgstr "Atenti &Usklecon" msgstr "Atenti &Usklecon"
#: comdlg32.rc:317 joy.rc:67 #: comdlg32.rc:317 joy.rc:68
msgid "Direction" msgid "Direction"
msgstr "Direkto" msgstr "Direkto"
@ -3357,25 +3357,31 @@ msgstr "Malkonektita"
msgid "Disabled" msgid "Disabled"
msgstr "&Malaktivigi" msgstr "&Malaktivigi"
#: joy.rc:46 #: joy.rc:42
msgid ""
"After disabling or enabling a device, the connected joysticks won't be "
"updated here until you restart this applet."
msgstr ""
#: joy.rc:47
msgid "Test Joystick" msgid "Test Joystick"
msgstr "" msgstr ""
#: joy.rc:50 #: joy.rc:51
msgid "Buttons" msgid "Buttons"
msgstr "" msgstr ""
#: joy.rc:59 #: joy.rc:60
msgid "Test Force Feedback" msgid "Test Force Feedback"
msgstr "" msgstr ""
#: joy.rc:63 #: joy.rc:64
#, fuzzy #, fuzzy
#| msgid "Available formats" #| msgid "Available formats"
msgid "Available Effects" msgid "Available Effects"
msgstr "Disponeblaj formatoj" msgstr "Disponeblaj formatoj"
#: joy.rc:65 #: joy.rc:66
msgid "" msgid ""
"Press any button in the controller to activate the chosen effect. The effect " "Press any button in the controller to activate the chosen effect. The effect "
"direction can be changed with the controller axis." "direction can be changed with the controller axis."

View File

@ -646,7 +646,7 @@ msgstr "Sólo &palabra completa"
msgid "Match &Case" msgid "Match &Case"
msgstr "&Mayúsculas/minúsculas" msgstr "&Mayúsculas/minúsculas"
#: comdlg32.rc:317 joy.rc:67 #: comdlg32.rc:317 joy.rc:68
msgid "Direction" msgid "Direction"
msgstr "Dirección" msgstr "Dirección"
@ -3476,25 +3476,31 @@ msgstr "Desconectado"
msgid "Disabled" msgid "Disabled"
msgstr "&Deshabilitar" msgstr "&Deshabilitar"
#: joy.rc:46 #: joy.rc:42
msgid ""
"After disabling or enabling a device, the connected joysticks won't be "
"updated here until you restart this applet."
msgstr ""
#: joy.rc:47
msgid "Test Joystick" msgid "Test Joystick"
msgstr "" msgstr ""
#: joy.rc:50 #: joy.rc:51
msgid "Buttons" msgid "Buttons"
msgstr "" msgstr ""
#: joy.rc:59 #: joy.rc:60
msgid "Test Force Feedback" msgid "Test Force Feedback"
msgstr "" msgstr ""
#: joy.rc:63 #: joy.rc:64
#, fuzzy #, fuzzy
#| msgid "Available formats" #| msgid "Available formats"
msgid "Available Effects" msgid "Available Effects"
msgstr "Formatos disponibles" msgstr "Formatos disponibles"
#: joy.rc:65 #: joy.rc:66
msgid "" msgid ""
"Press any button in the controller to activate the chosen effect. The effect " "Press any button in the controller to activate the chosen effect. The effect "
"direction can be changed with the controller axis." "direction can be changed with the controller axis."

View File

@ -635,7 +635,7 @@ msgstr ""
msgid "Match &Case" msgid "Match &Case"
msgstr "" msgstr ""
#: comdlg32.rc:317 joy.rc:67 #: comdlg32.rc:317 joy.rc:68
#, fuzzy #, fuzzy
msgid "Direction" msgid "Direction"
msgstr "اطلاعات" msgstr "اطلاعات"
@ -3416,23 +3416,29 @@ msgstr ""
msgid "Disabled" msgid "Disabled"
msgstr "" msgstr ""
#: joy.rc:46 #: joy.rc:42
msgid ""
"After disabling or enabling a device, the connected joysticks won't be "
"updated here until you restart this applet."
msgstr ""
#: joy.rc:47
msgid "Test Joystick" msgid "Test Joystick"
msgstr "" msgstr ""
#: joy.rc:50 #: joy.rc:51
msgid "Buttons" msgid "Buttons"
msgstr "" msgstr ""
#: joy.rc:59 #: joy.rc:60
msgid "Test Force Feedback" msgid "Test Force Feedback"
msgstr "" msgstr ""
#: joy.rc:63 #: joy.rc:64
msgid "Available Effects" msgid "Available Effects"
msgstr "" msgstr ""
#: joy.rc:65 #: joy.rc:66
msgid "" msgid ""
"Press any button in the controller to activate the chosen effect. The effect " "Press any button in the controller to activate the chosen effect. The effect "
"direction can be changed with the controller axis." "direction can be changed with the controller axis."

View File

@ -630,7 +630,7 @@ msgstr "&Koko sana"
msgid "Match &Case" msgid "Match &Case"
msgstr "Kirjaink&oko" msgstr "Kirjaink&oko"
#: comdlg32.rc:317 joy.rc:67 #: comdlg32.rc:317 joy.rc:68
msgid "Direction" msgid "Direction"
msgstr "Suunta" msgstr "Suunta"
@ -3437,23 +3437,29 @@ msgstr "Yhdistetty"
msgid "Disabled" msgid "Disabled"
msgstr "Ei käytössä" msgstr "Ei käytössä"
#: joy.rc:46 #: joy.rc:42
msgid ""
"After disabling or enabling a device, the connected joysticks won't be "
"updated here until you restart this applet."
msgstr ""
#: joy.rc:47
msgid "Test Joystick" msgid "Test Joystick"
msgstr "Testaa joystickia" msgstr "Testaa joystickia"
#: joy.rc:50 #: joy.rc:51
msgid "Buttons" msgid "Buttons"
msgstr "Painikkeet" msgstr "Painikkeet"
#: joy.rc:59 #: joy.rc:60
msgid "Test Force Feedback" msgid "Test Force Feedback"
msgstr "Testaa voimapalautetta" msgstr "Testaa voimapalautetta"
#: joy.rc:63 #: joy.rc:64
msgid "Available Effects" msgid "Available Effects"
msgstr "Mahdolliset efektit" msgstr "Mahdolliset efektit"
#: joy.rc:65 #: joy.rc:66
msgid "" msgid ""
"Press any button in the controller to activate the chosen effect. The effect " "Press any button in the controller to activate the chosen effect. The effect "
"direction can be changed with the controller axis." "direction can be changed with the controller axis."

View File

@ -638,7 +638,7 @@ msgstr "Mots &entiers seulement"
msgid "Match &Case" msgid "Match &Case"
msgstr "Respecter la &casse" msgstr "Respecter la &casse"
#: comdlg32.rc:317 joy.rc:67 #: comdlg32.rc:317 joy.rc:68
msgid "Direction" msgid "Direction"
msgstr "Direction" msgstr "Direction"
@ -3466,23 +3466,29 @@ msgstr "Connecté"
msgid "Disabled" msgid "Disabled"
msgstr "Désactivé" msgstr "Désactivé"
#: joy.rc:46 #: joy.rc:42
msgid ""
"After disabling or enabling a device, the connected joysticks won't be "
"updated here until you restart this applet."
msgstr ""
#: joy.rc:47
msgid "Test Joystick" msgid "Test Joystick"
msgstr "Tester le joystick" msgstr "Tester le joystick"
#: joy.rc:50 #: joy.rc:51
msgid "Buttons" msgid "Buttons"
msgstr "Boutons" msgstr "Boutons"
#: joy.rc:59 #: joy.rc:60
msgid "Test Force Feedback" msgid "Test Force Feedback"
msgstr "Tester le retour de force" msgstr "Tester le retour de force"
#: joy.rc:63 #: joy.rc:64
msgid "Available Effects" msgid "Available Effects"
msgstr "Effets disponibles" msgstr "Effets disponibles"
#: joy.rc:65 #: joy.rc:66
msgid "" msgid ""
"Press any button in the controller to activate the chosen effect. The effect " "Press any button in the controller to activate the chosen effect. The effect "
"direction can be changed with the controller axis." "direction can be changed with the controller axis."

View File

@ -641,7 +641,7 @@ msgstr "התאמת מילים &שלמות בלבד"
msgid "Match &Case" msgid "Match &Case"
msgstr "התאמת &רשיות" msgstr "התאמת &רשיות"
#: comdlg32.rc:317 joy.rc:67 #: comdlg32.rc:317 joy.rc:68
msgid "Direction" msgid "Direction"
msgstr "כיוון" msgstr "כיוון"
@ -3444,25 +3444,31 @@ msgstr "Disconnected"
msgid "Disabled" msgid "Disabled"
msgstr "Table" msgstr "Table"
#: joy.rc:46 #: joy.rc:42
msgid ""
"After disabling or enabling a device, the connected joysticks won't be "
"updated here until you restart this applet."
msgstr ""
#: joy.rc:47
msgid "Test Joystick" msgid "Test Joystick"
msgstr "" msgstr ""
#: joy.rc:50 #: joy.rc:51
msgid "Buttons" msgid "Buttons"
msgstr "" msgstr ""
#: joy.rc:59 #: joy.rc:60
msgid "Test Force Feedback" msgid "Test Force Feedback"
msgstr "" msgstr ""
#: joy.rc:63 #: joy.rc:64
#, fuzzy #, fuzzy
#| msgid "Available formats" #| msgid "Available formats"
msgid "Available Effects" msgid "Available Effects"
msgstr "התבניות הזמינות" msgstr "התבניות הזמינות"
#: joy.rc:65 #: joy.rc:66
msgid "" msgid ""
"Press any button in the controller to activate the chosen effect. The effect " "Press any button in the controller to activate the chosen effect. The effect "
"direction can be changed with the controller axis." "direction can be changed with the controller axis."

View File

@ -619,7 +619,7 @@ msgstr ""
msgid "Match &Case" msgid "Match &Case"
msgstr "" msgstr ""
#: comdlg32.rc:317 joy.rc:67 #: comdlg32.rc:317 joy.rc:68
msgid "Direction" msgid "Direction"
msgstr "" msgstr ""
@ -3354,23 +3354,29 @@ msgstr ""
msgid "Disabled" msgid "Disabled"
msgstr "" msgstr ""
#: joy.rc:46 #: joy.rc:42
msgid ""
"After disabling or enabling a device, the connected joysticks won't be "
"updated here until you restart this applet."
msgstr ""
#: joy.rc:47
msgid "Test Joystick" msgid "Test Joystick"
msgstr "" msgstr ""
#: joy.rc:50 #: joy.rc:51
msgid "Buttons" msgid "Buttons"
msgstr "" msgstr ""
#: joy.rc:59 #: joy.rc:60
msgid "Test Force Feedback" msgid "Test Force Feedback"
msgstr "" msgstr ""
#: joy.rc:63 #: joy.rc:64
msgid "Available Effects" msgid "Available Effects"
msgstr "" msgstr ""
#: joy.rc:65 #: joy.rc:66
msgid "" msgid ""
"Press any button in the controller to activate the chosen effect. The effect " "Press any button in the controller to activate the chosen effect. The effect "
"direction can be changed with the controller axis." "direction can be changed with the controller axis."

View File

@ -647,7 +647,7 @@ msgstr "Teljes &szavak keresése"
msgid "Match &Case" msgid "Match &Case"
msgstr "Kis/&nagybetű különbség" msgstr "Kis/&nagybetű különbség"
#: comdlg32.rc:317 joy.rc:67 #: comdlg32.rc:317 joy.rc:68
msgid "Direction" msgid "Direction"
msgstr "Irány" msgstr "Irány"
@ -3478,25 +3478,31 @@ msgstr "Lecsatlakozott"
msgid "Disabled" msgid "Disabled"
msgstr "Tiltá&s" msgstr "Tiltá&s"
#: joy.rc:46 #: joy.rc:42
msgid ""
"After disabling or enabling a device, the connected joysticks won't be "
"updated here until you restart this applet."
msgstr ""
#: joy.rc:47
msgid "Test Joystick" msgid "Test Joystick"
msgstr "" msgstr ""
#: joy.rc:50 #: joy.rc:51
msgid "Buttons" msgid "Buttons"
msgstr "" msgstr ""
#: joy.rc:59 #: joy.rc:60
msgid "Test Force Feedback" msgid "Test Force Feedback"
msgstr "" msgstr ""
#: joy.rc:63 #: joy.rc:64
#, fuzzy #, fuzzy
#| msgid "Available formats" #| msgid "Available formats"
msgid "Available Effects" msgid "Available Effects"
msgstr "Elérhető formátumok" msgstr "Elérhető formátumok"
#: joy.rc:65 #: joy.rc:66
msgid "" msgid ""
"Press any button in the controller to activate the chosen effect. The effect " "Press any button in the controller to activate the chosen effect. The effect "
"direction can be changed with the controller axis." "direction can be changed with the controller axis."

View File

@ -653,7 +653,7 @@ msgstr "Solo parole &intere"
msgid "Match &Case" msgid "Match &Case"
msgstr "&Maiuscole/Minuscole" msgstr "&Maiuscole/Minuscole"
#: comdlg32.rc:317 joy.rc:67 #: comdlg32.rc:317 joy.rc:68
msgid "Direction" msgid "Direction"
msgstr "Direzione" msgstr "Direzione"
@ -3491,25 +3491,31 @@ msgstr "Disconnesso"
msgid "Disabled" msgid "Disabled"
msgstr "&Disabilita" msgstr "&Disabilita"
#: joy.rc:46 #: joy.rc:42
msgid ""
"After disabling or enabling a device, the connected joysticks won't be "
"updated here until you restart this applet."
msgstr ""
#: joy.rc:47
msgid "Test Joystick" msgid "Test Joystick"
msgstr "" msgstr ""
#: joy.rc:50 #: joy.rc:51
msgid "Buttons" msgid "Buttons"
msgstr "" msgstr ""
#: joy.rc:59 #: joy.rc:60
msgid "Test Force Feedback" msgid "Test Force Feedback"
msgstr "" msgstr ""
#: joy.rc:63 #: joy.rc:64
#, fuzzy #, fuzzy
#| msgid "Available formats" #| msgid "Available formats"
msgid "Available Effects" msgid "Available Effects"
msgstr "Formati disponibili" msgstr "Formati disponibili"
#: joy.rc:65 #: joy.rc:66
msgid "" msgid ""
"Press any button in the controller to activate the chosen effect. The effect " "Press any button in the controller to activate the chosen effect. The effect "
"direction can be changed with the controller axis." "direction can be changed with the controller axis."

View File

@ -635,7 +635,7 @@ msgstr "単語単位で検索(&W)"
msgid "Match &Case" msgid "Match &Case"
msgstr "大文字と小文字を区別する(&C)" msgstr "大文字と小文字を区別する(&C)"
#: comdlg32.rc:317 joy.rc:67 #: comdlg32.rc:317 joy.rc:68
msgid "Direction" msgid "Direction"
msgstr "検索する方向" msgstr "検索する方向"
@ -3434,25 +3434,31 @@ msgstr "接続済み"
msgid "Disabled" msgid "Disabled"
msgstr "無効" msgstr "無効"
#: joy.rc:46 #: joy.rc:42
msgid ""
"After disabling or enabling a device, the connected joysticks won't be "
"updated here until you restart this applet."
msgstr ""
#: joy.rc:47
msgid "Test Joystick" msgid "Test Joystick"
msgstr "ジョイスティックのテスト" msgstr "ジョイスティックのテスト"
#: joy.rc:50 #: joy.rc:51
msgid "Buttons" msgid "Buttons"
msgstr "" msgstr ""
#: joy.rc:59 #: joy.rc:60
msgid "Test Force Feedback" msgid "Test Force Feedback"
msgstr "フォース フィードバックのテスト" msgstr "フォース フィードバックのテスト"
#: joy.rc:63 #: joy.rc:64
#, fuzzy #, fuzzy
#| msgid "Available formats" #| msgid "Available formats"
msgid "Available Effects" msgid "Available Effects"
msgstr "利用できる形式" msgstr "利用できる形式"
#: joy.rc:65 #: joy.rc:66
msgid "" msgid ""
"Press any button in the controller to activate the chosen effect. The effect " "Press any button in the controller to activate the chosen effect. The effect "
"direction can be changed with the controller axis." "direction can be changed with the controller axis."

View File

@ -634,7 +634,7 @@ msgstr "단어 단위로(&W)"
msgid "Match &Case" msgid "Match &Case"
msgstr "대/소문자 구분(&C)" msgstr "대/소문자 구분(&C)"
#: comdlg32.rc:317 joy.rc:67 #: comdlg32.rc:317 joy.rc:68
msgid "Direction" msgid "Direction"
msgstr "방향" msgstr "방향"
@ -3432,23 +3432,29 @@ msgstr "연결됨"
msgid "Disabled" msgid "Disabled"
msgstr "불가능" msgstr "불가능"
#: joy.rc:46 #: joy.rc:42
msgid ""
"After disabling or enabling a device, the connected joysticks won't be "
"updated here until you restart this applet."
msgstr ""
#: joy.rc:47
msgid "Test Joystick" msgid "Test Joystick"
msgstr "조이스틱 시험" msgstr "조이스틱 시험"
#: joy.rc:50 #: joy.rc:51
msgid "Buttons" msgid "Buttons"
msgstr "버튼" msgstr "버튼"
#: joy.rc:59 #: joy.rc:60
msgid "Test Force Feedback" msgid "Test Force Feedback"
msgstr "강제 피드백 시험" msgstr "강제 피드백 시험"
#: joy.rc:63 #: joy.rc:64
msgid "Available Effects" msgid "Available Effects"
msgstr "가능한 효과들" msgstr "가능한 효과들"
#: joy.rc:65 #: joy.rc:66
msgid "" msgid ""
"Press any button in the controller to activate the chosen effect. The effect " "Press any button in the controller to activate the chosen effect. The effect "
"direction can be changed with the controller axis." "direction can be changed with the controller axis."

View File

@ -634,7 +634,7 @@ msgstr "Tenkina tik &visas žodis"
msgid "Match &Case" msgid "Match &Case"
msgstr "Skirti raidžių &dydį" msgstr "Skirti raidžių &dydį"
#: comdlg32.rc:317 joy.rc:67 #: comdlg32.rc:317 joy.rc:68
msgid "Direction" msgid "Direction"
msgstr "Kryptis" msgstr "Kryptis"
@ -3450,23 +3450,29 @@ msgstr "Prijungta"
msgid "Disabled" msgid "Disabled"
msgstr "Išjungta" msgstr "Išjungta"
#: joy.rc:46 #: joy.rc:42
msgid ""
"After disabling or enabling a device, the connected joysticks won't be "
"updated here until you restart this applet."
msgstr ""
#: joy.rc:47
msgid "Test Joystick" msgid "Test Joystick"
msgstr "Testuoti vairasvirtę" msgstr "Testuoti vairasvirtę"
#: joy.rc:50 #: joy.rc:51
msgid "Buttons" msgid "Buttons"
msgstr "Mygtukai" msgstr "Mygtukai"
#: joy.rc:59 #: joy.rc:60
msgid "Test Force Feedback" msgid "Test Force Feedback"
msgstr "Testuoti „Force Feedback“" msgstr "Testuoti „Force Feedback“"
#: joy.rc:63 #: joy.rc:64
msgid "Available Effects" msgid "Available Effects"
msgstr "Prieinami efektai" msgstr "Prieinami efektai"
#: joy.rc:65 #: joy.rc:66
msgid "" msgid ""
"Press any button in the controller to activate the chosen effect. The effect " "Press any button in the controller to activate the chosen effect. The effect "
"direction can be changed with the controller axis." "direction can be changed with the controller axis."

View File

@ -619,7 +619,7 @@ msgstr ""
msgid "Match &Case" msgid "Match &Case"
msgstr "" msgstr ""
#: comdlg32.rc:317 joy.rc:67 #: comdlg32.rc:317 joy.rc:68
msgid "Direction" msgid "Direction"
msgstr "" msgstr ""
@ -3354,23 +3354,29 @@ msgstr ""
msgid "Disabled" msgid "Disabled"
msgstr "" msgstr ""
#: joy.rc:46 #: joy.rc:42
msgid ""
"After disabling or enabling a device, the connected joysticks won't be "
"updated here until you restart this applet."
msgstr ""
#: joy.rc:47
msgid "Test Joystick" msgid "Test Joystick"
msgstr "" msgstr ""
#: joy.rc:50 #: joy.rc:51
msgid "Buttons" msgid "Buttons"
msgstr "" msgstr ""
#: joy.rc:59 #: joy.rc:60
msgid "Test Force Feedback" msgid "Test Force Feedback"
msgstr "" msgstr ""
#: joy.rc:63 #: joy.rc:64
msgid "Available Effects" msgid "Available Effects"
msgstr "" msgstr ""
#: joy.rc:65 #: joy.rc:66
msgid "" msgid ""
"Press any button in the controller to activate the chosen effect. The effect " "Press any button in the controller to activate the chosen effect. The effect "
"direction can be changed with the controller axis." "direction can be changed with the controller axis."

View File

@ -635,7 +635,7 @@ msgstr "Finn &kun hele ord"
msgid "Match &Case" msgid "Match &Case"
msgstr "Skill &mellom store og små bokstaver" msgstr "Skill &mellom store og små bokstaver"
#: comdlg32.rc:317 joy.rc:67 #: comdlg32.rc:317 joy.rc:68
msgid "Direction" msgid "Direction"
msgstr "Retning" msgstr "Retning"
@ -3588,25 +3588,31 @@ msgstr "Røret er tilkoblet\n"
msgid "Disabled" msgid "Disabled"
msgstr "&Deaktiver" msgstr "&Deaktiver"
#: joy.rc:46 #: joy.rc:42
msgid ""
"After disabling or enabling a device, the connected joysticks won't be "
"updated here until you restart this applet."
msgstr ""
#: joy.rc:47
msgid "Test Joystick" msgid "Test Joystick"
msgstr "" msgstr ""
#: joy.rc:50 #: joy.rc:51
msgid "Buttons" msgid "Buttons"
msgstr "" msgstr ""
#: joy.rc:59 #: joy.rc:60
msgid "Test Force Feedback" msgid "Test Force Feedback"
msgstr "" msgstr ""
#: joy.rc:63 #: joy.rc:64
#, fuzzy #, fuzzy
#| msgid "Available formats" #| msgid "Available formats"
msgid "Available Effects" msgid "Available Effects"
msgstr "Tilgjengelige formater" msgstr "Tilgjengelige formater"
#: joy.rc:65 #: joy.rc:66
msgid "" msgid ""
"Press any button in the controller to activate the chosen effect. The effect " "Press any button in the controller to activate the chosen effect. The effect "
"direction can be changed with the controller axis." "direction can be changed with the controller axis."

View File

@ -651,7 +651,7 @@ msgstr "Heel &woord"
msgid "Match &Case" msgid "Match &Case"
msgstr "Gelijke &hoofd-/kleine letters" msgstr "Gelijke &hoofd-/kleine letters"
#: comdlg32.rc:317 joy.rc:67 #: comdlg32.rc:317 joy.rc:68
msgid "Direction" msgid "Direction"
msgstr "Zoekrichting" msgstr "Zoekrichting"
@ -3505,25 +3505,31 @@ msgstr "Verbinding verbroken"
msgid "Disabled" msgid "Disabled"
msgstr "&Uitzetten" msgstr "&Uitzetten"
#: joy.rc:46 #: joy.rc:42
msgid ""
"After disabling or enabling a device, the connected joysticks won't be "
"updated here until you restart this applet."
msgstr ""
#: joy.rc:47
msgid "Test Joystick" msgid "Test Joystick"
msgstr "" msgstr ""
#: joy.rc:50 #: joy.rc:51
msgid "Buttons" msgid "Buttons"
msgstr "" msgstr ""
#: joy.rc:59 #: joy.rc:60
msgid "Test Force Feedback" msgid "Test Force Feedback"
msgstr "" msgstr ""
#: joy.rc:63 #: joy.rc:64
#, fuzzy #, fuzzy
#| msgid "Available formats" #| msgid "Available formats"
msgid "Available Effects" msgid "Available Effects"
msgstr "Beschikbare formaten" msgstr "Beschikbare formaten"
#: joy.rc:65 #: joy.rc:66
msgid "" msgid ""
"Press any button in the controller to activate the chosen effect. The effect " "Press any button in the controller to activate the chosen effect. The effect "
"direction can be changed with the controller axis." "direction can be changed with the controller axis."

View File

@ -619,7 +619,7 @@ msgstr ""
msgid "Match &Case" msgid "Match &Case"
msgstr "" msgstr ""
#: comdlg32.rc:317 joy.rc:67 #: comdlg32.rc:317 joy.rc:68
msgid "Direction" msgid "Direction"
msgstr "" msgstr ""
@ -3354,23 +3354,29 @@ msgstr ""
msgid "Disabled" msgid "Disabled"
msgstr "" msgstr ""
#: joy.rc:46 #: joy.rc:42
msgid ""
"After disabling or enabling a device, the connected joysticks won't be "
"updated here until you restart this applet."
msgstr ""
#: joy.rc:47
msgid "Test Joystick" msgid "Test Joystick"
msgstr "" msgstr ""
#: joy.rc:50 #: joy.rc:51
msgid "Buttons" msgid "Buttons"
msgstr "" msgstr ""
#: joy.rc:59 #: joy.rc:60
msgid "Test Force Feedback" msgid "Test Force Feedback"
msgstr "" msgstr ""
#: joy.rc:63 #: joy.rc:64
msgid "Available Effects" msgid "Available Effects"
msgstr "" msgstr ""
#: joy.rc:65 #: joy.rc:66
msgid "" msgid ""
"Press any button in the controller to activate the chosen effect. The effect " "Press any button in the controller to activate the chosen effect. The effect "
"direction can be changed with the controller axis." "direction can be changed with the controller axis."

View File

@ -619,7 +619,7 @@ msgstr ""
msgid "Match &Case" msgid "Match &Case"
msgstr "" msgstr ""
#: comdlg32.rc:317 joy.rc:67 #: comdlg32.rc:317 joy.rc:68
msgid "Direction" msgid "Direction"
msgstr "" msgstr ""
@ -3354,23 +3354,29 @@ msgstr ""
msgid "Disabled" msgid "Disabled"
msgstr "" msgstr ""
#: joy.rc:46 #: joy.rc:42
msgid ""
"After disabling or enabling a device, the connected joysticks won't be "
"updated here until you restart this applet."
msgstr ""
#: joy.rc:47
msgid "Test Joystick" msgid "Test Joystick"
msgstr "" msgstr ""
#: joy.rc:50 #: joy.rc:51
msgid "Buttons" msgid "Buttons"
msgstr "" msgstr ""
#: joy.rc:59 #: joy.rc:60
msgid "Test Force Feedback" msgid "Test Force Feedback"
msgstr "" msgstr ""
#: joy.rc:63 #: joy.rc:64
msgid "Available Effects" msgid "Available Effects"
msgstr "" msgstr ""
#: joy.rc:65 #: joy.rc:66
msgid "" msgid ""
"Press any button in the controller to activate the chosen effect. The effect " "Press any button in the controller to activate the chosen effect. The effect "
"direction can be changed with the controller axis." "direction can be changed with the controller axis."

View File

@ -640,7 +640,7 @@ msgstr "Uwzględniaj tylko całe &wyrazy"
msgid "Match &Case" msgid "Match &Case"
msgstr "&Uwzględniaj wielkość liter" msgstr "&Uwzględniaj wielkość liter"
#: comdlg32.rc:317 joy.rc:67 #: comdlg32.rc:317 joy.rc:68
msgid "Direction" msgid "Direction"
msgstr "Kierunek" msgstr "Kierunek"
@ -3462,25 +3462,31 @@ msgstr "Podłączony"
msgid "Disabled" msgid "Disabled"
msgstr "Wyłączony" msgstr "Wyłączony"
#: joy.rc:46 #: joy.rc:42
msgid ""
"After disabling or enabling a device, the connected joysticks won't be "
"updated here until you restart this applet."
msgstr ""
#: joy.rc:47
msgid "Test Joystick" msgid "Test Joystick"
msgstr "Testuj Joystick" msgstr "Testuj Joystick"
#: joy.rc:50 #: joy.rc:51
msgid "Buttons" msgid "Buttons"
msgstr "Przyciski" msgstr "Przyciski"
#: joy.rc:59 #: joy.rc:60
msgid "Test Force Feedback" msgid "Test Force Feedback"
msgstr "Testuj odczucie siły zwrotnej" msgstr "Testuj odczucie siły zwrotnej"
#: joy.rc:63 #: joy.rc:64
#, fuzzy #, fuzzy
#| msgid "Available formats" #| msgid "Available formats"
msgid "Available Effects" msgid "Available Effects"
msgstr "Dostępne formaty" msgstr "Dostępne formaty"
#: joy.rc:65 #: joy.rc:66
msgid "" msgid ""
"Press any button in the controller to activate the chosen effect. The effect " "Press any button in the controller to activate the chosen effect. The effect "
"direction can be changed with the controller axis." "direction can be changed with the controller axis."

View File

@ -636,7 +636,7 @@ msgstr "Palavra &Inteira"
msgid "Match &Case" msgid "Match &Case"
msgstr "&Maiúsculas/minúsculas" msgstr "&Maiúsculas/minúsculas"
#: comdlg32.rc:317 joy.rc:67 #: comdlg32.rc:317 joy.rc:68
msgid "Direction" msgid "Direction"
msgstr "Direção" msgstr "Direção"
@ -3455,23 +3455,29 @@ msgstr "Conectado"
msgid "Disabled" msgid "Disabled"
msgstr "Desativado" msgstr "Desativado"
#: joy.rc:46 #: joy.rc:42
msgid ""
"After disabling or enabling a device, the connected joysticks won't be "
"updated here until you restart this applet."
msgstr ""
#: joy.rc:47
msgid "Test Joystick" msgid "Test Joystick"
msgstr "" msgstr ""
#: joy.rc:50 #: joy.rc:51
msgid "Buttons" msgid "Buttons"
msgstr "" msgstr ""
#: joy.rc:59 #: joy.rc:60
msgid "Test Force Feedback" msgid "Test Force Feedback"
msgstr "" msgstr ""
#: joy.rc:63 #: joy.rc:64
msgid "Available Effects" msgid "Available Effects"
msgstr "Efeitos Disponíveis" msgstr "Efeitos Disponíveis"
#: joy.rc:65 #: joy.rc:66
msgid "" msgid ""
"Press any button in the controller to activate the chosen effect. The effect " "Press any button in the controller to activate the chosen effect. The effect "
"direction can be changed with the controller axis." "direction can be changed with the controller axis."

View File

@ -652,7 +652,7 @@ msgstr "Palavra &Inteira"
msgid "Match &Case" msgid "Match &Case"
msgstr "&Maiúsculas/minúsculas" msgstr "&Maiúsculas/minúsculas"
#: comdlg32.rc:317 joy.rc:67 #: comdlg32.rc:317 joy.rc:68
msgid "Direction" msgid "Direction"
msgstr "Direção" msgstr "Direção"
@ -3488,25 +3488,31 @@ msgstr "Desligado"
msgid "Disabled" msgid "Disabled"
msgstr "&Desactivar" msgstr "&Desactivar"
#: joy.rc:46 #: joy.rc:42
msgid ""
"After disabling or enabling a device, the connected joysticks won't be "
"updated here until you restart this applet."
msgstr ""
#: joy.rc:47
msgid "Test Joystick" msgid "Test Joystick"
msgstr "" msgstr ""
#: joy.rc:50 #: joy.rc:51
msgid "Buttons" msgid "Buttons"
msgstr "" msgstr ""
#: joy.rc:59 #: joy.rc:60
msgid "Test Force Feedback" msgid "Test Force Feedback"
msgstr "" msgstr ""
#: joy.rc:63 #: joy.rc:64
#, fuzzy #, fuzzy
#| msgid "Available formats" #| msgid "Available formats"
msgid "Available Effects" msgid "Available Effects"
msgstr "Formatos Disponíveis" msgstr "Formatos Disponíveis"
#: joy.rc:65 #: joy.rc:66
msgid "" msgid ""
"Press any button in the controller to activate the chosen effect. The effect " "Press any button in the controller to activate the chosen effect. The effect "
"direction can be changed with the controller axis." "direction can be changed with the controller axis."

View File

@ -632,7 +632,7 @@ msgstr ""
msgid "Match &Case" msgid "Match &Case"
msgstr "" msgstr ""
#: comdlg32.rc:317 joy.rc:67 #: comdlg32.rc:317 joy.rc:68
msgid "Direction" msgid "Direction"
msgstr "" msgstr ""
@ -3382,23 +3382,29 @@ msgstr ""
msgid "Disabled" msgid "Disabled"
msgstr "" msgstr ""
#: joy.rc:46 #: joy.rc:42
msgid ""
"After disabling or enabling a device, the connected joysticks won't be "
"updated here until you restart this applet."
msgstr ""
#: joy.rc:47
msgid "Test Joystick" msgid "Test Joystick"
msgstr "" msgstr ""
#: joy.rc:50 #: joy.rc:51
msgid "Buttons" msgid "Buttons"
msgstr "" msgstr ""
#: joy.rc:59 #: joy.rc:60
msgid "Test Force Feedback" msgid "Test Force Feedback"
msgstr "" msgstr ""
#: joy.rc:63 #: joy.rc:64
msgid "Available Effects" msgid "Available Effects"
msgstr "" msgstr ""
#: joy.rc:65 #: joy.rc:66
msgid "" msgid ""
"Press any button in the controller to activate the chosen effect. The effect " "Press any button in the controller to activate the chosen effect. The effect "
"direction can be changed with the controller axis." "direction can be changed with the controller axis."

View File

@ -626,7 +626,7 @@ msgstr "&Numai cuvinte întregi"
msgid "Match &Case" msgid "Match &Case"
msgstr "Sensibil la registru" msgstr "Sensibil la registru"
#: comdlg32.rc:317 joy.rc:67 #: comdlg32.rc:317 joy.rc:68
msgid "Direction" msgid "Direction"
msgstr "Direcție" msgstr "Direcție"
@ -3448,25 +3448,31 @@ msgstr "Deconectat"
msgid "Disabled" msgid "Disabled"
msgstr "&Dezactivează" msgstr "&Dezactivează"
#: joy.rc:46 #: joy.rc:42
msgid ""
"After disabling or enabling a device, the connected joysticks won't be "
"updated here until you restart this applet."
msgstr ""
#: joy.rc:47
msgid "Test Joystick" msgid "Test Joystick"
msgstr "" msgstr ""
#: joy.rc:50 #: joy.rc:51
msgid "Buttons" msgid "Buttons"
msgstr "" msgstr ""
#: joy.rc:59 #: joy.rc:60
msgid "Test Force Feedback" msgid "Test Force Feedback"
msgstr "" msgstr ""
#: joy.rc:63 #: joy.rc:64
#, fuzzy #, fuzzy
#| msgid "Available formats" #| msgid "Available formats"
msgid "Available Effects" msgid "Available Effects"
msgstr "Formate disponibile" msgstr "Formate disponibile"
#: joy.rc:65 #: joy.rc:66
msgid "" msgid ""
"Press any button in the controller to activate the chosen effect. The effect " "Press any button in the controller to activate the chosen effect. The effect "
"direction can be changed with the controller axis." "direction can be changed with the controller axis."

View File

@ -635,7 +635,7 @@ msgstr "&Только слово целиком"
msgid "Match &Case" msgid "Match &Case"
msgstr "C &учетом регистра" msgstr "C &учетом регистра"
#: comdlg32.rc:317 joy.rc:67 #: comdlg32.rc:317 joy.rc:68
msgid "Direction" msgid "Direction"
msgstr "Направление" msgstr "Направление"
@ -3455,25 +3455,31 @@ msgstr "Отключено"
msgid "Disabled" msgid "Disabled"
msgstr "&Блокировать загрузку" msgstr "&Блокировать загрузку"
#: joy.rc:46 #: joy.rc:42
msgid ""
"After disabling or enabling a device, the connected joysticks won't be "
"updated here until you restart this applet."
msgstr ""
#: joy.rc:47
msgid "Test Joystick" msgid "Test Joystick"
msgstr "" msgstr ""
#: joy.rc:50 #: joy.rc:51
msgid "Buttons" msgid "Buttons"
msgstr "" msgstr ""
#: joy.rc:59 #: joy.rc:60
msgid "Test Force Feedback" msgid "Test Force Feedback"
msgstr "" msgstr ""
#: joy.rc:63 #: joy.rc:64
#, fuzzy #, fuzzy
#| msgid "Available formats" #| msgid "Available formats"
msgid "Available Effects" msgid "Available Effects"
msgstr "Доступные форматы" msgstr "Доступные форматы"
#: joy.rc:65 #: joy.rc:66
msgid "" msgid ""
"Press any button in the controller to activate the chosen effect. The effect " "Press any button in the controller to activate the chosen effect. The effect "
"direction can be changed with the controller axis." "direction can be changed with the controller axis."

View File

@ -653,7 +653,7 @@ msgstr "Len &celé slová"
msgid "Match &Case" msgid "Match &Case"
msgstr "&Rozlišovať malé a veľké písmená" msgstr "&Rozlišovať malé a veľké písmená"
#: comdlg32.rc:317 joy.rc:67 #: comdlg32.rc:317 joy.rc:68
msgid "Direction" msgid "Direction"
msgstr "Smer" msgstr "Smer"
@ -3390,25 +3390,31 @@ msgstr "Súbor nenájdený"
msgid "Disabled" msgid "Disabled"
msgstr "&Zakázať" msgstr "&Zakázať"
#: joy.rc:46 #: joy.rc:42
msgid ""
"After disabling or enabling a device, the connected joysticks won't be "
"updated here until you restart this applet."
msgstr ""
#: joy.rc:47
msgid "Test Joystick" msgid "Test Joystick"
msgstr "" msgstr ""
#: joy.rc:50 #: joy.rc:51
msgid "Buttons" msgid "Buttons"
msgstr "" msgstr ""
#: joy.rc:59 #: joy.rc:60
msgid "Test Force Feedback" msgid "Test Force Feedback"
msgstr "" msgstr ""
#: joy.rc:63 #: joy.rc:64
#, fuzzy #, fuzzy
#| msgid "Available formats" #| msgid "Available formats"
msgid "Available Effects" msgid "Available Effects"
msgstr "Dostupné formáty" msgstr "Dostupné formáty"
#: joy.rc:65 #: joy.rc:66
msgid "" msgid ""
"Press any button in the controller to activate the chosen effect. The effect " "Press any button in the controller to activate the chosen effect. The effect "
"direction can be changed with the controller axis." "direction can be changed with the controller axis."

View File

@ -652,7 +652,7 @@ msgstr "&Samo cele besede"
msgid "Match &Case" msgid "Match &Case"
msgstr "&Razlikuj velikost črk" msgstr "&Razlikuj velikost črk"
#: comdlg32.rc:317 joy.rc:67 #: comdlg32.rc:317 joy.rc:68
msgid "Direction" msgid "Direction"
msgstr "Smer iskanja" msgstr "Smer iskanja"
@ -3480,25 +3480,31 @@ msgstr "Povezava je bila prekinjena"
msgid "Disabled" msgid "Disabled"
msgstr "&Onemogoči" msgstr "&Onemogoči"
#: joy.rc:46 #: joy.rc:42
msgid ""
"After disabling or enabling a device, the connected joysticks won't be "
"updated here until you restart this applet."
msgstr ""
#: joy.rc:47
msgid "Test Joystick" msgid "Test Joystick"
msgstr "" msgstr ""
#: joy.rc:50 #: joy.rc:51
msgid "Buttons" msgid "Buttons"
msgstr "" msgstr ""
#: joy.rc:59 #: joy.rc:60
msgid "Test Force Feedback" msgid "Test Force Feedback"
msgstr "" msgstr ""
#: joy.rc:63 #: joy.rc:64
#, fuzzy #, fuzzy
#| msgid "Available formats" #| msgid "Available formats"
msgid "Available Effects" msgid "Available Effects"
msgstr "Razpoložljive oblike" msgstr "Razpoložljive oblike"
#: joy.rc:65 #: joy.rc:66
msgid "" msgid ""
"Press any button in the controller to activate the chosen effect. The effect " "Press any button in the controller to activate the chosen effect. The effect "
"direction can be changed with the controller axis." "direction can be changed with the controller axis."

View File

@ -642,7 +642,7 @@ msgstr "Пронађи само &целу реч"
msgid "Match &Case" msgid "Match &Case"
msgstr "Подударање &малих и великих слова" msgstr "Подударање &малих и великих слова"
#: comdlg32.rc:317 joy.rc:67 #: comdlg32.rc:317 joy.rc:68
msgid "Direction" msgid "Direction"
msgstr "Правац" msgstr "Правац"
@ -3473,24 +3473,30 @@ msgstr "Датотека није пронађена"
msgid "Disabled" msgid "Disabled"
msgstr "табела" msgstr "табела"
#: joy.rc:46 #: joy.rc:42
msgid ""
"After disabling or enabling a device, the connected joysticks won't be "
"updated here until you restart this applet."
msgstr ""
#: joy.rc:47
msgid "Test Joystick" msgid "Test Joystick"
msgstr "" msgstr ""
#: joy.rc:50 #: joy.rc:51
msgid "Buttons" msgid "Buttons"
msgstr "" msgstr ""
#: joy.rc:59 #: joy.rc:60
msgid "Test Force Feedback" msgid "Test Force Feedback"
msgstr "" msgstr ""
#: joy.rc:63 #: joy.rc:64
#, fuzzy #, fuzzy
msgid "Available Effects" msgid "Available Effects"
msgstr "Н&апред" msgstr "Н&апред"
#: joy.rc:65 #: joy.rc:66
msgid "" msgid ""
"Press any button in the controller to activate the chosen effect. The effect " "Press any button in the controller to activate the chosen effect. The effect "
"direction can be changed with the controller axis." "direction can be changed with the controller axis."

View File

@ -688,7 +688,7 @@ msgstr ""
msgid "Match &Case" msgid "Match &Case"
msgstr "" msgstr ""
#: comdlg32.rc:317 joy.rc:67 #: comdlg32.rc:317 joy.rc:68
#, fuzzy #, fuzzy
msgid "Direction" msgid "Direction"
msgstr "Opis" msgstr "Opis"
@ -3551,24 +3551,30 @@ msgstr "Datoteka nije pronađena"
msgid "Disabled" msgid "Disabled"
msgstr "&Isključi" msgstr "&Isključi"
#: joy.rc:46 #: joy.rc:42
msgid ""
"After disabling or enabling a device, the connected joysticks won't be "
"updated here until you restart this applet."
msgstr ""
#: joy.rc:47
msgid "Test Joystick" msgid "Test Joystick"
msgstr "" msgstr ""
#: joy.rc:50 #: joy.rc:51
msgid "Buttons" msgid "Buttons"
msgstr "" msgstr ""
#: joy.rc:59 #: joy.rc:60
msgid "Test Force Feedback" msgid "Test Force Feedback"
msgstr "" msgstr ""
#: joy.rc:63 #: joy.rc:64
#, fuzzy #, fuzzy
msgid "Available Effects" msgid "Available Effects"
msgstr "N&apred" msgstr "N&apred"
#: joy.rc:65 #: joy.rc:66
msgid "" msgid ""
"Press any button in the controller to activate the chosen effect. The effect " "Press any button in the controller to activate the chosen effect. The effect "
"direction can be changed with the controller axis." "direction can be changed with the controller axis."

View File

@ -633,7 +633,7 @@ msgstr "&Bara hela ord"
msgid "Match &Case" msgid "Match &Case"
msgstr "&Skillnad på stora/små bokstäver" msgstr "&Skillnad på stora/små bokstäver"
#: comdlg32.rc:317 joy.rc:67 #: comdlg32.rc:317 joy.rc:68
msgid "Direction" msgid "Direction"
msgstr "Riktning" msgstr "Riktning"
@ -3432,25 +3432,31 @@ msgstr "Ansluten"
msgid "Disabled" msgid "Disabled"
msgstr "Inaktiverad" msgstr "Inaktiverad"
#: joy.rc:46 #: joy.rc:42
msgid ""
"After disabling or enabling a device, the connected joysticks won't be "
"updated here until you restart this applet."
msgstr ""
#: joy.rc:47
msgid "Test Joystick" msgid "Test Joystick"
msgstr "Testa joysticken" msgstr "Testa joysticken"
#: joy.rc:50 #: joy.rc:51
msgid "Buttons" msgid "Buttons"
msgstr "Knappar" msgstr "Knappar"
#: joy.rc:59 #: joy.rc:60
msgid "Test Force Feedback" msgid "Test Force Feedback"
msgstr "Testa kraftåterkoppling" msgstr "Testa kraftåterkoppling"
#: joy.rc:63 #: joy.rc:64
#, fuzzy #, fuzzy
#| msgid "Available formats" #| msgid "Available formats"
msgid "Available Effects" msgid "Available Effects"
msgstr "Tillgängliga format" msgstr "Tillgängliga format"
#: joy.rc:65 #: joy.rc:66
msgid "" msgid ""
"Press any button in the controller to activate the chosen effect. The effect " "Press any button in the controller to activate the chosen effect. The effect "
"direction can be changed with the controller axis." "direction can be changed with the controller axis."

View File

@ -619,7 +619,7 @@ msgstr ""
msgid "Match &Case" msgid "Match &Case"
msgstr "" msgstr ""
#: comdlg32.rc:317 joy.rc:67 #: comdlg32.rc:317 joy.rc:68
msgid "Direction" msgid "Direction"
msgstr "" msgstr ""
@ -3354,23 +3354,29 @@ msgstr ""
msgid "Disabled" msgid "Disabled"
msgstr "" msgstr ""
#: joy.rc:46 #: joy.rc:42
msgid ""
"After disabling or enabling a device, the connected joysticks won't be "
"updated here until you restart this applet."
msgstr ""
#: joy.rc:47
msgid "Test Joystick" msgid "Test Joystick"
msgstr "" msgstr ""
#: joy.rc:50 #: joy.rc:51
msgid "Buttons" msgid "Buttons"
msgstr "" msgstr ""
#: joy.rc:59 #: joy.rc:60
msgid "Test Force Feedback" msgid "Test Force Feedback"
msgstr "" msgstr ""
#: joy.rc:63 #: joy.rc:64
msgid "Available Effects" msgid "Available Effects"
msgstr "" msgstr ""
#: joy.rc:65 #: joy.rc:66
msgid "" msgid ""
"Press any button in the controller to activate the chosen effect. The effect " "Press any button in the controller to activate the chosen effect. The effect "
"direction can be changed with the controller axis." "direction can be changed with the controller axis."

View File

@ -620,7 +620,7 @@ msgstr "ตรงกันทุกตัวอักษร"
msgid "Match &Case" msgid "Match &Case"
msgstr "พิจารณาตัวเล็ก-ใหญ่" msgstr "พิจารณาตัวเล็ก-ใหญ่"
#: comdlg32.rc:317 joy.rc:67 #: comdlg32.rc:317 joy.rc:68
msgid "Direction" msgid "Direction"
msgstr "ทาง" msgstr "ทาง"
@ -3393,25 +3393,31 @@ msgstr "ไม่พบแฟ้ม"
msgid "Disabled" msgid "Disabled"
msgstr "" msgstr ""
#: joy.rc:46 #: joy.rc:42
msgid ""
"After disabling or enabling a device, the connected joysticks won't be "
"updated here until you restart this applet."
msgstr ""
#: joy.rc:47
msgid "Test Joystick" msgid "Test Joystick"
msgstr "" msgstr ""
#: joy.rc:50 #: joy.rc:51
msgid "Buttons" msgid "Buttons"
msgstr "" msgstr ""
#: joy.rc:59 #: joy.rc:60
msgid "Test Force Feedback" msgid "Test Force Feedback"
msgstr "" msgstr ""
#: joy.rc:63 #: joy.rc:64
#, fuzzy #, fuzzy
#| msgid "A&vailable buttons:" #| msgid "A&vailable buttons:"
msgid "Available Effects" msgid "Available Effects"
msgstr "ทีเลือกได้:" msgstr "ทีเลือกได้:"
#: joy.rc:65 #: joy.rc:66
msgid "" msgid ""
"Press any button in the controller to activate the chosen effect. The effect " "Press any button in the controller to activate the chosen effect. The effect "
"direction can be changed with the controller axis." "direction can be changed with the controller axis."

View File

@ -617,7 +617,7 @@ msgstr "Yalnızca &Tam Sözcükleri Bul"
msgid "Match &Case" msgid "Match &Case"
msgstr "BÜYÜK/küçük Harf &Duyarlı" msgstr "BÜYÜK/küçük Harf &Duyarlı"
#: comdlg32.rc:317 joy.rc:67 #: comdlg32.rc:317 joy.rc:68
msgid "Direction" msgid "Direction"
msgstr "Yön" msgstr "Yön"
@ -3347,25 +3347,31 @@ msgstr "%s Bağlan"
msgid "Disabled" msgid "Disabled"
msgstr "&Etkisizleştir" msgstr "&Etkisizleştir"
#: joy.rc:46 #: joy.rc:42
msgid ""
"After disabling or enabling a device, the connected joysticks won't be "
"updated here until you restart this applet."
msgstr ""
#: joy.rc:47
msgid "Test Joystick" msgid "Test Joystick"
msgstr "" msgstr ""
#: joy.rc:50 #: joy.rc:51
msgid "Buttons" msgid "Buttons"
msgstr "" msgstr ""
#: joy.rc:59 #: joy.rc:60
msgid "Test Force Feedback" msgid "Test Force Feedback"
msgstr "" msgstr ""
#: joy.rc:63 #: joy.rc:64
#, fuzzy #, fuzzy
#| msgid "Available formats" #| msgid "Available formats"
msgid "Available Effects" msgid "Available Effects"
msgstr "Mevcut biçimler" msgstr "Mevcut biçimler"
#: joy.rc:65 #: joy.rc:66
msgid "" msgid ""
"Press any button in the controller to activate the chosen effect. The effect " "Press any button in the controller to activate the chosen effect. The effect "
"direction can be changed with the controller axis." "direction can be changed with the controller axis."

View File

@ -643,7 +643,7 @@ msgstr "&Лише слово цілком"
msgid "Match &Case" msgid "Match &Case"
msgstr "Враховувати &реґістр" msgstr "Враховувати &реґістр"
#: comdlg32.rc:317 joy.rc:67 #: comdlg32.rc:317 joy.rc:68
msgid "Direction" msgid "Direction"
msgstr "Напрям" msgstr "Напрям"
@ -3469,25 +3469,31 @@ msgstr "Від'єднано"
msgid "Disabled" msgid "Disabled"
msgstr "Вим&кнути" msgstr "Вим&кнути"
#: joy.rc:46 #: joy.rc:42
msgid ""
"After disabling or enabling a device, the connected joysticks won't be "
"updated here until you restart this applet."
msgstr ""
#: joy.rc:47
msgid "Test Joystick" msgid "Test Joystick"
msgstr "" msgstr ""
#: joy.rc:50 #: joy.rc:51
msgid "Buttons" msgid "Buttons"
msgstr "" msgstr ""
#: joy.rc:59 #: joy.rc:60
msgid "Test Force Feedback" msgid "Test Force Feedback"
msgstr "" msgstr ""
#: joy.rc:63 #: joy.rc:64
#, fuzzy #, fuzzy
#| msgid "Available formats" #| msgid "Available formats"
msgid "Available Effects" msgid "Available Effects"
msgstr "Доступні формати" msgstr "Доступні формати"
#: joy.rc:65 #: joy.rc:66
msgid "" msgid ""
"Press any button in the controller to activate the chosen effect. The effect " "Press any button in the controller to activate the chosen effect. The effect "
"direction can be changed with the controller axis." "direction can be changed with the controller axis."

View File

@ -628,7 +628,7 @@ msgstr "Mots &etîrs seulmint"
msgid "Match &Case" msgid "Match &Case"
msgstr "Rispecter les &madjuscules/minuscules" msgstr "Rispecter les &madjuscules/minuscules"
#: comdlg32.rc:317 joy.rc:67 #: comdlg32.rc:317 joy.rc:68
msgid "Direction" msgid "Direction"
msgstr "Direccion" msgstr "Direccion"
@ -3401,23 +3401,29 @@ msgstr ""
msgid "Disabled" msgid "Disabled"
msgstr "" msgstr ""
#: joy.rc:46 #: joy.rc:42
msgid ""
"After disabling or enabling a device, the connected joysticks won't be "
"updated here until you restart this applet."
msgstr ""
#: joy.rc:47
msgid "Test Joystick" msgid "Test Joystick"
msgstr "" msgstr ""
#: joy.rc:50 #: joy.rc:51
msgid "Buttons" msgid "Buttons"
msgstr "" msgstr ""
#: joy.rc:59 #: joy.rc:60
msgid "Test Force Feedback" msgid "Test Force Feedback"
msgstr "" msgstr ""
#: joy.rc:63 #: joy.rc:64
msgid "Available Effects" msgid "Available Effects"
msgstr "" msgstr ""
#: joy.rc:65 #: joy.rc:66
msgid "" msgid ""
"Press any button in the controller to activate the chosen effect. The effect " "Press any button in the controller to activate the chosen effect. The effect "
"direction can be changed with the controller axis." "direction can be changed with the controller axis."

View File

@ -607,7 +607,7 @@ msgstr ""
msgid "Match &Case" msgid "Match &Case"
msgstr "" msgstr ""
#: comdlg32.rc:317 joy.rc:67 #: comdlg32.rc:317 joy.rc:68
msgid "Direction" msgid "Direction"
msgstr "" msgstr ""
@ -3316,23 +3316,29 @@ msgstr ""
msgid "Disabled" msgid "Disabled"
msgstr "" msgstr ""
#: joy.rc:46 #: joy.rc:42
msgid ""
"After disabling or enabling a device, the connected joysticks won't be "
"updated here until you restart this applet."
msgstr ""
#: joy.rc:47
msgid "Test Joystick" msgid "Test Joystick"
msgstr "" msgstr ""
#: joy.rc:50 #: joy.rc:51
msgid "Buttons" msgid "Buttons"
msgstr "" msgstr ""
#: joy.rc:59 #: joy.rc:60
msgid "Test Force Feedback" msgid "Test Force Feedback"
msgstr "" msgstr ""
#: joy.rc:63 #: joy.rc:64
msgid "Available Effects" msgid "Available Effects"
msgstr "" msgstr ""
#: joy.rc:65 #: joy.rc:66
msgid "" msgid ""
"Press any button in the controller to activate the chosen effect. The effect " "Press any button in the controller to activate the chosen effect. The effect "
"direction can be changed with the controller axis." "direction can be changed with the controller axis."

View File

@ -634,7 +634,7 @@ msgstr "全字匹配(&W)"
msgid "Match &Case" msgid "Match &Case"
msgstr "区分大小写(&C)" msgstr "区分大小写(&C)"
#: comdlg32.rc:317 joy.rc:67 #: comdlg32.rc:317 joy.rc:68
msgid "Direction" msgid "Direction"
msgstr "方向" msgstr "方向"
@ -3367,25 +3367,31 @@ msgstr "连接断开"
msgid "Disabled" msgid "Disabled"
msgstr "停用(&D)" msgstr "停用(&D)"
#: joy.rc:46 #: joy.rc:42
msgid ""
"After disabling or enabling a device, the connected joysticks won't be "
"updated here until you restart this applet."
msgstr ""
#: joy.rc:47
msgid "Test Joystick" msgid "Test Joystick"
msgstr "" msgstr ""
#: joy.rc:50 #: joy.rc:51
msgid "Buttons" msgid "Buttons"
msgstr "" msgstr ""
#: joy.rc:59 #: joy.rc:60
msgid "Test Force Feedback" msgid "Test Force Feedback"
msgstr "" msgstr ""
#: joy.rc:63 #: joy.rc:64
#, fuzzy #, fuzzy
#| msgid "Available formats" #| msgid "Available formats"
msgid "Available Effects" msgid "Available Effects"
msgstr "可选格式" msgstr "可选格式"
#: joy.rc:65 #: joy.rc:66
msgid "" msgid ""
"Press any button in the controller to activate the chosen effect. The effect " "Press any button in the controller to activate the chosen effect. The effect "
"direction can be changed with the controller axis." "direction can be changed with the controller axis."

View File

@ -623,7 +623,7 @@ msgstr "全字拼寫須符合(&W)"
msgid "Match &Case" msgid "Match &Case"
msgstr "大小寫視為相異(&C)" msgstr "大小寫視為相異(&C)"
#: comdlg32.rc:317 joy.rc:67 #: comdlg32.rc:317 joy.rc:68
msgid "Direction" msgid "Direction"
msgstr "方向" msgstr "方向"
@ -3396,23 +3396,29 @@ msgstr "已連線"
msgid "Disabled" msgid "Disabled"
msgstr "已停用" msgstr "已停用"
#: joy.rc:46 #: joy.rc:42
msgid ""
"After disabling or enabling a device, the connected joysticks won't be "
"updated here until you restart this applet."
msgstr ""
#: joy.rc:47
msgid "Test Joystick" msgid "Test Joystick"
msgstr "測試搖桿" msgstr "測試搖桿"
#: joy.rc:50 #: joy.rc:51
msgid "Buttons" msgid "Buttons"
msgstr "按鈕" msgstr "按鈕"
#: joy.rc:59 #: joy.rc:60
msgid "Test Force Feedback" msgid "Test Force Feedback"
msgstr "測試應力回饋" msgstr "測試應力回饋"
#: joy.rc:63 #: joy.rc:64
msgid "Available Effects" msgid "Available Effects"
msgstr "可用效果" msgstr "可用效果"
#: joy.rc:65 #: joy.rc:66
msgid "" msgid ""
"Press any button in the controller to activate the chosen effect. The effect " "Press any button in the controller to activate the chosen effect. The effect "
"direction can be changed with the controller axis." "direction can be changed with the controller axis."