mirror of
https://github.com/reactos/wine.git
synced 2024-11-27 21:50:37 +00:00
joy.cpl: First version of the joystick configuration applet.
This commit is contained in:
parent
cc547444df
commit
033f4ae4b8
1
configure
vendored
1
configure
vendored
@ -15221,6 +15221,7 @@ wine_fn_config_test dlls/iphlpapi/tests iphlpapi_test
|
||||
wine_fn_config_dll itircl enable_itircl
|
||||
wine_fn_config_dll itss enable_itss
|
||||
wine_fn_config_test dlls/itss/tests itss_test
|
||||
wine_fn_config_dll joy.cpl enable_joy_cpl po
|
||||
wine_fn_config_dll jscript enable_jscript po
|
||||
wine_fn_config_test dlls/jscript/tests jscript_test
|
||||
wine_fn_config_dll kernel32 enable_kernel32 implib,mc
|
||||
|
@ -2654,6 +2654,7 @@ WINE_CONFIG_TEST(dlls/iphlpapi/tests)
|
||||
WINE_CONFIG_DLL(itircl)
|
||||
WINE_CONFIG_DLL(itss)
|
||||
WINE_CONFIG_TEST(dlls/itss/tests)
|
||||
WINE_CONFIG_DLL(joy.cpl,,[po])
|
||||
WINE_CONFIG_DLL(jscript,,[po])
|
||||
WINE_CONFIG_TEST(dlls/jscript/tests)
|
||||
WINE_CONFIG_DLL(kernel32,,[implib,mc])
|
||||
|
10
dlls/joy.cpl/Makefile.in
Normal file
10
dlls/joy.cpl/Makefile.in
Normal file
@ -0,0 +1,10 @@
|
||||
MODULE = joy.cpl
|
||||
IMPORTS = dxguid dinput dinput8 ole32 comctl32 user32
|
||||
|
||||
C_SRCS = \
|
||||
main.c
|
||||
|
||||
RC_SRCS = joy.rc
|
||||
PO_SRCS = joy.rc
|
||||
|
||||
@MAKE_DLL_RULES@
|
1
dlls/joy.cpl/joy.cpl.spec
Normal file
1
dlls/joy.cpl/joy.cpl.spec
Normal file
@ -0,0 +1 @@
|
||||
@ stdcall CPlApplet(long long long long)
|
60
dlls/joy.cpl/joy.h
Normal file
60
dlls/joy.cpl/joy.h
Normal file
@ -0,0 +1,60 @@
|
||||
/*
|
||||
* Joystick testing control panel applet resources and definitions
|
||||
*
|
||||
* Copyright 2012 Lucas Fialho Zawacki
|
||||
*
|
||||
* This library is free software; you can redistribute it and/or
|
||||
* modify it under the terms of the GNU Lesser General Public
|
||||
* License as published by the Free Software Foundation; either
|
||||
* version 2.1 of the License, or (at your option) any later version.
|
||||
*
|
||||
* This library is distributed in the hope that it will be useful,
|
||||
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
||||
* Lesser General Public License for more details.
|
||||
*
|
||||
* You should have received a copy of the GNU Lesser General Public
|
||||
* License along with this library; if not, write to the Free Software
|
||||
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
|
||||
*
|
||||
*/
|
||||
|
||||
#ifndef __WINE_JOYSTICKCPL__
|
||||
#define __WINE_JOYSTICKCPL__
|
||||
|
||||
#include <winuser.h>
|
||||
#include <windef.h>
|
||||
#include <commctrl.h>
|
||||
#include <dinput.h>
|
||||
|
||||
extern HMODULE hcpl;
|
||||
|
||||
struct Joystick {
|
||||
IDirectInputDevice8W *device;
|
||||
DIDEVICEINSTANCEW instance;
|
||||
int num_buttons;
|
||||
int num_axes;
|
||||
};
|
||||
|
||||
struct JoystickData {
|
||||
IDirectInput8W *di;
|
||||
struct Joystick *joysticks;
|
||||
int num_joysticks;
|
||||
int cur_joystick;
|
||||
int chosen_joystick;
|
||||
};
|
||||
|
||||
#define NUM_PROPERTY_PAGES 3
|
||||
|
||||
/* strings */
|
||||
#define IDS_CPL_NAME 1
|
||||
#define IDS_CPL_INFO 2
|
||||
|
||||
/* dialogs */
|
||||
#define IDC_STATIC -1
|
||||
|
||||
#define IDD_LIST 1000
|
||||
#define IDD_TEST 1001
|
||||
#define IDD_FORCEFEEDBACK 1002
|
||||
|
||||
#endif
|
55
dlls/joy.cpl/joy.rc
Normal file
55
dlls/joy.cpl/joy.rc
Normal file
@ -0,0 +1,55 @@
|
||||
/*
|
||||
* Joystick testing control panel applet resource file
|
||||
*
|
||||
* Copyright 2012 Lucas Fialho Zawacki
|
||||
*
|
||||
* This library is free software; you can redistribute it and/or
|
||||
* modify it under the terms of the GNU Lesser General Public
|
||||
* License as published by the Free Software Foundation; either
|
||||
* version 2.1 of the License, or (at your option) any later version.
|
||||
*
|
||||
* This library is distributed in the hope that it will be useful,
|
||||
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
||||
* Lesser General Public License for more details.
|
||||
*
|
||||
* You should have received a copy of the GNU Lesser General Public
|
||||
* License along with this library; if not, write to the Free Software
|
||||
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
|
||||
*
|
||||
*/
|
||||
|
||||
#include "joy.h"
|
||||
|
||||
LANGUAGE LANG_ENGLISH, SUBLANG_DEFAULT
|
||||
|
||||
STRINGTABLE
|
||||
BEGIN
|
||||
IDS_CPL_NAME "Game Controllers"
|
||||
END
|
||||
|
||||
IDD_LIST DIALOG 0, 0, 250, 200
|
||||
STYLE WS_CAPTION | WS_CHILD | WS_DISABLED
|
||||
CAPTION "Joysticks"
|
||||
FONT 8, "Ms Shell Dlg"
|
||||
{
|
||||
}
|
||||
|
||||
IDD_TEST DIALOG 0, 0, 250, 200
|
||||
STYLE WS_CAPTION | WS_CHILD | WS_DISABLED
|
||||
CAPTION "Test Joystick"
|
||||
FONT 8, "Ms Shell Dlg"
|
||||
{
|
||||
}
|
||||
|
||||
IDD_FORCEFEEDBACK DIALOG 0, 0, 250, 200
|
||||
STYLE WS_CAPTION | WS_CHILD | WS_DISABLED
|
||||
CAPTION "Test Force Feedback"
|
||||
FONT 8, "Ms Shell Dlg"
|
||||
{
|
||||
}
|
||||
|
||||
#define WINE_FILENAME_STR "joy.cpl"
|
||||
#define WINE_FILEDESCRIPTION_STR "Game Controllers Configuration Panel"
|
||||
|
||||
#include "wine/wine_common_ver.rc"
|
182
dlls/joy.cpl/main.c
Normal file
182
dlls/joy.cpl/main.c
Normal file
@ -0,0 +1,182 @@
|
||||
/*
|
||||
* Joystick testing control panel applet
|
||||
*
|
||||
* Copyright 2012 Lucas Fialho Zawacki
|
||||
*
|
||||
* This library is free software; you can redistribute it and/or
|
||||
* modify it under the terms of the GNU Lesser General Public
|
||||
* License as published by the Free Software Foundation; either
|
||||
* version 2.1 of the License, or (at your option) any later version.
|
||||
*
|
||||
* This library is distributed in the hope that it will be useful,
|
||||
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
||||
* Lesser General Public License for more details.
|
||||
*
|
||||
* You should have received a copy of the GNU Lesser General Public
|
||||
* License along with this library; if not, write to the Free Software
|
||||
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
|
||||
*
|
||||
*/
|
||||
|
||||
#define NONAMELESSUNION
|
||||
#define COBJMACROS
|
||||
#define CONST_VTABLE
|
||||
|
||||
#include <stdarg.h>
|
||||
#include <windef.h>
|
||||
#include <winbase.h>
|
||||
#include <winuser.h>
|
||||
#include <commctrl.h>
|
||||
#include <cpl.h>
|
||||
#include "ole2.h"
|
||||
|
||||
#include "wine/debug.h"
|
||||
#include "joy.h"
|
||||
|
||||
WINE_DEFAULT_DEBUG_CHANNEL(joycpl);
|
||||
|
||||
DECLSPEC_HIDDEN HMODULE hcpl;
|
||||
|
||||
/*********************************************************************
|
||||
* DllMain
|
||||
*/
|
||||
BOOL WINAPI DllMain(HINSTANCE hdll, DWORD reason, LPVOID reserved)
|
||||
{
|
||||
TRACE("(%p, %d, %p)\n", hdll, reason, reserved);
|
||||
|
||||
switch (reason)
|
||||
{
|
||||
case DLL_WINE_PREATTACH:
|
||||
return FALSE; /* prefer native version */
|
||||
|
||||
case DLL_PROCESS_ATTACH:
|
||||
DisableThreadLibraryCalls(hdll);
|
||||
hcpl = hdll;
|
||||
}
|
||||
return TRUE;
|
||||
}
|
||||
|
||||
/******************************************************************************
|
||||
* propsheet_callback [internal]
|
||||
*
|
||||
*/
|
||||
static int CALLBACK propsheet_callback(HWND hwnd, UINT msg, LPARAM lparam)
|
||||
{
|
||||
TRACE("(%p, 0x%08x/%d, 0x%lx)\n", hwnd, msg, msg, lparam);
|
||||
switch (msg)
|
||||
{
|
||||
case PSCB_INITIALIZED:
|
||||
break;
|
||||
}
|
||||
return 0;
|
||||
}
|
||||
|
||||
/******************************************************************************
|
||||
* display_cpl_sheets [internal]
|
||||
*
|
||||
* Build and display the dialog with all control panel propertysheets
|
||||
*
|
||||
*/
|
||||
static void display_cpl_sheets(HWND parent, struct JoystickData *data)
|
||||
{
|
||||
INITCOMMONCONTROLSEX icex;
|
||||
PROPSHEETPAGEW psp[NUM_PROPERTY_PAGES];
|
||||
PROPSHEETHEADERW psh;
|
||||
DWORD id = 0;
|
||||
|
||||
OleInitialize(NULL);
|
||||
/* Initialize common controls */
|
||||
icex.dwSize = sizeof(INITCOMMONCONTROLSEX);
|
||||
icex.dwICC = ICC_LISTVIEW_CLASSES | ICC_BAR_CLASSES;
|
||||
InitCommonControlsEx(&icex);
|
||||
|
||||
ZeroMemory(&psh, sizeof(psh));
|
||||
ZeroMemory(psp, sizeof(psp));
|
||||
|
||||
/* Fill out all PROPSHEETPAGE */
|
||||
psp[id].dwSize = sizeof (PROPSHEETPAGEW);
|
||||
psp[id].hInstance = hcpl;
|
||||
psp[id].u.pszTemplate = MAKEINTRESOURCEW(IDD_LIST);
|
||||
psp[id].pfnDlgProc = NULL;
|
||||
psp[id].lParam = (INT_PTR) data;
|
||||
id++;
|
||||
|
||||
psp[id].dwSize = sizeof (PROPSHEETPAGEW);
|
||||
psp[id].hInstance = hcpl;
|
||||
psp[id].u.pszTemplate = MAKEINTRESOURCEW(IDD_TEST);
|
||||
psp[id].pfnDlgProc = NULL;
|
||||
psp[id].lParam = (INT_PTR) data;
|
||||
id++;
|
||||
|
||||
psp[id].dwSize = sizeof (PROPSHEETPAGEW);
|
||||
psp[id].hInstance = hcpl;
|
||||
psp[id].u.pszTemplate = MAKEINTRESOURCEW(IDD_FORCEFEEDBACK);
|
||||
psp[id].pfnDlgProc = NULL;
|
||||
psp[id].lParam = (INT_PTR) data;
|
||||
id++;
|
||||
|
||||
/* Fill out the PROPSHEETHEADER */
|
||||
psh.dwSize = sizeof (PROPSHEETHEADERW);
|
||||
psh.dwFlags = PSH_PROPSHEETPAGE | PSH_USEICONID | PSH_USECALLBACK;
|
||||
psh.hwndParent = parent;
|
||||
psh.hInstance = hcpl;
|
||||
psh.pszCaption = MAKEINTRESOURCEW(IDS_CPL_NAME);
|
||||
psh.nPages = id;
|
||||
psh.u3.ppsp = psp;
|
||||
psh.pfnCallback = propsheet_callback;
|
||||
|
||||
/* display the dialog */
|
||||
PropertySheetW(&psh);
|
||||
|
||||
OleUninitialize();
|
||||
}
|
||||
|
||||
/*********************************************************************
|
||||
* CPlApplet (joy.cpl.@)
|
||||
*
|
||||
* Control Panel entry point
|
||||
*
|
||||
* PARAMS
|
||||
* hWnd [I] Handle for the Control Panel Window
|
||||
* command [I] CPL_* Command
|
||||
* lParam1 [I] first extra Parameter
|
||||
* lParam2 [I] second extra Parameter
|
||||
*
|
||||
* RETURNS
|
||||
* Depends on the command
|
||||
*
|
||||
*/
|
||||
LONG CALLBACK CPlApplet(HWND hwnd, UINT command, LPARAM lParam1, LPARAM lParam2)
|
||||
{
|
||||
static struct JoystickData data;
|
||||
TRACE("(%p, %u, 0x%lx, 0x%lx)\n", hwnd, command, lParam1, lParam2);
|
||||
|
||||
switch (command)
|
||||
{
|
||||
case CPL_INIT:
|
||||
return TRUE;
|
||||
|
||||
case CPL_GETCOUNT:
|
||||
return 1;
|
||||
|
||||
case CPL_INQUIRE:
|
||||
{
|
||||
CPLINFO *appletInfo = (CPLINFO *) lParam2;
|
||||
|
||||
appletInfo->idName = IDS_CPL_NAME;
|
||||
appletInfo->idInfo = IDS_CPL_INFO;
|
||||
appletInfo->lData = 0;
|
||||
return TRUE;
|
||||
}
|
||||
|
||||
case CPL_DBLCLK:
|
||||
display_cpl_sheets(hwnd, &data);
|
||||
break;
|
||||
|
||||
case CPL_STOP:
|
||||
break;
|
||||
}
|
||||
|
||||
return FALSE;
|
||||
}
|
17
po/ar.po
17
po/ar.po
@ -3396,6 +3396,23 @@ msgstr ""
|
||||
msgid "High"
|
||||
msgstr ""
|
||||
|
||||
#: joy.rc:33
|
||||
msgid "Joysticks"
|
||||
msgstr ""
|
||||
|
||||
#: joy.rc:40
|
||||
msgid "Test Joystick"
|
||||
msgstr ""
|
||||
|
||||
#: joy.rc:47
|
||||
msgid "Test Force Feedback"
|
||||
msgstr ""
|
||||
|
||||
#: joy.rc:28
|
||||
#, fuzzy
|
||||
msgid "Game Controllers"
|
||||
msgstr "الم&حتويات"
|
||||
|
||||
#: jscript.rc:25
|
||||
msgid "Error converting object to primitive type"
|
||||
msgstr ""
|
||||
|
17
po/bg.po
17
po/bg.po
@ -3418,6 +3418,23 @@ msgstr ""
|
||||
msgid "High"
|
||||
msgstr ""
|
||||
|
||||
#: joy.rc:33
|
||||
msgid "Joysticks"
|
||||
msgstr ""
|
||||
|
||||
#: joy.rc:40
|
||||
msgid "Test Joystick"
|
||||
msgstr ""
|
||||
|
||||
#: joy.rc:47
|
||||
msgid "Test Force Feedback"
|
||||
msgstr ""
|
||||
|
||||
#: joy.rc:28
|
||||
#, fuzzy
|
||||
msgid "Game Controllers"
|
||||
msgstr "Контрол на потока"
|
||||
|
||||
#: jscript.rc:25
|
||||
msgid "Error converting object to primitive type"
|
||||
msgstr ""
|
||||
|
18
po/ca.po
18
po/ca.po
@ -3460,6 +3460,24 @@ msgstr "Augmentat"
|
||||
msgid "High"
|
||||
msgstr "Alt"
|
||||
|
||||
#: joy.rc:33
|
||||
msgid "Joysticks"
|
||||
msgstr ""
|
||||
|
||||
#: joy.rc:40
|
||||
msgid "Test Joystick"
|
||||
msgstr ""
|
||||
|
||||
#: joy.rc:47
|
||||
msgid "Test Force Feedback"
|
||||
msgstr ""
|
||||
|
||||
#: joy.rc:28
|
||||
#, fuzzy
|
||||
#| msgid "Create Control"
|
||||
msgid "Game Controllers"
|
||||
msgstr "Crea Control"
|
||||
|
||||
#: jscript.rc:25
|
||||
msgid "Error converting object to primitive type"
|
||||
msgstr "Error en convertir l'objecte a tipus primitiu"
|
||||
|
18
po/cs.po
18
po/cs.po
@ -3464,6 +3464,24 @@ msgstr "Zvýšená"
|
||||
msgid "High"
|
||||
msgstr "Vysoká"
|
||||
|
||||
#: joy.rc:33
|
||||
msgid "Joysticks"
|
||||
msgstr ""
|
||||
|
||||
#: joy.rc:40
|
||||
msgid "Test Joystick"
|
||||
msgstr ""
|
||||
|
||||
#: joy.rc:47
|
||||
msgid "Test Force Feedback"
|
||||
msgstr ""
|
||||
|
||||
#: joy.rc:28
|
||||
#, fuzzy
|
||||
#| msgid "Create Control"
|
||||
msgid "Game Controllers"
|
||||
msgstr "Vytvořit propojení"
|
||||
|
||||
#: jscript.rc:25
|
||||
msgid "Error converting object to primitive type"
|
||||
msgstr ""
|
||||
|
18
po/da.po
18
po/da.po
@ -3436,6 +3436,24 @@ msgstr "Øget"
|
||||
msgid "High"
|
||||
msgstr "&Høj"
|
||||
|
||||
#: joy.rc:33
|
||||
msgid "Joysticks"
|
||||
msgstr ""
|
||||
|
||||
#: joy.rc:40
|
||||
msgid "Test Joystick"
|
||||
msgstr ""
|
||||
|
||||
#: joy.rc:47
|
||||
msgid "Test Force Feedback"
|
||||
msgstr ""
|
||||
|
||||
#: joy.rc:28
|
||||
#, fuzzy
|
||||
#| msgid "Create Control"
|
||||
msgid "Game Controllers"
|
||||
msgstr "Opret control"
|
||||
|
||||
#: jscript.rc:25
|
||||
msgid "Error converting object to primitive type"
|
||||
msgstr "Fejl ved konvertering af objekt til primitiv type"
|
||||
|
18
po/de.po
18
po/de.po
@ -3429,6 +3429,24 @@ msgstr "Erhöht"
|
||||
msgid "High"
|
||||
msgstr "Hoch"
|
||||
|
||||
#: joy.rc:33
|
||||
msgid "Joysticks"
|
||||
msgstr ""
|
||||
|
||||
#: joy.rc:40
|
||||
msgid "Test Joystick"
|
||||
msgstr ""
|
||||
|
||||
#: joy.rc:47
|
||||
msgid "Test Force Feedback"
|
||||
msgstr ""
|
||||
|
||||
#: joy.rc:28
|
||||
#, fuzzy
|
||||
#| msgid "Create Control"
|
||||
msgid "Game Controllers"
|
||||
msgstr "S&teuerelement erstellen"
|
||||
|
||||
#: jscript.rc:25
|
||||
msgid "Error converting object to primitive type"
|
||||
msgstr "Fehler beim Umwandeln des Objektes in einen Grundtyp"
|
||||
|
17
po/el.po
17
po/el.po
@ -3355,6 +3355,23 @@ msgstr ""
|
||||
msgid "High"
|
||||
msgstr ""
|
||||
|
||||
#: joy.rc:33
|
||||
msgid "Joysticks"
|
||||
msgstr ""
|
||||
|
||||
#: joy.rc:40
|
||||
msgid "Test Joystick"
|
||||
msgstr ""
|
||||
|
||||
#: joy.rc:47
|
||||
msgid "Test Force Feedback"
|
||||
msgstr ""
|
||||
|
||||
#: joy.rc:28
|
||||
#, fuzzy
|
||||
msgid "Game Controllers"
|
||||
msgstr "&Περιεχόμενα"
|
||||
|
||||
#: jscript.rc:25
|
||||
msgid "Error converting object to primitive type"
|
||||
msgstr ""
|
||||
|
16
po/en.po
16
po/en.po
@ -3420,6 +3420,22 @@ msgstr "Increased"
|
||||
msgid "High"
|
||||
msgstr "High"
|
||||
|
||||
#: joy.rc:33
|
||||
msgid "Joysticks"
|
||||
msgstr "Joysticks"
|
||||
|
||||
#: joy.rc:40
|
||||
msgid "Test Joystick"
|
||||
msgstr "Test Joystick"
|
||||
|
||||
#: joy.rc:47
|
||||
msgid "Test Force Feedback"
|
||||
msgstr "Test Force Feedback"
|
||||
|
||||
#: joy.rc:28
|
||||
msgid "Game Controllers"
|
||||
msgstr "Game Controllers"
|
||||
|
||||
#: jscript.rc:25
|
||||
msgid "Error converting object to primitive type"
|
||||
msgstr "Error converting object to primitive type"
|
||||
|
16
po/en_US.po
16
po/en_US.po
@ -3422,6 +3422,22 @@ msgstr "Increased"
|
||||
msgid "High"
|
||||
msgstr "High"
|
||||
|
||||
#: joy.rc:33
|
||||
msgid "Joysticks"
|
||||
msgstr "Joysticks"
|
||||
|
||||
#: joy.rc:40
|
||||
msgid "Test Joystick"
|
||||
msgstr "Test Joystick"
|
||||
|
||||
#: joy.rc:47
|
||||
msgid "Test Force Feedback"
|
||||
msgstr "Test Force Feedback"
|
||||
|
||||
#: joy.rc:28
|
||||
msgid "Game Controllers"
|
||||
msgstr "Game Controllers"
|
||||
|
||||
#: jscript.rc:25
|
||||
msgid "Error converting object to primitive type"
|
||||
msgstr "Error converting object to primitive type"
|
||||
|
18
po/eo.po
18
po/eo.po
@ -3326,6 +3326,24 @@ msgstr ""
|
||||
msgid "High"
|
||||
msgstr ""
|
||||
|
||||
#: joy.rc:33
|
||||
msgid "Joysticks"
|
||||
msgstr ""
|
||||
|
||||
#: joy.rc:40
|
||||
msgid "Test Joystick"
|
||||
msgstr ""
|
||||
|
||||
#: joy.rc:47
|
||||
msgid "Test Force Feedback"
|
||||
msgstr ""
|
||||
|
||||
#: joy.rc:28
|
||||
#, fuzzy
|
||||
#| msgid "Create Control"
|
||||
msgid "Game Controllers"
|
||||
msgstr "Regado"
|
||||
|
||||
#: jscript.rc:25
|
||||
msgid "Error converting object to primitive type"
|
||||
msgstr ""
|
||||
|
18
po/es.po
18
po/es.po
@ -3450,6 +3450,24 @@ msgstr "Aumentada"
|
||||
msgid "High"
|
||||
msgstr "Alta"
|
||||
|
||||
#: joy.rc:33
|
||||
msgid "Joysticks"
|
||||
msgstr ""
|
||||
|
||||
#: joy.rc:40
|
||||
msgid "Test Joystick"
|
||||
msgstr ""
|
||||
|
||||
#: joy.rc:47
|
||||
msgid "Test Force Feedback"
|
||||
msgstr ""
|
||||
|
||||
#: joy.rc:28
|
||||
#, fuzzy
|
||||
#| msgid "Create Control"
|
||||
msgid "Game Controllers"
|
||||
msgstr "Crear control"
|
||||
|
||||
#: jscript.rc:25
|
||||
msgid "Error converting object to primitive type"
|
||||
msgstr "Error al convertir objeto a tipo primitivo"
|
||||
|
17
po/fa.po
17
po/fa.po
@ -3396,6 +3396,23 @@ msgstr ""
|
||||
msgid "High"
|
||||
msgstr ""
|
||||
|
||||
#: joy.rc:33
|
||||
msgid "Joysticks"
|
||||
msgstr ""
|
||||
|
||||
#: joy.rc:40
|
||||
msgid "Test Joystick"
|
||||
msgstr ""
|
||||
|
||||
#: joy.rc:47
|
||||
msgid "Test Force Feedback"
|
||||
msgstr ""
|
||||
|
||||
#: joy.rc:28
|
||||
#, fuzzy
|
||||
msgid "Game Controllers"
|
||||
msgstr "&محتویات"
|
||||
|
||||
#: jscript.rc:25
|
||||
msgid "Error converting object to primitive type"
|
||||
msgstr ""
|
||||
|
18
po/fi.po
18
po/fi.po
@ -3417,6 +3417,24 @@ msgstr "Korotettu"
|
||||
msgid "High"
|
||||
msgstr "Korkea"
|
||||
|
||||
#: joy.rc:33
|
||||
msgid "Joysticks"
|
||||
msgstr ""
|
||||
|
||||
#: joy.rc:40
|
||||
msgid "Test Joystick"
|
||||
msgstr ""
|
||||
|
||||
#: joy.rc:47
|
||||
msgid "Test Force Feedback"
|
||||
msgstr ""
|
||||
|
||||
#: joy.rc:28
|
||||
#, fuzzy
|
||||
#| msgid "Create Control"
|
||||
msgid "Game Controllers"
|
||||
msgstr "Luo kontrolli"
|
||||
|
||||
#: jscript.rc:25
|
||||
msgid "Error converting object to primitive type"
|
||||
msgstr "Virhe muunnettaessa objektia alkeistyypiksi"
|
||||
|
18
po/fr.po
18
po/fr.po
@ -3446,6 +3446,24 @@ msgstr "Augmentée"
|
||||
msgid "High"
|
||||
msgstr "Haute"
|
||||
|
||||
#: joy.rc:33
|
||||
msgid "Joysticks"
|
||||
msgstr ""
|
||||
|
||||
#: joy.rc:40
|
||||
msgid "Test Joystick"
|
||||
msgstr ""
|
||||
|
||||
#: joy.rc:47
|
||||
msgid "Test Force Feedback"
|
||||
msgstr ""
|
||||
|
||||
#: joy.rc:28
|
||||
#, fuzzy
|
||||
#| msgid "Create Control"
|
||||
msgid "Game Controllers"
|
||||
msgstr "Créer un contrôle"
|
||||
|
||||
#: jscript.rc:25
|
||||
msgid "Error converting object to primitive type"
|
||||
msgstr "Erreur lors de la conversion de l'objet vers un type primitif"
|
||||
|
18
po/he.po
18
po/he.po
@ -3413,6 +3413,24 @@ msgstr "מוגברת"
|
||||
msgid "High"
|
||||
msgstr "גבוהה"
|
||||
|
||||
#: joy.rc:33
|
||||
msgid "Joysticks"
|
||||
msgstr ""
|
||||
|
||||
#: joy.rc:40
|
||||
msgid "Test Joystick"
|
||||
msgstr ""
|
||||
|
||||
#: joy.rc:47
|
||||
msgid "Test Force Feedback"
|
||||
msgstr ""
|
||||
|
||||
#: joy.rc:28
|
||||
#, fuzzy
|
||||
#| msgid "Create Control"
|
||||
msgid "Game Controllers"
|
||||
msgstr "יצירת פקד"
|
||||
|
||||
#: jscript.rc:25
|
||||
msgid "Error converting object to primitive type"
|
||||
msgstr "שגיאה בהמרת הפריט לטיפוס פרימיטיבי"
|
||||
|
16
po/hi.po
16
po/hi.po
@ -3334,6 +3334,22 @@ msgstr ""
|
||||
msgid "High"
|
||||
msgstr ""
|
||||
|
||||
#: joy.rc:33
|
||||
msgid "Joysticks"
|
||||
msgstr ""
|
||||
|
||||
#: joy.rc:40
|
||||
msgid "Test Joystick"
|
||||
msgstr ""
|
||||
|
||||
#: joy.rc:47
|
||||
msgid "Test Force Feedback"
|
||||
msgstr ""
|
||||
|
||||
#: joy.rc:28
|
||||
msgid "Game Controllers"
|
||||
msgstr ""
|
||||
|
||||
#: jscript.rc:25
|
||||
msgid "Error converting object to primitive type"
|
||||
msgstr ""
|
||||
|
18
po/hu.po
18
po/hu.po
@ -3452,6 +3452,24 @@ msgstr "Megnövelt"
|
||||
msgid "High"
|
||||
msgstr "Magas"
|
||||
|
||||
#: joy.rc:33
|
||||
msgid "Joysticks"
|
||||
msgstr ""
|
||||
|
||||
#: joy.rc:40
|
||||
msgid "Test Joystick"
|
||||
msgstr ""
|
||||
|
||||
#: joy.rc:47
|
||||
msgid "Test Force Feedback"
|
||||
msgstr ""
|
||||
|
||||
#: joy.rc:28
|
||||
#, fuzzy
|
||||
#| msgid "Create Control"
|
||||
msgid "Game Controllers"
|
||||
msgstr "Vezérlő létrehozása"
|
||||
|
||||
#: jscript.rc:25
|
||||
msgid "Error converting object to primitive type"
|
||||
msgstr "Hiba az objektum primitív típusra való konvertálásánál"
|
||||
|
18
po/it.po
18
po/it.po
@ -3460,6 +3460,24 @@ msgstr "Aumentato"
|
||||
msgid "High"
|
||||
msgstr "Alta"
|
||||
|
||||
#: joy.rc:33
|
||||
msgid "Joysticks"
|
||||
msgstr ""
|
||||
|
||||
#: joy.rc:40
|
||||
msgid "Test Joystick"
|
||||
msgstr ""
|
||||
|
||||
#: joy.rc:47
|
||||
msgid "Test Force Feedback"
|
||||
msgstr ""
|
||||
|
||||
#: joy.rc:28
|
||||
#, fuzzy
|
||||
#| msgid "Create Control"
|
||||
msgid "Game Controllers"
|
||||
msgstr "Crea controllo"
|
||||
|
||||
#: jscript.rc:25
|
||||
msgid "Error converting object to primitive type"
|
||||
msgstr "Errore nel convertire un oggetto ad un tipo primitivo"
|
||||
|
18
po/ja.po
18
po/ja.po
@ -3425,6 +3425,24 @@ msgstr "中高"
|
||||
msgid "High"
|
||||
msgstr "高"
|
||||
|
||||
#: joy.rc:33
|
||||
msgid "Joysticks"
|
||||
msgstr ""
|
||||
|
||||
#: joy.rc:40
|
||||
msgid "Test Joystick"
|
||||
msgstr ""
|
||||
|
||||
#: joy.rc:47
|
||||
msgid "Test Force Feedback"
|
||||
msgstr ""
|
||||
|
||||
#: joy.rc:28
|
||||
#, fuzzy
|
||||
#| msgid "Create Control"
|
||||
msgid "Game Controllers"
|
||||
msgstr "コントロールを作成"
|
||||
|
||||
#: jscript.rc:25
|
||||
msgid "Error converting object to primitive type"
|
||||
msgstr "オブジェクトを基本型に変換できません"
|
||||
|
18
po/ko.po
18
po/ko.po
@ -3412,6 +3412,24 @@ msgstr "증가"
|
||||
msgid "High"
|
||||
msgstr "높음"
|
||||
|
||||
#: joy.rc:33
|
||||
msgid "Joysticks"
|
||||
msgstr ""
|
||||
|
||||
#: joy.rc:40
|
||||
msgid "Test Joystick"
|
||||
msgstr ""
|
||||
|
||||
#: joy.rc:47
|
||||
msgid "Test Force Feedback"
|
||||
msgstr ""
|
||||
|
||||
#: joy.rc:28
|
||||
#, fuzzy
|
||||
#| msgid "Create Control"
|
||||
msgid "Game Controllers"
|
||||
msgstr "컨트롤 만들기"
|
||||
|
||||
#: jscript.rc:25
|
||||
msgid "Error converting object to primitive type"
|
||||
msgstr "객페를 기본 형식으로 변환하는 중에 오류 발생"
|
||||
|
18
po/lt.po
18
po/lt.po
@ -3430,6 +3430,24 @@ msgstr "Padidintos"
|
||||
msgid "High"
|
||||
msgstr "Aukštos"
|
||||
|
||||
#: joy.rc:33
|
||||
msgid "Joysticks"
|
||||
msgstr ""
|
||||
|
||||
#: joy.rc:40
|
||||
msgid "Test Joystick"
|
||||
msgstr ""
|
||||
|
||||
#: joy.rc:47
|
||||
msgid "Test Force Feedback"
|
||||
msgstr ""
|
||||
|
||||
#: joy.rc:28
|
||||
#, fuzzy
|
||||
#| msgid "Create Control"
|
||||
msgid "Game Controllers"
|
||||
msgstr "Sukurti valdiklį"
|
||||
|
||||
#: jscript.rc:25
|
||||
msgid "Error converting object to primitive type"
|
||||
msgstr "Klaida keičiant objektą į primityvų tipą"
|
||||
|
16
po/ml.po
16
po/ml.po
@ -3334,6 +3334,22 @@ msgstr ""
|
||||
msgid "High"
|
||||
msgstr ""
|
||||
|
||||
#: joy.rc:33
|
||||
msgid "Joysticks"
|
||||
msgstr ""
|
||||
|
||||
#: joy.rc:40
|
||||
msgid "Test Joystick"
|
||||
msgstr ""
|
||||
|
||||
#: joy.rc:47
|
||||
msgid "Test Force Feedback"
|
||||
msgstr ""
|
||||
|
||||
#: joy.rc:28
|
||||
msgid "Game Controllers"
|
||||
msgstr ""
|
||||
|
||||
#: jscript.rc:25
|
||||
msgid "Error converting object to primitive type"
|
||||
msgstr ""
|
||||
|
18
po/nb_NO.po
18
po/nb_NO.po
@ -3586,6 +3586,24 @@ msgstr ""
|
||||
msgid "High"
|
||||
msgstr "&Høy"
|
||||
|
||||
#: joy.rc:33
|
||||
msgid "Joysticks"
|
||||
msgstr ""
|
||||
|
||||
#: joy.rc:40
|
||||
msgid "Test Joystick"
|
||||
msgstr ""
|
||||
|
||||
#: joy.rc:47
|
||||
msgid "Test Force Feedback"
|
||||
msgstr ""
|
||||
|
||||
#: joy.rc:28
|
||||
#, fuzzy
|
||||
#| msgid "Create Control"
|
||||
msgid "Game Controllers"
|
||||
msgstr "Opprett kontroller"
|
||||
|
||||
#: jscript.rc:25
|
||||
msgid "Error converting object to primitive type"
|
||||
msgstr "Klarte ikke konvertere objekt til primitiv type"
|
||||
|
18
po/nl.po
18
po/nl.po
@ -3477,6 +3477,24 @@ msgstr "Verhoogd"
|
||||
msgid "High"
|
||||
msgstr "Hoog"
|
||||
|
||||
#: joy.rc:33
|
||||
msgid "Joysticks"
|
||||
msgstr ""
|
||||
|
||||
#: joy.rc:40
|
||||
msgid "Test Joystick"
|
||||
msgstr ""
|
||||
|
||||
#: joy.rc:47
|
||||
msgid "Test Force Feedback"
|
||||
msgstr ""
|
||||
|
||||
#: joy.rc:28
|
||||
#, fuzzy
|
||||
#| msgid "Create Control"
|
||||
msgid "Game Controllers"
|
||||
msgstr "Creëren"
|
||||
|
||||
#: jscript.rc:25
|
||||
msgid "Error converting object to primitive type"
|
||||
msgstr "Fout bij het omzetten van het object naar een primitief type"
|
||||
|
16
po/or.po
16
po/or.po
@ -3334,6 +3334,22 @@ msgstr ""
|
||||
msgid "High"
|
||||
msgstr ""
|
||||
|
||||
#: joy.rc:33
|
||||
msgid "Joysticks"
|
||||
msgstr ""
|
||||
|
||||
#: joy.rc:40
|
||||
msgid "Test Joystick"
|
||||
msgstr ""
|
||||
|
||||
#: joy.rc:47
|
||||
msgid "Test Force Feedback"
|
||||
msgstr ""
|
||||
|
||||
#: joy.rc:28
|
||||
msgid "Game Controllers"
|
||||
msgstr ""
|
||||
|
||||
#: jscript.rc:25
|
||||
msgid "Error converting object to primitive type"
|
||||
msgstr ""
|
||||
|
16
po/pa.po
16
po/pa.po
@ -3334,6 +3334,22 @@ msgstr ""
|
||||
msgid "High"
|
||||
msgstr ""
|
||||
|
||||
#: joy.rc:33
|
||||
msgid "Joysticks"
|
||||
msgstr ""
|
||||
|
||||
#: joy.rc:40
|
||||
msgid "Test Joystick"
|
||||
msgstr ""
|
||||
|
||||
#: joy.rc:47
|
||||
msgid "Test Force Feedback"
|
||||
msgstr ""
|
||||
|
||||
#: joy.rc:28
|
||||
msgid "Game Controllers"
|
||||
msgstr ""
|
||||
|
||||
#: jscript.rc:25
|
||||
msgid "Error converting object to primitive type"
|
||||
msgstr ""
|
||||
|
18
po/pl.po
18
po/pl.po
@ -3454,6 +3454,24 @@ msgstr "Wysoki"
|
||||
msgid "High"
|
||||
msgstr "Najwyższy"
|
||||
|
||||
#: joy.rc:33
|
||||
msgid "Joysticks"
|
||||
msgstr ""
|
||||
|
||||
#: joy.rc:40
|
||||
msgid "Test Joystick"
|
||||
msgstr ""
|
||||
|
||||
#: joy.rc:47
|
||||
msgid "Test Force Feedback"
|
||||
msgstr ""
|
||||
|
||||
#: joy.rc:28
|
||||
#, fuzzy
|
||||
#| msgid "Create Control"
|
||||
msgid "Game Controllers"
|
||||
msgstr "Utwórz kontrolkę"
|
||||
|
||||
#: jscript.rc:25
|
||||
msgid "Error converting object to primitive type"
|
||||
msgstr "Błąd przy przekształcaniu obiektu do typu podstawowego"
|
||||
|
18
po/pt_BR.po
18
po/pt_BR.po
@ -3458,6 +3458,24 @@ msgstr "Elevada"
|
||||
msgid "High"
|
||||
msgstr "Alta"
|
||||
|
||||
#: joy.rc:33
|
||||
msgid "Joysticks"
|
||||
msgstr ""
|
||||
|
||||
#: joy.rc:40
|
||||
msgid "Test Joystick"
|
||||
msgstr ""
|
||||
|
||||
#: joy.rc:47
|
||||
msgid "Test Force Feedback"
|
||||
msgstr ""
|
||||
|
||||
#: joy.rc:28
|
||||
#, fuzzy
|
||||
#| msgid "Create Control"
|
||||
msgid "Game Controllers"
|
||||
msgstr "Criar controle"
|
||||
|
||||
#: jscript.rc:25
|
||||
msgid "Error converting object to primitive type"
|
||||
msgstr "Erro ao converter objeto em tipo primitivo"
|
||||
|
18
po/pt_PT.po
18
po/pt_PT.po
@ -3457,6 +3457,24 @@ msgstr "Aumentada"
|
||||
msgid "High"
|
||||
msgstr "Alta"
|
||||
|
||||
#: joy.rc:33
|
||||
msgid "Joysticks"
|
||||
msgstr ""
|
||||
|
||||
#: joy.rc:40
|
||||
msgid "Test Joystick"
|
||||
msgstr ""
|
||||
|
||||
#: joy.rc:47
|
||||
msgid "Test Force Feedback"
|
||||
msgstr ""
|
||||
|
||||
#: joy.rc:28
|
||||
#, fuzzy
|
||||
#| msgid "Create Control"
|
||||
msgid "Game Controllers"
|
||||
msgstr "Criar controlo"
|
||||
|
||||
#: jscript.rc:25
|
||||
msgid "Error converting object to primitive type"
|
||||
msgstr "Erro ao converter objecto em tipo primitivo"
|
||||
|
16
po/rm.po
16
po/rm.po
@ -3362,6 +3362,22 @@ msgstr ""
|
||||
msgid "High"
|
||||
msgstr ""
|
||||
|
||||
#: joy.rc:33
|
||||
msgid "Joysticks"
|
||||
msgstr ""
|
||||
|
||||
#: joy.rc:40
|
||||
msgid "Test Joystick"
|
||||
msgstr ""
|
||||
|
||||
#: joy.rc:47
|
||||
msgid "Test Force Feedback"
|
||||
msgstr ""
|
||||
|
||||
#: joy.rc:28
|
||||
msgid "Game Controllers"
|
||||
msgstr ""
|
||||
|
||||
#: jscript.rc:25
|
||||
msgid "Error converting object to primitive type"
|
||||
msgstr ""
|
||||
|
18
po/ro.po
18
po/ro.po
@ -3417,6 +3417,24 @@ msgstr ""
|
||||
msgid "High"
|
||||
msgstr "Înal&tă"
|
||||
|
||||
#: joy.rc:33
|
||||
msgid "Joysticks"
|
||||
msgstr ""
|
||||
|
||||
#: joy.rc:40
|
||||
msgid "Test Joystick"
|
||||
msgstr ""
|
||||
|
||||
#: joy.rc:47
|
||||
msgid "Test Force Feedback"
|
||||
msgstr ""
|
||||
|
||||
#: joy.rc:28
|
||||
#, fuzzy
|
||||
#| msgid "Create Control"
|
||||
msgid "Game Controllers"
|
||||
msgstr "Creează un control"
|
||||
|
||||
#: jscript.rc:25
|
||||
msgid "Error converting object to primitive type"
|
||||
msgstr "Eroare la convertirea obiectului la un tip primitiv"
|
||||
|
18
po/ru.po
18
po/ru.po
@ -3429,6 +3429,24 @@ msgstr "Повышенный"
|
||||
msgid "High"
|
||||
msgstr "Высокий"
|
||||
|
||||
#: joy.rc:33
|
||||
msgid "Joysticks"
|
||||
msgstr ""
|
||||
|
||||
#: joy.rc:40
|
||||
msgid "Test Joystick"
|
||||
msgstr ""
|
||||
|
||||
#: joy.rc:47
|
||||
msgid "Test Force Feedback"
|
||||
msgstr ""
|
||||
|
||||
#: joy.rc:28
|
||||
#, fuzzy
|
||||
#| msgid "Create Control"
|
||||
msgid "Game Controllers"
|
||||
msgstr "Создать элемент управления"
|
||||
|
||||
#: jscript.rc:25
|
||||
msgid "Error converting object to primitive type"
|
||||
msgstr "Ошибка конвертирования объекта в примитивный тип"
|
||||
|
16
po/sk.po
16
po/sk.po
@ -3360,6 +3360,22 @@ msgstr "Zvýšené"
|
||||
msgid "High"
|
||||
msgstr "Vysoké"
|
||||
|
||||
#: joy.rc:33
|
||||
msgid "Joysticks"
|
||||
msgstr ""
|
||||
|
||||
#: joy.rc:40
|
||||
msgid "Test Joystick"
|
||||
msgstr ""
|
||||
|
||||
#: joy.rc:47
|
||||
msgid "Test Force Feedback"
|
||||
msgstr ""
|
||||
|
||||
#: joy.rc:28
|
||||
msgid "Game Controllers"
|
||||
msgstr ""
|
||||
|
||||
#: jscript.rc:25
|
||||
msgid "Error converting object to primitive type"
|
||||
msgstr ""
|
||||
|
18
po/sl.po
18
po/sl.po
@ -3449,6 +3449,24 @@ msgstr "Povečano"
|
||||
msgid "High"
|
||||
msgstr "Visoka"
|
||||
|
||||
#: joy.rc:33
|
||||
msgid "Joysticks"
|
||||
msgstr ""
|
||||
|
||||
#: joy.rc:40
|
||||
msgid "Test Joystick"
|
||||
msgstr ""
|
||||
|
||||
#: joy.rc:47
|
||||
msgid "Test Force Feedback"
|
||||
msgstr ""
|
||||
|
||||
#: joy.rc:28
|
||||
#, fuzzy
|
||||
#| msgid "Create Control"
|
||||
msgid "Game Controllers"
|
||||
msgstr "Ustvari nadzornik"
|
||||
|
||||
#: jscript.rc:25
|
||||
msgid "Error converting object to primitive type"
|
||||
msgstr "Napaka med pretvarjanjem predmeta v primitivno vrsto"
|
||||
|
@ -3449,6 +3449,24 @@ msgstr ""
|
||||
msgid "High"
|
||||
msgstr ""
|
||||
|
||||
#: joy.rc:33
|
||||
msgid "Joysticks"
|
||||
msgstr ""
|
||||
|
||||
#: joy.rc:40
|
||||
msgid "Test Joystick"
|
||||
msgstr ""
|
||||
|
||||
#: joy.rc:47
|
||||
msgid "Test Force Feedback"
|
||||
msgstr ""
|
||||
|
||||
#: joy.rc:28
|
||||
#, fuzzy
|
||||
#| msgid "Create Control"
|
||||
msgid "Game Controllers"
|
||||
msgstr "Направи контролу"
|
||||
|
||||
#: jscript.rc:25
|
||||
msgid "Error converting object to primitive type"
|
||||
msgstr "Грешка у претварању објекта у основну врсту"
|
||||
|
@ -3527,6 +3527,24 @@ msgstr ""
|
||||
msgid "High"
|
||||
msgstr ""
|
||||
|
||||
#: joy.rc:33
|
||||
msgid "Joysticks"
|
||||
msgstr ""
|
||||
|
||||
#: joy.rc:40
|
||||
msgid "Test Joystick"
|
||||
msgstr ""
|
||||
|
||||
#: joy.rc:47
|
||||
msgid "Test Force Feedback"
|
||||
msgstr ""
|
||||
|
||||
#: joy.rc:28
|
||||
#, fuzzy
|
||||
#| msgid "Create Control"
|
||||
msgid "Game Controllers"
|
||||
msgstr "Napravi kontrolu"
|
||||
|
||||
#: jscript.rc:25
|
||||
msgid "Error converting object to primitive type"
|
||||
msgstr "Greška u pretvaranju objekta u osnovnu vrstu"
|
||||
|
18
po/sv.po
18
po/sv.po
@ -3412,6 +3412,24 @@ msgstr "Ökad"
|
||||
msgid "High"
|
||||
msgstr "Hög"
|
||||
|
||||
#: joy.rc:33
|
||||
msgid "Joysticks"
|
||||
msgstr ""
|
||||
|
||||
#: joy.rc:40
|
||||
msgid "Test Joystick"
|
||||
msgstr ""
|
||||
|
||||
#: joy.rc:47
|
||||
msgid "Test Force Feedback"
|
||||
msgstr ""
|
||||
|
||||
#: joy.rc:28
|
||||
#, fuzzy
|
||||
#| msgid "Create Control"
|
||||
msgid "Game Controllers"
|
||||
msgstr "Create Control"
|
||||
|
||||
#: jscript.rc:25
|
||||
msgid "Error converting object to primitive type"
|
||||
msgstr "Kunde inte konvertera objekt till primitiv typ"
|
||||
|
16
po/te.po
16
po/te.po
@ -3334,6 +3334,22 @@ msgstr ""
|
||||
msgid "High"
|
||||
msgstr ""
|
||||
|
||||
#: joy.rc:33
|
||||
msgid "Joysticks"
|
||||
msgstr ""
|
||||
|
||||
#: joy.rc:40
|
||||
msgid "Test Joystick"
|
||||
msgstr ""
|
||||
|
||||
#: joy.rc:47
|
||||
msgid "Test Force Feedback"
|
||||
msgstr ""
|
||||
|
||||
#: joy.rc:28
|
||||
msgid "Game Controllers"
|
||||
msgstr ""
|
||||
|
||||
#: jscript.rc:25
|
||||
msgid "Error converting object to primitive type"
|
||||
msgstr ""
|
||||
|
17
po/th.po
17
po/th.po
@ -3372,6 +3372,23 @@ msgstr ""
|
||||
msgid "High"
|
||||
msgstr ""
|
||||
|
||||
#: joy.rc:33
|
||||
msgid "Joysticks"
|
||||
msgstr ""
|
||||
|
||||
#: joy.rc:40
|
||||
msgid "Test Joystick"
|
||||
msgstr ""
|
||||
|
||||
#: joy.rc:47
|
||||
msgid "Test Force Feedback"
|
||||
msgstr ""
|
||||
|
||||
#: joy.rc:28
|
||||
#, fuzzy
|
||||
msgid "Game Controllers"
|
||||
msgstr "เนื้อหา"
|
||||
|
||||
#: jscript.rc:25
|
||||
msgid "Error converting object to primitive type"
|
||||
msgstr ""
|
||||
|
18
po/tr.po
18
po/tr.po
@ -3321,6 +3321,24 @@ msgstr ""
|
||||
msgid "High"
|
||||
msgstr "Yüksek"
|
||||
|
||||
#: joy.rc:33
|
||||
msgid "Joysticks"
|
||||
msgstr ""
|
||||
|
||||
#: joy.rc:40
|
||||
msgid "Test Joystick"
|
||||
msgstr ""
|
||||
|
||||
#: joy.rc:47
|
||||
msgid "Test Force Feedback"
|
||||
msgstr ""
|
||||
|
||||
#: joy.rc:28
|
||||
#, fuzzy
|
||||
#| msgid "Create Control"
|
||||
msgid "Game Controllers"
|
||||
msgstr "Denetim Oluştur"
|
||||
|
||||
#: jscript.rc:25
|
||||
msgid "Error converting object to primitive type"
|
||||
msgstr ""
|
||||
|
18
po/uk.po
18
po/uk.po
@ -3443,6 +3443,24 @@ msgstr "Збільшений"
|
||||
msgid "High"
|
||||
msgstr "Висока"
|
||||
|
||||
#: joy.rc:33
|
||||
msgid "Joysticks"
|
||||
msgstr ""
|
||||
|
||||
#: joy.rc:40
|
||||
msgid "Test Joystick"
|
||||
msgstr ""
|
||||
|
||||
#: joy.rc:47
|
||||
msgid "Test Force Feedback"
|
||||
msgstr ""
|
||||
|
||||
#: joy.rc:28
|
||||
#, fuzzy
|
||||
#| msgid "Create Control"
|
||||
msgid "Game Controllers"
|
||||
msgstr "Створити елемент управління"
|
||||
|
||||
#: jscript.rc:25
|
||||
msgid "Error converting object to primitive type"
|
||||
msgstr "Помилка конвертування об'єкту в примітивний тип"
|
||||
|
16
po/wa.po
16
po/wa.po
@ -3381,6 +3381,22 @@ msgstr ""
|
||||
msgid "High"
|
||||
msgstr ""
|
||||
|
||||
#: joy.rc:33
|
||||
msgid "Joysticks"
|
||||
msgstr ""
|
||||
|
||||
#: joy.rc:40
|
||||
msgid "Test Joystick"
|
||||
msgstr ""
|
||||
|
||||
#: joy.rc:47
|
||||
msgid "Test Force Feedback"
|
||||
msgstr ""
|
||||
|
||||
#: joy.rc:28
|
||||
msgid "Game Controllers"
|
||||
msgstr ""
|
||||
|
||||
#: jscript.rc:25
|
||||
msgid "Error converting object to primitive type"
|
||||
msgstr ""
|
||||
|
16
po/wine.pot
16
po/wine.pot
@ -3296,6 +3296,22 @@ msgstr ""
|
||||
msgid "High"
|
||||
msgstr ""
|
||||
|
||||
#: joy.rc:33
|
||||
msgid "Joysticks"
|
||||
msgstr ""
|
||||
|
||||
#: joy.rc:40
|
||||
msgid "Test Joystick"
|
||||
msgstr ""
|
||||
|
||||
#: joy.rc:47
|
||||
msgid "Test Force Feedback"
|
||||
msgstr ""
|
||||
|
||||
#: joy.rc:28
|
||||
msgid "Game Controllers"
|
||||
msgstr ""
|
||||
|
||||
#: jscript.rc:25
|
||||
msgid "Error converting object to primitive type"
|
||||
msgstr ""
|
||||
|
18
po/zh_CN.po
18
po/zh_CN.po
@ -3336,6 +3336,24 @@ msgstr ""
|
||||
msgid "High"
|
||||
msgstr "高"
|
||||
|
||||
#: joy.rc:33
|
||||
msgid "Joysticks"
|
||||
msgstr ""
|
||||
|
||||
#: joy.rc:40
|
||||
msgid "Test Joystick"
|
||||
msgstr ""
|
||||
|
||||
#: joy.rc:47
|
||||
msgid "Test Force Feedback"
|
||||
msgstr ""
|
||||
|
||||
#: joy.rc:28
|
||||
#, fuzzy
|
||||
#| msgid "Create Control"
|
||||
msgid "Game Controllers"
|
||||
msgstr "建立控件"
|
||||
|
||||
#: jscript.rc:25
|
||||
msgid "Error converting object to primitive type"
|
||||
msgstr ""
|
||||
|
18
po/zh_TW.po
18
po/zh_TW.po
@ -3340,6 +3340,24 @@ msgstr ""
|
||||
msgid "High"
|
||||
msgstr "高"
|
||||
|
||||
#: joy.rc:33
|
||||
msgid "Joysticks"
|
||||
msgstr ""
|
||||
|
||||
#: joy.rc:40
|
||||
msgid "Test Joystick"
|
||||
msgstr ""
|
||||
|
||||
#: joy.rc:47
|
||||
msgid "Test Force Feedback"
|
||||
msgstr ""
|
||||
|
||||
#: joy.rc:28
|
||||
#, fuzzy
|
||||
#| msgid "Create Control"
|
||||
msgid "Game Controllers"
|
||||
msgstr "建立控制項"
|
||||
|
||||
#: jscript.rc:25
|
||||
msgid "Error converting object to primitive type"
|
||||
msgstr ""
|
||||
|
Loading…
Reference in New Issue
Block a user