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
eede26f5
Commit
eede26f5
authored
Nov 19, 2011
by
Francois Gouget
Committed by
Alexandre Julliard
Nov 21, 2011
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
cryptui: Fix a string resource so its format placeholders can be reordered.
parent
c864dd6b
Hide whitespace changes
Inline
Side-by-side
Showing
47 changed files
with
78 additions
and
54 deletions
+78
-54
cryptui.rc
dlls/cryptui/cryptui.rc
+1
-1
main.c
dlls/cryptui/main.c
+13
-7
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
+1
-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
+1
-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
+1
-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
+1
-1
sr_RS@latin.po
po/sr_RS@latin.po
+1
-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
+1
-1
No files found.
dlls/cryptui/cryptui.rc
View file @
eede26f5
...
...
@@ -55,7 +55,7 @@ STRINGTABLE
IDS_FIELD_VALID_TO "Valid to"
IDS_FIELD_SUBJECT "Subject"
IDS_FIELD_PUBLIC_KEY "Public key"
IDS_FIELD_PUBLIC_KEY_FORMAT "%
s (%d
bits)"
IDS_FIELD_PUBLIC_KEY_FORMAT "%
1 (%2!d!
bits)"
IDS_PROP_HASH "SHA1 hash"
IDS_PROP_ENHKEY_USAGE "Enhanced key usage (property)"
IDS_PROP_FRIENDLY_NAME "Friendly name"
...
...
dlls/cryptui/main.c
View file @
eede26f5
...
...
@@ -2704,6 +2704,8 @@ static WCHAR *field_format_public_key(PCCERT_CONTEXT cert)
if
(
LoadStringW
(
hInstance
,
IDS_FIELD_PUBLIC_KEY_FORMAT
,
fmt
,
sizeof
(
fmt
)
/
sizeof
(
fmt
[
0
])))
{
DWORD
len
;
/* Allocate the output buffer. Use the number of bytes in the
* public key as a conservative (high) estimate for the number of
* digits in its output.
...
...
@@ -2713,14 +2715,18 @@ static WCHAR *field_format_public_key(PCCERT_CONTEXT cert)
* good idea, but as this isn't a sentence fragment, it shouldn't
* be word-order dependent.
*/
buf
=
HeapAlloc
(
GetProcessHeap
(),
0
,
(
strlenW
(
fmt
)
+
strlenW
(
oidInfo
->
pwszName
)
+
cert
->
pCertInfo
->
SubjectPublicKeyInfo
.
PublicKey
.
cbData
*
8
)
*
sizeof
(
WCHAR
));
len
=
strlenW
(
fmt
)
+
strlenW
(
oidInfo
->
pwszName
)
+
cert
->
pCertInfo
->
SubjectPublicKeyInfo
.
PublicKey
.
cbData
*
8
;
buf
=
HeapAlloc
(
GetProcessHeap
(),
0
,
len
*
sizeof
(
*
buf
));
if
(
buf
)
sprintfW
(
buf
,
fmt
,
oidInfo
->
pwszName
,
CertGetPublicKeyLength
(
X509_ASN_ENCODING
,
&
cert
->
pCertInfo
->
SubjectPublicKeyInfo
));
{
DWORD_PTR
args
[
2
];
args
[
0
]
=
(
DWORD_PTR
)
oidInfo
->
pwszName
;
args
[
1
]
=
CertGetPublicKeyLength
(
X509_ASN_ENCODING
,
&
cert
->
pCertInfo
->
SubjectPublicKeyInfo
);
FormatMessageW
(
FORMAT_MESSAGE_FROM_STRING
|
FORMAT_MESSAGE_ARGUMENT_ARRAY
,
fmt
,
0
,
0
,
buf
,
len
,
(
__ms_va_list
*
)
args
);
}
}
}
return
buf
;
...
...
po/ar.po
View file @
eede26f5
...
...
@@ -1570,7 +1570,7 @@ msgid "Public key"
msgstr ""
#: cryptui.rc:58
msgid "%
s (%d
bits)"
msgid "%
1 (%2!d!
bits)"
msgstr ""
#: cryptui.rc:59
...
...
po/bg.po
View file @
eede26f5
...
...
@@ -1581,7 +1581,7 @@ msgid "Public key"
msgstr ""
#: cryptui.rc:58
msgid "%
s (%d
bits)"
msgid "%
1 (%2!d!
bits)"
msgstr ""
#: cryptui.rc:59
...
...
po/ca.po
View file @
eede26f5
...
...
@@ -1582,7 +1582,8 @@ msgid "Public key"
msgstr "Clau Pública"
#: cryptui.rc:58
msgid "%s (%d bits)"
#, fuzzy
msgid "%1 (%2!d! bits)"
msgstr "%s (%d bits)"
#: cryptui.rc:59
...
...
po/cs.po
View file @
eede26f5
...
...
@@ -1604,7 +1604,7 @@ msgid "Public key"
msgstr ""
#: cryptui.rc:58
msgid "%
s (%d
bits)"
msgid "%
1 (%2!d!
bits)"
msgstr ""
#: cryptui.rc:59
...
...
po/da.po
View file @
eede26f5
...
...
@@ -1611,7 +1611,7 @@ msgid "Public key"
msgstr ""
#: cryptui.rc:58
msgid "%
s (%d
bits)"
msgid "%
1 (%2!d!
bits)"
msgstr ""
#: cryptui.rc:59
...
...
po/de.po
View file @
eede26f5
...
...
@@ -1577,7 +1577,8 @@ msgid "Public key"
msgstr "Öffentlicher Schlüssel"
#: cryptui.rc:58
msgid "%s (%d bits)"
#, fuzzy
msgid "%1 (%2!d! bits)"
msgstr "%s (%d Bits)"
#: cryptui.rc:59
...
...
po/el.po
View file @
eede26f5
...
...
@@ -1562,7 +1562,7 @@ msgid "Public key"
msgstr ""
#: cryptui.rc:58
msgid "%
s (%d
bits)"
msgid "%
1 (%2!d!
bits)"
msgstr ""
#: cryptui.rc:59
...
...
po/en.po
View file @
eede26f5
...
...
@@ -1550,7 +1550,7 @@ msgid "Public key"
msgstr ""
#: cryptui.rc:58
msgid "%
s (%d
bits)"
msgid "%
1 (%2!d!
bits)"
msgstr ""
#: cryptui.rc:59
...
...
po/en_US.po
View file @
eede26f5
...
...
@@ -1578,8 +1578,8 @@ msgid "Public key"
msgstr "Public key"
#: cryptui.rc:58
msgid "%
s (%d
bits)"
msgstr "%
s (%d
bits)"
msgid "%
1 (%2!d!
bits)"
msgstr "%
1 (%2!d!
bits)"
#: cryptui.rc:59
msgid "SHA1 hash"
...
...
po/eo.po
View file @
eede26f5
...
...
@@ -1592,7 +1592,7 @@ msgid "Public key"
msgstr ""
#: cryptui.rc:58
msgid "%
s (%d
bits)"
msgid "%
1 (%2!d!
bits)"
msgstr ""
#: cryptui.rc:59
...
...
po/es.po
View file @
eede26f5
...
...
@@ -1616,7 +1616,7 @@ msgid "Public key"
msgstr ""
#: cryptui.rc:58
msgid "%
s (%d
bits)"
msgid "%
1 (%2!d!
bits)"
msgstr ""
#: cryptui.rc:59
...
...
po/fa.po
View file @
eede26f5
...
...
@@ -1570,7 +1570,7 @@ msgid "Public key"
msgstr ""
#: cryptui.rc:58
msgid "%
s (%d
bits)"
msgid "%
1 (%2!d!
bits)"
msgstr ""
#: cryptui.rc:59
...
...
po/fi.po
View file @
eede26f5
...
...
@@ -1580,7 +1580,7 @@ msgid "Public key"
msgstr ""
#: cryptui.rc:58
msgid "%
s (%d
bits)"
msgid "%
1 (%2!d!
bits)"
msgstr ""
#: cryptui.rc:59
...
...
po/fr.po
View file @
eede26f5
...
...
@@ -1584,7 +1584,8 @@ msgid "Public key"
msgstr "Clé publique"
#: cryptui.rc:58
msgid "%s (%d bits)"
#, fuzzy
msgid "%1 (%2!d! bits)"
msgstr "%s (%d bits)"
#: cryptui.rc:59
...
...
po/he.po
View file @
eede26f5
...
...
@@ -1576,7 +1576,8 @@ msgid "Public key"
msgstr "מפתח ציבורי"
#: cryptui.rc:58
msgid "%s (%d bits)"
#, fuzzy
msgid "%1 (%2!d! bits)"
msgstr "%s (%d סיביות)"
#: cryptui.rc:59
...
...
po/hi.po
View file @
eede26f5
...
...
@@ -1551,7 +1551,7 @@ msgid "Public key"
msgstr ""
#: cryptui.rc:58
msgid "%
s (%d
bits)"
msgid "%
1 (%2!d!
bits)"
msgstr ""
#: cryptui.rc:59
...
...
po/hu.po
View file @
eede26f5
...
...
@@ -1632,7 +1632,7 @@ msgid "Public key"
msgstr ""
#: cryptui.rc:58
msgid "%
s (%d
bits)"
msgid "%
1 (%2!d!
bits)"
msgstr ""
#: cryptui.rc:59
...
...
po/it.po
View file @
eede26f5
...
...
@@ -1582,7 +1582,8 @@ msgid "Public key"
msgstr "Chiave pubblica"
#: cryptui.rc:58
msgid "%s (%d bits)"
#, fuzzy
msgid "%1 (%2!d! bits)"
msgstr "%s (%d bit)"
#: cryptui.rc:59
...
...
po/ja.po
View file @
eede26f5
...
...
@@ -1579,7 +1579,8 @@ msgid "Public key"
msgstr "公開鍵"
#: cryptui.rc:58
msgid "%s (%d bits)"
#, fuzzy
msgid "%1 (%2!d! bits)"
msgstr "%s (%d ビット)"
#: cryptui.rc:59
...
...
po/ko.po
View file @
eede26f5
...
...
@@ -1578,7 +1578,8 @@ msgid "Public key"
msgstr "공용 키"
#: cryptui.rc:58
msgid "%s (%d bits)"
#, fuzzy
msgid "%1 (%2!d! bits)"
msgstr "%s (%d 비트)"
#: cryptui.rc:59
...
...
po/lt.po
View file @
eede26f5
...
...
@@ -1584,7 +1584,8 @@ msgid "Public key"
msgstr "Viešasis raktas"
#: cryptui.rc:58
msgid "%s (%d bits)"
#, fuzzy
msgid "%1 (%2!d! bits)"
msgstr "%s (%d bitai)"
#: cryptui.rc:59
...
...
po/ml.po
View file @
eede26f5
...
...
@@ -1551,7 +1551,7 @@ msgid "Public key"
msgstr ""
#: cryptui.rc:58
msgid "%
s (%d
bits)"
msgid "%
1 (%2!d!
bits)"
msgstr ""
#: cryptui.rc:59
...
...
po/nb_NO.po
View file @
eede26f5
...
...
@@ -1678,7 +1678,8 @@ msgid "Public key"
msgstr "Offentlig nøkkel"
#: cryptui.rc:58
msgid "%s (%d bits)"
#, fuzzy
msgid "%1 (%2!d! bits)"
msgstr "%s (%d bits)"
#: cryptui.rc:59
...
...
po/nl.po
View file @
eede26f5
...
...
@@ -1592,7 +1592,8 @@ msgid "Public key"
msgstr "Publieke sleutel"
#: cryptui.rc:58
msgid "%s (%d bits)"
#, fuzzy
msgid "%1 (%2!d! bits)"
msgstr "%s (%d bits)"
#: cryptui.rc:59
...
...
po/or.po
View file @
eede26f5
...
...
@@ -1551,7 +1551,7 @@ msgid "Public key"
msgstr ""
#: cryptui.rc:58
msgid "%
s (%d
bits)"
msgid "%
1 (%2!d!
bits)"
msgstr ""
#: cryptui.rc:59
...
...
po/pa.po
View file @
eede26f5
...
...
@@ -1551,7 +1551,7 @@ msgid "Public key"
msgstr ""
#: cryptui.rc:58
msgid "%
s (%d
bits)"
msgid "%
1 (%2!d!
bits)"
msgstr ""
#: cryptui.rc:59
...
...
po/pl.po
View file @
eede26f5
...
...
@@ -1582,7 +1582,8 @@ msgid "Public key"
msgstr "Klucz publiczny"
#: cryptui.rc:58
msgid "%s (%d bits)"
#, fuzzy
msgid "%1 (%2!d! bits)"
msgstr "%s (%d bitów)"
#: cryptui.rc:59
...
...
po/pt_BR.po
View file @
eede26f5
...
...
@@ -1673,7 +1673,8 @@ msgid "Public key"
msgstr "Chave Pública"
#: cryptui.rc:58
msgid "%s (%d bits)"
#, fuzzy
msgid "%1 (%2!d! bits)"
msgstr "%s (%d bits)"
#: cryptui.rc:59
...
...
po/pt_PT.po
View file @
eede26f5
...
...
@@ -1689,7 +1689,8 @@ msgid "Public key"
msgstr "Chave Pública"
#: cryptui.rc:58
msgid "%s (%d bits)"
#, fuzzy
msgid "%1 (%2!d! bits)"
msgstr "%s (%d bits)"
#: cryptui.rc:59
...
...
po/rm.po
View file @
eede26f5
...
...
@@ -1558,7 +1558,7 @@ msgid "Public key"
msgstr ""
#: cryptui.rc:58
msgid "%
s (%d
bits)"
msgid "%
1 (%2!d!
bits)"
msgstr ""
#: cryptui.rc:59
...
...
po/ro.po
View file @
eede26f5
...
...
@@ -1737,7 +1737,8 @@ msgid "Public key"
msgstr "Cheie publică"
#: cryptui.rc:58
msgid "%s (%d bits)"
#, fuzzy
msgid "%1 (%2!d! bits)"
msgstr "%s (%d biți)"
#: cryptui.rc:59
...
...
po/ru.po
View file @
eede26f5
...
...
@@ -1575,7 +1575,8 @@ msgid "Public key"
msgstr "Открытый ключ"
#: cryptui.rc:58
msgid "%s (%d bits)"
#, fuzzy
msgid "%1 (%2!d! bits)"
msgstr "%s (бит: %d)"
#: cryptui.rc:59
...
...
po/sk.po
View file @
eede26f5
...
...
@@ -1560,7 +1560,7 @@ msgid "Public key"
msgstr ""
#: cryptui.rc:58
msgid "%
s (%d
bits)"
msgid "%
1 (%2!d!
bits)"
msgstr ""
#: cryptui.rc:59
...
...
po/sl.po
View file @
eede26f5
...
...
@@ -1591,7 +1591,8 @@ msgid "Public key"
msgstr "Javni ključ"
#: cryptui.rc:58
msgid "%s (%d bits)"
#, fuzzy
msgid "%1 (%2!d! bits)"
msgstr "%s (%d bitov)"
#: cryptui.rc:59
...
...
po/sr_RS@cyrillic.po
View file @
eede26f5
...
...
@@ -1598,7 +1598,7 @@ msgid "Public key"
msgstr ""
#: cryptui.rc:58
msgid "%
s (%d
bits)"
msgid "%
1 (%2!d!
bits)"
msgstr ""
#: cryptui.rc:59
...
...
po/sr_RS@latin.po
View file @
eede26f5
...
...
@@ -1614,7 +1614,7 @@ msgid "Public key"
msgstr ""
#: cryptui.rc:58
msgid "%
s (%d
bits)"
msgid "%
1 (%2!d!
bits)"
msgstr ""
#: cryptui.rc:59
...
...
po/sv.po
View file @
eede26f5
...
...
@@ -1586,7 +1586,8 @@ msgid "Public key"
msgstr "Offentlig nyckel"
#: cryptui.rc:58
msgid "%s (%d bits)"
#, fuzzy
msgid "%1 (%2!d! bits)"
msgstr "%s (%d bitar)"
#: cryptui.rc:59
...
...
po/te.po
View file @
eede26f5
...
...
@@ -1551,7 +1551,7 @@ msgid "Public key"
msgstr ""
#: cryptui.rc:58
msgid "%
s (%d
bits)"
msgid "%
1 (%2!d!
bits)"
msgstr ""
#: cryptui.rc:59
...
...
po/th.po
View file @
eede26f5
...
...
@@ -1563,7 +1563,7 @@ msgid "Public key"
msgstr ""
#: cryptui.rc:58
msgid "%
s (%d
bits)"
msgid "%
1 (%2!d!
bits)"
msgstr ""
#: cryptui.rc:59
...
...
po/tr.po
View file @
eede26f5
...
...
@@ -1592,7 +1592,7 @@ msgid "Public key"
msgstr ""
#: cryptui.rc:58
msgid "%
s (%d
bits)"
msgid "%
1 (%2!d!
bits)"
msgstr ""
#: cryptui.rc:59
...
...
po/uk.po
View file @
eede26f5
...
...
@@ -1582,7 +1582,8 @@ msgid "Public key"
msgstr "Публічний ключ"
#: cryptui.rc:58
msgid "%s (%d bits)"
#, fuzzy
msgid "%1 (%2!d! bits)"
msgstr "%s (%d біт)"
#: cryptui.rc:59
...
...
po/wa.po
View file @
eede26f5
...
...
@@ -1559,7 +1559,7 @@ msgid "Public key"
msgstr ""
#: cryptui.rc:58
msgid "%
s (%d
bits)"
msgid "%
1 (%2!d!
bits)"
msgstr ""
#: cryptui.rc:59
...
...
po/wine.pot
View file @
eede26f5
...
...
@@ -1545,7 +1545,7 @@ msgid "Public key"
msgstr ""
#: cryptui.rc:58
msgid "%
s (%d
bits)"
msgid "%
1 (%2!d!
bits)"
msgstr ""
#: cryptui.rc:59
...
...
po/zh_CN.po
View file @
eede26f5
...
...
@@ -1589,7 +1589,7 @@ msgid "Public key"
msgstr ""
#: cryptui.rc:58
msgid "%
s (%d
bits)"
msgid "%
1 (%2!d!
bits)"
msgstr ""
#: cryptui.rc:59
...
...
po/zh_TW.po
View file @
eede26f5
...
...
@@ -1594,7 +1594,7 @@ msgid "Public key"
msgstr ""
#: cryptui.rc:58
msgid "%
s (%d
bits)"
msgid "%
1 (%2!d!
bits)"
msgstr ""
#: cryptui.rc:59
...
...
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