joy.cpl: Merge the dinput test and force feedback tabs.
This commit is contained in:
parent
8f61809690
commit
77572690f5
52 changed files with 366 additions and 711 deletions
|
@ -54,25 +54,16 @@ STYLE WS_CAPTION | WS_CHILD | WS_DISABLED
|
|||
CAPTION "Test Joystick"
|
||||
FONT 8, "Ms Shell Dlg"
|
||||
{
|
||||
COMBOBOX IDC_TESTSELECTCOMBO, 5, 5, 200, 60, CBS_DROPDOWNLIST | CBS_HASSTRINGS
|
||||
COMBOBOX IDC_TESTSELECTCOMBO, 15, 10, 291, 60, CBS_DROPDOWNLIST | CBS_HASSTRINGS
|
||||
GROUPBOX "Buttons", IDC_STATIC, 15, 100, 291, 70
|
||||
GROUPBOX "", IDC_TESTGROUPXY, 15, 30, 60, 60
|
||||
GROUPBOX "", IDC_TESTGROUPRXRY, 92, 30, 60, 60
|
||||
GROUPBOX "", IDC_TESTGROUPZRZ, 169, 30, 60, 60
|
||||
GROUPBOX "", IDC_TESTGROUPPOV, 246, 30, 60, 60
|
||||
}
|
||||
|
||||
IDD_FORCEFEEDBACK DIALOG 0, 0, 320, 300
|
||||
STYLE WS_CAPTION | WS_CHILD | WS_DISABLED
|
||||
CAPTION "Test Force Feedback"
|
||||
FONT 8, "Ms Shell Dlg"
|
||||
{
|
||||
COMBOBOX IDC_FFSELECTCOMBO, 5, 5, 200, 60, CBS_DROPDOWNLIST | CBS_HASSTRINGS
|
||||
LTEXT "Available Effects", IDC_STATIC, 10, 30, 100, 10
|
||||
LISTBOX IDC_FFEFFECTLIST, 10, 40, 180, 70, WS_TABSTOP | WS_VSCROLL | LBS_NOTIFY
|
||||
LTEXT "Force Feedback Effect", IDC_STATIC, 15, 180, 291, 10
|
||||
LISTBOX IDC_FFEFFECTLIST, 15, 190, 291, 70, WS_TABSTOP | WS_VSCROLL | LBS_NOTIFY
|
||||
LTEXT "Press any button in the controller to activate the chosen effect. The effect direction can be changed with the controller axis.",
|
||||
IDC_STATIC, 10, 110, 210, 25
|
||||
GROUPBOX "Direction", IDC_STATIC, 220, 30, 60, 60
|
||||
IDC_STATIC, 15, 260, 291, 25
|
||||
}
|
||||
|
||||
LANGUAGE LANG_NEUTRAL, SUBLANG_NEUTRAL
|
||||
|
|
|
@ -59,16 +59,9 @@ WINE_DEFAULT_DEBUG_CHANNEL(joycpl);
|
|||
#define TEST_AXIS_MIN -25
|
||||
#define TEST_AXIS_MAX 25
|
||||
|
||||
#define FF_AXIS_X 248
|
||||
#define FF_AXIS_Y 60
|
||||
#define FF_AXIS_SIZE_X 3
|
||||
#define FF_AXIS_SIZE_Y 3
|
||||
|
||||
#define FF_PLAY_TIME 2*DI_SECONDS
|
||||
#define FF_PERIOD_TIME FF_PLAY_TIME/4
|
||||
|
||||
#define NUM_PROPERTY_PAGES 3
|
||||
|
||||
struct effect
|
||||
{
|
||||
struct list entry;
|
||||
|
@ -86,7 +79,6 @@ struct Graphics
|
|||
HWND hwnd;
|
||||
HWND buttons[TEST_MAX_BUTTONS];
|
||||
HWND axes[TEST_MAX_AXES];
|
||||
HWND ff_axis;
|
||||
};
|
||||
|
||||
struct JoystickData
|
||||
|
@ -613,7 +605,6 @@ static void dump_joy_state(DIJOYSTATE* st)
|
|||
static DWORD WINAPI input_thread(void *param)
|
||||
{
|
||||
int axes_pos[TEST_MAX_AXES][2];
|
||||
DIJOYSTATE state;
|
||||
struct JoystickData *data = param;
|
||||
|
||||
/* Setup POV as clock positions
|
||||
|
@ -629,63 +620,114 @@ static DWORD WINAPI input_thread(void *param)
|
|||
int pov_pos[9][2] = { {0, -ma}, {ma/2, -ma/2}, {ma, 0}, {ma/2, ma/2},
|
||||
{0, ma}, {-ma/2, ma/2}, {-ma, 0}, {-ma/2, -ma/2}, {0, 0} };
|
||||
|
||||
ZeroMemory(&state, sizeof(state));
|
||||
|
||||
while (!data->stop)
|
||||
{
|
||||
IDirectInputDevice8W *device;
|
||||
IDirectInputEffect *effect;
|
||||
DIJOYSTATE state = {0};
|
||||
unsigned int i, j;
|
||||
|
||||
memset( &state, 0, sizeof(state) );
|
||||
|
||||
if (WaitForSingleObject( device_state_event, TEST_POLL_TIME ) == WAIT_TIMEOUT) continue;
|
||||
|
||||
if ((device = get_selected_device()))
|
||||
{
|
||||
IDirectInputDevice8_GetDeviceState( device, sizeof(state), &state );
|
||||
IDirectInputDevice8_Release( device );
|
||||
}
|
||||
|
||||
dump_joy_state(&state);
|
||||
dump_joy_state(&state);
|
||||
|
||||
/* Indicate pressed buttons */
|
||||
for (i = 0; i < TEST_MAX_BUTTONS; i++)
|
||||
SendMessageW(data->graphics.buttons[i], BM_SETSTATE, !!state.rgbButtons[i], 0);
|
||||
/* Indicate pressed buttons */
|
||||
for (i = 0; i < TEST_MAX_BUTTONS; i++)
|
||||
SendMessageW(data->graphics.buttons[i], BM_SETSTATE, !!state.rgbButtons[i], 0);
|
||||
|
||||
/* Indicate axis positions, axes showing are hardcoded for now */
|
||||
axes_pos[0][0] = state.lX;
|
||||
axes_pos[0][1] = state.lY;
|
||||
axes_pos[1][0] = state.lRx;
|
||||
axes_pos[1][1] = state.lRy;
|
||||
axes_pos[2][0] = state.lZ;
|
||||
axes_pos[2][1] = state.lRz;
|
||||
/* Indicate axis positions, axes showing are hardcoded for now */
|
||||
axes_pos[0][0] = state.lX;
|
||||
axes_pos[0][1] = state.lY;
|
||||
axes_pos[1][0] = state.lRx;
|
||||
axes_pos[1][1] = state.lRy;
|
||||
axes_pos[2][0] = state.lZ;
|
||||
axes_pos[2][1] = state.lRz;
|
||||
|
||||
/* Set pov values */
|
||||
for (j = 0; j < ARRAY_SIZE(pov_val); j++)
|
||||
{
|
||||
if (state.rgdwPOV[0] == pov_val[j])
|
||||
/* Set pov values */
|
||||
for (j = 0; j < ARRAY_SIZE(pov_val); j++)
|
||||
{
|
||||
axes_pos[3][0] = pov_pos[j][0];
|
||||
axes_pos[3][1] = pov_pos[j][1];
|
||||
if (state.rgdwPOV[0] == pov_val[j])
|
||||
{
|
||||
axes_pos[3][0] = pov_pos[j][0];
|
||||
axes_pos[3][1] = pov_pos[j][1];
|
||||
}
|
||||
}
|
||||
|
||||
for (i = 0; i < TEST_MAX_AXES; i++)
|
||||
{
|
||||
RECT r;
|
||||
|
||||
r.left = (TEST_AXIS_X + TEST_NEXT_AXIS_X*i + axes_pos[i][0]);
|
||||
r.top = (TEST_AXIS_Y + axes_pos[i][1]);
|
||||
r.bottom = r.right = 0; /* unused */
|
||||
MapDialogRect(data->graphics.hwnd, &r);
|
||||
|
||||
SetWindowPos(data->graphics.axes[i], 0, r.left, r.top, 0, 0, SWP_NOZORDER | SWP_NOSIZE);
|
||||
}
|
||||
}
|
||||
|
||||
for (i = 0; i < TEST_MAX_AXES; i++)
|
||||
if ((effect = get_selected_effect()))
|
||||
{
|
||||
RECT r;
|
||||
DWORD flags = DIEP_AXES | DIEP_DIRECTION | DIEP_NORESTART;
|
||||
LONG direction[3] = {0};
|
||||
DWORD axes[3] = {0};
|
||||
DIEFFECT params =
|
||||
{
|
||||
.dwSize = sizeof(DIEFFECT),
|
||||
.dwFlags = DIEFF_CARTESIAN | DIEFF_OBJECTOFFSETS,
|
||||
.rglDirection = direction,
|
||||
.rgdwAxes = axes,
|
||||
.cAxes = 3,
|
||||
};
|
||||
|
||||
r.left = (TEST_AXIS_X + TEST_NEXT_AXIS_X*i + axes_pos[i][0]);
|
||||
r.top = (TEST_AXIS_Y + axes_pos[i][1]);
|
||||
r.bottom = r.right = 0; /* unused */
|
||||
MapDialogRect(data->graphics.hwnd, &r);
|
||||
IDirectInputEffect_GetParameters( effect, ¶ms, flags );
|
||||
params.rgdwAxes[0] = state.lX;
|
||||
params.rgdwAxes[1] = state.lY;
|
||||
|
||||
SetWindowPos(data->graphics.axes[i], 0, r.left, r.top, 0, 0, SWP_NOZORDER | SWP_NOSIZE);
|
||||
for (i=0; i < TEST_MAX_BUTTONS; i++)
|
||||
{
|
||||
if (state.rgbButtons[i])
|
||||
{
|
||||
IDirectInputEffect_SetParameters( effect, ¶ms, flags );
|
||||
IDirectInputEffect_Start( effect, 1, 0 );
|
||||
break;
|
||||
}
|
||||
}
|
||||
|
||||
IDirectInputEffect_Release( effect );
|
||||
}
|
||||
}
|
||||
|
||||
return 0;
|
||||
}
|
||||
|
||||
static void initialize_effects_list( HWND hwnd, IDirectInputDevice8W *device )
|
||||
{
|
||||
struct effect *effect;
|
||||
|
||||
clear_effects();
|
||||
|
||||
IDirectInputDevice8_EnumEffects( device, enum_effects, device, 0 );
|
||||
|
||||
SendDlgItemMessageW(hwnd, IDC_FFEFFECTLIST, LB_RESETCONTENT, 0, 0);
|
||||
SendDlgItemMessageW(hwnd, IDC_FFEFFECTLIST, LB_ADDSTRING, 0, (LPARAM)L"None");
|
||||
|
||||
LIST_FOR_EACH_ENTRY( effect, &effects, struct effect, entry )
|
||||
{
|
||||
DIEFFECTINFOW info = {.dwSize = sizeof(DIEFFECTINFOW)};
|
||||
GUID guid;
|
||||
|
||||
if (FAILED(IDirectInputEffect_GetEffectGuid( effect->effect, &guid ))) continue;
|
||||
if (FAILED(IDirectInputDevice8_GetEffectInfo( device, &info, &guid ))) continue;
|
||||
SendDlgItemMessageW(hwnd, IDC_FFEFFECTLIST, LB_ADDSTRING, 0, (LPARAM)(info.tszName + 5));
|
||||
}
|
||||
}
|
||||
|
||||
static void test_handle_joychange(HWND hwnd, struct JoystickData *data)
|
||||
{
|
||||
DIDEVCAPS caps = {.dwSize = sizeof(DIDEVCAPS)};
|
||||
|
@ -706,9 +748,36 @@ static void test_handle_joychange(HWND hwnd, struct JoystickData *data)
|
|||
if (FAILED(IDirectInputDevice8_GetCapabilities( device, &caps ))) return;
|
||||
|
||||
set_selected_device( device );
|
||||
initialize_effects_list( hwnd, device );
|
||||
for (i = 0; i < TEST_MAX_BUTTONS; i++) ShowWindow( data->graphics.buttons[i], i < caps.dwButtons );
|
||||
}
|
||||
|
||||
static void ff_handle_effectchange( HWND hwnd )
|
||||
{
|
||||
IDirectInputDevice8W *device;
|
||||
struct list *entry;
|
||||
int sel;
|
||||
|
||||
set_selected_effect( NULL );
|
||||
|
||||
sel = SendDlgItemMessageW(hwnd, IDC_FFEFFECTLIST, LB_GETCURSEL, 0, 0) - 1;
|
||||
if (sel < 0) return;
|
||||
|
||||
entry = list_head( &effects );
|
||||
while (sel-- && entry) entry = list_next( &effects, entry );
|
||||
if (!entry) return;
|
||||
|
||||
set_selected_effect( LIST_ENTRY( entry, struct effect, entry )->effect );
|
||||
|
||||
if ((device = get_selected_device()))
|
||||
{
|
||||
IDirectInputDevice8_Unacquire( device );
|
||||
IDirectInputDevice8_SetCooperativeLevel( device, GetAncestor( hwnd, GA_ROOT ), DISCL_BACKGROUND | DISCL_EXCLUSIVE );
|
||||
IDirectInputDevice8_Acquire( device );
|
||||
IDirectInputDevice8_Release( device );
|
||||
}
|
||||
}
|
||||
|
||||
/*********************************************************************
|
||||
* button_number_to_wchar [internal]
|
||||
* Transforms an integer in the interval [0,99] into a 2 character WCHAR string
|
||||
|
@ -822,7 +891,14 @@ static INT_PTR CALLBACK test_dlgproc(HWND hwnd, UINT msg, WPARAM wparam, LPARAM
|
|||
{
|
||||
case MAKEWPARAM(IDC_TESTSELECTCOMBO, CBN_SELCHANGE):
|
||||
test_handle_joychange(hwnd, data);
|
||||
break;
|
||||
|
||||
SendDlgItemMessageW(hwnd, IDC_FFEFFECTLIST, LB_SETCURSEL, 0, 0);
|
||||
ff_handle_effectchange( hwnd );
|
||||
break;
|
||||
|
||||
case MAKEWPARAM(IDC_FFEFFECTLIST, LBN_SELCHANGE):
|
||||
ff_handle_effectchange( hwnd );
|
||||
break;
|
||||
}
|
||||
return TRUE;
|
||||
|
||||
|
@ -841,6 +917,9 @@ static INT_PTR CALLBACK test_dlgproc(HWND hwnd, UINT msg, WPARAM wparam, LPARAM
|
|||
SendDlgItemMessageW(hwnd, IDC_TESTSELECTCOMBO, CB_SETCURSEL, 0, 0);
|
||||
test_handle_joychange(hwnd, data);
|
||||
|
||||
SendDlgItemMessageW(hwnd, IDC_FFEFFECTLIST, LB_SETCURSEL, 0, 0);
|
||||
ff_handle_effectchange( hwnd );
|
||||
|
||||
thread = CreateThread(NULL, 0, input_thread, (void*) data, 0, &tid);
|
||||
}
|
||||
break;
|
||||
|
@ -858,238 +937,6 @@ static INT_PTR CALLBACK test_dlgproc(HWND hwnd, UINT msg, WPARAM wparam, LPARAM
|
|||
return FALSE;
|
||||
}
|
||||
|
||||
/*********************************************************************
|
||||
* Joystick force feedback testing functions
|
||||
*
|
||||
*/
|
||||
static void draw_ff_axis(HWND hwnd, struct JoystickData *data)
|
||||
{
|
||||
HINSTANCE hinst = (HINSTANCE) GetWindowLongPtrW(hwnd, GWLP_HINSTANCE);
|
||||
RECT r;
|
||||
|
||||
r.left = FF_AXIS_X;
|
||||
r.top = FF_AXIS_Y;
|
||||
r.right = r.left + FF_AXIS_SIZE_X;
|
||||
r.bottom = r.top + FF_AXIS_SIZE_Y;
|
||||
MapDialogRect(hwnd, &r);
|
||||
|
||||
/* Draw direction axis */
|
||||
data->graphics.ff_axis = CreateWindowW(L"Button", NULL, WS_CHILD | WS_VISIBLE,
|
||||
r.left, r.top, r.right - r.left, r.bottom - r.top,
|
||||
hwnd, NULL, NULL, hinst);
|
||||
}
|
||||
|
||||
static void initialize_effects_list( HWND hwnd, IDirectInputDevice8W *device )
|
||||
{
|
||||
struct effect *effect;
|
||||
|
||||
clear_effects();
|
||||
|
||||
IDirectInputDevice8_EnumEffects( device, enum_effects, device, 0 );
|
||||
|
||||
SendDlgItemMessageW(hwnd, IDC_FFEFFECTLIST, LB_RESETCONTENT, 0, 0);
|
||||
|
||||
LIST_FOR_EACH_ENTRY( effect, &effects, struct effect, entry )
|
||||
{
|
||||
DIEFFECTINFOW info = {.dwSize = sizeof(DIEFFECTINFOW)};
|
||||
GUID guid;
|
||||
|
||||
if (FAILED(IDirectInputEffect_GetEffectGuid( effect->effect, &guid ))) continue;
|
||||
if (FAILED(IDirectInputDevice8_GetEffectInfo( device, &info, &guid ))) continue;
|
||||
SendDlgItemMessageW(hwnd, IDC_FFEFFECTLIST, LB_ADDSTRING, 0, (LPARAM)(info.tszName + 5));
|
||||
}
|
||||
}
|
||||
|
||||
static void ff_handle_joychange( HWND hwnd )
|
||||
{
|
||||
DIDEVCAPS caps = {.dwSize = sizeof(DIDEVCAPS)};
|
||||
IDirectInputDevice8W *device;
|
||||
struct list *entry;
|
||||
int i;
|
||||
|
||||
i = SendDlgItemMessageW( hwnd, IDC_FFSELECTCOMBO, CB_GETCURSEL, 0, 0 );
|
||||
if (i < 0) return;
|
||||
|
||||
entry = list_head( &devices );
|
||||
while (i-- && entry) entry = list_next( &devices, entry );
|
||||
if (!entry) return;
|
||||
|
||||
device = LIST_ENTRY( entry, struct device, entry )->device;
|
||||
if (FAILED(IDirectInputDevice8_GetCapabilities( device, &caps ))) return;
|
||||
|
||||
set_selected_device( device );
|
||||
initialize_effects_list( hwnd, device );
|
||||
}
|
||||
|
||||
static void ff_handle_effectchange( HWND hwnd )
|
||||
{
|
||||
IDirectInputDevice8W *device;
|
||||
struct list *entry;
|
||||
int sel;
|
||||
|
||||
set_selected_effect( NULL );
|
||||
|
||||
sel = SendDlgItemMessageW(hwnd, IDC_FFEFFECTLIST, LB_GETCURSEL, 0, 0);
|
||||
if (sel < 0) return;
|
||||
|
||||
entry = list_head( &effects );
|
||||
while (sel-- && entry) entry = list_next( &effects, entry );
|
||||
if (!entry) return;
|
||||
|
||||
set_selected_effect( LIST_ENTRY( entry, struct effect, entry )->effect );
|
||||
|
||||
if ((device = get_selected_device()))
|
||||
{
|
||||
IDirectInputDevice8_Unacquire( device );
|
||||
IDirectInputDevice8_SetCooperativeLevel( device, GetAncestor( hwnd, GA_ROOT ), DISCL_BACKGROUND | DISCL_EXCLUSIVE );
|
||||
IDirectInputDevice8_Acquire( device );
|
||||
IDirectInputDevice8_Release( device );
|
||||
}
|
||||
}
|
||||
|
||||
static DWORD WINAPI ff_input_thread(void *param)
|
||||
{
|
||||
struct JoystickData *data = param;
|
||||
DIJOYSTATE state;
|
||||
|
||||
ZeroMemory(&state, sizeof(state));
|
||||
|
||||
while (!data->stop)
|
||||
{
|
||||
int i;
|
||||
DWORD flags = DIEP_AXES | DIEP_DIRECTION | DIEP_NORESTART;
|
||||
IDirectInputDevice8W *device;
|
||||
IDirectInputEffect *effect;
|
||||
LONG direction[3] = {0};
|
||||
DWORD axes[3] = {0};
|
||||
DIEFFECT params =
|
||||
{
|
||||
.dwSize = sizeof(DIEFFECT),
|
||||
.dwFlags = DIEFF_CARTESIAN | DIEFF_OBJECTOFFSETS,
|
||||
.rglDirection = direction,
|
||||
.rgdwAxes = axes,
|
||||
.cAxes = 3,
|
||||
};
|
||||
RECT r;
|
||||
|
||||
if (WaitForSingleObject( device_state_event, TEST_POLL_TIME ) == WAIT_TIMEOUT) continue;
|
||||
|
||||
if ((device = get_selected_device()))
|
||||
{
|
||||
IDirectInputDevice8_GetDeviceState( device, sizeof(state), &state );
|
||||
IDirectInputDevice8_Release( device );
|
||||
}
|
||||
|
||||
if (!(effect = get_selected_effect())) continue;
|
||||
|
||||
IDirectInputEffect_GetParameters( effect, ¶ms, flags );
|
||||
params.rgdwAxes[0] = state.lX;
|
||||
params.rgdwAxes[1] = state.lY;
|
||||
|
||||
r.left = FF_AXIS_X + state.lX;
|
||||
r.top = FF_AXIS_Y + state.lY;
|
||||
r.right = r.bottom = 0; /* unused */
|
||||
MapDialogRect(data->graphics.hwnd, &r);
|
||||
|
||||
SetWindowPos(data->graphics.ff_axis, 0, r.left, r.top, 0, 0, SWP_NOZORDER | SWP_NOSIZE);
|
||||
|
||||
for (i=0; i < TEST_MAX_BUTTONS; i++)
|
||||
if (state.rgbButtons[i])
|
||||
{
|
||||
IDirectInputEffect_SetParameters( effect, ¶ms, flags );
|
||||
IDirectInputEffect_Start( effect, 1, 0 );
|
||||
break;
|
||||
}
|
||||
|
||||
IDirectInputEffect_Release( effect );
|
||||
}
|
||||
|
||||
return 0;
|
||||
}
|
||||
|
||||
|
||||
/*********************************************************************
|
||||
* ff_dlgproc [internal]
|
||||
*
|
||||
*/
|
||||
static void refresh_ff_joystick_list(HWND hwnd, struct JoystickData *data)
|
||||
{
|
||||
struct device *entry;
|
||||
|
||||
SendDlgItemMessageW(hwnd, IDC_FFSELECTCOMBO, CB_RESETCONTENT, 0, 0);
|
||||
|
||||
LIST_FOR_EACH_ENTRY( entry, &devices, struct device, entry )
|
||||
{
|
||||
DIDEVICEINSTANCEW info = {.dwSize = sizeof(DIDEVICEINSTANCEW)};
|
||||
if (FAILED(IDirectInputDevice8_GetDeviceInfo( entry->device, &info ))) continue;
|
||||
SendDlgItemMessageW( hwnd, IDC_FFSELECTCOMBO, CB_ADDSTRING, 0, (LPARAM)info.tszInstanceName );
|
||||
}
|
||||
}
|
||||
|
||||
static INT_PTR CALLBACK ff_dlgproc(HWND hwnd, UINT msg, WPARAM wparam, LPARAM lparam)
|
||||
{
|
||||
static HANDLE thread;
|
||||
static struct JoystickData *data;
|
||||
TRACE("(%p, 0x%08x/%d, 0x%Ix)\n", hwnd, msg, msg, lparam);
|
||||
|
||||
switch (msg)
|
||||
{
|
||||
case WM_INITDIALOG:
|
||||
{
|
||||
data = (struct JoystickData*) ((PROPSHEETPAGEW*)lparam)->lParam;
|
||||
|
||||
refresh_ff_joystick_list(hwnd, data);
|
||||
draw_ff_axis(hwnd, data);
|
||||
|
||||
return TRUE;
|
||||
}
|
||||
|
||||
case WM_COMMAND:
|
||||
switch(wparam)
|
||||
{
|
||||
case MAKEWPARAM(IDC_FFSELECTCOMBO, CBN_SELCHANGE):
|
||||
ff_handle_joychange( hwnd );
|
||||
|
||||
SendDlgItemMessageW(hwnd, IDC_FFEFFECTLIST, LB_SETCURSEL, 0, 0);
|
||||
ff_handle_effectchange( hwnd );
|
||||
break;
|
||||
|
||||
case MAKEWPARAM(IDC_FFEFFECTLIST, LBN_SELCHANGE):
|
||||
ff_handle_effectchange( hwnd );
|
||||
break;
|
||||
}
|
||||
return TRUE;
|
||||
|
||||
case WM_NOTIFY:
|
||||
switch(((LPNMHDR)lparam)->code)
|
||||
{
|
||||
case PSN_SETACTIVE:
|
||||
refresh_ff_joystick_list(hwnd, data);
|
||||
|
||||
data->stop = FALSE;
|
||||
/* Set the first joystick as default */
|
||||
SendDlgItemMessageW(hwnd, IDC_FFSELECTCOMBO, CB_SETCURSEL, 0, 0);
|
||||
ff_handle_joychange( hwnd );
|
||||
|
||||
SendDlgItemMessageW(hwnd, IDC_FFEFFECTLIST, LB_SETCURSEL, 0, 0);
|
||||
ff_handle_effectchange( hwnd );
|
||||
|
||||
thread = CreateThread(NULL, 0, ff_input_thread, (void*) data, 0, NULL);
|
||||
break;
|
||||
|
||||
case PSN_RESET: /* intentional fall-through */
|
||||
case PSN_KILLACTIVE:
|
||||
/* Stop ff thread */
|
||||
data->stop = TRUE;
|
||||
MsgWaitForMultipleObjects(1, &thread, FALSE, INFINITE, 0);
|
||||
CloseHandle(thread);
|
||||
break;
|
||||
}
|
||||
return TRUE;
|
||||
}
|
||||
return FALSE;
|
||||
}
|
||||
|
||||
/******************************************************************************
|
||||
* propsheet_callback [internal]
|
||||
*/
|
||||
|
@ -1113,8 +960,8 @@ static int CALLBACK propsheet_callback(HWND hwnd, UINT msg, LPARAM lparam)
|
|||
static void display_cpl_sheets(HWND parent, struct JoystickData *data)
|
||||
{
|
||||
INITCOMMONCONTROLSEX icex;
|
||||
PROPSHEETPAGEW psp[NUM_PROPERTY_PAGES];
|
||||
BOOL activated = FALSE;
|
||||
PROPSHEETPAGEW psp[2];
|
||||
PROPSHEETHEADERW psh;
|
||||
ULONG_PTR cookie;
|
||||
ACTCTXW actctx;
|
||||
|
@ -1155,13 +1002,6 @@ static void display_cpl_sheets(HWND parent, struct JoystickData *data)
|
|||
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 = ff_dlgproc;
|
||||
psp[id].lParam = (INT_PTR) data;
|
||||
id++;
|
||||
|
||||
/* Fill out the PROPSHEETHEADER */
|
||||
psh.dwSize = sizeof (PROPSHEETHEADERW);
|
||||
psh.dwFlags = PSH_PROPSHEETPAGE | PSH_USEICONID | PSH_USECALLBACK;
|
||||
|
|
|
@ -36,7 +36,6 @@
|
|||
|
||||
#define IDD_LIST 1000
|
||||
#define IDD_TEST 1001
|
||||
#define IDD_FORCEFEEDBACK 1002
|
||||
|
||||
#define IDC_JOYSTICKLIST 2000
|
||||
#define IDC_DISABLEDLIST 2001
|
||||
|
@ -51,9 +50,7 @@
|
|||
#define IDC_TESTGROUPRXRY 2102
|
||||
#define IDC_TESTGROUPZRZ 2103
|
||||
#define IDC_TESTGROUPPOV 2104
|
||||
|
||||
#define IDC_FFSELECTCOMBO 2200
|
||||
#define IDC_FFEFFECTLIST 2201
|
||||
#define IDC_FFEFFECTLIST 2105
|
||||
|
||||
#define ICO_MAIN 100
|
||||
|
||||
|
|
14
po/ar.po
14
po/ar.po
|
@ -790,7 +790,7 @@ msgstr "مطابقة ال&كلمة"
|
|||
msgid "Match &Case"
|
||||
msgstr "مطابقة ال&حالة"
|
||||
|
||||
#: dlls/comdlg32/comdlg32.rc:325 dlls/joy.cpl/joy.rc:76
|
||||
#: dlls/comdlg32/comdlg32.rc:325
|
||||
msgid "Direction"
|
||||
msgstr "الاتجاه"
|
||||
|
||||
|
@ -3786,15 +3786,13 @@ msgstr "اختبار مقبض اللعب"
|
|||
msgid "Buttons"
|
||||
msgstr "الأزرار"
|
||||
|
||||
#: dlls/joy.cpl/joy.rc:68
|
||||
msgid "Test Force Feedback"
|
||||
#: dlls/joy.cpl/joy.rc:64
|
||||
#, fuzzy
|
||||
#| msgid "Test Force Feedback"
|
||||
msgid "Force Feedback Effect"
|
||||
msgstr "اختبار الهزّاز"
|
||||
|
||||
#: dlls/joy.cpl/joy.rc:72
|
||||
msgid "Available Effects"
|
||||
msgstr "المؤثرات المتاحة"
|
||||
|
||||
#: dlls/joy.cpl/joy.rc:74
|
||||
#: dlls/joy.cpl/joy.rc:66
|
||||
msgid ""
|
||||
"Press any button in the controller to activate the chosen effect. The effect "
|
||||
"direction can be changed with the controller axis."
|
||||
|
|
12
po/ast.po
12
po/ast.po
|
@ -784,7 +784,7 @@ msgstr ""
|
|||
msgid "Match &Case"
|
||||
msgstr ""
|
||||
|
||||
#: dlls/comdlg32/comdlg32.rc:325 dlls/joy.cpl/joy.rc:76
|
||||
#: dlls/comdlg32/comdlg32.rc:325
|
||||
msgid "Direction"
|
||||
msgstr "Direición"
|
||||
|
||||
|
@ -3679,15 +3679,11 @@ msgstr ""
|
|||
msgid "Buttons"
|
||||
msgstr "Botones"
|
||||
|
||||
#: dlls/joy.cpl/joy.rc:68
|
||||
msgid "Test Force Feedback"
|
||||
#: dlls/joy.cpl/joy.rc:64
|
||||
msgid "Force Feedback Effect"
|
||||
msgstr ""
|
||||
|
||||
#: dlls/joy.cpl/joy.rc:72
|
||||
msgid "Available Effects"
|
||||
msgstr "Efeutos disponibles"
|
||||
|
||||
#: dlls/joy.cpl/joy.rc:74
|
||||
#: dlls/joy.cpl/joy.rc:66
|
||||
msgid ""
|
||||
"Press any button in the controller to activate the chosen effect. The effect "
|
||||
"direction can be changed with the controller axis."
|
||||
|
|
13
po/bg.po
13
po/bg.po
|
@ -801,7 +801,7 @@ msgstr "&Само цели думи"
|
|||
msgid "Match &Case"
|
||||
msgstr "&Чувствителен регистър"
|
||||
|
||||
#: dlls/comdlg32/comdlg32.rc:325 dlls/joy.cpl/joy.rc:76
|
||||
#: dlls/comdlg32/comdlg32.rc:325
|
||||
msgid "Direction"
|
||||
msgstr "Посока"
|
||||
|
||||
|
@ -3798,16 +3798,11 @@ msgstr ""
|
|||
msgid "Buttons"
|
||||
msgstr ""
|
||||
|
||||
#: dlls/joy.cpl/joy.rc:68
|
||||
msgid "Test Force Feedback"
|
||||
#: dlls/joy.cpl/joy.rc:64
|
||||
msgid "Force Feedback Effect"
|
||||
msgstr ""
|
||||
|
||||
#: dlls/joy.cpl/joy.rc:72
|
||||
#, fuzzy
|
||||
msgid "Available Effects"
|
||||
msgstr "На&пред"
|
||||
|
||||
#: dlls/joy.cpl/joy.rc:74
|
||||
#: dlls/joy.cpl/joy.rc:66
|
||||
msgid ""
|
||||
"Press any button in the controller to activate the chosen effect. The effect "
|
||||
"direction can be changed with the controller axis."
|
||||
|
|
14
po/ca.po
14
po/ca.po
|
@ -786,7 +786,7 @@ msgstr "Troba només ¶ules completes"
|
|||
msgid "Match &Case"
|
||||
msgstr "&Distingeix entre majúscules i minúscules"
|
||||
|
||||
#: dlls/comdlg32/comdlg32.rc:325 dlls/joy.cpl/joy.rc:76
|
||||
#: dlls/comdlg32/comdlg32.rc:325
|
||||
msgid "Direction"
|
||||
msgstr "Direcció"
|
||||
|
||||
|
@ -3774,15 +3774,13 @@ msgstr "Prova de palanca de control"
|
|||
msgid "Buttons"
|
||||
msgstr "Botons"
|
||||
|
||||
#: dlls/joy.cpl/joy.rc:68
|
||||
msgid "Test Force Feedback"
|
||||
#: dlls/joy.cpl/joy.rc:64
|
||||
#, fuzzy
|
||||
#| msgid "Test Force Feedback"
|
||||
msgid "Force Feedback Effect"
|
||||
msgstr "Prova de retroacció de força"
|
||||
|
||||
#: dlls/joy.cpl/joy.rc:72
|
||||
msgid "Available Effects"
|
||||
msgstr "Efectes disponibles"
|
||||
|
||||
#: dlls/joy.cpl/joy.rc:74
|
||||
#: dlls/joy.cpl/joy.rc:66
|
||||
msgid ""
|
||||
"Press any button in the controller to activate the chosen effect. The effect "
|
||||
"direction can be changed with the controller axis."
|
||||
|
|
14
po/cs.po
14
po/cs.po
|
@ -797,7 +797,7 @@ msgstr "Pouze &celá slova"
|
|||
msgid "Match &Case"
|
||||
msgstr "&Rozlišovat velikost"
|
||||
|
||||
#: dlls/comdlg32/comdlg32.rc:325 dlls/joy.cpl/joy.rc:76
|
||||
#: dlls/comdlg32/comdlg32.rc:325
|
||||
msgid "Direction"
|
||||
msgstr "Směr"
|
||||
|
||||
|
@ -3735,15 +3735,13 @@ msgstr "Otestovat pákový ovladač"
|
|||
msgid "Buttons"
|
||||
msgstr "Tlačítka"
|
||||
|
||||
#: dlls/joy.cpl/joy.rc:68
|
||||
msgid "Test Force Feedback"
|
||||
#: dlls/joy.cpl/joy.rc:64
|
||||
#, fuzzy
|
||||
#| msgid "Test Force Feedback"
|
||||
msgid "Force Feedback Effect"
|
||||
msgstr "Otestovat silovou zpětnou vazbu"
|
||||
|
||||
#: dlls/joy.cpl/joy.rc:72
|
||||
msgid "Available Effects"
|
||||
msgstr "Dostupné efekty"
|
||||
|
||||
#: dlls/joy.cpl/joy.rc:74
|
||||
#: dlls/joy.cpl/joy.rc:66
|
||||
msgid ""
|
||||
"Press any button in the controller to activate the chosen effect. The effect "
|
||||
"direction can be changed with the controller axis."
|
||||
|
|
14
po/da.po
14
po/da.po
|
@ -805,7 +805,7 @@ msgstr "&Kun hele ord"
|
|||
msgid "Match &Case"
|
||||
msgstr "Forskel på store/små &bogstaver"
|
||||
|
||||
#: dlls/comdlg32/comdlg32.rc:325 dlls/joy.cpl/joy.rc:76
|
||||
#: dlls/comdlg32/comdlg32.rc:325
|
||||
msgid "Direction"
|
||||
msgstr "Retning"
|
||||
|
||||
|
@ -3821,17 +3821,11 @@ msgstr ""
|
|||
msgid "Buttons"
|
||||
msgstr ""
|
||||
|
||||
#: dlls/joy.cpl/joy.rc:68
|
||||
msgid "Test Force Feedback"
|
||||
#: dlls/joy.cpl/joy.rc:64
|
||||
msgid "Force Feedback Effect"
|
||||
msgstr ""
|
||||
|
||||
#: dlls/joy.cpl/joy.rc:72
|
||||
#, fuzzy
|
||||
#| msgid "Available formats"
|
||||
msgid "Available Effects"
|
||||
msgstr "Tilgængelige formater"
|
||||
|
||||
#: dlls/joy.cpl/joy.rc:74
|
||||
#: dlls/joy.cpl/joy.rc:66
|
||||
msgid ""
|
||||
"Press any button in the controller to activate the chosen effect. The effect "
|
||||
"direction can be changed with the controller axis."
|
||||
|
|
14
po/de.po
14
po/de.po
|
@ -784,7 +784,7 @@ msgstr "Nu&r ganzes Wort suchen"
|
|||
msgid "Match &Case"
|
||||
msgstr "Groß-/Klein&schreibung"
|
||||
|
||||
#: dlls/comdlg32/comdlg32.rc:325 dlls/joy.cpl/joy.rc:76
|
||||
#: dlls/comdlg32/comdlg32.rc:325
|
||||
msgid "Direction"
|
||||
msgstr "Suchrichtung"
|
||||
|
||||
|
@ -3762,15 +3762,13 @@ msgstr "Joystick testen"
|
|||
msgid "Buttons"
|
||||
msgstr "Tasten"
|
||||
|
||||
#: dlls/joy.cpl/joy.rc:68
|
||||
msgid "Test Force Feedback"
|
||||
#: dlls/joy.cpl/joy.rc:64
|
||||
#, fuzzy
|
||||
#| msgid "Test Force Feedback"
|
||||
msgid "Force Feedback Effect"
|
||||
msgstr "Force Feedback testen"
|
||||
|
||||
#: dlls/joy.cpl/joy.rc:72
|
||||
msgid "Available Effects"
|
||||
msgstr "Verfügbare Effekte"
|
||||
|
||||
#: dlls/joy.cpl/joy.rc:74
|
||||
#: dlls/joy.cpl/joy.rc:66
|
||||
msgid ""
|
||||
"Press any button in the controller to activate the chosen effect. The effect "
|
||||
"direction can be changed with the controller axis."
|
||||
|
|
14
po/el.po
14
po/el.po
|
@ -778,7 +778,7 @@ msgstr "Ταίριασμα &Ολόκληρης Λέξης Μόνο"
|
|||
msgid "Match &Case"
|
||||
msgstr "Ταίριασμα &Κεφαλαίων"
|
||||
|
||||
#: dlls/comdlg32/comdlg32.rc:325 dlls/joy.cpl/joy.rc:76
|
||||
#: dlls/comdlg32/comdlg32.rc:325
|
||||
msgid "Direction"
|
||||
msgstr "Κατεύθυνση"
|
||||
|
||||
|
@ -3710,17 +3710,11 @@ msgstr ""
|
|||
msgid "Buttons"
|
||||
msgstr ""
|
||||
|
||||
#: dlls/joy.cpl/joy.rc:68
|
||||
msgid "Test Force Feedback"
|
||||
#: dlls/joy.cpl/joy.rc:64
|
||||
msgid "Force Feedback Effect"
|
||||
msgstr ""
|
||||
|
||||
#: dlls/joy.cpl/joy.rc:72
|
||||
#, fuzzy
|
||||
#| msgid "A&vailable buttons:"
|
||||
msgid "Available Effects"
|
||||
msgstr "Δ&ιαθέσιμα κουμπιά:"
|
||||
|
||||
#: dlls/joy.cpl/joy.rc:74
|
||||
#: dlls/joy.cpl/joy.rc:66
|
||||
msgid ""
|
||||
"Press any button in the controller to activate the chosen effect. The effect "
|
||||
"direction can be changed with the controller axis."
|
||||
|
|
14
po/en.po
14
po/en.po
|
@ -783,7 +783,7 @@ msgstr "Match &Whole Word Only"
|
|||
msgid "Match &Case"
|
||||
msgstr "Match &Case"
|
||||
|
||||
#: dlls/comdlg32/comdlg32.rc:325 dlls/joy.cpl/joy.rc:76
|
||||
#: dlls/comdlg32/comdlg32.rc:325
|
||||
msgid "Direction"
|
||||
msgstr "Direction"
|
||||
|
||||
|
@ -3755,15 +3755,11 @@ msgstr "Test Joystick"
|
|||
msgid "Buttons"
|
||||
msgstr "Buttons"
|
||||
|
||||
#: dlls/joy.cpl/joy.rc:68
|
||||
msgid "Test Force Feedback"
|
||||
msgstr "Test Force Feedback"
|
||||
#: dlls/joy.cpl/joy.rc:64
|
||||
msgid "Force Feedback Effect"
|
||||
msgstr "Force Feedback Effect"
|
||||
|
||||
#: dlls/joy.cpl/joy.rc:72
|
||||
msgid "Available Effects"
|
||||
msgstr "Available Effects"
|
||||
|
||||
#: dlls/joy.cpl/joy.rc:74
|
||||
#: dlls/joy.cpl/joy.rc:66
|
||||
msgid ""
|
||||
"Press any button in the controller to activate the chosen effect. The effect "
|
||||
"direction can be changed with the controller axis."
|
||||
|
|
14
po/en_US.po
14
po/en_US.po
|
@ -783,7 +783,7 @@ msgstr "Match &Whole Word Only"
|
|||
msgid "Match &Case"
|
||||
msgstr "Match &Case"
|
||||
|
||||
#: dlls/comdlg32/comdlg32.rc:325 dlls/joy.cpl/joy.rc:76
|
||||
#: dlls/comdlg32/comdlg32.rc:325
|
||||
msgid "Direction"
|
||||
msgstr "Direction"
|
||||
|
||||
|
@ -3755,15 +3755,11 @@ msgstr "Test Joystick"
|
|||
msgid "Buttons"
|
||||
msgstr "Buttons"
|
||||
|
||||
#: dlls/joy.cpl/joy.rc:68
|
||||
msgid "Test Force Feedback"
|
||||
msgstr "Test Force Feedback"
|
||||
#: dlls/joy.cpl/joy.rc:64
|
||||
msgid "Force Feedback Effect"
|
||||
msgstr "Force Feedback Effect"
|
||||
|
||||
#: dlls/joy.cpl/joy.rc:72
|
||||
msgid "Available Effects"
|
||||
msgstr "Available Effects"
|
||||
|
||||
#: dlls/joy.cpl/joy.rc:74
|
||||
#: dlls/joy.cpl/joy.rc:66
|
||||
msgid ""
|
||||
"Press any button in the controller to activate the chosen effect. The effect "
|
||||
"direction can be changed with the controller axis."
|
||||
|
|
14
po/eo.po
14
po/eo.po
|
@ -787,7 +787,7 @@ msgstr "Nur tutan &vorton"
|
|||
msgid "Match &Case"
|
||||
msgstr "Atenti &Usklecon"
|
||||
|
||||
#: dlls/comdlg32/comdlg32.rc:325 dlls/joy.cpl/joy.rc:76
|
||||
#: dlls/comdlg32/comdlg32.rc:325
|
||||
msgid "Direction"
|
||||
msgstr "Direkto"
|
||||
|
||||
|
@ -3705,17 +3705,11 @@ msgstr ""
|
|||
msgid "Buttons"
|
||||
msgstr ""
|
||||
|
||||
#: dlls/joy.cpl/joy.rc:68
|
||||
msgid "Test Force Feedback"
|
||||
#: dlls/joy.cpl/joy.rc:64
|
||||
msgid "Force Feedback Effect"
|
||||
msgstr ""
|
||||
|
||||
#: dlls/joy.cpl/joy.rc:72
|
||||
#, fuzzy
|
||||
#| msgid "Available formats"
|
||||
msgid "Available Effects"
|
||||
msgstr "Disponeblaj formatoj"
|
||||
|
||||
#: dlls/joy.cpl/joy.rc:74
|
||||
#: dlls/joy.cpl/joy.rc:66
|
||||
msgid ""
|
||||
"Press any button in the controller to activate the chosen effect. The effect "
|
||||
"direction can be changed with the controller axis."
|
||||
|
|
14
po/es.po
14
po/es.po
|
@ -785,7 +785,7 @@ msgstr "Sólo &palabra completa"
|
|||
msgid "Match &Case"
|
||||
msgstr "&Mayúsculas/minúsculas"
|
||||
|
||||
#: dlls/comdlg32/comdlg32.rc:325 dlls/joy.cpl/joy.rc:76
|
||||
#: dlls/comdlg32/comdlg32.rc:325
|
||||
msgid "Direction"
|
||||
msgstr "Dirección"
|
||||
|
||||
|
@ -3775,15 +3775,13 @@ msgstr "Probar comando de juegos"
|
|||
msgid "Buttons"
|
||||
msgstr "Botones"
|
||||
|
||||
#: dlls/joy.cpl/joy.rc:68
|
||||
msgid "Test Force Feedback"
|
||||
#: dlls/joy.cpl/joy.rc:64
|
||||
#, fuzzy
|
||||
#| msgid "Test Force Feedback"
|
||||
msgid "Force Feedback Effect"
|
||||
msgstr "Probar Force Feedback"
|
||||
|
||||
#: dlls/joy.cpl/joy.rc:72
|
||||
msgid "Available Effects"
|
||||
msgstr "Efectos disponibles"
|
||||
|
||||
#: dlls/joy.cpl/joy.rc:74
|
||||
#: dlls/joy.cpl/joy.rc:66
|
||||
msgid ""
|
||||
"Press any button in the controller to activate the chosen effect. The effect "
|
||||
"direction can be changed with the controller axis."
|
||||
|
|
12
po/fa.po
12
po/fa.po
|
@ -785,7 +785,7 @@ msgstr ""
|
|||
msgid "Match &Case"
|
||||
msgstr ""
|
||||
|
||||
#: dlls/comdlg32/comdlg32.rc:325 dlls/joy.cpl/joy.rc:76
|
||||
#: dlls/comdlg32/comdlg32.rc:325
|
||||
#, fuzzy
|
||||
msgid "Direction"
|
||||
msgstr "اطلاعات"
|
||||
|
@ -3739,15 +3739,11 @@ msgstr ""
|
|||
msgid "Buttons"
|
||||
msgstr ""
|
||||
|
||||
#: dlls/joy.cpl/joy.rc:68
|
||||
msgid "Test Force Feedback"
|
||||
#: dlls/joy.cpl/joy.rc:64
|
||||
msgid "Force Feedback Effect"
|
||||
msgstr ""
|
||||
|
||||
#: dlls/joy.cpl/joy.rc:72
|
||||
msgid "Available Effects"
|
||||
msgstr ""
|
||||
|
||||
#: dlls/joy.cpl/joy.rc:74
|
||||
#: dlls/joy.cpl/joy.rc:66
|
||||
msgid ""
|
||||
"Press any button in the controller to activate the chosen effect. The effect "
|
||||
"direction can be changed with the controller axis."
|
||||
|
|
14
po/fi.po
14
po/fi.po
|
@ -778,7 +778,7 @@ msgstr "&Koko sana"
|
|||
msgid "Match &Case"
|
||||
msgstr "Kirjaink&oko"
|
||||
|
||||
#: dlls/comdlg32/comdlg32.rc:325 dlls/joy.cpl/joy.rc:76
|
||||
#: dlls/comdlg32/comdlg32.rc:325
|
||||
msgid "Direction"
|
||||
msgstr "Suunta"
|
||||
|
||||
|
@ -3749,15 +3749,13 @@ msgstr "Testaa joystickia"
|
|||
msgid "Buttons"
|
||||
msgstr "Painikkeet"
|
||||
|
||||
#: dlls/joy.cpl/joy.rc:68
|
||||
msgid "Test Force Feedback"
|
||||
#: dlls/joy.cpl/joy.rc:64
|
||||
#, fuzzy
|
||||
#| msgid "Test Force Feedback"
|
||||
msgid "Force Feedback Effect"
|
||||
msgstr "Testaa voimapalautetta"
|
||||
|
||||
#: dlls/joy.cpl/joy.rc:72
|
||||
msgid "Available Effects"
|
||||
msgstr "Mahdolliset efektit"
|
||||
|
||||
#: dlls/joy.cpl/joy.rc:74
|
||||
#: dlls/joy.cpl/joy.rc:66
|
||||
msgid ""
|
||||
"Press any button in the controller to activate the chosen effect. The effect "
|
||||
"direction can be changed with the controller axis."
|
||||
|
|
14
po/fr.po
14
po/fr.po
|
@ -786,7 +786,7 @@ msgstr "Mots &entiers seulement"
|
|||
msgid "Match &Case"
|
||||
msgstr "Respecter la &casse"
|
||||
|
||||
#: dlls/comdlg32/comdlg32.rc:325 dlls/joy.cpl/joy.rc:76
|
||||
#: dlls/comdlg32/comdlg32.rc:325
|
||||
msgid "Direction"
|
||||
msgstr "Direction"
|
||||
|
||||
|
@ -3781,15 +3781,13 @@ msgstr "Tester le joystick"
|
|||
msgid "Buttons"
|
||||
msgstr "Boutons"
|
||||
|
||||
#: dlls/joy.cpl/joy.rc:68
|
||||
msgid "Test Force Feedback"
|
||||
#: dlls/joy.cpl/joy.rc:64
|
||||
#, fuzzy
|
||||
#| msgid "Test Force Feedback"
|
||||
msgid "Force Feedback Effect"
|
||||
msgstr "Tester le retour de force"
|
||||
|
||||
#: dlls/joy.cpl/joy.rc:72
|
||||
msgid "Available Effects"
|
||||
msgstr "Effets disponibles"
|
||||
|
||||
#: dlls/joy.cpl/joy.rc:74
|
||||
#: dlls/joy.cpl/joy.rc:66
|
||||
msgid ""
|
||||
"Press any button in the controller to activate the chosen effect. The effect "
|
||||
"direction can be changed with the controller axis."
|
||||
|
|
14
po/he.po
14
po/he.po
|
@ -802,7 +802,7 @@ msgstr "התאמת מילים &שלמות בלבד"
|
|||
msgid "Match &Case"
|
||||
msgstr "התאמת &רשיות"
|
||||
|
||||
#: dlls/comdlg32/comdlg32.rc:325 dlls/joy.cpl/joy.rc:76
|
||||
#: dlls/comdlg32/comdlg32.rc:325
|
||||
msgid "Direction"
|
||||
msgstr "כיוון"
|
||||
|
||||
|
@ -3782,17 +3782,11 @@ msgstr ""
|
|||
msgid "Buttons"
|
||||
msgstr ""
|
||||
|
||||
#: dlls/joy.cpl/joy.rc:68
|
||||
msgid "Test Force Feedback"
|
||||
#: dlls/joy.cpl/joy.rc:64
|
||||
msgid "Force Feedback Effect"
|
||||
msgstr ""
|
||||
|
||||
#: dlls/joy.cpl/joy.rc:72
|
||||
#, fuzzy
|
||||
#| msgid "Available formats"
|
||||
msgid "Available Effects"
|
||||
msgstr "התבניות הזמינות"
|
||||
|
||||
#: dlls/joy.cpl/joy.rc:74
|
||||
#: dlls/joy.cpl/joy.rc:66
|
||||
msgid ""
|
||||
"Press any button in the controller to activate the chosen effect. The effect "
|
||||
"direction can be changed with the controller axis."
|
||||
|
|
12
po/hi.po
12
po/hi.po
|
@ -770,7 +770,7 @@ msgstr ""
|
|||
msgid "Match &Case"
|
||||
msgstr ""
|
||||
|
||||
#: dlls/comdlg32/comdlg32.rc:325 dlls/joy.cpl/joy.rc:76
|
||||
#: dlls/comdlg32/comdlg32.rc:325
|
||||
msgid "Direction"
|
||||
msgstr ""
|
||||
|
||||
|
@ -3671,15 +3671,11 @@ msgstr ""
|
|||
msgid "Buttons"
|
||||
msgstr ""
|
||||
|
||||
#: dlls/joy.cpl/joy.rc:68
|
||||
msgid "Test Force Feedback"
|
||||
#: dlls/joy.cpl/joy.rc:64
|
||||
msgid "Force Feedback Effect"
|
||||
msgstr ""
|
||||
|
||||
#: dlls/joy.cpl/joy.rc:72
|
||||
msgid "Available Effects"
|
||||
msgstr ""
|
||||
|
||||
#: dlls/joy.cpl/joy.rc:74
|
||||
#: dlls/joy.cpl/joy.rc:66
|
||||
msgid ""
|
||||
"Press any button in the controller to activate the chosen effect. The effect "
|
||||
"direction can be changed with the controller axis."
|
||||
|
|
14
po/hr.po
14
po/hr.po
|
@ -795,7 +795,7 @@ msgstr "Odgovara samo &cijela riječ"
|
|||
msgid "Match &Case"
|
||||
msgstr "Odgovara &veličina slova"
|
||||
|
||||
#: dlls/comdlg32/comdlg32.rc:325 dlls/joy.cpl/joy.rc:76
|
||||
#: dlls/comdlg32/comdlg32.rc:325
|
||||
msgid "Direction"
|
||||
msgstr "Smjer"
|
||||
|
||||
|
@ -3791,15 +3791,13 @@ msgstr "Isprobaj joystick"
|
|||
msgid "Buttons"
|
||||
msgstr "Gumbi"
|
||||
|
||||
#: dlls/joy.cpl/joy.rc:68
|
||||
msgid "Test Force Feedback"
|
||||
#: dlls/joy.cpl/joy.rc:64
|
||||
#, fuzzy
|
||||
#| msgid "Test Force Feedback"
|
||||
msgid "Force Feedback Effect"
|
||||
msgstr "Isprobaj povratnu vezu sile"
|
||||
|
||||
#: dlls/joy.cpl/joy.rc:72
|
||||
msgid "Available Effects"
|
||||
msgstr "Dostupni efekti"
|
||||
|
||||
#: dlls/joy.cpl/joy.rc:74
|
||||
#: dlls/joy.cpl/joy.rc:66
|
||||
msgid ""
|
||||
"Press any button in the controller to activate the chosen effect. The effect "
|
||||
"direction can be changed with the controller axis."
|
||||
|
|
14
po/hu.po
14
po/hu.po
|
@ -809,7 +809,7 @@ msgstr "Teljes &szavak keresése"
|
|||
msgid "Match &Case"
|
||||
msgstr "Kis/&nagybetű különbség"
|
||||
|
||||
#: dlls/comdlg32/comdlg32.rc:325 dlls/joy.cpl/joy.rc:76
|
||||
#: dlls/comdlg32/comdlg32.rc:325
|
||||
msgid "Direction"
|
||||
msgstr "Irány"
|
||||
|
||||
|
@ -3837,17 +3837,11 @@ msgstr ""
|
|||
msgid "Buttons"
|
||||
msgstr ""
|
||||
|
||||
#: dlls/joy.cpl/joy.rc:68
|
||||
msgid "Test Force Feedback"
|
||||
#: dlls/joy.cpl/joy.rc:64
|
||||
msgid "Force Feedback Effect"
|
||||
msgstr ""
|
||||
|
||||
#: dlls/joy.cpl/joy.rc:72
|
||||
#, fuzzy
|
||||
#| msgid "Available formats"
|
||||
msgid "Available Effects"
|
||||
msgstr "Elérhető formátumok"
|
||||
|
||||
#: dlls/joy.cpl/joy.rc:74
|
||||
#: dlls/joy.cpl/joy.rc:66
|
||||
msgid ""
|
||||
"Press any button in the controller to activate the chosen effect. The effect "
|
||||
"direction can be changed with the controller axis."
|
||||
|
|
14
po/it.po
14
po/it.po
|
@ -815,7 +815,7 @@ msgstr "Solo parole &intere"
|
|||
msgid "Match &Case"
|
||||
msgstr "&Maiuscole/Minuscole"
|
||||
|
||||
#: dlls/comdlg32/comdlg32.rc:325 dlls/joy.cpl/joy.rc:76
|
||||
#: dlls/comdlg32/comdlg32.rc:325
|
||||
msgid "Direction"
|
||||
msgstr "Direzione"
|
||||
|
||||
|
@ -3845,17 +3845,11 @@ msgstr ""
|
|||
msgid "Buttons"
|
||||
msgstr ""
|
||||
|
||||
#: dlls/joy.cpl/joy.rc:68
|
||||
msgid "Test Force Feedback"
|
||||
#: dlls/joy.cpl/joy.rc:64
|
||||
msgid "Force Feedback Effect"
|
||||
msgstr ""
|
||||
|
||||
#: dlls/joy.cpl/joy.rc:72
|
||||
#, fuzzy
|
||||
#| msgid "Available formats"
|
||||
msgid "Available Effects"
|
||||
msgstr "Formati disponibili"
|
||||
|
||||
#: dlls/joy.cpl/joy.rc:74
|
||||
#: dlls/joy.cpl/joy.rc:66
|
||||
msgid ""
|
||||
"Press any button in the controller to activate the chosen effect. The effect "
|
||||
"direction can be changed with the controller axis."
|
||||
|
|
14
po/ja.po
14
po/ja.po
|
@ -784,7 +784,7 @@ msgstr "単語単位で検索(&W)"
|
|||
msgid "Match &Case"
|
||||
msgstr "大文字と小文字を区別する(&C)"
|
||||
|
||||
#: dlls/comdlg32/comdlg32.rc:325 dlls/joy.cpl/joy.rc:76
|
||||
#: dlls/comdlg32/comdlg32.rc:325
|
||||
msgid "Direction"
|
||||
msgstr "方向"
|
||||
|
||||
|
@ -3749,15 +3749,13 @@ msgstr "ジョイスティックのテスト"
|
|||
msgid "Buttons"
|
||||
msgstr "ボタン"
|
||||
|
||||
#: dlls/joy.cpl/joy.rc:68
|
||||
msgid "Test Force Feedback"
|
||||
#: dlls/joy.cpl/joy.rc:64
|
||||
#, fuzzy
|
||||
#| msgid "Test Force Feedback"
|
||||
msgid "Force Feedback Effect"
|
||||
msgstr "フォース フィードバックのテスト"
|
||||
|
||||
#: dlls/joy.cpl/joy.rc:72
|
||||
msgid "Available Effects"
|
||||
msgstr "使用可能な効果"
|
||||
|
||||
#: dlls/joy.cpl/joy.rc:74
|
||||
#: dlls/joy.cpl/joy.rc:66
|
||||
msgid ""
|
||||
"Press any button in the controller to activate the chosen effect. The effect "
|
||||
"direction can be changed with the controller axis."
|
||||
|
|
14
po/ko.po
14
po/ko.po
|
@ -781,7 +781,7 @@ msgstr "단어 단위로(&W)"
|
|||
msgid "Match &Case"
|
||||
msgstr "대/소문자 구분(&C)"
|
||||
|
||||
#: dlls/comdlg32/comdlg32.rc:325 dlls/joy.cpl/joy.rc:76
|
||||
#: dlls/comdlg32/comdlg32.rc:325
|
||||
msgid "Direction"
|
||||
msgstr "방향"
|
||||
|
||||
|
@ -3739,15 +3739,13 @@ msgstr "조이스틱 테스트"
|
|||
msgid "Buttons"
|
||||
msgstr "버튼"
|
||||
|
||||
#: dlls/joy.cpl/joy.rc:68
|
||||
msgid "Test Force Feedback"
|
||||
#: dlls/joy.cpl/joy.rc:64
|
||||
#, fuzzy
|
||||
#| msgid "Test Force Feedback"
|
||||
msgid "Force Feedback Effect"
|
||||
msgstr "강제 피드백 테스트"
|
||||
|
||||
#: dlls/joy.cpl/joy.rc:72
|
||||
msgid "Available Effects"
|
||||
msgstr "사용 가능한 효과"
|
||||
|
||||
#: dlls/joy.cpl/joy.rc:74
|
||||
#: dlls/joy.cpl/joy.rc:66
|
||||
msgid ""
|
||||
"Press any button in the controller to activate the chosen effect. The effect "
|
||||
"direction can be changed with the controller axis."
|
||||
|
|
14
po/lt.po
14
po/lt.po
|
@ -783,7 +783,7 @@ msgstr "Tenkina tik &visas žodis"
|
|||
msgid "Match &Case"
|
||||
msgstr "Skirti raidžių &dydį"
|
||||
|
||||
#: dlls/comdlg32/comdlg32.rc:325 dlls/joy.cpl/joy.rc:76
|
||||
#: dlls/comdlg32/comdlg32.rc:325
|
||||
msgid "Direction"
|
||||
msgstr "Kryptis"
|
||||
|
||||
|
@ -3758,15 +3758,13 @@ msgstr "Testuoti vairasvirtę"
|
|||
msgid "Buttons"
|
||||
msgstr "Mygtukai"
|
||||
|
||||
#: dlls/joy.cpl/joy.rc:68
|
||||
msgid "Test Force Feedback"
|
||||
#: dlls/joy.cpl/joy.rc:64
|
||||
#, fuzzy
|
||||
#| msgid "Test Force Feedback"
|
||||
msgid "Force Feedback Effect"
|
||||
msgstr "Testuoti „Force Feedback“"
|
||||
|
||||
#: dlls/joy.cpl/joy.rc:72
|
||||
msgid "Available Effects"
|
||||
msgstr "Prieinami efektai"
|
||||
|
||||
#: dlls/joy.cpl/joy.rc:74
|
||||
#: dlls/joy.cpl/joy.rc:66
|
||||
msgid ""
|
||||
"Press any button in the controller to activate the chosen effect. The effect "
|
||||
"direction can be changed with the controller axis."
|
||||
|
|
12
po/ml.po
12
po/ml.po
|
@ -772,7 +772,7 @@ msgstr ""
|
|||
msgid "Match &Case"
|
||||
msgstr ""
|
||||
|
||||
#: dlls/comdlg32/comdlg32.rc:325 dlls/joy.cpl/joy.rc:76
|
||||
#: dlls/comdlg32/comdlg32.rc:325
|
||||
msgid "Direction"
|
||||
msgstr ""
|
||||
|
||||
|
@ -3673,15 +3673,11 @@ msgstr ""
|
|||
msgid "Buttons"
|
||||
msgstr ""
|
||||
|
||||
#: dlls/joy.cpl/joy.rc:68
|
||||
msgid "Test Force Feedback"
|
||||
#: dlls/joy.cpl/joy.rc:64
|
||||
msgid "Force Feedback Effect"
|
||||
msgstr ""
|
||||
|
||||
#: dlls/joy.cpl/joy.rc:72
|
||||
msgid "Available Effects"
|
||||
msgstr ""
|
||||
|
||||
#: dlls/joy.cpl/joy.rc:74
|
||||
#: dlls/joy.cpl/joy.rc:66
|
||||
msgid ""
|
||||
"Press any button in the controller to activate the chosen effect. The effect "
|
||||
"direction can be changed with the controller axis."
|
||||
|
|
14
po/nb_NO.po
14
po/nb_NO.po
|
@ -782,7 +782,7 @@ msgstr "Finn &kun hele ord"
|
|||
msgid "Match &Case"
|
||||
msgstr "Skill &mellom store og små bokstaver"
|
||||
|
||||
#: dlls/comdlg32/comdlg32.rc:325 dlls/joy.cpl/joy.rc:76
|
||||
#: dlls/comdlg32/comdlg32.rc:325
|
||||
msgid "Direction"
|
||||
msgstr "Retning"
|
||||
|
||||
|
@ -3769,15 +3769,13 @@ msgstr "Test styrespake"
|
|||
msgid "Buttons"
|
||||
msgstr "Knapper"
|
||||
|
||||
#: dlls/joy.cpl/joy.rc:68
|
||||
msgid "Test Force Feedback"
|
||||
#: dlls/joy.cpl/joy.rc:64
|
||||
#, fuzzy
|
||||
#| msgid "Test Force Feedback"
|
||||
msgid "Force Feedback Effect"
|
||||
msgstr "Test Force Feedback"
|
||||
|
||||
#: dlls/joy.cpl/joy.rc:72
|
||||
msgid "Available Effects"
|
||||
msgstr "Tilgjengelige effekter"
|
||||
|
||||
#: dlls/joy.cpl/joy.rc:74
|
||||
#: dlls/joy.cpl/joy.rc:66
|
||||
msgid ""
|
||||
"Press any button in the controller to activate the chosen effect. The effect "
|
||||
"direction can be changed with the controller axis."
|
||||
|
|
14
po/nl.po
14
po/nl.po
|
@ -785,7 +785,7 @@ msgstr "Geheel &woord"
|
|||
msgid "Match &Case"
|
||||
msgstr "Gelijke &hoofd-/kleine letters"
|
||||
|
||||
#: dlls/comdlg32/comdlg32.rc:325 dlls/joy.cpl/joy.rc:76
|
||||
#: dlls/comdlg32/comdlg32.rc:325
|
||||
msgid "Direction"
|
||||
msgstr "Oriëntatie"
|
||||
|
||||
|
@ -3769,15 +3769,13 @@ msgstr "Joystick testen"
|
|||
msgid "Buttons"
|
||||
msgstr "Knoppen"
|
||||
|
||||
#: dlls/joy.cpl/joy.rc:68
|
||||
msgid "Test Force Feedback"
|
||||
#: dlls/joy.cpl/joy.rc:64
|
||||
#, fuzzy
|
||||
#| msgid "Test Force Feedback"
|
||||
msgid "Force Feedback Effect"
|
||||
msgstr "Force Feedback Testen"
|
||||
|
||||
#: dlls/joy.cpl/joy.rc:72
|
||||
msgid "Available Effects"
|
||||
msgstr "Beschikbare effecten"
|
||||
|
||||
#: dlls/joy.cpl/joy.rc:74
|
||||
#: dlls/joy.cpl/joy.rc:66
|
||||
msgid ""
|
||||
"Press any button in the controller to activate the chosen effect. The effect "
|
||||
"direction can be changed with the controller axis."
|
||||
|
|
12
po/or.po
12
po/or.po
|
@ -770,7 +770,7 @@ msgstr ""
|
|||
msgid "Match &Case"
|
||||
msgstr ""
|
||||
|
||||
#: dlls/comdlg32/comdlg32.rc:325 dlls/joy.cpl/joy.rc:76
|
||||
#: dlls/comdlg32/comdlg32.rc:325
|
||||
msgid "Direction"
|
||||
msgstr ""
|
||||
|
||||
|
@ -3671,15 +3671,11 @@ msgstr ""
|
|||
msgid "Buttons"
|
||||
msgstr ""
|
||||
|
||||
#: dlls/joy.cpl/joy.rc:68
|
||||
msgid "Test Force Feedback"
|
||||
#: dlls/joy.cpl/joy.rc:64
|
||||
msgid "Force Feedback Effect"
|
||||
msgstr ""
|
||||
|
||||
#: dlls/joy.cpl/joy.rc:72
|
||||
msgid "Available Effects"
|
||||
msgstr ""
|
||||
|
||||
#: dlls/joy.cpl/joy.rc:74
|
||||
#: dlls/joy.cpl/joy.rc:66
|
||||
msgid ""
|
||||
"Press any button in the controller to activate the chosen effect. The effect "
|
||||
"direction can be changed with the controller axis."
|
||||
|
|
12
po/pa.po
12
po/pa.po
|
@ -770,7 +770,7 @@ msgstr ""
|
|||
msgid "Match &Case"
|
||||
msgstr ""
|
||||
|
||||
#: dlls/comdlg32/comdlg32.rc:325 dlls/joy.cpl/joy.rc:76
|
||||
#: dlls/comdlg32/comdlg32.rc:325
|
||||
msgid "Direction"
|
||||
msgstr ""
|
||||
|
||||
|
@ -3671,15 +3671,11 @@ msgstr ""
|
|||
msgid "Buttons"
|
||||
msgstr ""
|
||||
|
||||
#: dlls/joy.cpl/joy.rc:68
|
||||
msgid "Test Force Feedback"
|
||||
#: dlls/joy.cpl/joy.rc:64
|
||||
msgid "Force Feedback Effect"
|
||||
msgstr ""
|
||||
|
||||
#: dlls/joy.cpl/joy.rc:72
|
||||
msgid "Available Effects"
|
||||
msgstr ""
|
||||
|
||||
#: dlls/joy.cpl/joy.rc:74
|
||||
#: dlls/joy.cpl/joy.rc:66
|
||||
msgid ""
|
||||
"Press any button in the controller to activate the chosen effect. The effect "
|
||||
"direction can be changed with the controller axis."
|
||||
|
|
14
po/pl.po
14
po/pl.po
|
@ -788,7 +788,7 @@ msgstr "Uwzględniaj tylko całe &wyrazy"
|
|||
msgid "Match &Case"
|
||||
msgstr "&Rozróżniaj wielkość liter"
|
||||
|
||||
#: dlls/comdlg32/comdlg32.rc:325 dlls/joy.cpl/joy.rc:76
|
||||
#: dlls/comdlg32/comdlg32.rc:325
|
||||
msgid "Direction"
|
||||
msgstr "Kierunek"
|
||||
|
||||
|
@ -3774,15 +3774,13 @@ msgstr "Próbowanie Joysticka"
|
|||
msgid "Buttons"
|
||||
msgstr "Przyciski"
|
||||
|
||||
#: dlls/joy.cpl/joy.rc:68
|
||||
msgid "Test Force Feedback"
|
||||
#: dlls/joy.cpl/joy.rc:64
|
||||
#, fuzzy
|
||||
#| msgid "Test Force Feedback"
|
||||
msgid "Force Feedback Effect"
|
||||
msgstr "Próbowanie odczuć siły zwrotnej"
|
||||
|
||||
#: dlls/joy.cpl/joy.rc:72
|
||||
msgid "Available Effects"
|
||||
msgstr "Dostępne efekty"
|
||||
|
||||
#: dlls/joy.cpl/joy.rc:74
|
||||
#: dlls/joy.cpl/joy.rc:66
|
||||
msgid ""
|
||||
"Press any button in the controller to activate the chosen effect. The effect "
|
||||
"direction can be changed with the controller axis."
|
||||
|
|
14
po/pt_BR.po
14
po/pt_BR.po
|
@ -785,7 +785,7 @@ msgstr "Palavra &Inteira"
|
|||
msgid "Match &Case"
|
||||
msgstr "&Maiúsculas/minúsculas"
|
||||
|
||||
#: dlls/comdlg32/comdlg32.rc:325 dlls/joy.cpl/joy.rc:76
|
||||
#: dlls/comdlg32/comdlg32.rc:325
|
||||
msgid "Direction"
|
||||
msgstr "Direção"
|
||||
|
||||
|
@ -3770,15 +3770,13 @@ msgstr "Testar Controle"
|
|||
msgid "Buttons"
|
||||
msgstr "Botões"
|
||||
|
||||
#: dlls/joy.cpl/joy.rc:68
|
||||
msgid "Test Force Feedback"
|
||||
#: dlls/joy.cpl/joy.rc:64
|
||||
#, fuzzy
|
||||
#| msgid "Test Force Feedback"
|
||||
msgid "Force Feedback Effect"
|
||||
msgstr "Testar Force Feedback"
|
||||
|
||||
#: dlls/joy.cpl/joy.rc:72
|
||||
msgid "Available Effects"
|
||||
msgstr "Efeitos Disponíveis"
|
||||
|
||||
#: dlls/joy.cpl/joy.rc:74
|
||||
#: dlls/joy.cpl/joy.rc:66
|
||||
msgid ""
|
||||
"Press any button in the controller to activate the chosen effect. The effect "
|
||||
"direction can be changed with the controller axis."
|
||||
|
|
14
po/pt_PT.po
14
po/pt_PT.po
|
@ -809,7 +809,7 @@ msgstr "Palavra &Inteira"
|
|||
msgid "Match &Case"
|
||||
msgstr "&Maiúsculas/minúsculas"
|
||||
|
||||
#: dlls/comdlg32/comdlg32.rc:325 dlls/joy.cpl/joy.rc:76
|
||||
#: dlls/comdlg32/comdlg32.rc:325
|
||||
msgid "Direction"
|
||||
msgstr "Direção"
|
||||
|
||||
|
@ -3817,15 +3817,13 @@ msgstr "Testar Joystick"
|
|||
msgid "Buttons"
|
||||
msgstr "Botões"
|
||||
|
||||
#: dlls/joy.cpl/joy.rc:68
|
||||
msgid "Test Force Feedback"
|
||||
#: dlls/joy.cpl/joy.rc:64
|
||||
#, fuzzy
|
||||
#| msgid "Test Force Feedback"
|
||||
msgid "Force Feedback Effect"
|
||||
msgstr "Testar Force Feedback"
|
||||
|
||||
#: dlls/joy.cpl/joy.rc:72
|
||||
msgid "Available Effects"
|
||||
msgstr "Efeitos Disponíveis"
|
||||
|
||||
#: dlls/joy.cpl/joy.rc:74
|
||||
#: dlls/joy.cpl/joy.rc:66
|
||||
msgid ""
|
||||
"Press any button in the controller to activate the chosen effect. The effect "
|
||||
"direction can be changed with the controller axis."
|
||||
|
|
12
po/rm.po
12
po/rm.po
|
@ -781,7 +781,7 @@ msgstr ""
|
|||
msgid "Match &Case"
|
||||
msgstr ""
|
||||
|
||||
#: dlls/comdlg32/comdlg32.rc:325 dlls/joy.cpl/joy.rc:76
|
||||
#: dlls/comdlg32/comdlg32.rc:325
|
||||
msgid "Direction"
|
||||
msgstr ""
|
||||
|
||||
|
@ -3700,15 +3700,11 @@ msgstr ""
|
|||
msgid "Buttons"
|
||||
msgstr ""
|
||||
|
||||
#: dlls/joy.cpl/joy.rc:68
|
||||
msgid "Test Force Feedback"
|
||||
#: dlls/joy.cpl/joy.rc:64
|
||||
msgid "Force Feedback Effect"
|
||||
msgstr ""
|
||||
|
||||
#: dlls/joy.cpl/joy.rc:72
|
||||
msgid "Available Effects"
|
||||
msgstr ""
|
||||
|
||||
#: dlls/joy.cpl/joy.rc:74
|
||||
#: dlls/joy.cpl/joy.rc:66
|
||||
msgid ""
|
||||
"Press any button in the controller to activate the chosen effect. The effect "
|
||||
"direction can be changed with the controller axis."
|
||||
|
|
12
po/ro.po
12
po/ro.po
|
@ -784,7 +784,7 @@ msgstr "&Numai cuvinte întregi"
|
|||
msgid "Match &Case"
|
||||
msgstr "Sensibil la registru"
|
||||
|
||||
#: dlls/comdlg32/comdlg32.rc:325 dlls/joy.cpl/joy.rc:76
|
||||
#: dlls/comdlg32/comdlg32.rc:325
|
||||
msgid "Direction"
|
||||
msgstr "Direcție"
|
||||
|
||||
|
@ -3772,15 +3772,11 @@ msgstr "Testează joystick-ul"
|
|||
msgid "Buttons"
|
||||
msgstr "Butoane"
|
||||
|
||||
#: dlls/joy.cpl/joy.rc:68
|
||||
msgid "Test Force Feedback"
|
||||
#: dlls/joy.cpl/joy.rc:64
|
||||
msgid "Force Feedback Effect"
|
||||
msgstr ""
|
||||
|
||||
#: dlls/joy.cpl/joy.rc:72
|
||||
msgid "Available Effects"
|
||||
msgstr "Efecte disponibile"
|
||||
|
||||
#: dlls/joy.cpl/joy.rc:74
|
||||
#: dlls/joy.cpl/joy.rc:66
|
||||
msgid ""
|
||||
"Press any button in the controller to activate the chosen effect. The effect "
|
||||
"direction can be changed with the controller axis."
|
||||
|
|
14
po/ru.po
14
po/ru.po
|
@ -793,7 +793,7 @@ msgstr "&Только слово целиком"
|
|||
msgid "Match &Case"
|
||||
msgstr "C &учетом регистра"
|
||||
|
||||
#: dlls/comdlg32/comdlg32.rc:325 dlls/joy.cpl/joy.rc:76
|
||||
#: dlls/comdlg32/comdlg32.rc:325
|
||||
msgid "Direction"
|
||||
msgstr "Направление"
|
||||
|
||||
|
@ -3777,15 +3777,13 @@ msgstr "Проверить джойстик"
|
|||
msgid "Buttons"
|
||||
msgstr "Кнопки"
|
||||
|
||||
#: dlls/joy.cpl/joy.rc:68
|
||||
msgid "Test Force Feedback"
|
||||
#: dlls/joy.cpl/joy.rc:64
|
||||
#, fuzzy
|
||||
#| msgid "Test Force Feedback"
|
||||
msgid "Force Feedback Effect"
|
||||
msgstr "Проверить отдачу"
|
||||
|
||||
#: dlls/joy.cpl/joy.rc:72
|
||||
msgid "Available Effects"
|
||||
msgstr "Доступные эффекты"
|
||||
|
||||
#: dlls/joy.cpl/joy.rc:74
|
||||
#: dlls/joy.cpl/joy.rc:66
|
||||
msgid ""
|
||||
"Press any button in the controller to activate the chosen effect. The effect "
|
||||
"direction can be changed with the controller axis."
|
||||
|
|
12
po/si.po
12
po/si.po
|
@ -791,7 +791,7 @@ msgstr "සම්පූර්ණ වචනය පමණක් ගැලපේ (&
|
|||
msgid "Match &Case"
|
||||
msgstr ""
|
||||
|
||||
#: dlls/comdlg32/comdlg32.rc:325 dlls/joy.cpl/joy.rc:76
|
||||
#: dlls/comdlg32/comdlg32.rc:325
|
||||
msgid "Direction"
|
||||
msgstr "දිශාව"
|
||||
|
||||
|
@ -3704,15 +3704,11 @@ msgstr ""
|
|||
msgid "Buttons"
|
||||
msgstr "බොත්තම්"
|
||||
|
||||
#: dlls/joy.cpl/joy.rc:68
|
||||
msgid "Test Force Feedback"
|
||||
#: dlls/joy.cpl/joy.rc:64
|
||||
msgid "Force Feedback Effect"
|
||||
msgstr ""
|
||||
|
||||
#: dlls/joy.cpl/joy.rc:72
|
||||
msgid "Available Effects"
|
||||
msgstr ""
|
||||
|
||||
#: dlls/joy.cpl/joy.rc:74
|
||||
#: dlls/joy.cpl/joy.rc:66
|
||||
msgid ""
|
||||
"Press any button in the controller to activate the chosen effect. The effect "
|
||||
"direction can be changed with the controller axis."
|
||||
|
|
14
po/sk.po
14
po/sk.po
|
@ -815,7 +815,7 @@ msgstr "Len &celé slová"
|
|||
msgid "Match &Case"
|
||||
msgstr "&Rozlišovať malé a veľké písmená"
|
||||
|
||||
#: dlls/comdlg32/comdlg32.rc:325 dlls/joy.cpl/joy.rc:76
|
||||
#: dlls/comdlg32/comdlg32.rc:325
|
||||
msgid "Direction"
|
||||
msgstr "Smer"
|
||||
|
||||
|
@ -3751,17 +3751,11 @@ msgstr ""
|
|||
msgid "Buttons"
|
||||
msgstr ""
|
||||
|
||||
#: dlls/joy.cpl/joy.rc:68
|
||||
msgid "Test Force Feedback"
|
||||
#: dlls/joy.cpl/joy.rc:64
|
||||
msgid "Force Feedback Effect"
|
||||
msgstr ""
|
||||
|
||||
#: dlls/joy.cpl/joy.rc:72
|
||||
#, fuzzy
|
||||
#| msgid "Available formats"
|
||||
msgid "Available Effects"
|
||||
msgstr "Dostupné formáty"
|
||||
|
||||
#: dlls/joy.cpl/joy.rc:74
|
||||
#: dlls/joy.cpl/joy.rc:66
|
||||
msgid ""
|
||||
"Press any button in the controller to activate the chosen effect. The effect "
|
||||
"direction can be changed with the controller axis."
|
||||
|
|
14
po/sl.po
14
po/sl.po
|
@ -814,7 +814,7 @@ msgstr "&Samo cele besede"
|
|||
msgid "Match &Case"
|
||||
msgstr "&Razlikuj velikost črk"
|
||||
|
||||
#: dlls/comdlg32/comdlg32.rc:325 dlls/joy.cpl/joy.rc:76
|
||||
#: dlls/comdlg32/comdlg32.rc:325
|
||||
msgid "Direction"
|
||||
msgstr "Smer iskanja"
|
||||
|
||||
|
@ -3839,17 +3839,11 @@ msgstr ""
|
|||
msgid "Buttons"
|
||||
msgstr ""
|
||||
|
||||
#: dlls/joy.cpl/joy.rc:68
|
||||
msgid "Test Force Feedback"
|
||||
#: dlls/joy.cpl/joy.rc:64
|
||||
msgid "Force Feedback Effect"
|
||||
msgstr ""
|
||||
|
||||
#: dlls/joy.cpl/joy.rc:72
|
||||
#, fuzzy
|
||||
#| msgid "Available formats"
|
||||
msgid "Available Effects"
|
||||
msgstr "Razpoložljive oblike"
|
||||
|
||||
#: dlls/joy.cpl/joy.rc:74
|
||||
#: dlls/joy.cpl/joy.rc:66
|
||||
msgid ""
|
||||
"Press any button in the controller to activate the chosen effect. The effect "
|
||||
"direction can be changed with the controller axis."
|
||||
|
|
|
@ -804,7 +804,7 @@ msgstr "Пронађи само &целу реч"
|
|||
msgid "Match &Case"
|
||||
msgstr "Подударање &малих и великих слова"
|
||||
|
||||
#: dlls/comdlg32/comdlg32.rc:325 dlls/joy.cpl/joy.rc:76
|
||||
#: dlls/comdlg32/comdlg32.rc:325
|
||||
msgid "Direction"
|
||||
msgstr "Правац"
|
||||
|
||||
|
@ -3815,16 +3815,11 @@ msgstr ""
|
|||
msgid "Buttons"
|
||||
msgstr ""
|
||||
|
||||
#: dlls/joy.cpl/joy.rc:68
|
||||
msgid "Test Force Feedback"
|
||||
#: dlls/joy.cpl/joy.rc:64
|
||||
msgid "Force Feedback Effect"
|
||||
msgstr ""
|
||||
|
||||
#: dlls/joy.cpl/joy.rc:72
|
||||
#, fuzzy
|
||||
msgid "Available Effects"
|
||||
msgstr "Н&апред"
|
||||
|
||||
#: dlls/joy.cpl/joy.rc:74
|
||||
#: dlls/joy.cpl/joy.rc:66
|
||||
msgid ""
|
||||
"Press any button in the controller to activate the chosen effect. The effect "
|
||||
"direction can be changed with the controller axis."
|
||||
|
|
|
@ -850,7 +850,7 @@ msgstr ""
|
|||
msgid "Match &Case"
|
||||
msgstr ""
|
||||
|
||||
#: dlls/comdlg32/comdlg32.rc:325 dlls/joy.cpl/joy.rc:76
|
||||
#: dlls/comdlg32/comdlg32.rc:325
|
||||
#, fuzzy
|
||||
msgid "Direction"
|
||||
msgstr "Opis"
|
||||
|
@ -3900,16 +3900,11 @@ msgstr ""
|
|||
msgid "Buttons"
|
||||
msgstr ""
|
||||
|
||||
#: dlls/joy.cpl/joy.rc:68
|
||||
msgid "Test Force Feedback"
|
||||
#: dlls/joy.cpl/joy.rc:64
|
||||
msgid "Force Feedback Effect"
|
||||
msgstr ""
|
||||
|
||||
#: dlls/joy.cpl/joy.rc:72
|
||||
#, fuzzy
|
||||
msgid "Available Effects"
|
||||
msgstr "N&apred"
|
||||
|
||||
#: dlls/joy.cpl/joy.rc:74
|
||||
#: dlls/joy.cpl/joy.rc:66
|
||||
msgid ""
|
||||
"Press any button in the controller to activate the chosen effect. The effect "
|
||||
"direction can be changed with the controller axis."
|
||||
|
|
14
po/sv.po
14
po/sv.po
|
@ -796,7 +796,7 @@ msgstr "&Bara hela ord"
|
|||
msgid "Match &Case"
|
||||
msgstr "&Skillnad på stora/små bokstäver"
|
||||
|
||||
#: dlls/comdlg32/comdlg32.rc:325 dlls/joy.cpl/joy.rc:76
|
||||
#: dlls/comdlg32/comdlg32.rc:325
|
||||
msgid "Direction"
|
||||
msgstr "Riktning"
|
||||
|
||||
|
@ -3796,15 +3796,13 @@ msgstr "Testa joysticken"
|
|||
msgid "Buttons"
|
||||
msgstr "Knappar"
|
||||
|
||||
#: dlls/joy.cpl/joy.rc:68
|
||||
msgid "Test Force Feedback"
|
||||
#: dlls/joy.cpl/joy.rc:64
|
||||
#, fuzzy
|
||||
#| msgid "Test Force Feedback"
|
||||
msgid "Force Feedback Effect"
|
||||
msgstr "Testa kraftåterkoppling"
|
||||
|
||||
#: dlls/joy.cpl/joy.rc:72
|
||||
msgid "Available Effects"
|
||||
msgstr "Tillgängliga effekter"
|
||||
|
||||
#: dlls/joy.cpl/joy.rc:74
|
||||
#: dlls/joy.cpl/joy.rc:66
|
||||
msgid ""
|
||||
"Press any button in the controller to activate the chosen effect. The effect "
|
||||
"direction can be changed with the controller axis."
|
||||
|
|
12
po/ta.po
12
po/ta.po
|
@ -764,7 +764,7 @@ msgstr ""
|
|||
msgid "Match &Case"
|
||||
msgstr ""
|
||||
|
||||
#: dlls/comdlg32/comdlg32.rc:325 dlls/joy.cpl/joy.rc:76
|
||||
#: dlls/comdlg32/comdlg32.rc:325
|
||||
msgid "Direction"
|
||||
msgstr ""
|
||||
|
||||
|
@ -3637,15 +3637,11 @@ msgstr ""
|
|||
msgid "Buttons"
|
||||
msgstr ""
|
||||
|
||||
#: dlls/joy.cpl/joy.rc:68
|
||||
msgid "Test Force Feedback"
|
||||
#: dlls/joy.cpl/joy.rc:64
|
||||
msgid "Force Feedback Effect"
|
||||
msgstr ""
|
||||
|
||||
#: dlls/joy.cpl/joy.rc:72
|
||||
msgid "Available Effects"
|
||||
msgstr ""
|
||||
|
||||
#: dlls/joy.cpl/joy.rc:74
|
||||
#: dlls/joy.cpl/joy.rc:66
|
||||
msgid ""
|
||||
"Press any button in the controller to activate the chosen effect. The effect "
|
||||
"direction can be changed with the controller axis."
|
||||
|
|
12
po/te.po
12
po/te.po
|
@ -770,7 +770,7 @@ msgstr ""
|
|||
msgid "Match &Case"
|
||||
msgstr ""
|
||||
|
||||
#: dlls/comdlg32/comdlg32.rc:325 dlls/joy.cpl/joy.rc:76
|
||||
#: dlls/comdlg32/comdlg32.rc:325
|
||||
msgid "Direction"
|
||||
msgstr ""
|
||||
|
||||
|
@ -3671,15 +3671,11 @@ msgstr ""
|
|||
msgid "Buttons"
|
||||
msgstr ""
|
||||
|
||||
#: dlls/joy.cpl/joy.rc:68
|
||||
msgid "Test Force Feedback"
|
||||
#: dlls/joy.cpl/joy.rc:64
|
||||
msgid "Force Feedback Effect"
|
||||
msgstr ""
|
||||
|
||||
#: dlls/joy.cpl/joy.rc:72
|
||||
msgid "Available Effects"
|
||||
msgstr ""
|
||||
|
||||
#: dlls/joy.cpl/joy.rc:74
|
||||
#: dlls/joy.cpl/joy.rc:66
|
||||
msgid ""
|
||||
"Press any button in the controller to activate the chosen effect. The effect "
|
||||
"direction can be changed with the controller axis."
|
||||
|
|
14
po/th.po
14
po/th.po
|
@ -781,7 +781,7 @@ msgstr "ตรงกันทุกตัวอักษร"
|
|||
msgid "Match &Case"
|
||||
msgstr "พิจารณาตัวเล็ก-ใหญ่"
|
||||
|
||||
#: dlls/comdlg32/comdlg32.rc:325 dlls/joy.cpl/joy.rc:76
|
||||
#: dlls/comdlg32/comdlg32.rc:325
|
||||
msgid "Direction"
|
||||
msgstr "ทาง"
|
||||
|
||||
|
@ -3729,17 +3729,11 @@ msgstr ""
|
|||
msgid "Buttons"
|
||||
msgstr ""
|
||||
|
||||
#: dlls/joy.cpl/joy.rc:68
|
||||
msgid "Test Force Feedback"
|
||||
#: dlls/joy.cpl/joy.rc:64
|
||||
msgid "Force Feedback Effect"
|
||||
msgstr ""
|
||||
|
||||
#: dlls/joy.cpl/joy.rc:72
|
||||
#, fuzzy
|
||||
#| msgid "A&vailable buttons:"
|
||||
msgid "Available Effects"
|
||||
msgstr "ทีเลือกได้:"
|
||||
|
||||
#: dlls/joy.cpl/joy.rc:74
|
||||
#: dlls/joy.cpl/joy.rc:66
|
||||
msgid ""
|
||||
"Press any button in the controller to activate the chosen effect. The effect "
|
||||
"direction can be changed with the controller axis."
|
||||
|
|
14
po/tr.po
14
po/tr.po
|
@ -790,7 +790,7 @@ msgstr "Yalnızca &Tam Sözcükleri Bul"
|
|||
msgid "Match &Case"
|
||||
msgstr "BÜYÜK/küçük Harf &Duyarlı"
|
||||
|
||||
#: dlls/comdlg32/comdlg32.rc:325 dlls/joy.cpl/joy.rc:76
|
||||
#: dlls/comdlg32/comdlg32.rc:325
|
||||
msgid "Direction"
|
||||
msgstr "Yön"
|
||||
|
||||
|
@ -3770,15 +3770,13 @@ msgstr "Oyun Kolunu Test Et"
|
|||
msgid "Buttons"
|
||||
msgstr "Düğmeler"
|
||||
|
||||
#: dlls/joy.cpl/joy.rc:68
|
||||
msgid "Test Force Feedback"
|
||||
#: dlls/joy.cpl/joy.rc:64
|
||||
#, fuzzy
|
||||
#| msgid "Test Force Feedback"
|
||||
msgid "Force Feedback Effect"
|
||||
msgstr "Zorunlu Geri Beslemeyi Kontrol Et"
|
||||
|
||||
#: dlls/joy.cpl/joy.rc:72
|
||||
msgid "Available Effects"
|
||||
msgstr "Kullanılabilir Efektler"
|
||||
|
||||
#: dlls/joy.cpl/joy.rc:74
|
||||
#: dlls/joy.cpl/joy.rc:66
|
||||
msgid ""
|
||||
"Press any button in the controller to activate the chosen effect. The effect "
|
||||
"direction can be changed with the controller axis."
|
||||
|
|
14
po/uk.po
14
po/uk.po
|
@ -781,7 +781,7 @@ msgstr "&Лише слово цілком"
|
|||
msgid "Match &Case"
|
||||
msgstr "Враховувати &регістр"
|
||||
|
||||
#: dlls/comdlg32/comdlg32.rc:325 dlls/joy.cpl/joy.rc:76
|
||||
#: dlls/comdlg32/comdlg32.rc:325
|
||||
msgid "Direction"
|
||||
msgstr "Напрям"
|
||||
|
||||
|
@ -3761,15 +3761,13 @@ msgstr "Випробувати Джойстик"
|
|||
msgid "Buttons"
|
||||
msgstr "Кнопки"
|
||||
|
||||
#: dlls/joy.cpl/joy.rc:68
|
||||
msgid "Test Force Feedback"
|
||||
#: dlls/joy.cpl/joy.rc:64
|
||||
#, fuzzy
|
||||
#| msgid "Test Force Feedback"
|
||||
msgid "Force Feedback Effect"
|
||||
msgstr "Перевірка Force Feedback"
|
||||
|
||||
#: dlls/joy.cpl/joy.rc:72
|
||||
msgid "Available Effects"
|
||||
msgstr "Доступні Ефекти"
|
||||
|
||||
#: dlls/joy.cpl/joy.rc:74
|
||||
#: dlls/joy.cpl/joy.rc:66
|
||||
msgid ""
|
||||
"Press any button in the controller to activate the chosen effect. The effect "
|
||||
"direction can be changed with the controller axis."
|
||||
|
|
12
po/wa.po
12
po/wa.po
|
@ -782,7 +782,7 @@ msgstr "Mots &etîrs seulmint"
|
|||
msgid "Match &Case"
|
||||
msgstr "Rispecter les &madjuscules/minuscules"
|
||||
|
||||
#: dlls/comdlg32/comdlg32.rc:325 dlls/joy.cpl/joy.rc:76
|
||||
#: dlls/comdlg32/comdlg32.rc:325
|
||||
msgid "Direction"
|
||||
msgstr "Direccion"
|
||||
|
||||
|
@ -3735,15 +3735,11 @@ msgstr ""
|
|||
msgid "Buttons"
|
||||
msgstr ""
|
||||
|
||||
#: dlls/joy.cpl/joy.rc:68
|
||||
msgid "Test Force Feedback"
|
||||
#: dlls/joy.cpl/joy.rc:64
|
||||
msgid "Force Feedback Effect"
|
||||
msgstr ""
|
||||
|
||||
#: dlls/joy.cpl/joy.rc:72
|
||||
msgid "Available Effects"
|
||||
msgstr ""
|
||||
|
||||
#: dlls/joy.cpl/joy.rc:74
|
||||
#: dlls/joy.cpl/joy.rc:66
|
||||
msgid ""
|
||||
"Press any button in the controller to activate the chosen effect. The effect "
|
||||
"direction can be changed with the controller axis."
|
||||
|
|
12
po/wine.pot
12
po/wine.pot
|
@ -755,7 +755,7 @@ msgstr ""
|
|||
msgid "Match &Case"
|
||||
msgstr ""
|
||||
|
||||
#: dlls/comdlg32/comdlg32.rc:325 dlls/joy.cpl/joy.rc:76
|
||||
#: dlls/comdlg32/comdlg32.rc:325
|
||||
msgid "Direction"
|
||||
msgstr ""
|
||||
|
||||
|
@ -3626,15 +3626,11 @@ msgstr ""
|
|||
msgid "Buttons"
|
||||
msgstr ""
|
||||
|
||||
#: dlls/joy.cpl/joy.rc:68
|
||||
msgid "Test Force Feedback"
|
||||
#: dlls/joy.cpl/joy.rc:64
|
||||
msgid "Force Feedback Effect"
|
||||
msgstr ""
|
||||
|
||||
#: dlls/joy.cpl/joy.rc:72
|
||||
msgid "Available Effects"
|
||||
msgstr ""
|
||||
|
||||
#: dlls/joy.cpl/joy.rc:74
|
||||
#: dlls/joy.cpl/joy.rc:66
|
||||
msgid ""
|
||||
"Press any button in the controller to activate the chosen effect. The effect "
|
||||
"direction can be changed with the controller axis."
|
||||
|
|
14
po/zh_CN.po
14
po/zh_CN.po
|
@ -771,7 +771,7 @@ msgstr "全字匹配(&W)"
|
|||
msgid "Match &Case"
|
||||
msgstr "区分大小写(&C)"
|
||||
|
||||
#: dlls/comdlg32/comdlg32.rc:325 dlls/joy.cpl/joy.rc:76
|
||||
#: dlls/comdlg32/comdlg32.rc:325
|
||||
msgid "Direction"
|
||||
msgstr "方向"
|
||||
|
||||
|
@ -3707,15 +3707,13 @@ msgstr "测试操纵杆"
|
|||
msgid "Buttons"
|
||||
msgstr "按钮"
|
||||
|
||||
#: dlls/joy.cpl/joy.rc:68
|
||||
msgid "Test Force Feedback"
|
||||
#: dlls/joy.cpl/joy.rc:64
|
||||
#, fuzzy
|
||||
#| msgid "Test Force Feedback"
|
||||
msgid "Force Feedback Effect"
|
||||
msgstr "测试力反馈"
|
||||
|
||||
#: dlls/joy.cpl/joy.rc:72
|
||||
msgid "Available Effects"
|
||||
msgstr "可选效果"
|
||||
|
||||
#: dlls/joy.cpl/joy.rc:74
|
||||
#: dlls/joy.cpl/joy.rc:66
|
||||
msgid ""
|
||||
"Press any button in the controller to activate the chosen effect. The effect "
|
||||
"direction can be changed with the controller axis."
|
||||
|
|
14
po/zh_TW.po
14
po/zh_TW.po
|
@ -771,7 +771,7 @@ msgstr "全字拼寫須符合(&W)"
|
|||
msgid "Match &Case"
|
||||
msgstr "大小寫視為相異(&C)"
|
||||
|
||||
#: dlls/comdlg32/comdlg32.rc:325 dlls/joy.cpl/joy.rc:76
|
||||
#: dlls/comdlg32/comdlg32.rc:325
|
||||
msgid "Direction"
|
||||
msgstr "方向"
|
||||
|
||||
|
@ -3709,15 +3709,13 @@ msgstr "測試搖桿"
|
|||
msgid "Buttons"
|
||||
msgstr "按鈕"
|
||||
|
||||
#: dlls/joy.cpl/joy.rc:68
|
||||
msgid "Test Force Feedback"
|
||||
#: dlls/joy.cpl/joy.rc:64
|
||||
#, fuzzy
|
||||
#| msgid "Test Force Feedback"
|
||||
msgid "Force Feedback Effect"
|
||||
msgstr "測試應力回饋"
|
||||
|
||||
#: dlls/joy.cpl/joy.rc:72
|
||||
msgid "Available Effects"
|
||||
msgstr "可用效果"
|
||||
|
||||
#: dlls/joy.cpl/joy.rc:74
|
||||
#: dlls/joy.cpl/joy.rc:66
|
||||
msgid ""
|
||||
"Press any button in the controller to activate the chosen effect. The effect "
|
||||
"direction can be changed with the controller axis."
|
||||
|
|
Loading…
Add table
Reference in a new issue