Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-winehq
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-winehq
Commits
cc2f2f22
Commit
cc2f2f22
authored
May 08, 2015
by
Alex Henrie
Committed by
Alexandre Julliard
May 08, 2015
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
wineps: Make printer setup dialog caption translatable.
parent
27753f2e
Show whitespace changes
Inline
Side-by-side
Showing
49 changed files
with
261 additions
and
1 deletion
+261
-1
driver.c
dlls/wineps.drv/driver.c
+2
-1
psdlg.h
dlls/wineps.drv/psdlg.h
+1
-0
wineps.rc
dlls/wineps.drv/wineps.rc
+1
-0
ar.po
po/ar.po
+6
-0
bg.po
po/bg.po
+6
-0
ca.po
po/ca.po
+6
-0
cs.po
po/cs.po
+6
-0
da.po
po/da.po
+6
-0
de.po
po/de.po
+6
-0
el.po
po/el.po
+6
-0
en.po
po/en.po
+4
-0
en_US.po
po/en_US.po
+4
-0
eo.po
po/eo.po
+6
-0
es.po
po/es.po
+6
-0
fa.po
po/fa.po
+5
-0
fi.po
po/fi.po
+6
-0
fr.po
po/fr.po
+6
-0
he.po
po/he.po
+6
-0
hi.po
po/hi.po
+4
-0
hr.po
po/hr.po
+6
-0
hu.po
po/hu.po
+6
-0
it.po
po/it.po
+6
-0
ja.po
po/ja.po
+6
-0
ko.po
po/ko.po
+6
-0
lt.po
po/lt.po
+6
-0
ml.po
po/ml.po
+4
-0
nb_NO.po
po/nb_NO.po
+6
-0
nl.po
po/nl.po
+6
-0
or.po
po/or.po
+4
-0
pa.po
po/pa.po
+4
-0
pl.po
po/pl.po
+6
-0
pt_BR.po
po/pt_BR.po
+6
-0
pt_PT.po
po/pt_PT.po
+6
-0
rm.po
po/rm.po
+5
-0
ro.po
po/ro.po
+6
-0
ru.po
po/ru.po
+6
-0
sk.po
po/sk.po
+6
-0
sl.po
po/sl.po
+6
-0
sr_RS@cyrillic.po
po/sr_RS@cyrillic.po
+6
-0
sr_RS@latin.po
po/sr_RS@latin.po
+5
-0
sv.po
po/sv.po
+6
-0
te.po
po/te.po
+4
-0
th.po
po/th.po
+6
-0
tr.po
po/tr.po
+6
-0
uk.po
po/uk.po
+6
-0
wa.po
po/wa.po
+6
-0
wine.pot
po/wine.pot
+4
-0
zh_CN.po
po/zh_CN.po
+6
-0
zh_TW.po
po/zh_TW.po
+6
-0
No files found.
dlls/wineps.drv/driver.c
View file @
cc2f2f22
...
...
@@ -554,9 +554,10 @@ INT PSDRV_ExtDeviceMode(LPSTR lpszDriver, HWND hwnd, LPDEVMODEA lpdmOutput,
PROPSHEETHEADERW
psh
;
PSDRV_DLGINFO
di
;
PSDRV_DEVMODE
dlgdm
;
WCHAR
SetupW
[
64
];
static
const
WCHAR
PAPERW
[]
=
{
'P'
,
'A'
,
'P'
,
'E'
,
'R'
,
'\0'
};
static
const
WCHAR
SetupW
[]
=
{
'S'
,
'e'
,
't'
,
'u'
,
'p'
,
'\0'
};
LoadStringW
(
PSDRV_hInstance
,
IDS_SETUP
,
SetupW
,
sizeof
(
SetupW
)
/
sizeof
(
SetupW
[
0
]));
hinstComctl32
=
LoadLibraryA
(
"comctl32.dll"
);
pCreatePropertySheetPage
=
(
void
*
)
GetProcAddress
(
hinstComctl32
,
"CreatePropertySheetPageW"
);
...
...
dlls/wineps.drv/psdlg.h
View file @
cc2f2f22
...
...
@@ -32,5 +32,6 @@
#define IDD_QUALITY 112
#define IDS_DPI 1000
#define IDS_SETUP 1001
#endif
/* __WINE_PSDLG_H */
dlls/wineps.drv/wineps.rc
View file @
cc2f2f22
...
...
@@ -46,4 +46,5 @@ FONT 8, "MS Shell Dlg"
STRINGTABLE
{
IDS_DPI "#msgctxt#unit: dots/inch#dpi"
IDS_SETUP "Setup"
}
po/ar.po
View file @
cc2f2f22
...
...
@@ -8595,6 +8595,12 @@ msgstr "ح&جم الصفحة:"
msgid "Duplex:"
msgstr "مزدوج:"
#: wineps.rc:50
#, fuzzy
#| msgid "&Setup"
msgid "Setup"
msgstr "&إعداد"
#: wininet.rc:42 wininet.rc:62
msgid "Realm"
msgstr "حقل"
...
...
po/bg.po
View file @
cc2f2f22
...
...
@@ -8716,6 +8716,12 @@ msgstr "Раз&мер на хартията:"
msgid "Duplex:"
msgstr "Двустранно:"
#: wineps.rc:50
#, fuzzy
#| msgid "&Setup"
msgid "Setup"
msgstr "&Настройки"
#: wininet.rc:42 wininet.rc:62
msgid "Realm"
msgstr "Област"
...
...
po/ca.po
View file @
cc2f2f22
...
...
@@ -8727,6 +8727,12 @@ msgstr "&Mida de Paper:"
msgid "Duplex:"
msgstr "Dúplex:"
#: wineps.rc:50
#, fuzzy
#| msgid "&Setup"
msgid "Setup"
msgstr "&Configuració"
#: wininet.rc:42 wininet.rc:62
msgid "Realm"
msgstr "Regne"
...
...
po/cs.po
View file @
cc2f2f22
...
...
@@ -8534,6 +8534,12 @@ msgstr "&Velikost papíru:"
msgid "Duplex:"
msgstr "Oboustranně:"
#: wineps.rc:50
#, fuzzy
#| msgid "&Setup"
msgid "Setup"
msgstr "&Nastavit"
#: wininet.rc:42 wininet.rc:62
msgid "Realm"
msgstr "Oblast"
...
...
po/da.po
View file @
cc2f2f22
...
...
@@ -8691,6 +8691,12 @@ msgstr "&Papirstørrelse:"
msgid "Duplex:"
msgstr "Retninger:"
#: wineps.rc:50
#, fuzzy
#| msgid "&Setup"
msgid "Setup"
msgstr "&Indstilling"
#: wininet.rc:42 wininet.rc:62
msgid "Realm"
msgstr "Realm"
...
...
po/de.po
View file @
cc2f2f22
...
...
@@ -8582,6 +8582,12 @@ msgstr "&Papiergröße:"
msgid "Duplex:"
msgstr "Duplex:"
#: wineps.rc:50
#, fuzzy
#| msgid "&Setup"
msgid "Setup"
msgstr "&Einrichten"
#: wininet.rc:42 wininet.rc:62
msgid "Realm"
msgstr "Bereich"
...
...
po/el.po
View file @
cc2f2f22
...
...
@@ -8557,6 +8557,12 @@ msgstr ""
msgid "Duplex:"
msgstr ""
#: wineps.rc:50
#, fuzzy
#| msgid "&Setup"
msgid "Setup"
msgstr "&Εγκατάσταση"
#: wininet.rc:42 wininet.rc:62
msgid "Realm"
msgstr ""
...
...
po/en.po
View file @
cc2f2f22
...
...
@@ -8561,6 +8561,10 @@ msgstr "Paper Si&ze:"
msgid "Duplex:"
msgstr "Duplex:"
#: wineps.rc:50
msgid "Setup"
msgstr "Setup"
#: wininet.rc:42 wininet.rc:62
msgid "Realm"
msgstr "Realm"
...
...
po/en_US.po
View file @
cc2f2f22
...
...
@@ -8561,6 +8561,10 @@ msgstr "Paper Si&ze:"
msgid "Duplex:"
msgstr "Duplex:"
#: wineps.rc:50
msgid "Setup"
msgstr "Setup"
#: wininet.rc:42 wininet.rc:62
msgid "Realm"
msgstr "Realm"
...
...
po/eo.po
View file @
cc2f2f22
...
...
@@ -8455,6 +8455,12 @@ msgstr "Papera &Grando:"
msgid "Duplex:"
msgstr "Duobla:"
#: wineps.rc:50
#, fuzzy
#| msgid "&Setup"
msgid "Setup"
msgstr "&Agordi"
#: wininet.rc:42 wininet.rc:62
msgid "Realm"
msgstr "Regno"
...
...
po/es.po
View file @
cc2f2f22
...
...
@@ -8705,6 +8705,12 @@ msgstr "&Tamaño de papel:"
msgid "Duplex:"
msgstr "Dúplex:"
#: wineps.rc:50
#, fuzzy
#| msgid "&Setup"
msgid "Setup"
msgstr "&Configuración"
#: wininet.rc:42 wininet.rc:62
msgid "Realm"
msgstr "Dominio"
...
...
po/fa.po
View file @
cc2f2f22
...
...
@@ -8552,6 +8552,11 @@ msgstr ""
msgid "Duplex:"
msgstr ""
#: wineps.rc:50
#, fuzzy
msgid "Setup"
msgstr "تنظیمات صفحه"
#: wininet.rc:42 wininet.rc:62
msgid "Realm"
msgstr ""
...
...
po/fi.po
View file @
cc2f2f22
...
...
@@ -8554,6 +8554,12 @@ msgstr "Paperi&koko:"
msgid "Duplex:"
msgstr "Kaksipuolinen:"
#: wineps.rc:50
#, fuzzy
#| msgid "&Setup"
msgid "Setup"
msgstr "&Asetukset"
#: wininet.rc:42 wininet.rc:62
msgid "Realm"
msgstr "Alue"
...
...
po/fr.po
View file @
cc2f2f22
...
...
@@ -8616,6 +8616,12 @@ msgstr "&Taille du papier :"
msgid "Duplex:"
msgstr "Recto verso :"
#: wineps.rc:50
#, fuzzy
#| msgid "&Setup"
msgid "Setup"
msgstr "&Configurer"
#: wininet.rc:42 wininet.rc:62
msgid "Realm"
msgstr "Domaine"
...
...
po/he.po
View file @
cc2f2f22
...
...
@@ -8861,6 +8861,12 @@ msgstr "גודל ה&נייר:"
msgid "Duplex:"
msgstr "דו־צדדי:"
#: wineps.rc:50
#, fuzzy
#| msgid "&Setup"
msgid "Setup"
msgstr "ה&גדרה"
#: wininet.rc:42 wininet.rc:62
msgid "Realm"
msgstr "תחום"
...
...
po/hi.po
View file @
cc2f2f22
...
...
@@ -8400,6 +8400,10 @@ msgstr ""
msgid "Duplex:"
msgstr ""
#: wineps.rc:50
msgid "Setup"
msgstr ""
#: wininet.rc:42 wininet.rc:62
msgid "Realm"
msgstr ""
...
...
po/hr.po
View file @
cc2f2f22
...
...
@@ -8610,6 +8610,12 @@ msgstr "Veličina papira:"
msgid "Duplex:"
msgstr "Duplex:"
#: wineps.rc:50
#, fuzzy
#| msgid "&Setup"
msgid "Setup"
msgstr "&Postavke"
#: wininet.rc:42 wininet.rc:62
msgid "Realm"
msgstr "Domena"
...
...
po/hu.po
View file @
cc2f2f22
...
...
@@ -8650,6 +8650,12 @@ msgstr "Papír &méret:"
msgid "Duplex:"
msgstr "Duplex:"
#: wineps.rc:50
#, fuzzy
#| msgid "&Setup"
msgid "Setup"
msgstr "&Beállítás"
#: wininet.rc:42 wininet.rc:62
msgid "Realm"
msgstr "Csoport"
...
...
po/it.po
View file @
cc2f2f22
...
...
@@ -8720,6 +8720,12 @@ msgstr "&Dimensione del foglio:"
msgid "Duplex:"
msgstr "Fronte retro:"
#: wineps.rc:50
#, fuzzy
#| msgid "&Setup"
msgid "Setup"
msgstr "&Configura"
#: wininet.rc:42 wininet.rc:62
msgid "Realm"
msgstr "Dominio"
...
...
po/ja.po
View file @
cc2f2f22
...
...
@@ -8551,6 +8551,12 @@ msgstr "用紙サイズ(&Z):"
msgid "Duplex:"
msgstr "両面印刷:"
#: wineps.rc:50
#, fuzzy
#| msgid "&Setup"
msgid "Setup"
msgstr "プリンタの設定(&S)"
#: wininet.rc:42 wininet.rc:62
msgid "Realm"
msgstr "領域"
...
...
po/ko.po
View file @
cc2f2f22
...
...
@@ -8607,6 +8607,12 @@ msgstr "종이 크기(&Z):"
msgid "Duplex:"
msgstr "양방향 통신:"
#: wineps.rc:50
#, fuzzy
#| msgid "&Setup"
msgid "Setup"
msgstr "설정(&S)"
#: wininet.rc:42 wininet.rc:62
msgid "Realm"
msgstr "영역"
...
...
po/lt.po
View file @
cc2f2f22
...
...
@@ -8565,6 +8565,12 @@ msgstr "Popieriaus &dydis:"
msgid "Duplex:"
msgstr "Dvigubas:"
#: wineps.rc:50
#, fuzzy
#| msgid "&Setup"
msgid "Setup"
msgstr "&Nuostatos"
#: wininet.rc:42 wininet.rc:62
msgid "Realm"
msgstr "Sritis"
...
...
po/ml.po
View file @
cc2f2f22
...
...
@@ -8400,6 +8400,10 @@ msgstr ""
msgid "Duplex:"
msgstr ""
#: wineps.rc:50
msgid "Setup"
msgstr ""
#: wininet.rc:42 wininet.rc:62
msgid "Realm"
msgstr ""
...
...
po/nb_NO.po
View file @
cc2f2f22
...
...
@@ -8629,6 +8629,12 @@ msgstr "Papir&størrelse:"
msgid "Duplex:"
msgstr "Retning:"
#: wineps.rc:50
#, fuzzy
#| msgid "&Setup"
msgid "Setup"
msgstr "Opp&sett"
#: wininet.rc:42 wininet.rc:62
msgid "Realm"
msgstr "Område"
...
...
po/nl.po
View file @
cc2f2f22
...
...
@@ -8683,6 +8683,12 @@ msgstr "Papier&formaat:"
msgid "Duplex:"
msgstr "Dubbelzijdig:"
#: wineps.rc:50
#, fuzzy
#| msgid "&Setup"
msgid "Setup"
msgstr "&Eigenschappen"
#: wininet.rc:42 wininet.rc:62
msgid "Realm"
msgstr "Realm"
...
...
po/or.po
View file @
cc2f2f22
...
...
@@ -8400,6 +8400,10 @@ msgstr ""
msgid "Duplex:"
msgstr ""
#: wineps.rc:50
msgid "Setup"
msgstr ""
#: wininet.rc:42 wininet.rc:62
msgid "Realm"
msgstr ""
...
...
po/pa.po
View file @
cc2f2f22
...
...
@@ -8400,6 +8400,10 @@ msgstr ""
msgid "Duplex:"
msgstr ""
#: wineps.rc:50
msgid "Setup"
msgstr ""
#: wininet.rc:42 wininet.rc:62
msgid "Realm"
msgstr ""
...
...
po/pl.po
View file @
cc2f2f22
...
...
@@ -8591,6 +8591,12 @@ msgstr "Format papier&u:"
msgid "Duplex:"
msgstr "Dupleks:"
#: wineps.rc:50
#, fuzzy
#| msgid "&Setup"
msgid "Setup"
msgstr "U&stawienia"
#: wininet.rc:42 wininet.rc:62
msgid "Realm"
msgstr "Obszar"
...
...
po/pt_BR.po
View file @
cc2f2f22
...
...
@@ -8580,6 +8580,12 @@ msgstr "&Tamanho do papel:"
msgid "Duplex:"
msgstr "Frente e verso:"
#: wineps.rc:50
#, fuzzy
#| msgid "&Setup"
msgid "Setup"
msgstr "&Configurar"
#: wininet.rc:42 wininet.rc:62
msgid "Realm"
msgstr "Domínio"
...
...
po/pt_PT.po
View file @
cc2f2f22
...
...
@@ -8552,6 +8552,12 @@ msgstr "&Tamanho do papel:"
msgid "Duplex:"
msgstr "Duplex:"
#: wineps.rc:50
#, fuzzy
#| msgid "&Setup"
msgid "Setup"
msgstr "&Configurar"
#: wininet.rc:42 wininet.rc:62
msgid "Realm"
msgstr "Reino"
...
...
po/rm.po
View file @
cc2f2f22
...
...
@@ -8464,6 +8464,11 @@ msgstr ""
msgid "Duplex:"
msgstr ""
#: wineps.rc:50
#, fuzzy
msgid "Setup"
msgstr "&Installaziun dal stampader..."
#: wininet.rc:42 wininet.rc:62
msgid "Realm"
msgstr ""
...
...
po/ro.po
View file @
cc2f2f22
...
...
@@ -8822,6 +8822,12 @@ msgstr "&Mărimea foii:"
msgid "Duplex:"
msgstr "Duplex:"
#: wineps.rc:50
#, fuzzy
#| msgid "&Setup"
msgid "Setup"
msgstr "&Setează"
#: wininet.rc:42 wininet.rc:62
msgid "Realm"
msgstr "Domeniu"
...
...
po/ru.po
View file @
cc2f2f22
...
...
@@ -8564,6 +8564,12 @@ msgstr "&Размер бумаги:"
msgid "Duplex:"
msgstr "Двухсторонняя печать:"
#: wineps.rc:50
#, fuzzy
#| msgid "&Setup"
msgid "Setup"
msgstr "Сво&йства"
#: wininet.rc:42 wininet.rc:62
msgid "Realm"
msgstr "Домен"
...
...
po/sk.po
View file @
cc2f2f22
...
...
@@ -8578,6 +8578,12 @@ msgstr "&Veľkosť papiera:"
msgid "Duplex:"
msgstr ""
#: wineps.rc:50
#, fuzzy
#| msgid "&Setup"
msgid "Setup"
msgstr "&Nastaviť"
#: wininet.rc:42 wininet.rc:62
msgid "Realm"
msgstr ""
...
...
po/sl.po
View file @
cc2f2f22
...
...
@@ -8705,6 +8705,12 @@ msgstr "Veli&kost papirja:"
msgid "Duplex:"
msgstr "Duplex:"
#: wineps.rc:50
#, fuzzy
#| msgid "&Setup"
msgid "Setup"
msgstr "&Nastavitve"
#: wininet.rc:42 wininet.rc:62
msgid "Realm"
msgstr "Področje"
...
...
po/sr_RS@cyrillic.po
View file @
cc2f2f22
...
...
@@ -8922,6 +8922,12 @@ msgstr ""
msgid "Duplex:"
msgstr ""
#: wineps.rc:50
#, fuzzy
#| msgid "&Setup"
msgid "Setup"
msgstr "&Подеси"
#: wininet.rc:42 wininet.rc:62
msgid "Realm"
msgstr "Домен"
...
...
po/sr_RS@latin.po
View file @
cc2f2f22
...
...
@@ -9025,6 +9025,11 @@ msgstr ""
msgid "Duplex:"
msgstr ""
#: wineps.rc:50
#, fuzzy
msgid "Setup"
msgstr "Postavke strane"
#: wininet.rc:42 wininet.rc:62
msgid "Realm"
msgstr "Domen"
...
...
po/sv.po
View file @
cc2f2f22
...
...
@@ -8591,6 +8591,12 @@ msgstr "Papperssto&rlek:"
msgid "Duplex:"
msgstr "Dubbelsidig:"
#: wineps.rc:50
#, fuzzy
#| msgid "&Setup"
msgid "Setup"
msgstr "&Inställningar"
#: wininet.rc:42 wininet.rc:62
msgid "Realm"
msgstr "Domän"
...
...
po/te.po
View file @
cc2f2f22
...
...
@@ -8400,6 +8400,10 @@ msgstr ""
msgid "Duplex:"
msgstr ""
#: wineps.rc:50
msgid "Setup"
msgstr ""
#: wininet.rc:42 wininet.rc:62
msgid "Realm"
msgstr ""
...
...
po/th.po
View file @
cc2f2f22
...
...
@@ -8578,6 +8578,12 @@ msgstr ""
msgid "Duplex:"
msgstr ""
#: wineps.rc:50
#, fuzzy
#| msgid "&Setup"
msgid "Setup"
msgstr "ปรับแต่ง"
#: wininet.rc:42 wininet.rc:62
msgid "Realm"
msgstr ""
...
...
po/tr.po
View file @
cc2f2f22
...
...
@@ -8622,6 +8622,12 @@ msgstr "Kağıt &Boyutu:"
msgid "Duplex:"
msgstr "Çift Yönlü:"
#: wineps.rc:50
#, fuzzy
#| msgid "&Setup"
msgid "Setup"
msgstr "&Ayarla"
#: wininet.rc:42 wininet.rc:62
msgid "Realm"
msgstr "Realm"
...
...
po/uk.po
View file @
cc2f2f22
...
...
@@ -8641,6 +8641,12 @@ msgstr "&Розмір паперу:"
msgid "Duplex:"
msgstr "Дуплекс:"
#: wineps.rc:50
#, fuzzy
#| msgid "&Setup"
msgid "Setup"
msgstr "Властивості"
#: wininet.rc:42 wininet.rc:62
msgid "Realm"
msgstr "Область"
...
...
po/wa.po
View file @
cc2f2f22
...
...
@@ -8509,6 +8509,12 @@ msgstr ""
msgid "Duplex:"
msgstr ""
#: wineps.rc:50
#, fuzzy
#| msgid "&Setup"
msgid "Setup"
msgstr "Apon&tiaedje"
#: wininet.rc:42 wininet.rc:62
msgid "Realm"
msgstr ""
...
...
po/wine.pot
View file @
cc2f2f22
...
...
@@ -8346,6 +8346,10 @@ msgstr ""
msgid "Duplex:"
msgstr ""
#: wineps.rc:50
msgid "Setup"
msgstr ""
#: wininet.rc:42 wininet.rc:62
msgid "Realm"
msgstr ""
...
...
po/zh_CN.po
View file @
cc2f2f22
...
...
@@ -8459,6 +8459,12 @@ msgstr "纸张大小(&Z):"
msgid "Duplex:"
msgstr "双面:"
#: wineps.rc:50
#, fuzzy
#| msgid "&Setup"
msgid "Setup"
msgstr "设置(&S)"
#: wininet.rc:42 wininet.rc:62
msgid "Realm"
msgstr "Realm"
...
...
po/zh_TW.po
View file @
cc2f2f22
...
...
@@ -8559,6 +8559,12 @@ msgstr "紙張大小(&Z):"
msgid "Duplex:"
msgstr "雙面:"
#: wineps.rc:50
#, fuzzy
#| msgid "&Setup"
msgid "Setup"
msgstr "設定(&S)"
#: wininet.rc:42 wininet.rc:62
msgid "Realm"
msgstr "Realm"
...
...
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