Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-cw
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
wine
wine-cw
Commits
0204b30e
Commit
0204b30e
authored
Jul 16, 2012
by
Lucas Zawacki
Committed by
Alexandre Julliard
Jul 17, 2012
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
joy.cpl: Added force feedback direction control.
parent
37ce9706
Hide whitespace changes
Inline
Side-by-side
Showing
48 changed files
with
231 additions
and
109 deletions
+231
-109
joy.h
dlls/joy.cpl/joy.h
+7
-0
joy.rc
dlls/joy.cpl/joy.rc
+3
-1
main.c
dlls/joy.cpl/main.c
+35
-16
ar.po
po/ar.po
+4
-2
bg.po
po/bg.po
+4
-2
ca.po
po/ca.po
+4
-2
cs.po
po/cs.po
+4
-2
da.po
po/da.po
+4
-2
de.po
po/de.po
+4
-2
el.po
po/el.po
+4
-2
en.po
po/en.po
+7
-3
en_US.po
po/en_US.po
+7
-3
eo.po
po/eo.po
+4
-2
es.po
po/es.po
+4
-2
fa.po
po/fa.po
+4
-2
fi.po
po/fi.po
+4
-2
fr.po
po/fr.po
+4
-2
he.po
po/he.po
+4
-2
hi.po
po/hi.po
+4
-2
hu.po
po/hu.po
+4
-2
it.po
po/it.po
+4
-2
ja.po
po/ja.po
+4
-2
ko.po
po/ko.po
+4
-2
lt.po
po/lt.po
+4
-2
ml.po
po/ml.po
+4
-2
nb_NO.po
po/nb_NO.po
+4
-2
nl.po
po/nl.po
+4
-2
or.po
po/or.po
+4
-2
pa.po
po/pa.po
+4
-2
pl.po
po/pl.po
+4
-2
pt_BR.po
po/pt_BR.po
+4
-2
pt_PT.po
po/pt_PT.po
+4
-2
rm.po
po/rm.po
+4
-2
ro.po
po/ro.po
+4
-2
ru.po
po/ru.po
+4
-2
sk.po
po/sk.po
+4
-2
sl.po
po/sl.po
+4
-2
sr_RS@cyrillic.po
po/sr_RS@cyrillic.po
+4
-2
sr_RS@latin.po
po/sr_RS@latin.po
+4
-2
sv.po
po/sv.po
+4
-2
te.po
po/te.po
+4
-2
th.po
po/th.po
+4
-2
tr.po
po/tr.po
+4
-2
uk.po
po/uk.po
+4
-2
wa.po
po/wa.po
+4
-2
wine.pot
po/wine.pot
+4
-2
zh_CN.po
po/zh_CN.po
+4
-2
zh_TW.po
po/zh_TW.po
+4
-2
No files found.
dlls/joy.cpl/joy.h
View file @
0204b30e
...
...
@@ -59,6 +59,7 @@ struct JoystickData {
int
chosen_joystick
;
HWND
buttons
[
TEST_MAX_BUTTONS
];
HWND
axes
[
TEST_MAX_AXES
];
HWND
ff_axis
;
BOOL
stop
;
};
...
...
@@ -90,6 +91,7 @@ struct JoystickData {
#define IDC_FFSELECTCOMBO 2009
#define IDC_FFEFFECTLIST 2010
#define IDC_FFAXIS 2011
/* constants */
#define TEST_POLL_TIME 100
...
...
@@ -110,6 +112,11 @@ struct JoystickData {
#define TEST_AXIS_MIN -40
#define TEST_AXIS_MAX 40
#define FF_AXIS_X 373
#define FF_AXIS_Y 98
#define FF_AXIS_SIZE_X 5
#define FF_AXIS_SIZE_Y 5
#define FF_PLAY_TIME 2*DI_SECONDS
#define FF_PERIOD_TIME FF_PLAY_TIME/4
...
...
dlls/joy.cpl/joy.rc
View file @
0204b30e
...
...
@@ -62,7 +62,9 @@ FONT 8, "Ms Shell Dlg"
COMBOBOX IDC_FFSELECTCOMBO, 5, 5, 100, 30, 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 "Press any button in the controller to activate the chosen effect.", IDC_STATIC, 10, 110, 210, 25
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
}
#define WINE_FILENAME_STR "joy.cpl"
...
...
dlls/joy.cpl/main.c
View file @
0204b30e
...
...
@@ -67,6 +67,7 @@ static BOOL CALLBACK enum_callback(const DIDEVICEINSTANCEW *instance, void *cont
{
struct
JoystickData
*
data
=
context
;
struct
Joystick
*
joystick
;
DIPROPRANGE
proprange
;
DIDEVCAPS
caps
;
if
(
data
->
joysticks
==
NULL
)
...
...
@@ -92,6 +93,16 @@ static BOOL CALLBACK enum_callback(const DIDEVICEINSTANCEW *instance, void *cont
if
(
joystick
->
forcefeedback
)
data
->
num_ff
++
;
/* Set axis range to ease the GUI visualization */
proprange
.
diph
.
dwSize
=
sizeof
(
DIPROPRANGE
);
proprange
.
diph
.
dwHeaderSize
=
sizeof
(
DIPROPHEADER
);
proprange
.
diph
.
dwHow
=
DIPH_DEVICE
;
proprange
.
diph
.
dwObj
=
0
;
proprange
.
lMin
=
TEST_AXIS_MIN
;
proprange
.
lMax
=
TEST_AXIS_MAX
;
IDirectInputDevice_SetProperty
(
joystick
->
device
,
DIPROP_RANGE
,
&
proprange
.
diph
);
return
DIENUM_CONTINUE
;
}
...
...
@@ -340,8 +351,6 @@ static void draw_joystick_buttons(HWND hwnd, struct JoystickData* data)
static
void
draw_joystick_axes
(
HWND
hwnd
,
struct
JoystickData
*
data
)
{
int
i
;
struct
Joystick
*
joy
;
DIPROPRANGE
propRange
;
HINSTANCE
hinst
=
(
HINSTANCE
)
GetWindowLongPtrW
(
hwnd
,
GWLP_HINSTANCE
);
static
const
WCHAR
button_class
[]
=
{
'B'
,
'u'
,
't'
,
't'
,
'o'
,
'n'
,
'\0'
};
static
const
WCHAR
axes_names
[
TEST_MAX_AXES
][
7
]
=
{
{
'X'
,
','
,
'Y'
,
'\0'
},
{
'R'
,
'x'
,
','
,
'R'
,
'y'
,
'\0'
},
...
...
@@ -349,20 +358,6 @@ static void draw_joystick_axes(HWND hwnd, struct JoystickData* data)
static
const
DWORD
axes_idc
[
TEST_MAX_AXES
]
=
{
IDC_TESTGROUPXY
,
IDC_TESTGROUPRXRY
,
IDC_TESTGROUPZRZ
,
IDC_TESTGROUPPOV
};
/* Set axis range to ease the GUI visualization */
for
(
i
=
0
;
i
<
data
->
num_joysticks
;
i
++
)
{
joy
=
&
data
->
joysticks
[
i
];
propRange
.
diph
.
dwSize
=
sizeof
(
DIPROPRANGE
);
propRange
.
diph
.
dwHeaderSize
=
sizeof
(
DIPROPHEADER
);
propRange
.
diph
.
dwHow
=
DIPH_DEVICE
;
propRange
.
diph
.
dwObj
=
0
;
propRange
.
lMin
=
TEST_AXIS_MIN
;
propRange
.
lMax
=
TEST_AXIS_MAX
;
IDirectInputDevice_SetProperty
(
joy
->
device
,
DIPROP_RANGE
,
&
propRange
.
diph
);
}
for
(
i
=
0
;
i
<
TEST_MAX_AXES
;
i
++
)
{
/* Set axis box name */
...
...
@@ -453,6 +448,17 @@ static INT_PTR CALLBACK test_dlgproc(HWND hwnd, UINT msg, WPARAM wparam, LPARAM
* Joystick force feedback testing functions
*
*/
static
void
draw_ff_axis
(
HWND
hwnd
,
struct
JoystickData
*
data
)
{
HINSTANCE
hinst
=
(
HINSTANCE
)
GetWindowLongPtrW
(
hwnd
,
GWLP_HINSTANCE
);
static
WCHAR
button_class
[]
=
{
'B'
,
'u'
,
't'
,
't'
,
'o'
,
'n'
,
'\0'
};
/* Draw direction axis */
data
->
ff_axis
=
CreateWindowW
(
button_class
,
NULL
,
WS_CHILD
|
WS_VISIBLE
,
FF_AXIS_X
,
FF_AXIS_Y
,
FF_AXIS_SIZE_X
,
FF_AXIS_SIZE_Y
,
hwnd
,
(
HMENU
)
IDC_FFAXIS
,
NULL
,
hinst
);
}
static
void
initialize_effects_list
(
HWND
hwnd
,
struct
Joystick
*
joy
)
{
...
...
@@ -500,15 +506,26 @@ static DWORD WINAPI ff_input_thread(void *param)
int
i
;
struct
Joystick
*
joy
=
&
data
->
joysticks
[
data
->
chosen_joystick
];
int
chosen_effect
=
joy
->
chosen_effect
;
DIEFFECT
*
dieffect
;
DWORD
flags
=
DIEP_AXES
|
DIEP_DIRECTION
|
DIEP_NORESTART
;
/* Skip this if we have no effects */
if
(
joy
->
num_effects
==
0
||
chosen_effect
<
0
)
continue
;
poll_input
(
joy
,
&
state
);
/* Set ff parameters and draw the axis */
dieffect
=
&
joy
->
effects
[
chosen_effect
].
params
;
dieffect
->
rgdwAxes
[
0
]
=
state
.
lX
;
dieffect
->
rgdwAxes
[
1
]
=
state
.
lY
;
SetWindowPos
(
data
->
ff_axis
,
0
,
FF_AXIS_X
+
state
.
lX
,
FF_AXIS_Y
+
state
.
lY
,
0
,
0
,
SWP_NOZORDER
|
SWP_NOSIZE
);
for
(
i
=
0
;
i
<
joy
->
num_buttons
;
i
++
)
if
(
state
.
rgbButtons
[
i
])
{
IDirectInputEffect_SetParameters
(
joy
->
effects
[
chosen_effect
].
effect
,
dieffect
,
flags
);
IDirectInputEffect_Start
(
joy
->
effects
[
chosen_effect
].
effect
,
1
,
0
);
break
;
}
...
...
@@ -646,6 +663,8 @@ static INT_PTR CALLBACK ff_dlgproc(HWND hwnd, UINT msg, WPARAM wparam, LPARAM lp
}
}
draw_ff_axis
(
hwnd
,
data
);
return
TRUE
;
}
...
...
po/ar.po
View file @
0204b30e
...
...
@@ -635,7 +635,7 @@ msgstr ""
msgid "Match &Case"
msgstr ""
#: comdlg32.rc:317
#: comdlg32.rc:317
joy.rc:67
#, fuzzy
msgid "Direction"
msgstr "معلومات"
...
...
@@ -3433,7 +3433,9 @@ msgid "Available Effects"
msgstr ""
#: joy.rc:65
msgid "Press any button in the controller to activate the chosen effect."
msgid ""
"Press any button in the controller to activate the chosen effect. The effect "
"direction can be changed with the controller axis."
msgstr ""
#: joy.rc:28
...
...
po/bg.po
View file @
0204b30e
...
...
@@ -642,7 +642,7 @@ msgstr "&Само цели думи"
msgid "Match &Case"
msgstr "&Чувствителен регистър"
#: comdlg32.rc:317
#: comdlg32.rc:317
joy.rc:67
msgid "Direction"
msgstr "Посока"
...
...
@@ -3460,7 +3460,9 @@ msgid "Available Effects"
msgstr "На&пред"
#: joy.rc:65
msgid "Press any button in the controller to activate the chosen effect."
msgid ""
"Press any button in the controller to activate the chosen effect. The effect "
"direction can be changed with the controller axis."
msgstr ""
#: joy.rc:28
...
...
po/ca.po
View file @
0204b30e
...
...
@@ -652,7 +652,7 @@ msgstr "Troba només paraules &completes"
msgid "Match &Case"
msgstr "&Distingir majúscules de minúscules"
#: comdlg32.rc:317
#: comdlg32.rc:317
joy.rc:67
msgid "Direction"
msgstr "Direcció"
...
...
@@ -3510,7 +3510,9 @@ msgid "Available Effects"
msgstr "Formats disponibles"
#: joy.rc:65
msgid "Press any button in the controller to activate the chosen effect."
msgid ""
"Press any button in the controller to activate the chosen effect. The effect "
"direction can be changed with the controller axis."
msgstr ""
#: joy.rc:28
...
...
po/cs.po
View file @
0204b30e
...
...
@@ -660,7 +660,7 @@ msgstr "Pouze &celá slova"
msgid "Match &Case"
msgstr "&Rozlišovat velikost"
#: comdlg32.rc:317
#: comdlg32.rc:317
joy.rc:67
msgid "Direction"
msgstr "Směr"
...
...
@@ -3509,7 +3509,9 @@ msgid "Available Effects"
msgstr "Dostupné formáty"
#: joy.rc:65
msgid "Press any button in the controller to activate the chosen effect."
msgid ""
"Press any button in the controller to activate the chosen effect. The effect "
"direction can be changed with the controller axis."
msgstr ""
#: joy.rc:28
...
...
po/da.po
View file @
0204b30e
...
...
@@ -643,7 +643,7 @@ msgstr "&Kun hele ord"
msgid "Match &Case"
msgstr "Forskel på store/små &bogstaver"
#: comdlg32.rc:317
#: comdlg32.rc:317
joy.rc:67
msgid "Direction"
msgstr "Retning"
...
...
@@ -3481,7 +3481,9 @@ msgid "Available Effects"
msgstr "Tilgængelige formater"
#: joy.rc:65
msgid "Press any button in the controller to activate the chosen effect."
msgid ""
"Press any button in the controller to activate the chosen effect. The effect "
"direction can be changed with the controller axis."
msgstr ""
#: joy.rc:28
...
...
po/de.po
View file @
0204b30e
...
...
@@ -635,7 +635,7 @@ msgstr "Nu&r ganzes Wort suchen"
msgid "Match &Case"
msgstr "Groß-/Klein&schreibung"
#: comdlg32.rc:317
#: comdlg32.rc:317
joy.rc:67
msgid "Direction"
msgstr "Suchrichtung"
...
...
@@ -3468,7 +3468,9 @@ msgid "Available Effects"
msgstr "Verfügbare Formate"
#: joy.rc:65
msgid "Press any button in the controller to activate the chosen effect."
msgid ""
"Press any button in the controller to activate the chosen effect. The effect "
"direction can be changed with the controller axis."
msgstr ""
#: joy.rc:28
...
...
po/el.po
View file @
0204b30e
...
...
@@ -620,7 +620,7 @@ msgstr "Ταίριασμα &Ολόκληρης Λέξης Μόνο"
msgid "Match &Case"
msgstr "Ταίριασμα &Κεφαλαίων"
#: comdlg32.rc:317
#: comdlg32.rc:317
joy.rc:67
msgid "Direction"
msgstr "Κατεύθυνση"
...
...
@@ -3395,7 +3395,9 @@ msgid "Available Effects"
msgstr "Δ&ιαθέσιμα κουμπιά:"
#: joy.rc:65
msgid "Press any button in the controller to activate the chosen effect."
msgid ""
"Press any button in the controller to activate the chosen effect. The effect "
"direction can be changed with the controller axis."
msgstr ""
#: joy.rc:28
...
...
po/en.po
View file @
0204b30e
...
...
@@ -634,7 +634,7 @@ msgstr "Match &Whole Word Only"
msgid "Match &Case"
msgstr "Match &Case"
#: comdlg32.rc:317
#: comdlg32.rc:317
joy.rc:67
msgid "Direction"
msgstr "Direction"
...
...
@@ -3457,8 +3457,12 @@ msgid "Available Effects"
msgstr "Available Effects"
#: joy.rc:65
msgid "Press any button in the controller to activate the chosen effect."
msgstr "Press any button in the controller to activate the chosen effect."
msgid ""
"Press any button in the controller to activate the chosen effect. The effect "
"direction can be changed with the controller axis."
msgstr ""
"Press any button in the controller to activate the chosen effect. The effect "
"direction can be changed with the controller axis."
#: joy.rc:28
msgid "Game Controllers"
...
...
po/en_US.po
View file @
0204b30e
...
...
@@ -634,7 +634,7 @@ msgstr "Match &Whole Word Only"
msgid "Match &Case"
msgstr "Match &Case"
#: comdlg32.rc:317
#: comdlg32.rc:317
joy.rc:67
msgid "Direction"
msgstr "Direction"
...
...
@@ -3459,8 +3459,12 @@ msgid "Available Effects"
msgstr "Available Effects"
#: joy.rc:65
msgid "Press any button in the controller to activate the chosen effect."
msgstr "Press any button in the controller to activate the chosen effect."
msgid ""
"Press any button in the controller to activate the chosen effect. The effect "
"direction can be changed with the controller axis."
msgstr ""
"Press any button in the controller to activate the chosen effect. The effect "
"direction can be changed with the controller axis."
#: joy.rc:28
msgid "Game Controllers"
...
...
po/eo.po
View file @
0204b30e
...
...
@@ -625,7 +625,7 @@ msgstr "Nur tutan &vorton"
msgid "Match &Case"
msgstr "Atenti &Usklecon"
#: comdlg32.rc:317
#: comdlg32.rc:317
joy.rc:67
msgid "Direction"
msgstr "Direkto"
...
...
@@ -3376,7 +3376,9 @@ msgid "Available Effects"
msgstr "Disponeblaj formatoj"
#: joy.rc:65
msgid "Press any button in the controller to activate the chosen effect."
msgid ""
"Press any button in the controller to activate the chosen effect. The effect "
"direction can be changed with the controller axis."
msgstr ""
#: joy.rc:28
...
...
po/es.po
View file @
0204b30e
...
...
@@ -646,7 +646,7 @@ msgstr "Sólo &palabra completa"
msgid "Match &Case"
msgstr "&Mayúsculas/minúsculas"
#: comdlg32.rc:317
#: comdlg32.rc:317
joy.rc:67
msgid "Direction"
msgstr "Dirección"
...
...
@@ -3495,7 +3495,9 @@ msgid "Available Effects"
msgstr "Formatos disponibles"
#: joy.rc:65
msgid "Press any button in the controller to activate the chosen effect."
msgid ""
"Press any button in the controller to activate the chosen effect. The effect "
"direction can be changed with the controller axis."
msgstr ""
#: joy.rc:28
...
...
po/fa.po
View file @
0204b30e
...
...
@@ -635,7 +635,7 @@ msgstr ""
msgid "Match &Case"
msgstr ""
#: comdlg32.rc:317
#: comdlg32.rc:317
joy.rc:67
#, fuzzy
msgid "Direction"
msgstr "اطلاعات"
...
...
@@ -3433,7 +3433,9 @@ msgid "Available Effects"
msgstr ""
#: joy.rc:65
msgid "Press any button in the controller to activate the chosen effect."
msgid ""
"Press any button in the controller to activate the chosen effect. The effect "
"direction can be changed with the controller axis."
msgstr ""
#: joy.rc:28
...
...
po/fi.po
View file @
0204b30e
...
...
@@ -630,7 +630,7 @@ msgstr "&Koko sana"
msgid "Match &Case"
msgstr "Kirjaink&oko"
#: comdlg32.rc:317
#: comdlg32.rc:317
joy.rc:67
msgid "Direction"
msgstr "Suunta"
...
...
@@ -3456,7 +3456,9 @@ msgid "Available Effects"
msgstr "Mahdolliset muodot"
#: joy.rc:65
msgid "Press any button in the controller to activate the chosen effect."
msgid ""
"Press any button in the controller to activate the chosen effect. The effect "
"direction can be changed with the controller axis."
msgstr ""
#: joy.rc:28
...
...
po/fr.po
View file @
0204b30e
...
...
@@ -638,7 +638,7 @@ msgstr "Mots &entiers seulement"
msgid "Match &Case"
msgstr "Respecter la &casse"
#: comdlg32.rc:317
#: comdlg32.rc:317
joy.rc:67
msgid "Direction"
msgstr "Direction"
...
...
@@ -3485,7 +3485,9 @@ msgid "Available Effects"
msgstr "Formats disponibles"
#: joy.rc:65
msgid "Press any button in the controller to activate the chosen effect."
msgid ""
"Press any button in the controller to activate the chosen effect. The effect "
"direction can be changed with the controller axis."
msgstr ""
#: joy.rc:28
...
...
po/he.po
View file @
0204b30e
...
...
@@ -641,7 +641,7 @@ msgstr "התאמת מילים &שלמות בלבד"
msgid "Match &Case"
msgstr "התאמת &רשיות"
#: comdlg32.rc:317
#: comdlg32.rc:317
joy.rc:67
msgid "Direction"
msgstr "כיוון"
...
...
@@ -3463,7 +3463,9 @@ msgid "Available Effects"
msgstr "התבניות הזמינות"
#: joy.rc:65
msgid "Press any button in the controller to activate the chosen effect."
msgid ""
"Press any button in the controller to activate the chosen effect. The effect "
"direction can be changed with the controller axis."
msgstr ""
#: joy.rc:28
...
...
po/hi.po
View file @
0204b30e
...
...
@@ -619,7 +619,7 @@ msgstr ""
msgid "Match &Case"
msgstr ""
#: comdlg32.rc:317
#: comdlg32.rc:317
joy.rc:67
msgid "Direction"
msgstr ""
...
...
@@ -3371,7 +3371,9 @@ msgid "Available Effects"
msgstr ""
#: joy.rc:65
msgid "Press any button in the controller to activate the chosen effect."
msgid ""
"Press any button in the controller to activate the chosen effect. The effect "
"direction can be changed with the controller axis."
msgstr ""
#: joy.rc:28
...
...
po/hu.po
View file @
0204b30e
...
...
@@ -647,7 +647,7 @@ msgstr "Teljes &szavak keresése"
msgid "Match &Case"
msgstr "Kis/&nagybetű különbség"
#: comdlg32.rc:317
#: comdlg32.rc:317
joy.rc:67
msgid "Direction"
msgstr "Irány"
...
...
@@ -3497,7 +3497,9 @@ msgid "Available Effects"
msgstr "Elérhető formátumok"
#: joy.rc:65
msgid "Press any button in the controller to activate the chosen effect."
msgid ""
"Press any button in the controller to activate the chosen effect. The effect "
"direction can be changed with the controller axis."
msgstr ""
#: joy.rc:28
...
...
po/it.po
View file @
0204b30e
...
...
@@ -653,7 +653,7 @@ msgstr "Solo parole &intere"
msgid "Match &Case"
msgstr "&Maiuscole/Minuscole"
#: comdlg32.rc:317
#: comdlg32.rc:317
joy.rc:67
msgid "Direction"
msgstr "Direzione"
...
...
@@ -3510,7 +3510,9 @@ msgid "Available Effects"
msgstr "Formati disponibili"
#: joy.rc:65
msgid "Press any button in the controller to activate the chosen effect."
msgid ""
"Press any button in the controller to activate the chosen effect. The effect "
"direction can be changed with the controller axis."
msgstr ""
#: joy.rc:28
...
...
po/ja.po
View file @
0204b30e
...
...
@@ -635,7 +635,7 @@ msgstr "単語単位で検索(&W)"
msgid "Match &Case"
msgstr "大文字と小文字を区別する(&C)"
#: comdlg32.rc:317
#: comdlg32.rc:317
joy.rc:67
msgid "Direction"
msgstr "検索する方向"
...
...
@@ -3453,7 +3453,9 @@ msgid "Available Effects"
msgstr "利用できる形式"
#: joy.rc:65
msgid "Press any button in the controller to activate the chosen effect."
msgid ""
"Press any button in the controller to activate the chosen effect. The effect "
"direction can be changed with the controller axis."
msgstr ""
#: joy.rc:28
...
...
po/ko.po
View file @
0204b30e
...
...
@@ -634,7 +634,7 @@ msgstr "단어 단위로(&W)"
msgid "Match &Case"
msgstr "대/소문자 구분(&C)"
#: comdlg32.rc:317
#: comdlg32.rc:317
joy.rc:67
msgid "Direction"
msgstr "방향"
...
...
@@ -3451,7 +3451,9 @@ msgid "Available Effects"
msgstr "가능한 형식"
#: joy.rc:65
msgid "Press any button in the controller to activate the chosen effect."
msgid ""
"Press any button in the controller to activate the chosen effect. The effect "
"direction can be changed with the controller axis."
msgstr ""
#: joy.rc:28
...
...
po/lt.po
View file @
0204b30e
...
...
@@ -634,7 +634,7 @@ msgstr "Tenkina tik &visas žodis"
msgid "Match &Case"
msgstr "Skirti raidžių &dydį"
#: comdlg32.rc:317
#: comdlg32.rc:317
joy.rc:67
msgid "Direction"
msgstr "Kryptis"
...
...
@@ -3469,7 +3469,9 @@ msgid "Available Effects"
msgstr "Galimi formatai"
#: joy.rc:65
msgid "Press any button in the controller to activate the chosen effect."
msgid ""
"Press any button in the controller to activate the chosen effect. The effect "
"direction can be changed with the controller axis."
msgstr ""
#: joy.rc:28
...
...
po/ml.po
View file @
0204b30e
...
...
@@ -619,7 +619,7 @@ msgstr ""
msgid "Match &Case"
msgstr ""
#: comdlg32.rc:317
#: comdlg32.rc:317
joy.rc:67
msgid "Direction"
msgstr ""
...
...
@@ -3371,7 +3371,9 @@ msgid "Available Effects"
msgstr ""
#: joy.rc:65
msgid "Press any button in the controller to activate the chosen effect."
msgid ""
"Press any button in the controller to activate the chosen effect. The effect "
"direction can be changed with the controller axis."
msgstr ""
#: joy.rc:28
...
...
po/nb_NO.po
View file @
0204b30e
...
...
@@ -635,7 +635,7 @@ msgstr "Finn &kun hele ord"
msgid "Match &Case"
msgstr "Skill &mellom store og små bokstaver"
#: comdlg32.rc:317
#: comdlg32.rc:317
joy.rc:67
msgid "Direction"
msgstr "Retning"
...
...
@@ -3607,7 +3607,9 @@ msgid "Available Effects"
msgstr "Tilgjengelige formater"
#: joy.rc:65
msgid "Press any button in the controller to activate the chosen effect."
msgid ""
"Press any button in the controller to activate the chosen effect. The effect "
"direction can be changed with the controller axis."
msgstr ""
#: joy.rc:28
...
...
po/nl.po
View file @
0204b30e
...
...
@@ -651,7 +651,7 @@ msgstr "Heel &woord"
msgid "Match &Case"
msgstr "Gelijke &hoofd-/kleine letters"
#: comdlg32.rc:317
#: comdlg32.rc:317
joy.rc:67
msgid "Direction"
msgstr "Zoekrichting"
...
...
@@ -3524,7 +3524,9 @@ msgid "Available Effects"
msgstr "Beschikbare formaten"
#: joy.rc:65
msgid "Press any button in the controller to activate the chosen effect."
msgid ""
"Press any button in the controller to activate the chosen effect. The effect "
"direction can be changed with the controller axis."
msgstr ""
#: joy.rc:28
...
...
po/or.po
View file @
0204b30e
...
...
@@ -619,7 +619,7 @@ msgstr ""
msgid "Match &Case"
msgstr ""
#: comdlg32.rc:317
#: comdlg32.rc:317
joy.rc:67
msgid "Direction"
msgstr ""
...
...
@@ -3371,7 +3371,9 @@ msgid "Available Effects"
msgstr ""
#: joy.rc:65
msgid "Press any button in the controller to activate the chosen effect."
msgid ""
"Press any button in the controller to activate the chosen effect. The effect "
"direction can be changed with the controller axis."
msgstr ""
#: joy.rc:28
...
...
po/pa.po
View file @
0204b30e
...
...
@@ -619,7 +619,7 @@ msgstr ""
msgid "Match &Case"
msgstr ""
#: comdlg32.rc:317
#: comdlg32.rc:317
joy.rc:67
msgid "Direction"
msgstr ""
...
...
@@ -3371,7 +3371,9 @@ msgid "Available Effects"
msgstr ""
#: joy.rc:65
msgid "Press any button in the controller to activate the chosen effect."
msgid ""
"Press any button in the controller to activate the chosen effect. The effect "
"direction can be changed with the controller axis."
msgstr ""
#: joy.rc:28
...
...
po/pl.po
View file @
0204b30e
...
...
@@ -640,7 +640,7 @@ msgstr "Uwzględniaj tylko całe &wyrazy"
msgid "Match &Case"
msgstr "&Uwzględniaj wielkość liter"
#: comdlg32.rc:317
#: comdlg32.rc:317
joy.rc:67
msgid "Direction"
msgstr "Kierunek"
...
...
@@ -3481,7 +3481,9 @@ msgid "Available Effects"
msgstr "Dostępne formaty"
#: joy.rc:65
msgid "Press any button in the controller to activate the chosen effect."
msgid ""
"Press any button in the controller to activate the chosen effect. The effect "
"direction can be changed with the controller axis."
msgstr ""
#: joy.rc:28
...
...
po/pt_BR.po
View file @
0204b30e
...
...
@@ -652,7 +652,7 @@ msgstr "Palavra &Inteira"
msgid "Match &Case"
msgstr "&Maiúsculas/minúsculas"
#: comdlg32.rc:317
#: comdlg32.rc:317
joy.rc:67
msgid "Direction"
msgstr "Direção"
...
...
@@ -3508,7 +3508,9 @@ msgid "Available Effects"
msgstr "Formatos Disponíveis"
#: joy.rc:65
msgid "Press any button in the controller to activate the chosen effect."
msgid ""
"Press any button in the controller to activate the chosen effect. The effect "
"direction can be changed with the controller axis."
msgstr ""
#: joy.rc:28
...
...
po/pt_PT.po
View file @
0204b30e
...
...
@@ -652,7 +652,7 @@ msgstr "Palavra &Inteira"
msgid "Match &Case"
msgstr "&Maiúsculas/minúsculas"
#: comdlg32.rc:317
#: comdlg32.rc:317
joy.rc:67
msgid "Direction"
msgstr "Direção"
...
...
@@ -3507,7 +3507,9 @@ msgid "Available Effects"
msgstr "Formatos Disponíveis"
#: joy.rc:65
msgid "Press any button in the controller to activate the chosen effect."
msgid ""
"Press any button in the controller to activate the chosen effect. The effect "
"direction can be changed with the controller axis."
msgstr ""
#: joy.rc:28
...
...
po/rm.po
View file @
0204b30e
...
...
@@ -632,7 +632,7 @@ msgstr ""
msgid "Match &Case"
msgstr ""
#: comdlg32.rc:317
#: comdlg32.rc:317
joy.rc:67
msgid "Direction"
msgstr ""
...
...
@@ -3399,7 +3399,9 @@ msgid "Available Effects"
msgstr ""
#: joy.rc:65
msgid "Press any button in the controller to activate the chosen effect."
msgid ""
"Press any button in the controller to activate the chosen effect. The effect "
"direction can be changed with the controller axis."
msgstr ""
#: joy.rc:28
...
...
po/ro.po
View file @
0204b30e
...
...
@@ -626,7 +626,7 @@ msgstr "&Numai cuvinte întregi"
msgid "Match &Case"
msgstr "Sensibil la registru"
#: comdlg32.rc:317
#: comdlg32.rc:317
joy.rc:67
msgid "Direction"
msgstr "Direcție"
...
...
@@ -3467,7 +3467,9 @@ msgid "Available Effects"
msgstr "Formate disponibile"
#: joy.rc:65
msgid "Press any button in the controller to activate the chosen effect."
msgid ""
"Press any button in the controller to activate the chosen effect. The effect "
"direction can be changed with the controller axis."
msgstr ""
#: joy.rc:28
...
...
po/ru.po
View file @
0204b30e
...
...
@@ -635,7 +635,7 @@ msgstr "&Только слово целиком"
msgid "Match &Case"
msgstr "C &учетом регистра"
#: comdlg32.rc:317
#: comdlg32.rc:317
joy.rc:67
msgid "Direction"
msgstr "Направление"
...
...
@@ -3474,7 +3474,9 @@ msgid "Available Effects"
msgstr "Доступные форматы"
#: joy.rc:65
msgid "Press any button in the controller to activate the chosen effect."
msgid ""
"Press any button in the controller to activate the chosen effect. The effect "
"direction can be changed with the controller axis."
msgstr ""
#: joy.rc:28
...
...
po/sk.po
View file @
0204b30e
...
...
@@ -653,7 +653,7 @@ msgstr "Len &celé slová"
msgid "Match &Case"
msgstr "&Rozlišovať malé a veľké písmená"
#: comdlg32.rc:317
#: comdlg32.rc:317
joy.rc:67
msgid "Direction"
msgstr "Smer"
...
...
@@ -3409,7 +3409,9 @@ msgid "Available Effects"
msgstr "Dostupné formáty"
#: joy.rc:65
msgid "Press any button in the controller to activate the chosen effect."
msgid ""
"Press any button in the controller to activate the chosen effect. The effect "
"direction can be changed with the controller axis."
msgstr ""
#: joy.rc:28
...
...
po/sl.po
View file @
0204b30e
...
...
@@ -652,7 +652,7 @@ msgstr "&Samo cele besede"
msgid "Match &Case"
msgstr "&Razlikuj velikost črk"
#: comdlg32.rc:317
#: comdlg32.rc:317
joy.rc:67
msgid "Direction"
msgstr "Smer iskanja"
...
...
@@ -3499,7 +3499,9 @@ msgid "Available Effects"
msgstr "Razpoložljive oblike"
#: joy.rc:65
msgid "Press any button in the controller to activate the chosen effect."
msgid ""
"Press any button in the controller to activate the chosen effect. The effect "
"direction can be changed with the controller axis."
msgstr ""
#: joy.rc:28
...
...
po/sr_RS@cyrillic.po
View file @
0204b30e
...
...
@@ -642,7 +642,7 @@ msgstr "Пронађи само &целу реч"
msgid "Match &Case"
msgstr "Подударање &малих и великих слова"
#: comdlg32.rc:317
#: comdlg32.rc:317
joy.rc:67
msgid "Direction"
msgstr "Правац"
...
...
@@ -3491,7 +3491,9 @@ msgid "Available Effects"
msgstr "Н&апред"
#: joy.rc:65
msgid "Press any button in the controller to activate the chosen effect."
msgid ""
"Press any button in the controller to activate the chosen effect. The effect "
"direction can be changed with the controller axis."
msgstr ""
#: joy.rc:28
...
...
po/sr_RS@latin.po
View file @
0204b30e
...
...
@@ -688,7 +688,7 @@ msgstr ""
msgid "Match &Case"
msgstr ""
#: comdlg32.rc:317
#: comdlg32.rc:317
joy.rc:67
#, fuzzy
msgid "Direction"
msgstr "Opis"
...
...
@@ -3569,7 +3569,9 @@ msgid "Available Effects"
msgstr "N&apred"
#: joy.rc:65
msgid "Press any button in the controller to activate the chosen effect."
msgid ""
"Press any button in the controller to activate the chosen effect. The effect "
"direction can be changed with the controller axis."
msgstr ""
#: joy.rc:28
...
...
po/sv.po
View file @
0204b30e
...
...
@@ -633,7 +633,7 @@ msgstr "&Bara hela ord"
msgid "Match &Case"
msgstr "&Skillnad på stora/små bokstäver"
#: comdlg32.rc:317
#: comdlg32.rc:317
joy.rc:67
msgid "Direction"
msgstr "Riktning"
...
...
@@ -3451,7 +3451,9 @@ msgid "Available Effects"
msgstr "Tillgängliga format"
#: joy.rc:65
msgid "Press any button in the controller to activate the chosen effect."
msgid ""
"Press any button in the controller to activate the chosen effect. The effect "
"direction can be changed with the controller axis."
msgstr ""
#: joy.rc:28
...
...
po/te.po
View file @
0204b30e
...
...
@@ -619,7 +619,7 @@ msgstr ""
msgid "Match &Case"
msgstr ""
#: comdlg32.rc:317
#: comdlg32.rc:317
joy.rc:67
msgid "Direction"
msgstr ""
...
...
@@ -3371,7 +3371,9 @@ msgid "Available Effects"
msgstr ""
#: joy.rc:65
msgid "Press any button in the controller to activate the chosen effect."
msgid ""
"Press any button in the controller to activate the chosen effect. The effect "
"direction can be changed with the controller axis."
msgstr ""
#: joy.rc:28
...
...
po/th.po
View file @
0204b30e
...
...
@@ -620,7 +620,7 @@ msgstr "ตรงกันทุกตัวอักษร"
msgid "Match &Case"
msgstr "พิจารณาตัวเล็ก-ใหญ่"
#: comdlg32.rc:317
#: comdlg32.rc:317
joy.rc:67
msgid "Direction"
msgstr "ทาง"
...
...
@@ -3412,7 +3412,9 @@ msgid "Available Effects"
msgstr "ทีเลือกได้:"
#: joy.rc:65
msgid "Press any button in the controller to activate the chosen effect."
msgid ""
"Press any button in the controller to activate the chosen effect. The effect "
"direction can be changed with the controller axis."
msgstr ""
#: joy.rc:28
...
...
po/tr.po
View file @
0204b30e
...
...
@@ -617,7 +617,7 @@ msgstr "Yalnızca &Tam Sözcükleri Bul"
msgid "Match &Case"
msgstr "BÜYÜK/küçük Harf &Duyarlı"
#: comdlg32.rc:317
#: comdlg32.rc:317
joy.rc:67
msgid "Direction"
msgstr "Yön"
...
...
@@ -3366,7 +3366,9 @@ msgid "Available Effects"
msgstr "Mevcut biçimler"
#: joy.rc:65
msgid "Press any button in the controller to activate the chosen effect."
msgid ""
"Press any button in the controller to activate the chosen effect. The effect "
"direction can be changed with the controller axis."
msgstr ""
#: joy.rc:28
...
...
po/uk.po
View file @
0204b30e
...
...
@@ -643,7 +643,7 @@ msgstr "&Лише слово цілком"
msgid "Match &Case"
msgstr "Враховувати &реґістр"
#: comdlg32.rc:317
#: comdlg32.rc:317
joy.rc:67
msgid "Direction"
msgstr "Напрям"
...
...
@@ -3488,7 +3488,9 @@ msgid "Available Effects"
msgstr "Доступні формати"
#: joy.rc:65
msgid "Press any button in the controller to activate the chosen effect."
msgid ""
"Press any button in the controller to activate the chosen effect. The effect "
"direction can be changed with the controller axis."
msgstr ""
#: joy.rc:28
...
...
po/wa.po
View file @
0204b30e
...
...
@@ -628,7 +628,7 @@ msgstr "Mots &etîrs seulmint"
msgid "Match &Case"
msgstr "Rispecter les &madjuscules/minuscules"
#: comdlg32.rc:317
#: comdlg32.rc:317
joy.rc:67
msgid "Direction"
msgstr "Direccion"
...
...
@@ -3418,7 +3418,9 @@ msgid "Available Effects"
msgstr ""
#: joy.rc:65
msgid "Press any button in the controller to activate the chosen effect."
msgid ""
"Press any button in the controller to activate the chosen effect. The effect "
"direction can be changed with the controller axis."
msgstr ""
#: joy.rc:28
...
...
po/wine.pot
View file @
0204b30e
...
...
@@ -607,7 +607,7 @@ msgstr ""
msgid "Match &Case"
msgstr ""
#: comdlg32.rc:317
#: comdlg32.rc:317
joy.rc:67
msgid "Direction"
msgstr ""
...
...
@@ -3333,7 +3333,9 @@ msgid "Available Effects"
msgstr ""
#: joy.rc:65
msgid "Press any button in the controller to activate the chosen effect."
msgid ""
"Press any button in the controller to activate the chosen effect. The effect "
"direction can be changed with the controller axis."
msgstr ""
#: joy.rc:28
...
...
po/zh_CN.po
View file @
0204b30e
...
...
@@ -634,7 +634,7 @@ msgstr "全字匹配(&W)"
msgid "Match &Case"
msgstr "区分大小写(&C)"
#: comdlg32.rc:317
#: comdlg32.rc:317
joy.rc:67
msgid "Direction"
msgstr "方向"
...
...
@@ -3386,7 +3386,9 @@ msgid "Available Effects"
msgstr "可选格式"
#: joy.rc:65
msgid "Press any button in the controller to activate the chosen effect."
msgid ""
"Press any button in the controller to activate the chosen effect. The effect "
"direction can be changed with the controller axis."
msgstr ""
#: joy.rc:28
...
...
po/zh_TW.po
View file @
0204b30e
...
...
@@ -623,7 +623,7 @@ msgstr "全字拼寫須符合(&W)"
msgid "Match &Case"
msgstr "大小寫視為相異(&C)"
#: comdlg32.rc:317
#: comdlg32.rc:317
joy.rc:67
msgid "Direction"
msgstr "方向"
...
...
@@ -3415,7 +3415,9 @@ msgid "Available Effects"
msgstr "可用格式"
#: joy.rc:65
msgid "Press any button in the controller to activate the chosen effect."
msgid ""
"Press any button in the controller to activate the chosen effect. The effect "
"direction can be changed with the controller axis."
msgstr ""
#: joy.rc:28
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment