dinput: Added ConfigureDevices dialog.

This commit is contained in:
Lucas Fialho Zawacki 2011-09-01 15:34:35 -03:00 committed by Alexandre Julliard
parent 27e1d5adb7
commit 0ae4710926
54 changed files with 559 additions and 5 deletions

2
configure vendored
View File

@ -14774,7 +14774,7 @@ wine_fn_config_test dlls/ddraw/tests ddraw_test
wine_fn_config_dll ddrawex enable_ddrawex
wine_fn_config_test dlls/ddrawex/tests ddrawex_test
wine_fn_config_dll devenum enable_devenum po
wine_fn_config_dll dinput enable_dinput implib,staticimplib
wine_fn_config_dll dinput enable_dinput implib,po,staticimplib
wine_fn_config_test dlls/dinput/tests dinput_test
wine_fn_config_dll dinput8 enable_dinput8 implib
wine_fn_config_test dlls/dinput8/tests dinput8_test

View File

@ -2467,7 +2467,7 @@ WINE_CONFIG_TEST(dlls/ddraw/tests)
WINE_CONFIG_DLL(ddrawex)
WINE_CONFIG_TEST(dlls/ddrawex/tests)
WINE_CONFIG_DLL(devenum,,[po])
WINE_CONFIG_DLL(dinput,,[implib,staticimplib])
WINE_CONFIG_DLL(dinput,,[implib,po,staticimplib])
WINE_CONFIG_TEST(dlls/dinput/tests)
WINE_CONFIG_DLL(dinput8,,[implib])
WINE_CONFIG_TEST(dlls/dinput8/tests)

View File

@ -1,9 +1,10 @@
MODULE = dinput.dll
IMPORTLIB = dinput
IMPORTS = dxguid uuid ole32 user32 advapi32
IMPORTS = dxguid uuid comctl32 ole32 user32 advapi32
EXTRALIBS = @IOKITLIB@
C_SRCS = \
config.c \
data_formats.c \
device.c \
dinput_main.c \
@ -19,6 +20,10 @@ IMPLIB_SRCS = data_formats.c
IDL_R_SRCS = dinput_classes.idl
RC_SRCS = version.rc
PO_SRCS = dinput.rc
RC_SRCS = \
dinput.rc \
dinput_En.rc
@MAKE_DLL_RULES@

40
dlls/dinput/config.c Normal file
View File

@ -0,0 +1,40 @@
/*
* Copyright (c) 2011 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 "wine/debug.h"
#include "wine/unicode.h"
#include "objbase.h"
#include "dinput_private.h"
#include "device_private.h"
#include "resource.h"
WINE_DEFAULT_DEBUG_CHANNEL(dinput);
HRESULT _configure_devices(IDirectInput8W *iface,
LPDICONFIGUREDEVICESCALLBACK lpdiCallback,
LPDICONFIGUREDEVICESPARAMSW lpdiCDParams,
DWORD dwFlags,
LPVOID pvRefData
)
{
InitCommonControls();
DialogBoxParamW(GetModuleHandleA("dinput.dll"), (LPCWSTR) MAKEINTRESOURCE(IDD_CONFIGUREDEVICES), lpdiCDParams->hwnd, 0, 0);
return DI_OK;
}

View File

@ -16,6 +16,8 @@
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
*/
#include "resource.h"
#define WINE_FILEDESCRIPTION_STR "Wine DirectInput"
#define WINE_FILENAME_STR "dinput.dll"
#define WINE_FILEVERSION 5,1,2600,881
@ -24,3 +26,11 @@
#define WINE_PRODUCTVERSION_STR "5.1"
#include "wine/wine_common_ver.rc"
LANGUAGE LANG_ENGLISH, SUBLANG_DEFAULT
STRINGTABLE
BEGIN
IDS_ACTIONCOLUMN "Action"
IDS_OBJECTCOLUMN "Object"
END

40
dlls/dinput/dinput_En.rc Normal file
View File

@ -0,0 +1,40 @@
/*
* Copyright (c) 2011 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 "resource.h"
LANGUAGE LANG_ENGLISH, SUBLANG_DEFAULT
IDD_CONFIGUREDEVICES DIALOG 0, 0, 270, 260
STYLE DS_CENTER | DS_MODALFRAME | DS_SHELLFONT | WS_CAPTION | WS_VISIBLE
CAPTION "Configure Devices"
FONT 8, "Ms Shell Dlg"
{
DEFPUSHBUTTON "OK", IDOK, 10, 236, 50, 14
DEFPUSHBUTTON "Cancel", IDCANCEL, 65, 236, 50, 14
DEFPUSHBUTTON "Reset", IDC_RESET, 210, 236, 50, 14
COMBOBOX IDC_PLAYERCOMBO, 10, 50, 90, 30, CBS_DROPDOWNLIST | CBS_HASSTRINGS
COMBOBOX IDC_CONTROLLERCOMBO, 10, 20, 90, 30, CBS_DROPDOWNLIST | CBS_HASSTRINGS
LTEXT "Player", IDC_PLAYERTEXT, 10, 40, 21, 8, SS_LEFT
LTEXT "Device", IDC_DEVICETEXT, 10, 10, 22, 8, SS_LEFT
LTEXT "Actions", IDC_ACTIONTEXT, 10, 70, 24, 8, SS_LEFT
LTEXT "Mapping", IDC_MAPPINGTEXT, 120, 8, 28, 8, SS_LEFT
LISTBOX IDC_ACTIONLIST, 10, 80, 90, 130, WS_TABSTOP | WS_VSCROLL | LBS_NOINTEGRALHEIGHT | LBS_NOTIFY
AUTOCHECKBOX "Sort Assigned", IDC_CHECKBOXSORT, 120, 215, 60, 8
CONTROL "Listview", IDC_DEVICEOBJECTSLIST, "SysListView32", LVS_REPORT | LVS_AUTOARRANGE | LVS_ALIGNLEFT | LVS_SHOWSELALWAYS | LVS_SINGLESEL | WS_BORDER | WS_TABSTOP, 120, 20, 140, 190
}

View File

@ -1008,7 +1008,8 @@ static HRESULT WINAPI IDirectInput8WImpl_ConfigureDevices(
FIXME("(this=%p,%p,%p,%04x,%p): stub\n", This, lpdiCallback, lpdiCDParams, dwFlags, pvRefData);
return DI_OK;
/* Call helper function in config.c to do the real work */
return _configure_devices(iface, lpdiCallback, lpdiCDParams, dwFlags, pvRefData);
}
static HRESULT WINAPI IDirectInput8AImpl_ConfigureDevices(

View File

@ -66,6 +66,8 @@ typedef int (*DI_EVENT_PROC)(LPDIRECTINPUTDEVICE8A, WPARAM, LPARAM);
extern void _copy_diactionformatAtoW(LPDIACTIONFORMATW, LPDIACTIONFORMATA) DECLSPEC_HIDDEN;
extern void _copy_diactionformatWtoA(LPDIACTIONFORMATA, LPDIACTIONFORMATW) DECLSPEC_HIDDEN;
extern HRESULT _configure_devices(IDirectInput8W *iface, LPDICONFIGUREDEVICESCALLBACK lpdiCallback, LPDICONFIGUREDEVICESPARAMSW lpdiCDParams, DWORD dwFlags, LPVOID pvRefData) DECLSPEC_HIDDEN;
#define IS_DIPROP(x) (((ULONG_PTR)(x) >> 16) == 0)
#define DIKEYBOARD_MASK 0x81000000

35
dlls/dinput/resource.h Normal file
View File

@ -0,0 +1,35 @@
/*
* Copyright (c) 2011 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 "shlobj.h"
#define IDD_CONFIGUREDEVICES 1
#define IDC_DEVICETEXT 20
#define IDC_RESET 21
#define IDC_ACTIONTEXT 22
#define IDC_PLAYERTEXT 23
#define IDC_DEVICEOBJECTSTEXT 24
#define IDC_CONTROLLERCOMBO 25
#define IDC_PLAYERCOMBO 26
#define IDC_ACTIONLIST 27
#define IDC_DEVICEOBJECTSLIST 28
#define IDC_CHECKBOXSORT 29
#define IDC_MAPPINGTEXT 30
#define IDS_ACTIONCOLUMN 31
#define IDS_OBJECTCOLUMN 32

View File

@ -1975,6 +1975,15 @@ msgstr ""
msgid "Default MidiOut Device"
msgstr ""
#: dinput.rc:34
#, fuzzy
msgid "Action"
msgstr "معلومات"
#: dinput.rc:35
msgid "Object"
msgstr ""
#: dxdiagn.rc:25
msgid "Regional Setting"
msgstr ""

View File

@ -1990,6 +1990,15 @@ msgstr ""
msgid "Default MidiOut Device"
msgstr ""
#: dinput.rc:34
#, fuzzy
msgid "Action"
msgstr "LAN връзка"
#: dinput.rc:35
msgid "Object"
msgstr ""
#: dxdiagn.rc:25
#, fuzzy
msgid "Regional Setting"

View File

@ -1951,6 +1951,14 @@ msgstr ""
msgid "Default MidiOut Device"
msgstr ""
#: dinput.rc:34
msgid "Action"
msgstr ""
#: dinput.rc:35
msgid "Object"
msgstr ""
#: dxdiagn.rc:25
msgid "Regional Setting"
msgstr ""

View File

@ -2037,6 +2037,15 @@ msgstr "Standardní zařízení WaveOut"
msgid "Default MidiOut Device"
msgstr "Standardní zařízení MidiOut"
#: dinput.rc:34
#, fuzzy
msgid "Action"
msgstr "Volby"
#: dinput.rc:35
msgid "Object"
msgstr ""
#: dxdiagn.rc:25
#, fuzzy
msgid "Regional Setting"

View File

@ -2042,6 +2042,16 @@ msgstr "Standard WaveOut Enhed"
msgid "Default MidiOut Device"
msgstr "Standard MidiOut Enhed"
#: dinput.rc:34
#, fuzzy
msgid "Action"
msgstr "Aktivering"
#: dinput.rc:35
#, fuzzy
msgid "Object"
msgstr "&Objekt"
#: dxdiagn.rc:25
#, fuzzy
msgid "Regional Setting"

View File

@ -2019,6 +2019,16 @@ msgstr "Standard WaveOut - Gerät"
msgid "Default MidiOut Device"
msgstr "Standard MidiOut - Gerät"
#: dinput.rc:34
#, fuzzy
msgid "Action"
msgstr "Aktivierung"
#: dinput.rc:35
#, fuzzy
msgid "Object"
msgstr "&Objekt"
#: dxdiagn.rc:25
msgid "Regional Setting"
msgstr "Regionale Einstellungen"

View File

@ -1979,6 +1979,15 @@ msgstr ""
msgid "Default MidiOut Device"
msgstr ""
#: dinput.rc:34
#, fuzzy
msgid "Action"
msgstr "Επιλογές"
#: dinput.rc:35
msgid "Object"
msgstr ""
#: dxdiagn.rc:25
msgid "Regional Setting"
msgstr ""

View File

@ -1953,6 +1953,14 @@ msgstr "Default WaveOut Device"
msgid "Default MidiOut Device"
msgstr "Default MidiOut Device"
#: dinput.rc:34
msgid "Action"
msgstr "Action"
#: dinput.rc:35
msgid "Object"
msgstr "Object"
#: dxdiagn.rc:25
msgid "Regional Setting"
msgstr "Regional Setting"

View File

@ -2017,6 +2017,14 @@ msgstr "Default WaveOut Device"
msgid "Default MidiOut Device"
msgstr "Default MidiOut Device"
#: dinput.rc:34
msgid "Action"
msgstr "Action"
#: dinput.rc:35
msgid "Object"
msgstr "Object"
#: dxdiagn.rc:25
msgid "Regional Setting"
msgstr "Regional Setting"

View File

@ -2000,6 +2000,15 @@ msgstr ""
msgid "Default MidiOut Device"
msgstr ""
#: dinput.rc:34
#, fuzzy
msgid "Action"
msgstr "LAN Interkonekto"
#: dinput.rc:35
msgid "Object"
msgstr ""
#: dxdiagn.rc:25
#, fuzzy
msgid "Regional Setting"

View File

@ -2033,6 +2033,16 @@ msgstr "Dispositivo WaveOut por defecto"
msgid "Default MidiOut Device"
msgstr "Dispositivo MidiOut por defecto"
#: dinput.rc:34
#, fuzzy
msgid "Action"
msgstr "Ubicación"
#: dinput.rc:35
#, fuzzy
msgid "Object"
msgstr "No existe dicho objeto"
#: dxdiagn.rc:25
#, fuzzy
msgid "Regional Setting"

View File

@ -1975,6 +1975,15 @@ msgstr ""
msgid "Default MidiOut Device"
msgstr ""
#: dinput.rc:34
#, fuzzy
msgid "Action"
msgstr "اطلاعات"
#: dinput.rc:35
msgid "Object"
msgstr ""
#: dxdiagn.rc:25
msgid "Regional Setting"
msgstr ""

View File

@ -1993,6 +1993,15 @@ msgstr ""
msgid "Default MidiOut Device"
msgstr ""
#: dinput.rc:34
#, fuzzy
msgid "Action"
msgstr "Sijainti"
#: dinput.rc:35
msgid "Object"
msgstr ""
#: dxdiagn.rc:25
#, fuzzy
msgid "Regional Setting"

View File

@ -2028,6 +2028,16 @@ msgstr "Périphérique WaveOut par défaut"
msgid "Default MidiOut Device"
msgstr "Périphérique MidiOut par défaut"
#: dinput.rc:34
#, fuzzy
msgid "Action"
msgstr "Activation"
#: dinput.rc:35
#, fuzzy
msgid "Object"
msgstr "&Objet"
#: dxdiagn.rc:25
msgid "Regional Setting"
msgstr "Paramètres régionaux"

View File

@ -1984,6 +1984,16 @@ msgstr "התקן ה־WaveOut כבררת מחדל"
msgid "Default MidiOut Device"
msgstr "התקן ה־MidiOut כבררת מחדל"
#: dinput.rc:34
#, fuzzy
msgid "Action"
msgstr "הפעלה"
#: dinput.rc:35
#, fuzzy
msgid "Object"
msgstr "&עצם"
#: dxdiagn.rc:25
msgid "Regional Setting"
msgstr "הגדרות אזוריות"

View File

@ -1955,6 +1955,14 @@ msgstr ""
msgid "Default MidiOut Device"
msgstr ""
#: dinput.rc:34
msgid "Action"
msgstr ""
#: dinput.rc:35
msgid "Object"
msgstr ""
#: dxdiagn.rc:25
msgid "Regional Setting"
msgstr ""

View File

@ -2060,6 +2060,16 @@ msgstr "Alapértelmezett WaveOut eszköz"
msgid "Default MidiOut Device"
msgstr "Alapértelmezett MidiOut eszköz"
#: dinput.rc:34
#, fuzzy
msgid "Action"
msgstr "Hely"
#: dinput.rc:35
#, fuzzy
msgid "Object"
msgstr "Tárgy típus="
#: dxdiagn.rc:25
msgid "Regional Setting"
msgstr ""

View File

@ -2131,6 +2131,16 @@ msgstr "Dispositivo WaveOut predefinito"
msgid "Default MidiOut Device"
msgstr "Dispositivo MidiOut predefinito"
#: dinput.rc:34
#, fuzzy
msgid "Action"
msgstr "Attivazione"
#: dinput.rc:35
#, fuzzy
msgid "Object"
msgstr "&Elemento"
#: dxdiagn.rc:25
#, fuzzy
msgid "Regional Setting"

View File

@ -2015,6 +2015,16 @@ msgstr "デフォルト WaveOut デバイス"
msgid "Default MidiOut Device"
msgstr "デフォルト MidiOut デバイス"
#: dinput.rc:34
#, fuzzy
msgid "Action"
msgstr "Activation"
#: dinput.rc:35
#, fuzzy
msgid "Object"
msgstr "オブジェクト(&O)"
#: dxdiagn.rc:25
msgid "Regional Setting"
msgstr "地域の設定"

View File

@ -2015,6 +2015,16 @@ msgstr "기본 웨이브 출력 장치"
msgid "Default MidiOut Device"
msgstr "기본 미디출력 장치"
#: dinput.rc:34
#, fuzzy
msgid "Action"
msgstr "Activation"
#: dinput.rc:35
#, fuzzy
msgid "Object"
msgstr "객체(&O)"
#: dxdiagn.rc:25
msgid "Regional Setting"
msgstr "지역 설정"

View File

@ -2025,6 +2025,16 @@ msgstr "Numatytasis WaveOut įrenginys"
msgid "Default MidiOut Device"
msgstr "Numatytasis MidiOut įrenginys"
#: dinput.rc:34
#, fuzzy
msgid "Action"
msgstr "Aktyvinimas"
#: dinput.rc:35
#, fuzzy
msgid "Object"
msgstr "&Objektas"
#: dxdiagn.rc:25
msgid "Regional Setting"
msgstr "Regiono nuostatos"

View File

@ -1955,6 +1955,14 @@ msgstr ""
msgid "Default MidiOut Device"
msgstr ""
#: dinput.rc:34
msgid "Action"
msgstr ""
#: dinput.rc:35
msgid "Object"
msgstr ""
#: dxdiagn.rc:25
msgid "Regional Setting"
msgstr ""

View File

@ -2119,6 +2119,16 @@ msgstr "Standard enhet for lydavspilling"
msgid "Default MidiOut Device"
msgstr "Standard enhet for MIDI-avspilling"
#: dinput.rc:34
#, fuzzy
msgid "Action"
msgstr "Aktivering"
#: dinput.rc:35
#, fuzzy
msgid "Object"
msgstr "&Objekt"
#: dxdiagn.rc:25
#, fuzzy
msgid "Regional Setting"

View File

@ -2036,6 +2036,16 @@ msgstr "Standaardapparaat WaveOut"
msgid "Default MidiOut Device"
msgstr "Standaardapparaat MidiOut"
#: dinput.rc:34
#, fuzzy
msgid "Action"
msgstr "Activatie"
#: dinput.rc:35
#, fuzzy
msgid "Object"
msgstr "&Object"
#: dxdiagn.rc:25
#, fuzzy
msgid "Regional Setting"

View File

@ -1955,6 +1955,14 @@ msgstr ""
msgid "Default MidiOut Device"
msgstr ""
#: dinput.rc:34
msgid "Action"
msgstr ""
#: dinput.rc:35
msgid "Object"
msgstr ""
#: dxdiagn.rc:25
msgid "Regional Setting"
msgstr ""

View File

@ -1955,6 +1955,14 @@ msgstr ""
msgid "Default MidiOut Device"
msgstr ""
#: dinput.rc:34
msgid "Action"
msgstr ""
#: dinput.rc:35
msgid "Object"
msgstr ""
#: dxdiagn.rc:25
msgid "Regional Setting"
msgstr ""

View File

@ -2026,6 +2026,16 @@ msgstr "Standardowe urządzenie WaveOut"
msgid "Default MidiOut Device"
msgstr "Standardowe urządzenie Device"
#: dinput.rc:34
#, fuzzy
msgid "Action"
msgstr "Aktywacja"
#: dinput.rc:35
#, fuzzy
msgid "Object"
msgstr "&Obiekt"
#: dxdiagn.rc:25
msgid "Regional Setting"
msgstr "Ustawienia regionalne"

View File

@ -2118,6 +2118,16 @@ msgstr "Dispositivo padrão WaveOut"
msgid "Default MidiOut Device"
msgstr "Dispositivo padrão MidiOut"
#: dinput.rc:34
#, fuzzy
msgid "Action"
msgstr "Ativação"
#: dinput.rc:35
#, fuzzy
msgid "Object"
msgstr "&Objeto"
#: dxdiagn.rc:25
#, fuzzy
msgid "Regional Setting"

View File

@ -2132,6 +2132,16 @@ msgstr "Dispositivo padrão WaveOut"
msgid "Default MidiOut Device"
msgstr "Dispositivo padrão MidiOut"
#: dinput.rc:34
#, fuzzy
msgid "Action"
msgstr "Activação"
#: dinput.rc:35
#, fuzzy
msgid "Object"
msgstr "&Objecto"
#: dxdiagn.rc:25
#, fuzzy
msgid "Regional Setting"

View File

@ -1967,6 +1967,15 @@ msgstr ""
msgid "Default MidiOut Device"
msgstr ""
#: dinput.rc:34
#, fuzzy
msgid "Action"
msgstr "&Options"
#: dinput.rc:35
msgid "Object"
msgstr ""
#: dxdiagn.rc:25
#, fuzzy
msgid "Regional Setting"

View File

@ -2177,6 +2177,16 @@ msgstr "Dispozitiv WaveOut implicit"
msgid "Default MidiOut Device"
msgstr "Dispozitiv MidiOut implicit"
#: dinput.rc:34
#, fuzzy
msgid "Action"
msgstr "Activare"
#: dinput.rc:35
#, fuzzy
msgid "Object"
msgstr "&Obiect"
#: dxdiagn.rc:25
#, fuzzy
msgid "Regional Setting"

View File

@ -2021,6 +2021,16 @@ msgstr "Звуковое устройство вывода по умолчани
msgid "Default MidiOut Device"
msgstr "Устройство вывода MIDI по умолчанию"
#: dinput.rc:34
#, fuzzy
msgid "Action"
msgstr "Activation"
#: dinput.rc:35
#, fuzzy
msgid "Object"
msgstr "&Объект"
#: dxdiagn.rc:25
msgid "Regional Setting"
msgstr "Региональные настройки"

View File

@ -1981,6 +1981,15 @@ msgstr ""
msgid "Default MidiOut Device"
msgstr ""
#: dinput.rc:34
#, fuzzy
msgid "Action"
msgstr "Informácie"
#: dinput.rc:35
msgid "Object"
msgstr ""
#: dxdiagn.rc:25
#, fuzzy
msgid "Regional Setting"

View File

@ -2030,6 +2030,16 @@ msgstr "Privzeta naprava WaveIzh"
msgid "Default MidiOut Device"
msgstr "Privzeta naprava MidiIzh"
#: dinput.rc:34
#, fuzzy
msgid "Action"
msgstr "Omogočenje"
#: dinput.rc:35
#, fuzzy
msgid "Object"
msgstr "&Predmet"
#: dxdiagn.rc:25
#, fuzzy
msgid "Regional Setting"

View File

@ -2010,6 +2010,16 @@ msgstr "Подразумевани WaveOut уређај"
msgid "Default MidiOut Device"
msgstr "Подразумевани MidiOut уређај"
#: dinput.rc:34
#, fuzzy
msgid "Action"
msgstr "Локација"
#: dinput.rc:35
#, fuzzy
msgid "Object"
msgstr "Не постоји такав објекат"
#: dxdiagn.rc:25
#, fuzzy
msgid "Regional Setting"

View File

@ -2037,6 +2037,16 @@ msgstr "Podrazumevani WaveOut uređaj"
msgid "Default MidiOut Device"
msgstr "Podrazumevani MidiOut uređaj"
#: dinput.rc:34
#, fuzzy
msgid "Action"
msgstr "Lokacija"
#: dinput.rc:35
#, fuzzy
msgid "Object"
msgstr "Ne postoji takav objekat"
#: dxdiagn.rc:25
#, fuzzy
msgid "Regional Setting"

View File

@ -2028,6 +2028,16 @@ msgstr "Förvald WaveOut-enhet"
msgid "Default MidiOut Device"
msgstr "Förvald MidiOut-enhet"
#: dinput.rc:34
#, fuzzy
msgid "Action"
msgstr "Aktivering"
#: dinput.rc:35
#, fuzzy
msgid "Object"
msgstr "&Objekt"
#: dxdiagn.rc:25
msgid "Regional Setting"
msgstr "Regional inställning"

View File

@ -1955,6 +1955,14 @@ msgstr ""
msgid "Default MidiOut Device"
msgstr ""
#: dinput.rc:34
msgid "Action"
msgstr ""
#: dinput.rc:35
msgid "Object"
msgstr ""
#: dxdiagn.rc:25
msgid "Regional Setting"
msgstr ""

View File

@ -1979,6 +1979,15 @@ msgstr ""
msgid "Default MidiOut Device"
msgstr ""
#: dinput.rc:34
#, fuzzy
msgid "Action"
msgstr "รายละเอียด"
#: dinput.rc:35
msgid "Object"
msgstr ""
#: dxdiagn.rc:25
msgid "Regional Setting"
msgstr ""

View File

@ -2019,6 +2019,16 @@ msgstr ""
msgid "Default MidiOut Device"
msgstr ""
#: dinput.rc:34
#, fuzzy
msgid "Action"
msgstr "LAN Bağlantısı"
#: dinput.rc:35
#, fuzzy
msgid "Object"
msgstr "Böyle Bir Nesne Yok"
#: dxdiagn.rc:25
#, fuzzy
msgid "Regional Setting"

View File

@ -2020,6 +2020,16 @@ msgstr "Звуковий пристрій виводу по замовчуван
msgid "Default MidiOut Device"
msgstr "Пристрій виводу Midi по замовчуванні"
#: dinput.rc:34
#, fuzzy
msgid "Action"
msgstr "Активація"
#: dinput.rc:35
#, fuzzy
msgid "Object"
msgstr "&Об'єкт"
#: dxdiagn.rc:25
msgid "Regional Setting"
msgstr "Регіональні Налаштування"

View File

@ -1981,6 +1981,15 @@ msgstr ""
msgid "Default MidiOut Device"
msgstr ""
#: dinput.rc:34
#, fuzzy
msgid "Action"
msgstr "Informåcion"
#: dinput.rc:35
msgid "Object"
msgstr ""
#: dxdiagn.rc:25
#, fuzzy
msgid "Regional Setting"

View File

@ -1948,6 +1948,14 @@ msgstr ""
msgid "Default MidiOut Device"
msgstr ""
#: dinput.rc:34
msgid "Action"
msgstr ""
#: dinput.rc:35
msgid "Object"
msgstr ""
#: dxdiagn.rc:25
msgid "Regional Setting"
msgstr ""

View File

@ -2003,6 +2003,16 @@ msgstr ""
msgid "Default MidiOut Device"
msgstr ""
#: dinput.rc:34
#, fuzzy
msgid "Action"
msgstr "激活"
#: dinput.rc:35
#, fuzzy
msgid "Object"
msgstr "对象(&O)"
#: dxdiagn.rc:25
#, fuzzy
msgid "Regional Setting"

View File

@ -2014,6 +2014,16 @@ msgstr ""
msgid "Default MidiOut Device"
msgstr ""
#: dinput.rc:34
#, fuzzy
msgid "Action"
msgstr "激活"
#: dinput.rc:35
#, fuzzy
msgid "Object"
msgstr "對象(&O)"
#: dxdiagn.rc:25
#, fuzzy
msgid "Regional Setting"