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
750463f2
Commit
750463f2
authored
Nov 19, 2011
by
Francois Gouget
Committed by
Alexandre Julliard
Nov 21, 2011
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
setupapi: Fix a string resource so its format placeholders can be reordered.
parent
66b06a49
Hide whitespace changes
Inline
Side-by-side
Showing
47 changed files
with
81 additions
and
55 deletions
+81
-55
dialog.c
dlls/setupapi/dialog.c
+10
-8
setupapi.rc
dlls/setupapi/setupapi.rc
+1
-1
ar.po
po/ar.po
+1
-1
bg.po
po/bg.po
+1
-1
ca.po
po/ca.po
+2
-1
cs.po
po/cs.po
+1
-1
da.po
po/da.po
+2
-1
de.po
po/de.po
+2
-1
el.po
po/el.po
+1
-1
en.po
po/en.po
+1
-1
en_US.po
po/en_US.po
+2
-2
eo.po
po/eo.po
+1
-1
es.po
po/es.po
+2
-1
fa.po
po/fa.po
+1
-1
fi.po
po/fi.po
+1
-1
fr.po
po/fr.po
+2
-1
he.po
po/he.po
+2
-1
hi.po
po/hi.po
+1
-1
hu.po
po/hu.po
+2
-1
it.po
po/it.po
+2
-1
ja.po
po/ja.po
+2
-1
ko.po
po/ko.po
+2
-1
lt.po
po/lt.po
+2
-1
ml.po
po/ml.po
+1
-1
nb_NO.po
po/nb_NO.po
+2
-1
nl.po
po/nl.po
+2
-1
or.po
po/or.po
+1
-1
pa.po
po/pa.po
+1
-1
pl.po
po/pl.po
+2
-1
pt_BR.po
po/pt_BR.po
+2
-1
pt_PT.po
po/pt_PT.po
+2
-1
rm.po
po/rm.po
+1
-1
ro.po
po/ro.po
+2
-1
ru.po
po/ru.po
+2
-1
sk.po
po/sk.po
+1
-1
sl.po
po/sl.po
+2
-1
sr_RS@cyrillic.po
po/sr_RS@cyrillic.po
+2
-1
sr_RS@latin.po
po/sr_RS@latin.po
+2
-1
sv.po
po/sv.po
+2
-1
te.po
po/te.po
+1
-1
th.po
po/th.po
+1
-1
tr.po
po/tr.po
+1
-1
uk.po
po/uk.po
+2
-1
wa.po
po/wa.po
+1
-1
wine.pot
po/wine.pot
+1
-1
zh_CN.po
po/zh_CN.po
+1
-1
zh_TW.po
po/zh_TW.po
+2
-1
No files found.
dlls/setupapi/dialog.c
View file @
750463f2
...
...
@@ -51,9 +51,6 @@ struct promptdisk_params {
*/
static
void
promptdisk_init
(
HWND
hwnd
,
struct
promptdisk_params
*
params
)
{
WCHAR
format
[
256
];
WCHAR
message
[
256
];
SetWindowLongPtrW
(
hwnd
,
DWLP_USER
,
(
LONG_PTR
)
params
);
if
(
params
->
DialogTitle
)
...
...
@@ -63,20 +60,25 @@ static void promptdisk_init(HWND hwnd, struct promptdisk_params *params)
if
(
!
(
params
->
DiskPromptStyle
&
IDF_OEMDISK
))
{
WCHAR
message
[
256
+
2
*
MAX_PATH
];
WCHAR
format
[
256
];
WCHAR
unknown
[
256
];
DWORD_PTR
args
[
2
];
LoadStringW
(
SETUPAPI_hInstance
,
IDS_PROMPTDISK
,
format
,
sizeof
(
format
)
/
sizeof
(
format
[
0
]));
args
[
0
]
=
(
DWORD_PTR
)
params
->
FileSought
;
if
(
params
->
DiskName
)
snprintfW
(
message
,
sizeof
(
message
)
/
sizeof
(
message
[
0
]),
format
,
params
->
FileSought
,
params
->
DiskName
);
args
[
1
]
=
(
DWORD_PTR
)
params
->
DiskName
;
else
{
WCHAR
unknown
[
256
];
LoadStringW
(
SETUPAPI_hInstance
,
IDS_UNKNOWN
,
unknown
,
sizeof
(
unknown
)
/
sizeof
(
unknown
[
0
]));
snprintfW
(
message
,
sizeof
(
message
)
/
sizeof
(
message
[
0
]),
format
,
params
->
FileSought
,
unknown
);
args
[
1
]
=
(
DWORD_PTR
)
unknown
;
}
FormatMessageW
(
FORMAT_MESSAGE_FROM_STRING
|
FORMAT_MESSAGE_ARGUMENT_ARRAY
,
format
,
0
,
0
,
message
,
sizeof
(
message
)
/
sizeof
(
*
message
),
(
__ms_va_list
*
)
args
);
SetDlgItemTextW
(
hwnd
,
IDC_FILENEEDED
,
message
);
LoadStringW
(
SETUPAPI_hInstance
,
IDS_INFO
,
message
,
...
...
dlls/setupapi/setupapi.rc
View file @
750463f2
...
...
@@ -25,7 +25,7 @@ LANGUAGE LANG_ENGLISH, SUBLANG_DEFAULT
STRINGTABLE
{
IDS_PROMPTDISK "The file '%
s' on %s
is needed"
IDS_PROMPTDISK "The file '%
1' on %2
is needed"
IDS_UNKNOWN "Unknown"
IDS_COPYFROM "Copy files from:"
IDS_INFO "Type the path where the file is located, and then click OK."
...
...
po/ar.po
View file @
750463f2
...
...
@@ -6045,7 +6045,7 @@ msgid "us"
msgstr ""
#: setupapi.rc:28
msgid "The file '%
s' on %s
is needed"
msgid "The file '%
1' on %2
is needed"
msgstr ""
#: setupapi.rc:29 ipconfig.rc:31
...
...
po/bg.po
View file @
750463f2
...
...
@@ -6168,7 +6168,7 @@ msgid "us"
msgstr ""
#: setupapi.rc:28
msgid "The file '%
s' on %s
is needed"
msgid "The file '%
1' on %2
is needed"
msgstr ""
#: setupapi.rc:29 ipconfig.rc:31
...
...
po/ca.po
View file @
750463f2
...
...
@@ -6114,7 +6114,8 @@ msgid "us"
msgstr "µs"
#: setupapi.rc:28
msgid "The file '%s' on %s is needed"
#, fuzzy
msgid "The file '%1' on %2 is needed"
msgstr "Cal el fitxer '%s' en %s"
#: setupapi.rc:29 ipconfig.rc:31
...
...
po/cs.po
View file @
750463f2
...
...
@@ -6258,7 +6258,7 @@ msgid "us"
msgstr ""
#: setupapi.rc:28
msgid "The file '%
s' on %s
is needed"
msgid "The file '%
1' on %2
is needed"
msgstr ""
#: setupapi.rc:29 ipconfig.rc:31
...
...
po/da.po
View file @
750463f2
...
...
@@ -6245,7 +6245,8 @@ msgid "us"
msgstr "µs"
#: setupapi.rc:28
msgid "The file '%s' on %s is needed"
#, fuzzy
msgid "The file '%1' on %2 is needed"
msgstr "Filen '%s' fra %s mangler"
#: setupapi.rc:29 ipconfig.rc:31
...
...
po/de.po
View file @
750463f2
...
...
@@ -6107,7 +6107,8 @@ msgid "us"
msgstr "µs"
#: setupapi.rc:28
msgid "The file '%s' on %s is needed"
#, fuzzy
msgid "The file '%1' on %2 is needed"
msgstr "Die Datei '%s' von %s wird benötigt."
#: setupapi.rc:29 ipconfig.rc:31
...
...
po/el.po
View file @
750463f2
...
...
@@ -6094,7 +6094,7 @@ msgid "us"
msgstr ""
#: setupapi.rc:28
msgid "The file '%
s' on %s
is needed"
msgid "The file '%
1' on %2
is needed"
msgstr ""
#: setupapi.rc:29 ipconfig.rc:31
...
...
po/en.po
View file @
750463f2
...
...
@@ -6006,7 +6006,7 @@ msgid "us"
msgstr "µs"
#: setupapi.rc:28
msgid "The file '%
s' on %s
is needed"
msgid "The file '%
1' on %2
is needed"
msgstr ""
#: setupapi.rc:29 ipconfig.rc:31
...
...
po/en_US.po
View file @
750463f2
...
...
@@ -6100,8 +6100,8 @@ msgid "us"
msgstr "µs"
#: setupapi.rc:28
msgid "The file '%
s' on %s
is needed"
msgstr "The file '%
s' on %s
is needed"
msgid "The file '%
1' on %2
is needed"
msgstr "The file '%
1' on %2
is needed"
#: setupapi.rc:29 ipconfig.rc:31
msgid "Unknown"
...
...
po/eo.po
View file @
750463f2
...
...
@@ -6164,7 +6164,7 @@ msgid "us"
msgstr ""
#: setupapi.rc:28
msgid "The file '%
s' on %s
is needed"
msgid "The file '%
1' on %2
is needed"
msgstr ""
#: setupapi.rc:29 ipconfig.rc:31
...
...
po/es.po
View file @
750463f2
...
...
@@ -6425,7 +6425,8 @@ msgid "us"
msgstr "µs"
#: setupapi.rc:28
msgid "The file '%s' on %s is needed"
#, fuzzy
msgid "The file '%1' on %2 is needed"
msgstr "El archivo '%s' en %s es necesario"
#: setupapi.rc:29 ipconfig.rc:31
...
...
po/fa.po
View file @
750463f2
...
...
@@ -6045,7 +6045,7 @@ msgid "us"
msgstr ""
#: setupapi.rc:28
msgid "The file '%
s' on %s
is needed"
msgid "The file '%
1' on %2
is needed"
msgstr ""
#: setupapi.rc:29 ipconfig.rc:31
...
...
po/fi.po
View file @
750463f2
...
...
@@ -6253,7 +6253,7 @@ msgid "us"
msgstr "µs"
#: setupapi.rc:28
msgid "The file '%
s' on %s
is needed"
msgid "The file '%
1' on %2
is needed"
msgstr ""
#: setupapi.rc:29 ipconfig.rc:31
...
...
po/fr.po
View file @
750463f2
...
...
@@ -6121,7 +6121,8 @@ msgid "us"
msgstr "µs"
#: setupapi.rc:28
msgid "The file '%s' on %s is needed"
#, fuzzy
msgid "The file '%1' on %2 is needed"
msgstr "Le fichier « %s » sur %s est requis"
#: setupapi.rc:29 ipconfig.rc:31
...
...
po/he.po
View file @
750463f2
...
...
@@ -6313,7 +6313,8 @@ msgid "us"
msgstr "מ״ש"
#: setupapi.rc:28
msgid "The file '%s' on %s is needed"
#, fuzzy
msgid "The file '%1' on %2 is needed"
msgstr "הקובץ '%s' שב־%s דרוש"
#: setupapi.rc:29 ipconfig.rc:31
...
...
po/hi.po
View file @
750463f2
...
...
@@ -5986,7 +5986,7 @@ msgid "us"
msgstr ""
#: setupapi.rc:28
msgid "The file '%
s' on %s
is needed"
msgid "The file '%
1' on %2
is needed"
msgstr ""
#: setupapi.rc:29 ipconfig.rc:31
...
...
po/hu.po
View file @
750463f2
...
...
@@ -6439,7 +6439,8 @@ msgid "us"
msgstr "µs"
#: setupapi.rc:28
msgid "The file '%s' on %s is needed"
#, fuzzy
msgid "The file '%1' on %2 is needed"
msgstr "A(z) '%s' fájl szükséges ezen: %s"
#: setupapi.rc:29 ipconfig.rc:31
...
...
po/it.po
View file @
750463f2
...
...
@@ -6111,7 +6111,8 @@ msgid "us"
msgstr "µs"
#: setupapi.rc:28
msgid "The file '%s' on %s is needed"
#, fuzzy
msgid "The file '%1' on %2 is needed"
msgstr "Il file '%s' su %s è necessario"
#: setupapi.rc:29 ipconfig.rc:31
...
...
po/ja.po
View file @
750463f2
...
...
@@ -6096,7 +6096,8 @@ msgid "us"
msgstr "µs"
#: setupapi.rc:28
msgid "The file '%s' on %s is needed"
#, fuzzy
msgid "The file '%1' on %2 is needed"
msgstr "ファイル '%s' (%s 上) が必要です。"
#: setupapi.rc:29 ipconfig.rc:31
...
...
po/ko.po
View file @
750463f2
...
...
@@ -6091,7 +6091,8 @@ msgid "us"
msgstr "마이크로초"
#: setupapi.rc:28
msgid "The file '%s' on %s is needed"
#, fuzzy
msgid "The file '%1' on %2 is needed"
msgstr "이 파일 '%s' 은 %s에서 필요로 합니다"
#: setupapi.rc:29 ipconfig.rc:31
...
...
po/lt.po
View file @
750463f2
...
...
@@ -6109,7 +6109,8 @@ msgid "us"
msgstr "µs"
#: setupapi.rc:28
msgid "The file '%s' on %s is needed"
#, fuzzy
msgid "The file '%1' on %2 is needed"
msgstr "Reikalingas failas „%s“ esantis %s"
#: setupapi.rc:29 ipconfig.rc:31
...
...
po/ml.po
View file @
750463f2
...
...
@@ -5986,7 +5986,7 @@ msgid "us"
msgstr ""
#: setupapi.rc:28
msgid "The file '%
s' on %s
is needed"
msgid "The file '%
1' on %2
is needed"
msgstr ""
#: setupapi.rc:29 ipconfig.rc:31
...
...
po/nb_NO.po
View file @
750463f2
...
...
@@ -6332,7 +6332,8 @@ msgid "us"
msgstr "µs"
#: setupapi.rc:28
msgid "The file '%s' on %s is needed"
#, fuzzy
msgid "The file '%1' on %2 is needed"
msgstr "Programmet trenger filen «%s» på %s"
#: setupapi.rc:29 ipconfig.rc:31
...
...
po/nl.po
View file @
750463f2
...
...
@@ -6212,7 +6212,8 @@ msgid "us"
msgstr "µs"
#: setupapi.rc:28
msgid "The file '%s' on %s is needed"
#, fuzzy
msgid "The file '%1' on %2 is needed"
msgstr "Het bestand '%s' op %s is benodigd"
#: setupapi.rc:29 ipconfig.rc:31
...
...
po/or.po
View file @
750463f2
...
...
@@ -5986,7 +5986,7 @@ msgid "us"
msgstr ""
#: setupapi.rc:28
msgid "The file '%
s' on %s
is needed"
msgid "The file '%
1' on %2
is needed"
msgstr ""
#: setupapi.rc:29 ipconfig.rc:31
...
...
po/pa.po
View file @
750463f2
...
...
@@ -5986,7 +5986,7 @@ msgid "us"
msgstr ""
#: setupapi.rc:28
msgid "The file '%
s' on %s
is needed"
msgid "The file '%
1' on %2
is needed"
msgstr ""
#: setupapi.rc:29 ipconfig.rc:31
...
...
po/pl.po
View file @
750463f2
...
...
@@ -6114,7 +6114,8 @@ msgid "us"
msgstr "µs"
#: setupapi.rc:28
msgid "The file '%s' on %s is needed"
#, fuzzy
msgid "The file '%1' on %2 is needed"
msgstr "Potrzebny plik o nazwie '%s' znajdujący się na %s"
#: setupapi.rc:29 ipconfig.rc:31
...
...
po/pt_BR.po
View file @
750463f2
...
...
@@ -6321,7 +6321,8 @@ msgid "us"
msgstr "µs"
#: setupapi.rc:28
msgid "The file '%s' on %s is needed"
#, fuzzy
msgid "The file '%1' on %2 is needed"
msgstr "O arquivo '%s' em %s é necessário"
#: setupapi.rc:29 ipconfig.rc:31
...
...
po/pt_PT.po
View file @
750463f2
...
...
@@ -6344,7 +6344,8 @@ msgid "us"
msgstr "µs"
#: setupapi.rc:28
msgid "The file '%s' on %s is needed"
#, fuzzy
msgid "The file '%1' on %2 is needed"
msgstr "O ficheiro '%s' em %s é necessário"
#: setupapi.rc:29 ipconfig.rc:31
...
...
po/rm.po
View file @
750463f2
...
...
@@ -6016,7 +6016,7 @@ msgid "us"
msgstr ""
#: setupapi.rc:28
msgid "The file '%
s' on %s
is needed"
msgid "The file '%
1' on %2
is needed"
msgstr ""
#: setupapi.rc:29 ipconfig.rc:31
...
...
po/ro.po
View file @
750463f2
...
...
@@ -6564,7 +6564,8 @@ msgid "us"
msgstr "µs"
#: setupapi.rc:28
msgid "The file '%s' on %s is needed"
#, fuzzy
msgid "The file '%1' on %2 is needed"
msgstr "Fișierul '%s' de pe %s este necesitat"
#: setupapi.rc:29 ipconfig.rc:31
...
...
po/ru.po
View file @
750463f2
...
...
@@ -6102,7 +6102,8 @@ msgid "us"
msgstr "мкс"
#: setupapi.rc:28
msgid "The file '%s' on %s is needed"
#, fuzzy
msgid "The file '%1' on %2 is needed"
msgstr "Файл '%s' на %s необходим"
#: setupapi.rc:29 ipconfig.rc:31
...
...
po/sk.po
View file @
750463f2
...
...
@@ -6084,7 +6084,7 @@ msgid "us"
msgstr ""
#: setupapi.rc:28
msgid "The file '%
s' on %s
is needed"
msgid "The file '%
1' on %2
is needed"
msgstr ""
#: setupapi.rc:29 ipconfig.rc:31
...
...
po/sl.po
View file @
750463f2
...
...
@@ -6134,7 +6134,8 @@ msgid "us"
msgstr "µs"
#: setupapi.rc:28
msgid "The file '%s' on %s is needed"
#, fuzzy
msgid "The file '%1' on %2 is needed"
msgstr "Zahtevana je datoteka '%s' na %s"
#: setupapi.rc:29 ipconfig.rc:31
...
...
po/sr_RS@cyrillic.po
View file @
750463f2
...
...
@@ -6352,7 +6352,8 @@ msgid "us"
msgstr "µс"
#: setupapi.rc:28
msgid "The file '%s' on %s is needed"
#, fuzzy
msgid "The file '%1' on %2 is needed"
msgstr "„%s“ датотека на %s је неопходна"
#: setupapi.rc:29 ipconfig.rc:31
...
...
po/sr_RS@latin.po
View file @
750463f2
...
...
@@ -6387,7 +6387,8 @@ msgid "us"
msgstr "µs"
#: setupapi.rc:28
msgid "The file '%s' on %s is needed"
#, fuzzy
msgid "The file '%1' on %2 is needed"
msgstr "„%s“ datoteka na %s je neophodna"
#: setupapi.rc:29 ipconfig.rc:31
...
...
po/sv.po
View file @
750463f2
...
...
@@ -6097,7 +6097,8 @@ msgid "us"
msgstr "µs"
#: setupapi.rc:28
msgid "The file '%s' on %s is needed"
#, fuzzy
msgid "The file '%1' on %2 is needed"
msgstr "Filen '%s' på %s behövs"
#: setupapi.rc:29 ipconfig.rc:31
...
...
po/te.po
View file @
750463f2
...
...
@@ -5986,7 +5986,7 @@ msgid "us"
msgstr ""
#: setupapi.rc:28
msgid "The file '%
s' on %s
is needed"
msgid "The file '%
1' on %2
is needed"
msgstr ""
#: setupapi.rc:29 ipconfig.rc:31
...
...
po/th.po
View file @
750463f2
...
...
@@ -6089,7 +6089,7 @@ msgid "us"
msgstr ""
#: setupapi.rc:28
msgid "The file '%
s' on %s
is needed"
msgid "The file '%
1' on %2
is needed"
msgstr ""
#: setupapi.rc:29 ipconfig.rc:31
...
...
po/tr.po
View file @
750463f2
...
...
@@ -6349,7 +6349,7 @@ msgid "us"
msgstr "Meşgul"
#: setupapi.rc:28
msgid "The file '%
s' on %s
is needed"
msgid "The file '%
1' on %2
is needed"
msgstr ""
#: setupapi.rc:29 ipconfig.rc:31
...
...
po/uk.po
View file @
750463f2
...
...
@@ -6099,7 +6099,8 @@ msgid "us"
msgstr "µs"
#: setupapi.rc:28
msgid "The file '%s' on %s is needed"
#, fuzzy
msgid "The file '%1' on %2 is needed"
msgstr "Файл '%s' на %s потрібний"
#: setupapi.rc:29 ipconfig.rc:31
...
...
po/wa.po
View file @
750463f2
...
...
@@ -6032,7 +6032,7 @@ msgid "us"
msgstr ""
#: setupapi.rc:28
msgid "The file '%
s' on %s
is needed"
msgid "The file '%
1' on %2
is needed"
msgstr ""
#: setupapi.rc:29 ipconfig.rc:31
...
...
po/wine.pot
View file @
750463f2
...
...
@@ -5968,7 +5968,7 @@ msgid "us"
msgstr ""
#: setupapi.rc:28
msgid "The file '%
s' on %s
is needed"
msgid "The file '%
1' on %2
is needed"
msgstr ""
#: setupapi.rc:29 ipconfig.rc:31
...
...
po/zh_CN.po
View file @
750463f2
...
...
@@ -6301,7 +6301,7 @@ msgid "us"
msgstr "µs"
#: setupapi.rc:28
msgid "The file '%
s' on %s
is needed"
msgid "The file '%
1' on %2
is needed"
msgstr ""
#: setupapi.rc:29 ipconfig.rc:31
...
...
po/zh_TW.po
View file @
750463f2
...
...
@@ -6292,7 +6292,8 @@ msgid "us"
msgstr "µs"
#: setupapi.rc:28
msgid "The file '%s' on %s is needed"
#, fuzzy
msgid "The file '%1' on %2 is needed"
msgstr "需要檔案 '%s' 存於 %s"
#: setupapi.rc:29 ipconfig.rc:31
...
...
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