Commit bb514159 authored by Huw Davies's avatar Huw Davies Committed by Alexandre Julliard

localspl: Implement EnumForms().

parent 7d4a7f85
......@@ -81,7 +81,7 @@ static struct list xcv_handles = LIST_INIT( xcv_handles );
static const WCHAR WinNT_CV_PortsW[] = L"Software\\Microsoft\\Windows NT\\CurrentVersion\\Ports";
static const WCHAR WinNT_CV_WindowsW[] = L"Software\\Microsoft\\Windows NT\\CurrentVersion\\Windows";
static HINSTANCE LOCALSPL_hInstance;
HINSTANCE localspl_instance;
/*****************************************************
* DllMain
......@@ -94,7 +94,7 @@ BOOL WINAPI DllMain(HINSTANCE hinstDLL, DWORD fdwReason, LPVOID lpvReserved)
{
case DLL_PROCESS_ATTACH:
DisableThreadLibraryCalls( hinstDLL );
LOCALSPL_hInstance = hinstDLL;
localspl_instance = hinstDLL;
break;
}
return TRUE;
......@@ -185,8 +185,8 @@ static DWORD get_ports_from_reg(DWORD level, LPBYTE pPorts, DWORD cbBuf, LPDWORD
}
/* "+1" for '\0' */
reslen_MonitorW = LoadStringW(LOCALSPL_hInstance, IDS_LOCALMONITOR, res_MonitorW, IDS_LOCALMONITOR_MAXLEN) + 1;
reslen_PortW = LoadStringW(LOCALSPL_hInstance, IDS_LOCALPORT, res_PortW, IDS_LOCALPORT_MAXLEN) + 1;
reslen_MonitorW = LoadStringW(localspl_instance, IDS_LOCALMONITOR, res_MonitorW, IDS_LOCALMONITOR_MAXLEN) + 1;
reslen_PortW = LoadStringW(localspl_instance, IDS_LOCALPORT, res_PortW, IDS_LOCALPORT_MAXLEN) + 1;
res = RegOpenKeyW(HKEY_LOCAL_MACHINE, WinNT_CV_PortsW, &hroot);
if (res == ERROR_SUCCESS) {
......
......@@ -31,6 +31,126 @@ STRINGTABLE
IDS_LOCALMONITOR "Local Monitor"
}
STRINGTABLE
{
IDS_FORM_LETTER "Letter"
IDS_FORM_LETTER_SMALL "Letter Small"
IDS_FORM_TABLOID "Tabloid"
IDS_FORM_LEDGER "Ledger"
IDS_FORM_LEGAL "Legal"
IDS_FORM_STATEMENT "Statement"
IDS_FORM_EXECUTIVE "Executive"
IDS_FORM_A3 "A3"
IDS_FORM_A4 "A4"
IDS_FORM_A4_SMALL "A4 Small"
IDS_FORM_A5 "A5"
IDS_FORM_B4_JIS "B4 (JIS)"
IDS_FORM_B5_JIS "B5 (JIS)"
IDS_FORM_FOLIO "Folio"
IDS_FORM_QUARTO "Quarto"
IDS_FORM_10x14 "10x14"
IDS_FORM_11x17 "11x17"
IDS_FORM_NOTE "Note"
IDS_FORM_ENVELOPE_9 "Envelope #9"
IDS_FORM_ENVELOPE_10 "Envelope #10"
IDS_FORM_ENVELOPE_11 "Envelope #11"
IDS_FORM_ENVELOPE_12 "Envelope #12"
IDS_FORM_ENVELOPE_14 "Envelope #14"
IDS_FORM_C_SIZE_SHEET "C size sheet"
IDS_FORM_D_SIZE_SHEET "D size sheet"
IDS_FORM_E_SIZE_SHEET "E size sheet"
IDS_FORM_ENVELOPE_DL "Envelope DL"
IDS_FORM_ENVELOPE_C5 "Envelope C5"
IDS_FORM_ENVELOPE_C3 "Envelope C3"
IDS_FORM_ENVELOPE_C4 "Envelope C4"
IDS_FORM_ENVELOPE_C6 "Envelope C6"
IDS_FORM_ENVELOPE_C65 "Envelope C65"
IDS_FORM_ENVELOPE_B4 "Envelope B4"
IDS_FORM_ENVELOPE_B5 "Envelope B5"
IDS_FORM_ENVELOPE_B6 "Envelope B6"
IDS_FORM_ENVELOPE "Envelope"
IDS_FORM_ENVELOPE_MONARCH "Envelope Monarch"
IDS_FORM_6_34_ENVELOPE "6 3/4 Envelope"
IDS_FORM_US_STD_FANFOLD "US Std Fanfold"
IDS_FORM_GERMAN_STD_FANFOLD "German Std Fanfold"
IDS_FORM_GERMAN_LEGAL_FANFOLD "German Legal Fanfold"
IDS_FORM_B4_ISO "B4 (ISO)"
IDS_FORM_JAPANESE_POSTCARD "Japanese Postcard"
IDS_FORM_9x11 "9x11"
IDS_FORM_10x11 "10x11"
IDS_FORM_15x11 "15x11"
IDS_FORM_ENVELOPE_INVITE "Envelope Invite"
IDS_FORM_LETTER_EXTRA "Letter Extra"
IDS_FORM_LEGAL_EXTRA "Legal Extra"
IDS_FORM_TABLOID_EXTRA "Tabloid Extra"
IDS_FORM_A4_EXTRA "A4 Extra"
IDS_FORM_LETTER_TRANSVERSE "Letter Transverse"
IDS_FORM_A4_TRANSVERSE "A4 Transverse"
IDS_FORM_LETTER_EXTRA_TRANSVERSE "Letter Extra Transverse"
IDS_FORM_SUPER_A "Super A"
IDS_FORM_SUPER_B "Super B"
IDS_FORM_LETTER_PLUS "Letter Plus"
IDS_FORM_A4_PLUS "A4 Plus"
IDS_FORM_A5_TRANSVERSE "A5 Transverse"
IDS_FORM_B5_JIS_TRANSVERSE "B5 (JIS) Transverse"
IDS_FORM_A3_EXTRA "A3 Extra"
IDS_FORM_A5_EXTRA "A5 Extra"
IDS_FORM_B5_ISO_EXTRA "B5 (ISO) Extra"
IDS_FORM_A2 "A2"
IDS_FORM_A3_TRANSVERSE "A3 Transverse"
IDS_FORM_A3_EXTRA_TRANSVERSE "A3 Extra Transverse"
IDS_FORM_JAPANESE_DOUBLE_POSTCARD "Japanese Double Postcard"
IDS_FORM_A6 "A6"
IDS_FORM_JAPANESE_ENVELOPE_KAKU_2 "Japanese Envelope Kaku #2"
IDS_FORM_JAPANESE_ENVELOPE_KAKU_3 "Japanese Envelope Kaku #3"
IDS_FORM_JAPANESE_ENVELOPE_CHOU_3 "Japanese Envelope Chou #3"
IDS_FORM_JAPANESE_ENVELOPE_CHOU_4 "Japanese Envelope Chou #4"
IDS_FORM_LETTER_ROTATED "Letter Rotated"
IDS_FORM_A3_ROTATED "A3 Rotated"
IDS_FORM_A4_ROTATED "A4 Rotated"
IDS_FORM_A5_ROTATED "A5 Rotated"
IDS_FORM_B4_JIS_ROTATED "B4 (JIS) Rotated"
IDS_FORM_B5_JIS_ROTATED "B5 (JIS) Rotated"
IDS_FORM_JAPANESE_POSTCARD_ROTATED "Japanese Postcard Rotated"
IDS_FORM_DOUBLE_JAPAN_POSTCARD_ROTATED "Double Japan Postcard Rotated"
IDS_FORM_A6_ROTATED "A6 Rotated"
IDS_FORM_JAPAN_ENVELOPE_KAKU_2_ROTATED "Japan Envelope Kaku #2 Rotated"
IDS_FORM_JAPAN_ENVELOPE_KAKU_3_ROTATED "Japan Envelope Kaku #3 Rotated"
IDS_FORM_JAPAN_ENVELOPE_CHOU_3_ROTATED "Japan Envelope Chou #3 Rotated"
IDS_FORM_JAPAN_ENVELOPE_CHOU_4_ROTATED "Japan Envelope Chou #4 Rotated"
IDS_FORM_B6_JIS "B6 (JIS)"
IDS_FORM_B6_JIS_ROTATED "B6 (JIS) Rotated"
IDS_FORM_12x11 "12x11"
IDS_FORM_JAPAN_ENVELOPE_YOU_4 "Japan Envelope You #4"
IDS_FORM_JAPAN_ENVELOPE_YOU_4_ROTATED "Japan Envelope You #4 Rotated"
IDS_FORM_PRC_16K "PRC 16K"
IDS_FORM_PRC_32K "PRC 32K"
IDS_FORM_PRC_32K_BIG "PRC 32K(Big)"
IDS_FORM_PRC_ENVELOPE_1 "PRC Envelope #1"
IDS_FORM_PRC_ENVELOPE_2 "PRC Envelope #2"
IDS_FORM_PRC_ENVELOPE_3 "PRC Envelope #3"
IDS_FORM_PRC_ENVELOPE_4 "PRC Envelope #4"
IDS_FORM_PRC_ENVELOPE_5 "PRC Envelope #5"
IDS_FORM_PRC_ENVELOPE_6 "PRC Envelope #6"
IDS_FORM_PRC_ENVELOPE_7 "PRC Envelope #7"
IDS_FORM_PRC_ENVELOPE_8 "PRC Envelope #8"
IDS_FORM_PRC_ENVELOPE_9 "PRC Envelope #9"
IDS_FORM_PRC_ENVELOPE_10 "PRC Envelope #10"
IDS_FORM_PRC_16K_ROTATED "PRC 16K Rotated"
IDS_FORM_PRC_32K_ROTATED "PRC 32K Rotated"
IDS_FORM_PRC_32K_BIG_ROTATED "PRC 32K(Big) Rotated"
IDS_FORM_PRC_ENVELOPE_1_ROTATED "PRC Envelope #1 Rotated"
IDS_FORM_PRC_ENVELOPE_2_ROTATED "PRC Envelope #2 Rotated"
IDS_FORM_PRC_ENVELOPE_3_ROTATED "PRC Envelope #3 Rotated"
IDS_FORM_PRC_ENVELOPE_4_ROTATED "PRC Envelope #4 Rotated"
IDS_FORM_PRC_ENVELOPE_5_ROTATED "PRC Envelope #5 Rotated"
IDS_FORM_PRC_ENVELOPE_6_ROTATED "PRC Envelope #6 Rotated"
IDS_FORM_PRC_ENVELOPE_7_ROTATED "PRC Envelope #7 Rotated"
IDS_FORM_PRC_ENVELOPE_8_ROTATED "PRC Envelope #8 Rotated"
IDS_FORM_PRC_ENVELOPE_9_ROTATED "PRC Envelope #9 Rotated"
IDS_FORM_PRC_ENVELOPE_10_ROTATED "PRC Envelope #10 Rotated"
}
LANGUAGE LANG_NEUTRAL, SUBLANG_NEUTRAL
#define WINE_FILENAME_STR "localspl.dll"
......
......@@ -23,7 +23,126 @@
#include <windef.h>
extern HINSTANCE localspl_instance DECLSPEC_HIDDEN;
/* ## Resource-ID ## */
#define IDS_FORM_LETTER 200
#define IDS_FORM_LETTER_SMALL 201
#define IDS_FORM_TABLOID 202
#define IDS_FORM_LEDGER 203
#define IDS_FORM_LEGAL 204
#define IDS_FORM_STATEMENT 205
#define IDS_FORM_EXECUTIVE 206
#define IDS_FORM_A3 207
#define IDS_FORM_A4 208
#define IDS_FORM_A4_SMALL 209
#define IDS_FORM_A5 210
#define IDS_FORM_B4_JIS 211
#define IDS_FORM_B5_JIS 212
#define IDS_FORM_FOLIO 213
#define IDS_FORM_QUARTO 214
#define IDS_FORM_10x14 215
#define IDS_FORM_11x17 216
#define IDS_FORM_NOTE 217
#define IDS_FORM_ENVELOPE_9 218
#define IDS_FORM_ENVELOPE_10 219
#define IDS_FORM_ENVELOPE_11 220
#define IDS_FORM_ENVELOPE_12 221
#define IDS_FORM_ENVELOPE_14 222
#define IDS_FORM_C_SIZE_SHEET 223
#define IDS_FORM_D_SIZE_SHEET 224
#define IDS_FORM_E_SIZE_SHEET 225
#define IDS_FORM_ENVELOPE_DL 226
#define IDS_FORM_ENVELOPE_C5 227
#define IDS_FORM_ENVELOPE_C3 228
#define IDS_FORM_ENVELOPE_C4 229
#define IDS_FORM_ENVELOPE_C6 230
#define IDS_FORM_ENVELOPE_C65 231
#define IDS_FORM_ENVELOPE_B4 232
#define IDS_FORM_ENVELOPE_B5 233
#define IDS_FORM_ENVELOPE_B6 234
#define IDS_FORM_ENVELOPE 235
#define IDS_FORM_ENVELOPE_MONARCH 236
#define IDS_FORM_6_34_ENVELOPE 237
#define IDS_FORM_US_STD_FANFOLD 238
#define IDS_FORM_GERMAN_STD_FANFOLD 239
#define IDS_FORM_GERMAN_LEGAL_FANFOLD 240
#define IDS_FORM_B4_ISO 241
#define IDS_FORM_JAPANESE_POSTCARD 242
#define IDS_FORM_9x11 243
#define IDS_FORM_10x11 244
#define IDS_FORM_15x11 245
#define IDS_FORM_ENVELOPE_INVITE 246
#define IDS_FORM_LETTER_EXTRA 247
#define IDS_FORM_LEGAL_EXTRA 248
#define IDS_FORM_TABLOID_EXTRA 249
#define IDS_FORM_A4_EXTRA 250
#define IDS_FORM_LETTER_TRANSVERSE 251
#define IDS_FORM_A4_TRANSVERSE 252
#define IDS_FORM_LETTER_EXTRA_TRANSVERSE 253
#define IDS_FORM_SUPER_A 254
#define IDS_FORM_SUPER_B 255
#define IDS_FORM_LETTER_PLUS 256
#define IDS_FORM_A4_PLUS 257
#define IDS_FORM_A5_TRANSVERSE 258
#define IDS_FORM_B5_JIS_TRANSVERSE 259
#define IDS_FORM_A3_EXTRA 260
#define IDS_FORM_A5_EXTRA 261
#define IDS_FORM_B5_ISO_EXTRA 262
#define IDS_FORM_A2 263
#define IDS_FORM_A3_TRANSVERSE 264
#define IDS_FORM_A3_EXTRA_TRANSVERSE 265
#define IDS_FORM_JAPANESE_DOUBLE_POSTCARD 266
#define IDS_FORM_A6 267
#define IDS_FORM_JAPANESE_ENVELOPE_KAKU_2 268
#define IDS_FORM_JAPANESE_ENVELOPE_KAKU_3 269
#define IDS_FORM_JAPANESE_ENVELOPE_CHOU_3 270
#define IDS_FORM_JAPANESE_ENVELOPE_CHOU_4 271
#define IDS_FORM_LETTER_ROTATED 272
#define IDS_FORM_A3_ROTATED 273
#define IDS_FORM_A4_ROTATED 274
#define IDS_FORM_A5_ROTATED 275
#define IDS_FORM_B4_JIS_ROTATED 276
#define IDS_FORM_B5_JIS_ROTATED 277
#define IDS_FORM_JAPANESE_POSTCARD_ROTATED 278
#define IDS_FORM_DOUBLE_JAPAN_POSTCARD_ROTATED 279
#define IDS_FORM_A6_ROTATED 280
#define IDS_FORM_JAPAN_ENVELOPE_KAKU_2_ROTATED 281
#define IDS_FORM_JAPAN_ENVELOPE_KAKU_3_ROTATED 282
#define IDS_FORM_JAPAN_ENVELOPE_CHOU_3_ROTATED 283
#define IDS_FORM_JAPAN_ENVELOPE_CHOU_4_ROTATED 284
#define IDS_FORM_B6_JIS 285
#define IDS_FORM_B6_JIS_ROTATED 286
#define IDS_FORM_12x11 287
#define IDS_FORM_JAPAN_ENVELOPE_YOU_4 288
#define IDS_FORM_JAPAN_ENVELOPE_YOU_4_ROTATED 289
#define IDS_FORM_PRC_16K 290
#define IDS_FORM_PRC_32K 291
#define IDS_FORM_PRC_32K_BIG 292
#define IDS_FORM_PRC_ENVELOPE_1 293
#define IDS_FORM_PRC_ENVELOPE_2 294
#define IDS_FORM_PRC_ENVELOPE_3 295
#define IDS_FORM_PRC_ENVELOPE_4 296
#define IDS_FORM_PRC_ENVELOPE_5 297
#define IDS_FORM_PRC_ENVELOPE_6 298
#define IDS_FORM_PRC_ENVELOPE_7 299
#define IDS_FORM_PRC_ENVELOPE_8 300
#define IDS_FORM_PRC_ENVELOPE_9 301
#define IDS_FORM_PRC_ENVELOPE_10 302
#define IDS_FORM_PRC_16K_ROTATED 303
#define IDS_FORM_PRC_32K_ROTATED 304
#define IDS_FORM_PRC_32K_BIG_ROTATED 305
#define IDS_FORM_PRC_ENVELOPE_1_ROTATED 306
#define IDS_FORM_PRC_ENVELOPE_2_ROTATED 307
#define IDS_FORM_PRC_ENVELOPE_3_ROTATED 308
#define IDS_FORM_PRC_ENVELOPE_4_ROTATED 309
#define IDS_FORM_PRC_ENVELOPE_5_ROTATED 310
#define IDS_FORM_PRC_ENVELOPE_6_ROTATED 311
#define IDS_FORM_PRC_ENVELOPE_7_ROTATED 312
#define IDS_FORM_PRC_ENVELOPE_8_ROTATED 313
#define IDS_FORM_PRC_ENVELOPE_9_ROTATED 314
#define IDS_FORM_PRC_ENVELOPE_10_ROTATED 315
#define IDS_LOCALPORT 500
#define IDS_LOCALMONITOR 507
......
......@@ -7415,6 +7415,18 @@ BOOL WINAPI EnumFormsW( HANDLE printer, DWORD level, BYTE *form, DWORD size, DWO
return FALSE;
}
if (!needed || !count)
{
SetLastError( RPC_X_NULL_REF_POINTER );
return FALSE;
}
if (!form && size)
{
SetLastError( ERROR_INVALID_USER_BUFFER );
return FALSE;
}
return backend->fpEnumForms( handle, level, form, size, needed, count );
}
......
......@@ -6887,6 +6887,511 @@ msgstr "El nivel nun ye válidu.\n"
msgid "Resource is not currently available.\n"
msgstr "L'ayuda nun ta disponible."
#: dlls/localspl/localspl.rc:37
#, fuzzy
#| msgctxt "Drive letter"
#| msgid "Letter"
msgid "Letter"
msgstr "Lletra"
#: dlls/localspl/localspl.rc:38
#, fuzzy
#| msgctxt "Drive letter"
#| msgid "Letter"
msgid "Letter Small"
msgstr "Lletra"
#: dlls/localspl/localspl.rc:39
msgid "Tabloid"
msgstr ""
#: dlls/localspl/localspl.rc:40
msgid "Ledger"
msgstr ""
#: dlls/localspl/localspl.rc:41
msgid "Legal"
msgstr ""
#: dlls/localspl/localspl.rc:42
#, fuzzy
#| msgid "State"
msgid "Statement"
msgstr "Estáu"
#: dlls/localspl/localspl.rc:43
#, fuzzy
#| msgid "&Execute..."
msgid "Executive"
msgstr "&Executar..."
#: dlls/localspl/localspl.rc:44
#, fuzzy
#| msgctxt "accelerator Select All"
#| msgid "A"
msgid "A3"
msgstr "A"
#: dlls/localspl/localspl.rc:45
#, fuzzy
#| msgctxt "accelerator Select All"
#| msgid "A"
msgid "A4"
msgstr "A"
#: dlls/localspl/localspl.rc:46
#, fuzzy
#| msgid "&Small"
msgid "A4 Small"
msgstr "&Pequeñu"
#: dlls/localspl/localspl.rc:47
#, fuzzy
#| msgctxt "accelerator Select All"
#| msgid "A"
msgid "A5"
msgstr "A"
#: dlls/localspl/localspl.rc:48
msgid "B4 (JIS)"
msgstr ""
#: dlls/localspl/localspl.rc:49
msgid "B5 (JIS)"
msgstr ""
#: dlls/localspl/localspl.rc:50
msgid "Folio"
msgstr ""
#: dlls/localspl/localspl.rc:51
msgid "Quarto"
msgstr ""
#: dlls/localspl/localspl.rc:52
msgid "10x14"
msgstr ""
#: dlls/localspl/localspl.rc:53
msgid "11x17"
msgstr ""
#: dlls/localspl/localspl.rc:54
#, fuzzy
#| msgid "Notepad"
msgid "Note"
msgstr "Bloc de notes"
#: dlls/localspl/localspl.rc:55
msgid "Envelope #9"
msgstr ""
#: dlls/localspl/localspl.rc:56
msgid "Envelope #10"
msgstr ""
#: dlls/localspl/localspl.rc:57
msgid "Envelope #11"
msgstr ""
#: dlls/localspl/localspl.rc:58
msgid "Envelope #12"
msgstr ""
#: dlls/localspl/localspl.rc:59
msgid "Envelope #14"
msgstr ""
#: dlls/localspl/localspl.rc:60
msgid "C size sheet"
msgstr ""
#: dlls/localspl/localspl.rc:61
msgid "D size sheet"
msgstr ""
#: dlls/localspl/localspl.rc:62
msgid "E size sheet"
msgstr ""
#: dlls/localspl/localspl.rc:63
msgid "Envelope DL"
msgstr ""
#: dlls/localspl/localspl.rc:64
msgid "Envelope C5"
msgstr ""
#: dlls/localspl/localspl.rc:65
msgid "Envelope C3"
msgstr ""
#: dlls/localspl/localspl.rc:66
msgid "Envelope C4"
msgstr ""
#: dlls/localspl/localspl.rc:67
msgid "Envelope C6"
msgstr ""
#: dlls/localspl/localspl.rc:68
msgid "Envelope C65"
msgstr ""
#: dlls/localspl/localspl.rc:69
msgid "Envelope B4"
msgstr ""
#: dlls/localspl/localspl.rc:70
msgid "Envelope B5"
msgstr ""
#: dlls/localspl/localspl.rc:71
msgid "Envelope B6"
msgstr ""
#: dlls/localspl/localspl.rc:72
msgid "Envelope"
msgstr ""
#: dlls/localspl/localspl.rc:73
msgid "Envelope Monarch"
msgstr ""
#: dlls/localspl/localspl.rc:74
msgid "6 3/4 Envelope"
msgstr ""
#: dlls/localspl/localspl.rc:75
msgid "US Std Fanfold"
msgstr ""
#: dlls/localspl/localspl.rc:76
msgid "German Std Fanfold"
msgstr ""
#: dlls/localspl/localspl.rc:77
msgid "German Legal Fanfold"
msgstr ""
#: dlls/localspl/localspl.rc:78
msgid "B4 (ISO)"
msgstr ""
#: dlls/localspl/localspl.rc:79
msgid "Japanese Postcard"
msgstr ""
#: dlls/localspl/localspl.rc:80
msgid "9x11"
msgstr ""
#: dlls/localspl/localspl.rc:81
msgid "10x11"
msgstr ""
#: dlls/localspl/localspl.rc:82
msgid "15x11"
msgstr ""
#: dlls/localspl/localspl.rc:83
msgid "Envelope Invite"
msgstr ""
#: dlls/localspl/localspl.rc:84
#, fuzzy
#| msgctxt "Drive letter"
#| msgid "Letter"
msgid "Letter Extra"
msgstr "Lletra"
#: dlls/localspl/localspl.rc:85
msgid "Legal Extra"
msgstr ""
#: dlls/localspl/localspl.rc:86
msgid "Tabloid Extra"
msgstr ""
#: dlls/localspl/localspl.rc:87
#, fuzzy
#| msgid "E&xtras"
msgid "A4 Extra"
msgstr "E&stres"
#: dlls/localspl/localspl.rc:88
msgid "Letter Transverse"
msgstr ""
#: dlls/localspl/localspl.rc:89
msgid "A4 Transverse"
msgstr ""
#: dlls/localspl/localspl.rc:90
msgid "Letter Extra Transverse"
msgstr ""
#: dlls/localspl/localspl.rc:91
msgid "Super A"
msgstr ""
#: dlls/localspl/localspl.rc:92
msgid "Super B"
msgstr ""
#: dlls/localspl/localspl.rc:93
#, fuzzy
#| msgctxt "Drive letter"
#| msgid "Letter"
msgid "Letter Plus"
msgstr "Lletra"
#: dlls/localspl/localspl.rc:94
msgid "A4 Plus"
msgstr ""
#: dlls/localspl/localspl.rc:95
msgid "A5 Transverse"
msgstr ""
#: dlls/localspl/localspl.rc:96
msgid "B5 (JIS) Transverse"
msgstr ""
#: dlls/localspl/localspl.rc:97
#, fuzzy
#| msgid "E&xtras"
msgid "A3 Extra"
msgstr "E&stres"
#: dlls/localspl/localspl.rc:98
#, fuzzy
#| msgid "E&xtras"
msgid "A5 Extra"
msgstr "E&stres"
#: dlls/localspl/localspl.rc:99
msgid "B5 (ISO) Extra"
msgstr ""
#: dlls/localspl/localspl.rc:100
#, fuzzy
#| msgctxt "accelerator Select All"
#| msgid "A"
msgid "A2"
msgstr "A"
#: dlls/localspl/localspl.rc:101
msgid "A3 Transverse"
msgstr ""
#: dlls/localspl/localspl.rc:102
msgid "A3 Extra Transverse"
msgstr ""
#: dlls/localspl/localspl.rc:103
msgid "Japanese Double Postcard"
msgstr ""
#: dlls/localspl/localspl.rc:104
#, fuzzy
#| msgctxt "accelerator Select All"
#| msgid "A"
msgid "A6"
msgstr "A"
#: dlls/localspl/localspl.rc:105
msgid "Japanese Envelope Kaku #2"
msgstr ""
#: dlls/localspl/localspl.rc:106
msgid "Japanese Envelope Kaku #3"
msgstr ""
#: dlls/localspl/localspl.rc:107
msgid "Japanese Envelope Chou #3"
msgstr ""
#: dlls/localspl/localspl.rc:108
msgid "Japanese Envelope Chou #4"
msgstr ""
#: dlls/localspl/localspl.rc:109
msgid "Letter Rotated"
msgstr ""
#: dlls/localspl/localspl.rc:110
msgid "A3 Rotated"
msgstr ""
#: dlls/localspl/localspl.rc:111
msgid "A4 Rotated"
msgstr ""
#: dlls/localspl/localspl.rc:112
msgid "A5 Rotated"
msgstr ""
#: dlls/localspl/localspl.rc:113
msgid "B4 (JIS) Rotated"
msgstr ""
#: dlls/localspl/localspl.rc:114
msgid "B5 (JIS) Rotated"
msgstr ""
#: dlls/localspl/localspl.rc:115
msgid "Japanese Postcard Rotated"
msgstr ""
#: dlls/localspl/localspl.rc:116
msgid "Double Japan Postcard Rotated"
msgstr ""
#: dlls/localspl/localspl.rc:117
msgid "A6 Rotated"
msgstr ""
#: dlls/localspl/localspl.rc:118
msgid "Japan Envelope Kaku #2 Rotated"
msgstr ""
#: dlls/localspl/localspl.rc:119
msgid "Japan Envelope Kaku #3 Rotated"
msgstr ""
#: dlls/localspl/localspl.rc:120
msgid "Japan Envelope Chou #3 Rotated"
msgstr ""
#: dlls/localspl/localspl.rc:121
msgid "Japan Envelope Chou #4 Rotated"
msgstr ""
#: dlls/localspl/localspl.rc:122
msgid "B6 (JIS)"
msgstr ""
#: dlls/localspl/localspl.rc:123
msgid "B6 (JIS) Rotated"
msgstr ""
#: dlls/localspl/localspl.rc:124
msgid "12x11"
msgstr ""
#: dlls/localspl/localspl.rc:125
msgid "Japan Envelope You #4"
msgstr ""
#: dlls/localspl/localspl.rc:126
msgid "Japan Envelope You #4 Rotated"
msgstr ""
#: dlls/localspl/localspl.rc:127
msgid "PRC 16K"
msgstr ""
#: dlls/localspl/localspl.rc:128
msgid "PRC 32K"
msgstr ""
#: dlls/localspl/localspl.rc:129
msgid "PRC 32K(Big)"
msgstr ""
#: dlls/localspl/localspl.rc:130
msgid "PRC Envelope #1"
msgstr ""
#: dlls/localspl/localspl.rc:131
msgid "PRC Envelope #2"
msgstr ""
#: dlls/localspl/localspl.rc:132
msgid "PRC Envelope #3"
msgstr ""
#: dlls/localspl/localspl.rc:133
msgid "PRC Envelope #4"
msgstr ""
#: dlls/localspl/localspl.rc:134
msgid "PRC Envelope #5"
msgstr ""
#: dlls/localspl/localspl.rc:135
msgid "PRC Envelope #6"
msgstr ""
#: dlls/localspl/localspl.rc:136
msgid "PRC Envelope #7"
msgstr ""
#: dlls/localspl/localspl.rc:137
msgid "PRC Envelope #8"
msgstr ""
#: dlls/localspl/localspl.rc:138
msgid "PRC Envelope #9"
msgstr ""
#: dlls/localspl/localspl.rc:139
msgid "PRC Envelope #10"
msgstr ""
#: dlls/localspl/localspl.rc:140
msgid "PRC 16K Rotated"
msgstr ""
#: dlls/localspl/localspl.rc:141
msgid "PRC 32K Rotated"
msgstr ""
#: dlls/localspl/localspl.rc:142
msgid "PRC 32K(Big) Rotated"
msgstr ""
#: dlls/localspl/localspl.rc:143
msgid "PRC Envelope #1 Rotated"
msgstr ""
#: dlls/localspl/localspl.rc:144
msgid "PRC Envelope #2 Rotated"
msgstr ""
#: dlls/localspl/localspl.rc:145
msgid "PRC Envelope #3 Rotated"
msgstr ""
#: dlls/localspl/localspl.rc:146
msgid "PRC Envelope #4 Rotated"
msgstr ""
#: dlls/localspl/localspl.rc:147
msgid "PRC Envelope #5 Rotated"
msgstr ""
#: dlls/localspl/localspl.rc:148
msgid "PRC Envelope #6 Rotated"
msgstr ""
#: dlls/localspl/localspl.rc:149
msgid "PRC Envelope #7 Rotated"
msgstr ""
#: dlls/localspl/localspl.rc:150
msgid "PRC Envelope #8 Rotated"
msgstr ""
#: dlls/localspl/localspl.rc:151
msgid "PRC Envelope #9 Rotated"
msgstr ""
#: dlls/localspl/localspl.rc:152
msgid "PRC Envelope #10 Rotated"
msgstr ""
#: dlls/localspl/localspl.rc:31 dlls/localui/localui.rc:31
#: dlls/winspool.drv/winspool.rc:30
msgid "Local Port"
......
......@@ -7137,6 +7137,491 @@ msgstr "Невалидни знаци в пътя.\n"
msgid "Resource is not currently available.\n"
msgstr "Оставащ размер.\n"
#: dlls/localspl/localspl.rc:37
msgid "Letter"
msgstr ""
#: dlls/localspl/localspl.rc:38
msgid "Letter Small"
msgstr ""
#: dlls/localspl/localspl.rc:39
#, fuzzy
#| msgid "&Table"
msgid "Tabloid"
msgstr "&Таблица"
#: dlls/localspl/localspl.rc:40
msgid "Ledger"
msgstr ""
#: dlls/localspl/localspl.rc:41
msgid "Legal"
msgstr ""
#: dlls/localspl/localspl.rc:42
#, fuzzy
#| msgid "Status:"
msgid "Statement"
msgstr "Състояние:"
#: dlls/localspl/localspl.rc:43
msgid "Executive"
msgstr ""
#: dlls/localspl/localspl.rc:44
#, fuzzy
#| msgctxt "accelerator Select All"
#| msgid "A"
msgid "A3"
msgstr "A"
#: dlls/localspl/localspl.rc:45
#, fuzzy
#| msgctxt "accelerator Select All"
#| msgid "A"
msgid "A4"
msgstr "A"
#: dlls/localspl/localspl.rc:46
msgid "A4 Small"
msgstr ""
#: dlls/localspl/localspl.rc:47
#, fuzzy
#| msgctxt "accelerator Select All"
#| msgid "A"
msgid "A5"
msgstr "A"
#: dlls/localspl/localspl.rc:48
msgid "B4 (JIS)"
msgstr ""
#: dlls/localspl/localspl.rc:49
msgid "B5 (JIS)"
msgstr ""
#: dlls/localspl/localspl.rc:50
msgid "Folio"
msgstr ""
#: dlls/localspl/localspl.rc:51
msgid "Quarto"
msgstr ""
#: dlls/localspl/localspl.rc:52
msgid "10x14"
msgstr ""
#: dlls/localspl/localspl.rc:53
msgid "11x17"
msgstr ""
#: dlls/localspl/localspl.rc:54
#, fuzzy
#| msgid "Notepad"
msgid "Note"
msgstr "Бележник"
#: dlls/localspl/localspl.rc:55
msgid "Envelope #9"
msgstr ""
#: dlls/localspl/localspl.rc:56
msgid "Envelope #10"
msgstr ""
#: dlls/localspl/localspl.rc:57
msgid "Envelope #11"
msgstr ""
#: dlls/localspl/localspl.rc:58
msgid "Envelope #12"
msgstr ""
#: dlls/localspl/localspl.rc:59
msgid "Envelope #14"
msgstr ""
#: dlls/localspl/localspl.rc:60
msgid "C size sheet"
msgstr ""
#: dlls/localspl/localspl.rc:61
msgid "D size sheet"
msgstr ""
#: dlls/localspl/localspl.rc:62
msgid "E size sheet"
msgstr ""
#: dlls/localspl/localspl.rc:63
msgid "Envelope DL"
msgstr ""
#: dlls/localspl/localspl.rc:64
msgid "Envelope C5"
msgstr ""
#: dlls/localspl/localspl.rc:65
msgid "Envelope C3"
msgstr ""
#: dlls/localspl/localspl.rc:66
msgid "Envelope C4"
msgstr ""
#: dlls/localspl/localspl.rc:67
msgid "Envelope C6"
msgstr ""
#: dlls/localspl/localspl.rc:68
msgid "Envelope C65"
msgstr ""
#: dlls/localspl/localspl.rc:69
msgid "Envelope B4"
msgstr ""
#: dlls/localspl/localspl.rc:70
msgid "Envelope B5"
msgstr ""
#: dlls/localspl/localspl.rc:71
msgid "Envelope B6"
msgstr ""
#: dlls/localspl/localspl.rc:72
msgid "Envelope"
msgstr ""
#: dlls/localspl/localspl.rc:73
msgid "Envelope Monarch"
msgstr ""
#: dlls/localspl/localspl.rc:74
msgid "6 3/4 Envelope"
msgstr ""
#: dlls/localspl/localspl.rc:75
msgid "US Std Fanfold"
msgstr ""
#: dlls/localspl/localspl.rc:76
msgid "German Std Fanfold"
msgstr ""
#: dlls/localspl/localspl.rc:77
msgid "German Legal Fanfold"
msgstr ""
#: dlls/localspl/localspl.rc:78
msgid "B4 (ISO)"
msgstr ""
#: dlls/localspl/localspl.rc:79
msgid "Japanese Postcard"
msgstr ""
#: dlls/localspl/localspl.rc:80
msgid "9x11"
msgstr ""
#: dlls/localspl/localspl.rc:81
msgid "10x11"
msgstr ""
#: dlls/localspl/localspl.rc:82
msgid "15x11"
msgstr ""
#: dlls/localspl/localspl.rc:83
msgid "Envelope Invite"
msgstr ""
#: dlls/localspl/localspl.rc:84
msgid "Letter Extra"
msgstr ""
#: dlls/localspl/localspl.rc:85
msgid "Legal Extra"
msgstr ""
#: dlls/localspl/localspl.rc:86
msgid "Tabloid Extra"
msgstr ""
#: dlls/localspl/localspl.rc:87
msgid "A4 Extra"
msgstr ""
#: dlls/localspl/localspl.rc:88
msgid "Letter Transverse"
msgstr ""
#: dlls/localspl/localspl.rc:89
msgid "A4 Transverse"
msgstr ""
#: dlls/localspl/localspl.rc:90
msgid "Letter Extra Transverse"
msgstr ""
#: dlls/localspl/localspl.rc:91
msgid "Super A"
msgstr ""
#: dlls/localspl/localspl.rc:92
msgid "Super B"
msgstr ""
#: dlls/localspl/localspl.rc:93
msgid "Letter Plus"
msgstr ""
#: dlls/localspl/localspl.rc:94
msgid "A4 Plus"
msgstr ""
#: dlls/localspl/localspl.rc:95
msgid "A5 Transverse"
msgstr ""
#: dlls/localspl/localspl.rc:96
msgid "B5 (JIS) Transverse"
msgstr ""
#: dlls/localspl/localspl.rc:97
msgid "A3 Extra"
msgstr ""
#: dlls/localspl/localspl.rc:98
msgid "A5 Extra"
msgstr ""
#: dlls/localspl/localspl.rc:99
msgid "B5 (ISO) Extra"
msgstr ""
#: dlls/localspl/localspl.rc:100
#, fuzzy
#| msgctxt "accelerator Select All"
#| msgid "A"
msgid "A2"
msgstr "A"
#: dlls/localspl/localspl.rc:101
msgid "A3 Transverse"
msgstr ""
#: dlls/localspl/localspl.rc:102
msgid "A3 Extra Transverse"
msgstr ""
#: dlls/localspl/localspl.rc:103
msgid "Japanese Double Postcard"
msgstr ""
#: dlls/localspl/localspl.rc:104
#, fuzzy
#| msgctxt "accelerator Select All"
#| msgid "A"
msgid "A6"
msgstr "A"
#: dlls/localspl/localspl.rc:105
msgid "Japanese Envelope Kaku #2"
msgstr ""
#: dlls/localspl/localspl.rc:106
msgid "Japanese Envelope Kaku #3"
msgstr ""
#: dlls/localspl/localspl.rc:107
msgid "Japanese Envelope Chou #3"
msgstr ""
#: dlls/localspl/localspl.rc:108
msgid "Japanese Envelope Chou #4"
msgstr ""
#: dlls/localspl/localspl.rc:109
msgid "Letter Rotated"
msgstr ""
#: dlls/localspl/localspl.rc:110
msgid "A3 Rotated"
msgstr ""
#: dlls/localspl/localspl.rc:111
msgid "A4 Rotated"
msgstr ""
#: dlls/localspl/localspl.rc:112
msgid "A5 Rotated"
msgstr ""
#: dlls/localspl/localspl.rc:113
msgid "B4 (JIS) Rotated"
msgstr ""
#: dlls/localspl/localspl.rc:114
msgid "B5 (JIS) Rotated"
msgstr ""
#: dlls/localspl/localspl.rc:115
msgid "Japanese Postcard Rotated"
msgstr ""
#: dlls/localspl/localspl.rc:116
msgid "Double Japan Postcard Rotated"
msgstr ""
#: dlls/localspl/localspl.rc:117
msgid "A6 Rotated"
msgstr ""
#: dlls/localspl/localspl.rc:118
msgid "Japan Envelope Kaku #2 Rotated"
msgstr ""
#: dlls/localspl/localspl.rc:119
msgid "Japan Envelope Kaku #3 Rotated"
msgstr ""
#: dlls/localspl/localspl.rc:120
msgid "Japan Envelope Chou #3 Rotated"
msgstr ""
#: dlls/localspl/localspl.rc:121
msgid "Japan Envelope Chou #4 Rotated"
msgstr ""
#: dlls/localspl/localspl.rc:122
msgid "B6 (JIS)"
msgstr ""
#: dlls/localspl/localspl.rc:123
msgid "B6 (JIS) Rotated"
msgstr ""
#: dlls/localspl/localspl.rc:124
msgid "12x11"
msgstr ""
#: dlls/localspl/localspl.rc:125
msgid "Japan Envelope You #4"
msgstr ""
#: dlls/localspl/localspl.rc:126
msgid "Japan Envelope You #4 Rotated"
msgstr ""
#: dlls/localspl/localspl.rc:127
msgid "PRC 16K"
msgstr ""
#: dlls/localspl/localspl.rc:128
msgid "PRC 32K"
msgstr ""
#: dlls/localspl/localspl.rc:129
msgid "PRC 32K(Big)"
msgstr ""
#: dlls/localspl/localspl.rc:130
msgid "PRC Envelope #1"
msgstr ""
#: dlls/localspl/localspl.rc:131
msgid "PRC Envelope #2"
msgstr ""
#: dlls/localspl/localspl.rc:132
msgid "PRC Envelope #3"
msgstr ""
#: dlls/localspl/localspl.rc:133
msgid "PRC Envelope #4"
msgstr ""
#: dlls/localspl/localspl.rc:134
msgid "PRC Envelope #5"
msgstr ""
#: dlls/localspl/localspl.rc:135
msgid "PRC Envelope #6"
msgstr ""
#: dlls/localspl/localspl.rc:136
msgid "PRC Envelope #7"
msgstr ""
#: dlls/localspl/localspl.rc:137
msgid "PRC Envelope #8"
msgstr ""
#: dlls/localspl/localspl.rc:138
msgid "PRC Envelope #9"
msgstr ""
#: dlls/localspl/localspl.rc:139
msgid "PRC Envelope #10"
msgstr ""
#: dlls/localspl/localspl.rc:140
msgid "PRC 16K Rotated"
msgstr ""
#: dlls/localspl/localspl.rc:141
msgid "PRC 32K Rotated"
msgstr ""
#: dlls/localspl/localspl.rc:142
msgid "PRC 32K(Big) Rotated"
msgstr ""
#: dlls/localspl/localspl.rc:143
msgid "PRC Envelope #1 Rotated"
msgstr ""
#: dlls/localspl/localspl.rc:144
msgid "PRC Envelope #2 Rotated"
msgstr ""
#: dlls/localspl/localspl.rc:145
msgid "PRC Envelope #3 Rotated"
msgstr ""
#: dlls/localspl/localspl.rc:146
msgid "PRC Envelope #4 Rotated"
msgstr ""
#: dlls/localspl/localspl.rc:147
msgid "PRC Envelope #5 Rotated"
msgstr ""
#: dlls/localspl/localspl.rc:148
msgid "PRC Envelope #6 Rotated"
msgstr ""
#: dlls/localspl/localspl.rc:149
msgid "PRC Envelope #7 Rotated"
msgstr ""
#: dlls/localspl/localspl.rc:150
msgid "PRC Envelope #8 Rotated"
msgstr ""
#: dlls/localspl/localspl.rc:151
msgid "PRC Envelope #9 Rotated"
msgstr ""
#: dlls/localspl/localspl.rc:152
msgid "PRC Envelope #10 Rotated"
msgstr ""
#: dlls/localspl/localspl.rc:31 dlls/localui/localui.rc:31
#: dlls/winspool.drv/winspool.rc:30
msgid "Local Port"
......
......@@ -7016,6 +7016,472 @@ msgstr "Μη έγγυρος(οι) χαρακτήρας(ες) στο μονοπά
msgid "Resource is not currently available.\n"
msgstr "ΜΗ διαθέσιμος; .\n"
#: dlls/localspl/localspl.rc:37
msgid "Letter"
msgstr ""
#: dlls/localspl/localspl.rc:38
msgid "Letter Small"
msgstr ""
#: dlls/localspl/localspl.rc:39
msgid "Tabloid"
msgstr ""
#: dlls/localspl/localspl.rc:40
msgid "Ledger"
msgstr ""
#: dlls/localspl/localspl.rc:41
msgid "Legal"
msgstr ""
#: dlls/localspl/localspl.rc:42
#, fuzzy
#| msgid "Status:"
msgid "Statement"
msgstr "Κατάσταση:"
#: dlls/localspl/localspl.rc:43
msgid "Executive"
msgstr ""
#: dlls/localspl/localspl.rc:44
msgid "A3"
msgstr ""
#: dlls/localspl/localspl.rc:45
msgid "A4"
msgstr ""
#: dlls/localspl/localspl.rc:46
msgid "A4 Small"
msgstr ""
#: dlls/localspl/localspl.rc:47
msgid "A5"
msgstr ""
#: dlls/localspl/localspl.rc:48
msgid "B4 (JIS)"
msgstr ""
#: dlls/localspl/localspl.rc:49
msgid "B5 (JIS)"
msgstr ""
#: dlls/localspl/localspl.rc:50
msgid "Folio"
msgstr ""
#: dlls/localspl/localspl.rc:51
msgid "Quarto"
msgstr ""
#: dlls/localspl/localspl.rc:52
msgid "10x14"
msgstr ""
#: dlls/localspl/localspl.rc:53
msgid "11x17"
msgstr ""
#: dlls/localspl/localspl.rc:54
msgid "Note"
msgstr ""
#: dlls/localspl/localspl.rc:55
msgid "Envelope #9"
msgstr ""
#: dlls/localspl/localspl.rc:56
msgid "Envelope #10"
msgstr ""
#: dlls/localspl/localspl.rc:57
msgid "Envelope #11"
msgstr ""
#: dlls/localspl/localspl.rc:58
msgid "Envelope #12"
msgstr ""
#: dlls/localspl/localspl.rc:59
msgid "Envelope #14"
msgstr ""
#: dlls/localspl/localspl.rc:60
msgid "C size sheet"
msgstr ""
#: dlls/localspl/localspl.rc:61
msgid "D size sheet"
msgstr ""
#: dlls/localspl/localspl.rc:62
msgid "E size sheet"
msgstr ""
#: dlls/localspl/localspl.rc:63
msgid "Envelope DL"
msgstr ""
#: dlls/localspl/localspl.rc:64
msgid "Envelope C5"
msgstr ""
#: dlls/localspl/localspl.rc:65
msgid "Envelope C3"
msgstr ""
#: dlls/localspl/localspl.rc:66
msgid "Envelope C4"
msgstr ""
#: dlls/localspl/localspl.rc:67
msgid "Envelope C6"
msgstr ""
#: dlls/localspl/localspl.rc:68
msgid "Envelope C65"
msgstr ""
#: dlls/localspl/localspl.rc:69
msgid "Envelope B4"
msgstr ""
#: dlls/localspl/localspl.rc:70
msgid "Envelope B5"
msgstr ""
#: dlls/localspl/localspl.rc:71
msgid "Envelope B6"
msgstr ""
#: dlls/localspl/localspl.rc:72
msgid "Envelope"
msgstr ""
#: dlls/localspl/localspl.rc:73
msgid "Envelope Monarch"
msgstr ""
#: dlls/localspl/localspl.rc:74
msgid "6 3/4 Envelope"
msgstr ""
#: dlls/localspl/localspl.rc:75
msgid "US Std Fanfold"
msgstr ""
#: dlls/localspl/localspl.rc:76
msgid "German Std Fanfold"
msgstr ""
#: dlls/localspl/localspl.rc:77
msgid "German Legal Fanfold"
msgstr ""
#: dlls/localspl/localspl.rc:78
msgid "B4 (ISO)"
msgstr ""
#: dlls/localspl/localspl.rc:79
msgid "Japanese Postcard"
msgstr ""
#: dlls/localspl/localspl.rc:80
msgid "9x11"
msgstr ""
#: dlls/localspl/localspl.rc:81
msgid "10x11"
msgstr ""
#: dlls/localspl/localspl.rc:82
msgid "15x11"
msgstr ""
#: dlls/localspl/localspl.rc:83
msgid "Envelope Invite"
msgstr ""
#: dlls/localspl/localspl.rc:84
msgid "Letter Extra"
msgstr ""
#: dlls/localspl/localspl.rc:85
msgid "Legal Extra"
msgstr ""
#: dlls/localspl/localspl.rc:86
msgid "Tabloid Extra"
msgstr ""
#: dlls/localspl/localspl.rc:87
msgid "A4 Extra"
msgstr ""
#: dlls/localspl/localspl.rc:88
msgid "Letter Transverse"
msgstr ""
#: dlls/localspl/localspl.rc:89
msgid "A4 Transverse"
msgstr ""
#: dlls/localspl/localspl.rc:90
msgid "Letter Extra Transverse"
msgstr ""
#: dlls/localspl/localspl.rc:91
msgid "Super A"
msgstr ""
#: dlls/localspl/localspl.rc:92
msgid "Super B"
msgstr ""
#: dlls/localspl/localspl.rc:93
msgid "Letter Plus"
msgstr ""
#: dlls/localspl/localspl.rc:94
msgid "A4 Plus"
msgstr ""
#: dlls/localspl/localspl.rc:95
msgid "A5 Transverse"
msgstr ""
#: dlls/localspl/localspl.rc:96
msgid "B5 (JIS) Transverse"
msgstr ""
#: dlls/localspl/localspl.rc:97
msgid "A3 Extra"
msgstr ""
#: dlls/localspl/localspl.rc:98
msgid "A5 Extra"
msgstr ""
#: dlls/localspl/localspl.rc:99
msgid "B5 (ISO) Extra"
msgstr ""
#: dlls/localspl/localspl.rc:100
msgid "A2"
msgstr ""
#: dlls/localspl/localspl.rc:101
msgid "A3 Transverse"
msgstr ""
#: dlls/localspl/localspl.rc:102
msgid "A3 Extra Transverse"
msgstr ""
#: dlls/localspl/localspl.rc:103
msgid "Japanese Double Postcard"
msgstr ""
#: dlls/localspl/localspl.rc:104
msgid "A6"
msgstr ""
#: dlls/localspl/localspl.rc:105
msgid "Japanese Envelope Kaku #2"
msgstr ""
#: dlls/localspl/localspl.rc:106
msgid "Japanese Envelope Kaku #3"
msgstr ""
#: dlls/localspl/localspl.rc:107
msgid "Japanese Envelope Chou #3"
msgstr ""
#: dlls/localspl/localspl.rc:108
msgid "Japanese Envelope Chou #4"
msgstr ""
#: dlls/localspl/localspl.rc:109
msgid "Letter Rotated"
msgstr ""
#: dlls/localspl/localspl.rc:110
msgid "A3 Rotated"
msgstr ""
#: dlls/localspl/localspl.rc:111
msgid "A4 Rotated"
msgstr ""
#: dlls/localspl/localspl.rc:112
msgid "A5 Rotated"
msgstr ""
#: dlls/localspl/localspl.rc:113
msgid "B4 (JIS) Rotated"
msgstr ""
#: dlls/localspl/localspl.rc:114
msgid "B5 (JIS) Rotated"
msgstr ""
#: dlls/localspl/localspl.rc:115
msgid "Japanese Postcard Rotated"
msgstr ""
#: dlls/localspl/localspl.rc:116
msgid "Double Japan Postcard Rotated"
msgstr ""
#: dlls/localspl/localspl.rc:117
msgid "A6 Rotated"
msgstr ""
#: dlls/localspl/localspl.rc:118
msgid "Japan Envelope Kaku #2 Rotated"
msgstr ""
#: dlls/localspl/localspl.rc:119
msgid "Japan Envelope Kaku #3 Rotated"
msgstr ""
#: dlls/localspl/localspl.rc:120
msgid "Japan Envelope Chou #3 Rotated"
msgstr ""
#: dlls/localspl/localspl.rc:121
msgid "Japan Envelope Chou #4 Rotated"
msgstr ""
#: dlls/localspl/localspl.rc:122
msgid "B6 (JIS)"
msgstr ""
#: dlls/localspl/localspl.rc:123
msgid "B6 (JIS) Rotated"
msgstr ""
#: dlls/localspl/localspl.rc:124
msgid "12x11"
msgstr ""
#: dlls/localspl/localspl.rc:125
msgid "Japan Envelope You #4"
msgstr ""
#: dlls/localspl/localspl.rc:126
msgid "Japan Envelope You #4 Rotated"
msgstr ""
#: dlls/localspl/localspl.rc:127
msgid "PRC 16K"
msgstr ""
#: dlls/localspl/localspl.rc:128
msgid "PRC 32K"
msgstr ""
#: dlls/localspl/localspl.rc:129
msgid "PRC 32K(Big)"
msgstr ""
#: dlls/localspl/localspl.rc:130
msgid "PRC Envelope #1"
msgstr ""
#: dlls/localspl/localspl.rc:131
msgid "PRC Envelope #2"
msgstr ""
#: dlls/localspl/localspl.rc:132
msgid "PRC Envelope #3"
msgstr ""
#: dlls/localspl/localspl.rc:133
msgid "PRC Envelope #4"
msgstr ""
#: dlls/localspl/localspl.rc:134
msgid "PRC Envelope #5"
msgstr ""
#: dlls/localspl/localspl.rc:135
msgid "PRC Envelope #6"
msgstr ""
#: dlls/localspl/localspl.rc:136
msgid "PRC Envelope #7"
msgstr ""
#: dlls/localspl/localspl.rc:137
msgid "PRC Envelope #8"
msgstr ""
#: dlls/localspl/localspl.rc:138
msgid "PRC Envelope #9"
msgstr ""
#: dlls/localspl/localspl.rc:139
msgid "PRC Envelope #10"
msgstr ""
#: dlls/localspl/localspl.rc:140
msgid "PRC 16K Rotated"
msgstr ""
#: dlls/localspl/localspl.rc:141
msgid "PRC 32K Rotated"
msgstr ""
#: dlls/localspl/localspl.rc:142
msgid "PRC 32K(Big) Rotated"
msgstr ""
#: dlls/localspl/localspl.rc:143
msgid "PRC Envelope #1 Rotated"
msgstr ""
#: dlls/localspl/localspl.rc:144
msgid "PRC Envelope #2 Rotated"
msgstr ""
#: dlls/localspl/localspl.rc:145
msgid "PRC Envelope #3 Rotated"
msgstr ""
#: dlls/localspl/localspl.rc:146
msgid "PRC Envelope #4 Rotated"
msgstr ""
#: dlls/localspl/localspl.rc:147
msgid "PRC Envelope #5 Rotated"
msgstr ""
#: dlls/localspl/localspl.rc:148
msgid "PRC Envelope #6 Rotated"
msgstr ""
#: dlls/localspl/localspl.rc:149
msgid "PRC Envelope #7 Rotated"
msgstr ""
#: dlls/localspl/localspl.rc:150
msgid "PRC Envelope #8 Rotated"
msgstr ""
#: dlls/localspl/localspl.rc:151
msgid "PRC Envelope #9 Rotated"
msgstr ""
#: dlls/localspl/localspl.rc:152
msgid "PRC Envelope #10 Rotated"
msgstr ""
#: dlls/localspl/localspl.rc:31 dlls/localui/localui.rc:31
#: dlls/winspool.drv/winspool.rc:30
msgid "Local Port"
......
......@@ -6967,6 +6967,470 @@ msgstr "Invalid call.\n"
msgid "Resource is not currently available.\n"
msgstr "Resource is not currently available.\n"
#: dlls/localspl/localspl.rc:37
msgid "Letter"
msgstr "Letter"
#: dlls/localspl/localspl.rc:38
msgid "Letter Small"
msgstr "Letter Small"
#: dlls/localspl/localspl.rc:39
msgid "Tabloid"
msgstr "Tabloid"
#: dlls/localspl/localspl.rc:40
msgid "Ledger"
msgstr "Ledger"
#: dlls/localspl/localspl.rc:41
msgid "Legal"
msgstr "Legal"
#: dlls/localspl/localspl.rc:42
msgid "Statement"
msgstr "Statement"
#: dlls/localspl/localspl.rc:43
msgid "Executive"
msgstr "Executive"
#: dlls/localspl/localspl.rc:44
msgid "A3"
msgstr "A3"
#: dlls/localspl/localspl.rc:45
msgid "A4"
msgstr "A4"
#: dlls/localspl/localspl.rc:46
msgid "A4 Small"
msgstr "A4 Small"
#: dlls/localspl/localspl.rc:47
msgid "A5"
msgstr "A5"
#: dlls/localspl/localspl.rc:48
msgid "B4 (JIS)"
msgstr "B4 (JIS)"
#: dlls/localspl/localspl.rc:49
msgid "B5 (JIS)"
msgstr "B5 (JIS)"
#: dlls/localspl/localspl.rc:50
msgid "Folio"
msgstr "Folio"
#: dlls/localspl/localspl.rc:51
msgid "Quarto"
msgstr "Quarto"
#: dlls/localspl/localspl.rc:52
msgid "10x14"
msgstr "10x14"
#: dlls/localspl/localspl.rc:53
msgid "11x17"
msgstr "11x17"
#: dlls/localspl/localspl.rc:54
msgid "Note"
msgstr "Note"
#: dlls/localspl/localspl.rc:55
msgid "Envelope #9"
msgstr "Envelope #9"
#: dlls/localspl/localspl.rc:56
msgid "Envelope #10"
msgstr "Envelope #10"
#: dlls/localspl/localspl.rc:57
msgid "Envelope #11"
msgstr "Envelope #11"
#: dlls/localspl/localspl.rc:58
msgid "Envelope #12"
msgstr "Envelope #12"
#: dlls/localspl/localspl.rc:59
msgid "Envelope #14"
msgstr "Envelope #14"
#: dlls/localspl/localspl.rc:60
msgid "C size sheet"
msgstr "C size sheet"
#: dlls/localspl/localspl.rc:61
msgid "D size sheet"
msgstr "D size sheet"
#: dlls/localspl/localspl.rc:62
msgid "E size sheet"
msgstr "E size sheet"
#: dlls/localspl/localspl.rc:63
msgid "Envelope DL"
msgstr "Envelope DL"
#: dlls/localspl/localspl.rc:64
msgid "Envelope C5"
msgstr "Envelope C5"
#: dlls/localspl/localspl.rc:65
msgid "Envelope C3"
msgstr "Envelope C3"
#: dlls/localspl/localspl.rc:66
msgid "Envelope C4"
msgstr "Envelope C4"
#: dlls/localspl/localspl.rc:67
msgid "Envelope C6"
msgstr "Envelope C6"
#: dlls/localspl/localspl.rc:68
msgid "Envelope C65"
msgstr "Envelope C65"
#: dlls/localspl/localspl.rc:69
msgid "Envelope B4"
msgstr "Envelope B4"
#: dlls/localspl/localspl.rc:70
msgid "Envelope B5"
msgstr "Envelope B5"
#: dlls/localspl/localspl.rc:71
msgid "Envelope B6"
msgstr "Envelope B6"
#: dlls/localspl/localspl.rc:72
msgid "Envelope"
msgstr "Envelope"
#: dlls/localspl/localspl.rc:73
msgid "Envelope Monarch"
msgstr "Envelope Monarch"
#: dlls/localspl/localspl.rc:74
msgid "6 3/4 Envelope"
msgstr "6 3/4 Envelope"
#: dlls/localspl/localspl.rc:75
msgid "US Std Fanfold"
msgstr "US Std Fanfold"
#: dlls/localspl/localspl.rc:76
msgid "German Std Fanfold"
msgstr "German Std Fanfold"
#: dlls/localspl/localspl.rc:77
msgid "German Legal Fanfold"
msgstr "German Legal Fanfold"
#: dlls/localspl/localspl.rc:78
msgid "B4 (ISO)"
msgstr "B4 (ISO)"
#: dlls/localspl/localspl.rc:79
msgid "Japanese Postcard"
msgstr "Japanese Postcard"
#: dlls/localspl/localspl.rc:80
msgid "9x11"
msgstr "9x11"
#: dlls/localspl/localspl.rc:81
msgid "10x11"
msgstr "10x11"
#: dlls/localspl/localspl.rc:82
msgid "15x11"
msgstr "15x11"
#: dlls/localspl/localspl.rc:83
msgid "Envelope Invite"
msgstr "Envelope Invite"
#: dlls/localspl/localspl.rc:84
msgid "Letter Extra"
msgstr "Letter Extra"
#: dlls/localspl/localspl.rc:85
msgid "Legal Extra"
msgstr "Legal Extra"
#: dlls/localspl/localspl.rc:86
msgid "Tabloid Extra"
msgstr "Tabloid Extra"
#: dlls/localspl/localspl.rc:87
msgid "A4 Extra"
msgstr "A4 Extra"
#: dlls/localspl/localspl.rc:88
msgid "Letter Transverse"
msgstr "Letter Transverse"
#: dlls/localspl/localspl.rc:89
msgid "A4 Transverse"
msgstr "A4 Transverse"
#: dlls/localspl/localspl.rc:90
msgid "Letter Extra Transverse"
msgstr "Letter Extra Transverse"
#: dlls/localspl/localspl.rc:91
msgid "Super A"
msgstr "Super A"
#: dlls/localspl/localspl.rc:92
msgid "Super B"
msgstr "Super B"
#: dlls/localspl/localspl.rc:93
msgid "Letter Plus"
msgstr "Letter Plus"
#: dlls/localspl/localspl.rc:94
msgid "A4 Plus"
msgstr "A4 Plus"
#: dlls/localspl/localspl.rc:95
msgid "A5 Transverse"
msgstr "A5 Transverse"
#: dlls/localspl/localspl.rc:96
msgid "B5 (JIS) Transverse"
msgstr "B5 (JIS) Transverse"
#: dlls/localspl/localspl.rc:97
msgid "A3 Extra"
msgstr "A3 Extra"
#: dlls/localspl/localspl.rc:98
msgid "A5 Extra"
msgstr "A5 Extra"
#: dlls/localspl/localspl.rc:99
msgid "B5 (ISO) Extra"
msgstr "B5 (ISO) Extra"
#: dlls/localspl/localspl.rc:100
msgid "A2"
msgstr "A2"
#: dlls/localspl/localspl.rc:101
msgid "A3 Transverse"
msgstr "A3 Transverse"
#: dlls/localspl/localspl.rc:102
msgid "A3 Extra Transverse"
msgstr "A3 Extra Transverse"
#: dlls/localspl/localspl.rc:103
msgid "Japanese Double Postcard"
msgstr "Japanese Double Postcard"
#: dlls/localspl/localspl.rc:104
msgid "A6"
msgstr "A6"
#: dlls/localspl/localspl.rc:105
msgid "Japanese Envelope Kaku #2"
msgstr "Japanese Envelope Kaku #2"
#: dlls/localspl/localspl.rc:106
msgid "Japanese Envelope Kaku #3"
msgstr "Japanese Envelope Kaku #3"
#: dlls/localspl/localspl.rc:107
msgid "Japanese Envelope Chou #3"
msgstr "Japanese Envelope Chou #3"
#: dlls/localspl/localspl.rc:108
msgid "Japanese Envelope Chou #4"
msgstr "Japanese Envelope Chou #4"
#: dlls/localspl/localspl.rc:109
msgid "Letter Rotated"
msgstr "Letter Rotated"
#: dlls/localspl/localspl.rc:110
msgid "A3 Rotated"
msgstr "A3 Rotated"
#: dlls/localspl/localspl.rc:111
msgid "A4 Rotated"
msgstr "A4 Rotated"
#: dlls/localspl/localspl.rc:112
msgid "A5 Rotated"
msgstr "A5 Rotated"
#: dlls/localspl/localspl.rc:113
msgid "B4 (JIS) Rotated"
msgstr "B4 (JIS) Rotated"
#: dlls/localspl/localspl.rc:114
msgid "B5 (JIS) Rotated"
msgstr "B5 (JIS) Rotated"
#: dlls/localspl/localspl.rc:115
msgid "Japanese Postcard Rotated"
msgstr "Japanese Postcard Rotated"
#: dlls/localspl/localspl.rc:116
msgid "Double Japan Postcard Rotated"
msgstr "Double Japan Postcard Rotated"
#: dlls/localspl/localspl.rc:117
msgid "A6 Rotated"
msgstr "A6 Rotated"
#: dlls/localspl/localspl.rc:118
msgid "Japan Envelope Kaku #2 Rotated"
msgstr "Japan Envelope Kaku #2 Rotated"
#: dlls/localspl/localspl.rc:119
msgid "Japan Envelope Kaku #3 Rotated"
msgstr "Japan Envelope Kaku #3 Rotated"
#: dlls/localspl/localspl.rc:120
msgid "Japan Envelope Chou #3 Rotated"
msgstr "Japan Envelope Chou #3 Rotated"
#: dlls/localspl/localspl.rc:121
msgid "Japan Envelope Chou #4 Rotated"
msgstr "Japan Envelope Chou #4 Rotated"
#: dlls/localspl/localspl.rc:122
msgid "B6 (JIS)"
msgstr "B6 (JIS)"
#: dlls/localspl/localspl.rc:123
msgid "B6 (JIS) Rotated"
msgstr "B6 (JIS) Rotated"
#: dlls/localspl/localspl.rc:124
msgid "12x11"
msgstr "12x11"
#: dlls/localspl/localspl.rc:125
msgid "Japan Envelope You #4"
msgstr "Japan Envelope You #4"
#: dlls/localspl/localspl.rc:126
msgid "Japan Envelope You #4 Rotated"
msgstr "Japan Envelope You #4 Rotated"
#: dlls/localspl/localspl.rc:127
msgid "PRC 16K"
msgstr "PRC 16K"
#: dlls/localspl/localspl.rc:128
msgid "PRC 32K"
msgstr "PRC 32K"
#: dlls/localspl/localspl.rc:129
msgid "PRC 32K(Big)"
msgstr "PRC 32K(Big)"
#: dlls/localspl/localspl.rc:130
msgid "PRC Envelope #1"
msgstr "PRC Envelope #1"
#: dlls/localspl/localspl.rc:131
msgid "PRC Envelope #2"
msgstr "PRC Envelope #2"
#: dlls/localspl/localspl.rc:132
msgid "PRC Envelope #3"
msgstr "PRC Envelope #3"
#: dlls/localspl/localspl.rc:133
msgid "PRC Envelope #4"
msgstr "PRC Envelope #4"
#: dlls/localspl/localspl.rc:134
msgid "PRC Envelope #5"
msgstr "PRC Envelope #5"
#: dlls/localspl/localspl.rc:135
msgid "PRC Envelope #6"
msgstr "PRC Envelope #6"
#: dlls/localspl/localspl.rc:136
msgid "PRC Envelope #7"
msgstr "PRC Envelope #7"
#: dlls/localspl/localspl.rc:137
msgid "PRC Envelope #8"
msgstr "PRC Envelope #8"
#: dlls/localspl/localspl.rc:138
msgid "PRC Envelope #9"
msgstr "PRC Envelope #9"
#: dlls/localspl/localspl.rc:139
msgid "PRC Envelope #10"
msgstr "PRC Envelope #10"
#: dlls/localspl/localspl.rc:140
msgid "PRC 16K Rotated"
msgstr "PRC 16K Rotated"
#: dlls/localspl/localspl.rc:141
msgid "PRC 32K Rotated"
msgstr "PRC 32K Rotated"
#: dlls/localspl/localspl.rc:142
msgid "PRC 32K(Big) Rotated"
msgstr "PRC 32K(Big) Rotated"
#: dlls/localspl/localspl.rc:143
msgid "PRC Envelope #1 Rotated"
msgstr "PRC Envelope #1 Rotated"
#: dlls/localspl/localspl.rc:144
msgid "PRC Envelope #2 Rotated"
msgstr "PRC Envelope #2 Rotated"
#: dlls/localspl/localspl.rc:145
msgid "PRC Envelope #3 Rotated"
msgstr "PRC Envelope #3 Rotated"
#: dlls/localspl/localspl.rc:146
msgid "PRC Envelope #4 Rotated"
msgstr "PRC Envelope #4 Rotated"
#: dlls/localspl/localspl.rc:147
msgid "PRC Envelope #5 Rotated"
msgstr "PRC Envelope #5 Rotated"
#: dlls/localspl/localspl.rc:148
msgid "PRC Envelope #6 Rotated"
msgstr "PRC Envelope #6 Rotated"
#: dlls/localspl/localspl.rc:149
msgid "PRC Envelope #7 Rotated"
msgstr "PRC Envelope #7 Rotated"
#: dlls/localspl/localspl.rc:150
msgid "PRC Envelope #8 Rotated"
msgstr "PRC Envelope #8 Rotated"
#: dlls/localspl/localspl.rc:151
msgid "PRC Envelope #9 Rotated"
msgstr "PRC Envelope #9 Rotated"
#: dlls/localspl/localspl.rc:152
msgid "PRC Envelope #10 Rotated"
msgstr "PRC Envelope #10 Rotated"
#: dlls/localspl/localspl.rc:31 dlls/localui/localui.rc:31
#: dlls/winspool.drv/winspool.rc:30
msgid "Local Port"
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment