xref: /aoo4110/main/padmin/source/padialog.src (revision b1cdbd2c)
1/**************************************************************
2 *
3 * Licensed to the Apache Software Foundation (ASF) under one
4 * or more contributor license agreements.  See the NOTICE file
5 * distributed with this work for additional information
6 * regarding copyright ownership.  The ASF licenses this file
7 * to you under the Apache License, Version 2.0 (the
8 * "License"); you may not use this file except in compliance
9 * with the License.  You may obtain a copy of the License at
10 *
11 *   http://www.apache.org/licenses/LICENSE-2.0
12 *
13 * Unless required by applicable law or agreed to in writing,
14 * software distributed under the License is distributed on an
15 * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
16 * KIND, either express or implied.  See the License for the
17 * specific language governing permissions and limitations
18 * under the License.
19 *
20 *************************************************************/
21
22
23
24#include "padialog.hrc"
25
26ModalDialog RID_FONTIMPORT_DIALOG
27{
28    HelpID = "padmin:ModalDialog:RID_FONTIMPORT_DIALOG";
29    OutputSize = TRUE ;
30    SVLook = TRUE ;
31    Size = MAP_APPFONT ( 230 , 185 );
32    Moveable = TRUE ;
33    Closeable = TRUE ;
34
35    ListBox RID_FIMP_BOX_NEWFONTS
36    {
37        HelpID = "padmin:ListBox:RID_FONTIMPORT_DIALOG:RID_FIMP_BOX_NEWFONTS";
38        Border = TRUE;
39        Sort=TRUE;
40		AutoHScroll = TRUE;
41        Pos = MAP_APPFONT( 5, 5 );
42        Size = MAP_APPFONT( 155, 75 );
43    };
44    FixedText RID_FIMP_TXT_HELP
45    {
46        Pos = MAP_APPFONT( 5, 155 );
47        Size = MAP_APPFONT( 220, 24 );
48        WordBreak=TRUE;
49    	Text [ en-US ] = "Please select the folder from which you want to import fonts. Add the selected fonts by clicking the OK button.";
50	};
51	FixedLine RID_FIMP_FL_FROM
52	{
53		Pos = MAP_APPFONT( 5, 85 );
54		Size = MAP_APPFONT( 160, 8 );
55		Text [ en-US ] = "Source directory";
56	};
57	Edit RID_FIMP_EDT_FROM
58	{
59	    HelpID = "padmin:Edit:RID_FONTIMPORT_DIALOG:RID_FIMP_EDT_FROM";
60		Border = TRUE;
61		Pos = MAP_APPFONT( 10, 97 );
62		Size = MAP_APPFONT( 130, 12 );
63	};
64	PushButton RID_FIMP_BTN_FROM
65	{
66	    HelpID = "padmin:PushButton:RID_FONTIMPORT_DIALOG:RID_FIMP_BTN_FROM";
67		Pos = MAP_APPFONT( 145, 97 );
68		Size = MAP_APPFONT( 15, 12 );
69		Text = "...";
70	};
71    CheckBox RID_FIMP_BOX_SUBDIRS
72    {
73        HelpID = "padmin:CheckBox:RID_FONTIMPORT_DIALOG:RID_FIMP_BOX_SUBDIRS";
74        Pos = MAP_APPFONT( 10, 115 );
75        Size = MAP_APPFONT( 145, 10 );
76        Text [ en-US ] = "Sea~rch Subdirectories";
77    };
78    FixedLine RID_FIMP_FL_TARGETOPTS
79    {
80        Pos = MAP_APPFONT( 5, 130 );
81        Size = MAP_APPFONT( 160, 8 );
82        Text [ en-US ] = "Target options";
83    };
84
85    CheckBox RID_FIMP_BOX_LINKONLY
86    {
87        HelpID = "padmin:CheckBox:RID_FONTIMPORT_DIALOG:RID_FIMP_BOX_LINKONLY";
88        Pos = MAP_APPFONT( 10, 140 );
89        Size = MAP_APPFONT( 145, 10 );
90		Text [ en-US ] = "Create ~soft links only";
91	};
92	OKButton RID_FIMP_BTN_OK
93	{
94		DefButton = TRUE;
95		Pos = MAP_APPFONT( 175, 10 );
96		Size = MAP_APPFONT( 50, 12 );
97	};
98	CancelButton RID_FIMP_BTN_CANCEL
99	{
100		Pos = MAP_APPFONT( 175, 27 );
101		Size = MAP_APPFONT( 50, 12 );
102	};
103    PushButton RID_FIMP_BTN_SELECTALL
104    {
105        HelpID = "padmin:PushButton:RID_FONTIMPORT_DIALOG:RID_FIMP_BTN_SELECTALL";
106        Pos = MAP_APPFONT( 175, 44 );
107        Size = MAP_APPFONT( 50, 12 );
108    	Text [ en-US ] = "~Select All";
109	};
110	String RID_FIMP_STR_IMPORTOP
111	{
112		Text [ en-US ] = "Add fonts";
113	};
114	String RID_FIMP_STR_QUERYOVERWRITE
115	{
116		Text [ en-US ] = "Do you really want to overwrite this font file?\n   %s";
117	};
118	String RID_FIMP_STR_OVERWRITEALL
119	{
120		Text [ en-US ] = "All";
121	};
122	String RID_FIMP_STR_OVERWRITENONE
123	{
124		Text [ en-US ] = "None";
125	};
126
127	String RID_FIMP_STR_NOAFM
128	{
129		Text [ en-US ] = "A format file (with an .afm extension) has not been found for the font\n%s\ntherefore, the font cannot be installed. Format files can be created with ghostscript, for example, and have to be located in the same directory as the font files or its afm subdirectory.";
130	};
131	String RID_FIMP_STR_AFMCOPYFAILED
132	{
133		Text [ en-US ] = "The metric file for the font file\n   %s\ncould not be copied. The font will not be installed.";
134	};
135	String RID_FIMP_STR_FONTCOPYFAILED
136	{
137		Text [ en-US ] = "The font file\n   %s\ncould not be copied. The font will not be installed.";
138	};
139	String RID_FIMP_STR_NOWRITEABLEFONTSDIR
140	{
141		Text [ en-US ] = "A directory containing a writable fonts.dir file is not located in the Fontpath. Therefore, fonts cannot be installed.";
142	};
143	String RID_FIMP_STR_NUMBEROFFONTSIMPORTED
144	{
145		Text [ en-US ] = "%d new fonts were added.";
146	};
147	Text [ en-US ] = "Add Fonts";
148};
149
150ModalDialog RID_PADIALOG
151{
152    HelpID = "padmin:ModalDialog:RID_PADIALOG";
153    OutputSize = TRUE ;
154    SVLook = TRUE ;
155    Size = MAP_APPFONT ( 260 , 198 ) ;
156    Moveable = TRUE ;
157    Closeable = TRUE ;
158
159    FixedLine RID_PA_FL_CUPSUSAGE
160    {
161        Pos = MAP_APPFONT( 6, 145 );
162        Size = MAP_APPFONT( 248, 8 );
163        Text [ en-US ] = "CUPS support";
164    };
165    CheckBox RID_PA_CB_CUPSUSAGE
166    {
167        HelpID = "padmin:CheckBox:RID_PADIALOG:RID_PA_CB_CUPSUSAGE";
168        Pos = MAP_APPFONT( 12, 158 );
169        Size = MAP_APPFONT( 168, 8 );
170        Text [ en-US ] = "Disable CUPS Support";
171    };
172
173    FixedLine RID_PA_FL_SEPBUTTON
174    {
175        Pos = MAP_APPFONT( 0, 176 );
176        Size = MAP_APPFONT( 260, 2 );
177    };
178	CancelButton RID_PA_BTN_CANCEL
179	{
180        DefButton = TRUE;
181		Pos = MAP_APPFONT( 190, 181 );
182		Size = MAP_APPFONT( 60, 12 );
183		Text [ en-US ] = "Close";
184	};
185
186	FixedLine RID_PA_FL_PRINTERS
187	{
188		Pos = MAP_APPFONT( 6, 5 );
189		Size = MAP_APPFONT( 248, 8 );
190		Text [ en-US ] = "Installed ~printers";
191	};
192	ListBox RID_PA_LB_DEV
193	{
194	    HelpID = "padmin:ListBox:RID_PADIALOG:RID_PA_LB_DEV";
195		Pos = MAP_APPFONT( 12, 15 );
196		Size = MAP_APPFONT( 168, 80 );
197		Border = TRUE;
198		Sort = TRUE;
199	};
200	FixedText RID_PA_TXT_COMMAND
201	{
202		Pos = MAP_APPFONT( 10, 100 );
203		Size = MAP_APPFONT( 40, 8 );
204		Text [ en-US ] = "Command:";
205	};
206	FixedText RID_PA_TXT_COMMAND_STRING
207	{
208		Pos = MAP_APPFONT( 55, 100 );
209		Size = MAP_APPFONT( 135, 8 );
210	};
211	FixedText RID_PA_TXT_DRIVER
212	{
213		Pos = MAP_APPFONT( 10, 110 );
214		Size = MAP_APPFONT( 40, 8 );
215		Text [ en-US ] = "Driver:";
216	};
217	FixedText RID_PA_TXT_DRIVER_STRING
218	{
219		Pos = MAP_APPFONT( 55, 110 );
220		Size = MAP_APPFONT( 135, 8 );
221	};
222	FixedText RID_PA_TXT_LOCATION
223	{
224		Pos = MAP_APPFONT( 10, 120 );
225		Size = MAP_APPFONT( 40, 8 );
226		Text [ en-US ] = "Location:";
227	};
228	FixedText RID_PA_TXT_LOCATION_STRING
229	{
230		Pos = MAP_APPFONT( 55, 120 );
231		Size = MAP_APPFONT( 135, 8 );
232	};
233	FixedText RID_PA_TXT_COMMENT
234	{
235		Pos = MAP_APPFONT( 10, 130 );
236		Size = MAP_APPFONT( 40, 8 );
237		Text [ en-US ] = "Comment:";
238	};
239	FixedText RID_PA_TXT_COMMENT_STRING
240	{
241		Pos = MAP_APPFONT( 55, 130 );
242		Size = MAP_APPFONT( 135, 8 );
243	};
244	PushButton RID_PA_BTN_CONF
245	{
246	    HelpID = "padmin:PushButton:RID_PADIALOG:RID_PA_BTN_CONF";
247		Pos = MAP_APPFONT( 190, 15 );
248		Size = MAP_APPFONT( 60, 12 );
249		Text [ en-US ] = "Properties...";
250	};
251	PushButton RID_PA_BTN_RENAME
252	{
253	    HelpID = "padmin:PushButton:RID_PADIALOG:RID_PA_BTN_RENAME";
254		Pos = MAP_APPFONT( 190, 32 );
255		Size = MAP_APPFONT( 60, 12 );
256		Text [ en-US ] = "R~ename...";
257	};
258	PushButton RID_PA_BTN_STD
259	{
260	    HelpID = "padmin:PushButton:RID_PADIALOG:RID_PA_BTN_STD";
261		Pos = MAP_APPFONT( 190, 49 );
262		Size = MAP_APPFONT( 60, 12 );
263		Text [ en-US ] = "~Default";
264	};
265	PushButton RID_PA_BTN_DEL
266	{
267	    HelpID = "padmin:PushButton:RID_PADIALOG:RID_PA_BTN_DEL";
268		Pos = MAP_APPFONT( 190, 66 );
269		Size = MAP_APPFONT( 60, 12 );
270		Text [ en-US ] = "Remo~ve...";
271	};
272	PushButton RID_PA_TESTPAGE
273	{
274	    HelpID = "padmin:PushButton:RID_PADIALOG:RID_PA_TESTPAGE";
275		Pos = MAP_APPFONT( 190, 83 );
276		Size = MAP_APPFONT( 60, 12 );
277		Text [ en-US ] = "Test ~Page";
278	};
279
280	PushButton RID_PA_BTN_FONTS
281	{
282	    HelpID = "padmin:PushButton:RID_PADIALOG:RID_PA_BTN_FONTS";
283		Pos = MAP_APPFONT( 80, 181 );
284		Size = MAP_APPFONT( 70, 12 );
285		Text [ en-US ] = "Fon~ts...";
286	};
287	PushButton RID_PA_BTN_ADD
288	{
289	    HelpID = "padmin:PushButton:RID_PADIALOG:RID_PA_BTN_ADD";
290		Pos = MAP_APPFONT( 5, 181 );
291		Size = MAP_APPFONT( 70, 12 );
292		Text [ en-US ] = "New Printer...";
293	};
294
295	String RID_PA_STR_DEFPRT
296	{
297		Text [ en-US ] = "Default printer";
298	};
299	String RID_PA_STR_RENAME
300	{
301		Text [ en-US ] = "Rename";
302	};
303	Text [ en-US ] = "Printer Administration";
304};
305
306ModalDialog RID_STRINGQUERYDLG
307{
308    HelpID = "padmin:ModalDialog:RID_STRINGQUERYDLG";
309    OutputSize = TRUE ;
310    SVLook = TRUE ;
311    Pos = MAP_APPFONT ( 10 , 10 ) ;
312    Size = MAP_APPFONT ( 200 , 42 ) ;
313    Moveable = TRUE ;
314    Closeable = TRUE ;
315    FixedText RID_STRQRY_TXT_RENAME
316    {
317        Pos = MAP_APPFONT ( 6 , 6 ) ;
318        Size = MAP_APPFONT ( 130 , 16 ) ;
319        Wordbreak=TRUE;
320    };
321    Edit RID_STRQRY_EDT_NEWNAME
322    {
323        HelpID = "padmin:Edit:RID_STRINGQUERYDLG:RID_STRQRY_EDT_NEWNAME";
324        Border = TRUE ;
325        Pos = MAP_APPFONT ( 6 , 23 ) ;
326        Size = MAP_APPFONT ( 130 , 12 ) ;
327    };
328    ComboBox RID_STRQRY_BOX_NEWNAME
329    {
330        HelpID = "padmin:ComboBox:RID_STRINGQUERYDLG:RID_STRQRY_BOX_NEWNAME";
331        Border = TRUE ;
332        DropDown = TRUE;
333        Pos = MAP_APPFONT ( 6 , 23 ) ;
334        Size = MAP_APPFONT ( 130 , 200 ) ;
335    };
336    OKButton RID_STRQRY_BTN_OK
337    {
338        DefButton = TRUE ;
339        Pos = MAP_APPFONT ( 145 , 6 ) ;
340        Size = MAP_APPFONT ( 50 , 12 ) ;
341    };
342    CancelButton RID_STRQRY_BTN_CANCEL
343    {
344        Pos = MAP_APPFONT ( 145 , 23 ) ;
345        Size = MAP_APPFONT ( 50 , 12 ) ;
346    };
347};
348
349String RID_ERR_NOPRINTER
350{
351	Text [ en-US ] = "Could not open printer %s.";
352};
353
354String RID_PA_TXT_TESTPAGE_PRINTED
355{
356	Text [ en-US ] = "The test page was printed succesfully. Please check the result.";
357};
358
359String RID_ERR_NOWRITE
360{
361    Text [en-US] = "No printers can be installed, because the file system is read-only.\nPlease contact your system administrator.";
362};
363
364String RID_QRY_PRTNAME
365{
366	Text [ en-US ] = "~New printer name";
367};
368
369String RID_TXT_TESTPAGE_MODEL
370{
371	Text [ en-US ] = "Model";
372};
373
374String RID_TXT_TESTPAGE_NAME
375{
376	Text [ en-US ] = "Name";
377};
378
379String RID_TXT_TESTPAGE_COMMENT
380{
381	Text [ en-US ] = "Comment";
382};
383
384String RID_TXT_TESTPAGE_QUEUE
385{
386	Text [ en-US ] = "Queue";
387};
388
389String RID_TXT_TESTPAGE_DATE
390{
391	Text [ en-US ] = "Date";
392};
393
394String RID_TXT_TESTPAGE_TIME
395{
396	Text [ en-US ] = "Time";
397};
398
399
400ModalDialog RID_FONTNAMEDIALOG
401{
402    HelpID = "padmin:ModalDialog:RID_FONTNAMEDIALOG";
403    OutputSize = TRUE ;
404    SVLook = TRUE ;
405    Size = MAP_APPFONT ( 255 , 110 ) ;
406    Moveable = TRUE ;
407    Closeable = TRUE ;
408    OKButton RID_FNTNM_BTN_OK
409    {
410        DefButton = TRUE ;
411        Pos = MAP_APPFONT ( 196 , 6 ) ;
412        Size = MAP_APPFONT ( 50 , 12 ) ;
413		Text [ en-US ] = "Close";
414	};
415    PushButton RID_FNTNM_BTN_RENAME
416    {
417        HelpID = "padmin:PushButton:RID_FONTNAMEDIALOG:RID_FNTNM_BTN_RENAME";
418        Pos = MAP_APPFONT( 196, 31 );
419        Size = MAP_APPFONT( 50, 12 );
420    	Text [ en-US ] = "Re~name...";
421	};
422    PushButton RID_FNTNM_BTN_REMOVE
423    {
424        HelpID = "padmin:PushButton:RID_FONTNAMEDIALOG:RID_FNTNM_BTN_REMOVE";
425        Pos = MAP_APPFONT ( 196 , 48 ) ;
426        Size = MAP_APPFONT ( 50 , 12 ) ;
427		Text [ en-US ] = "~Remove...";
428	};
429    PushButton RID_FNTNM_BTN_IMPORT
430    {
431        HelpID = "padmin:PushButton:RID_FONTNAMEDIALOG:RID_FNTNM_BTN_IMPORT";
432        Pos = MAP_APPFONT ( 196 , 65 ) ;
433        Size = MAP_APPFONT ( 50 , 12 ) ;
434    	Text [ en-US ] = "~Add...";
435	};
436    ListBox RID_FNTNM_LB_FONTS
437    {
438        HelpID = "padmin:ListBox:RID_FONTNAMEDIALOG:RID_FNTNM_LB_FONTS";
439        Border = TRUE ;
440        Sort = TRUE ;
441        AutoHScroll = TRUE;
442        Pos = MAP_APPFONT ( 6 , 6 ) ;
443        Size = MAP_APPFONT ( 185 , 70 ) ;
444    };
445    FixedText RID_FNTNM_FIXED
446    {
447        Pos = MAP_APPFONT ( 6 , 81 ) ;
448        Size = MAP_APPFONT ( 175 , 24 ) ;
449		WordBreak = TRUE;
450		Text [ en-US ] = "Note: The fonts are only available to the applications.";
451	};
452    String RID_FNTNM_STR_RENAME
453    {
454    	Text [ en-US ] = "~New name for %s";
455	};
456    String RID_FNTNM_STR_TTCRENAME
457    {
458    	Text [ en-US ] = "~New name for %s (%d1 of %d2)";
459	};
460    String RID_FNTNM_STR_NOTRENAMABLE
461    {
462    	Text [ en-US ] = "The font %s cannot be renamed due to missing write permission.";
463	};
464	Text [ en-US ] = "Fonts";
465};
466String RID_BXT_TESTPAGE
467{
468	Text [ en-US ] = "Test page";
469};
470String RID_BXT_ENVIRONMENT
471{
472	Text [ en-US ] = "Wrong environment";
473};
474
475String RID_YOU_SURE
476{
477	Text [ en-US ] = "Are you sure ?";
478};
479
480Bitmap RID_BUTTERFLY
481{
482    File = "source/butter.png" ;
483};
484
485Bitmap RID_BMP_SMALL_PRINTER
486{
487    File = "source/print.png";
488};
489
490Bitmap RID_BMP_SMALL_FAX
491{
492    File = "source/fax.png";
493};
494
495Bitmap RID_BMP_SMALL_PDF
496{
497    File = "source/pdf.png";
498};
499
500Bitmap RID_BMP_PRINTER
501{
502    File = "source/printer_large.png";
503};
504
505Bitmap RID_BMP_SMALL_PRINTER_HC
506{
507    File = "source/printer_16_h.png";
508};
509
510Bitmap RID_BMP_SMALL_FAX_HC
511{
512    File = "source/fax_16_h.png";
513};
514
515Bitmap RID_BMP_SMALL_PDF_HC
516{
517    File = "source/printpdf_16_h.png";
518};
519
520Bitmap RID_BMP_PRINTER_HC
521{
522    File = "source/printer_40x48_h.png";
523};
524
525
526String RID_AFMERROR_OK
527{
528	Text [ en-US ] = "No error";
529};
530String RID_AFMERROR_NO_FONT_NAME
531{
532	Text [ en-US ] = "The metric does not contain a 'FontName' entry.";
533};
534String RID_AFMERROR_NO_FULL_NAME
535{
536	Text [ en-US ] = "The metric does not contain a 'FullName' entry.";
537};
538String RID_AFMERROR_NO_FAMILY_NAME
539{
540	Text [ en-US ] = "The metric does not contain a 'FamilyName' entry.";
541};
542String RID_AFMERROR_MOVETO_FAILED
543{
544	Text [ en-US ] = "The converted metric could not be written.";
545};
546String RID_AFMERROR_STREAM_READ_FAILED
547{
548	Text [ en-US ] = "The metric could not be read.";
549};
550String RID_AFMERROR_STREAM_WRITE_FAILED
551{
552	Text [ en-US ] = "A temporary file could not be created.";
553};
554STRING RID_AFMERROR_NOT_A_METRIC
555{
556	Text [ en-US ] = "The file does not contain a metric.";
557};
558String RID_AFMERROR_BOX_TXT
559{
560	Text [ en-US ] = "The metric\n\n%s\n\ncould not be converted for the following reason:\n\n";
561};
562
563ModelessDialog RID_PROGRESS_DLG
564{
565    HelpID = "padmin:ModelessDialog:RID_PROGRESS_DLG";
566    OutputSize = TRUE ;
567    SVLook = TRUE ;
568    Pos = MAP_APPFONT ( 10 , 10 ) ;
569    Size = MAP_APPFONT ( 150 , 90 ) ;
570    Moveable = TRUE ;
571    Closeable = FALSE ;
572    CancelButton RID_PROGRESS_BTN_CANCEL
573    {
574        Pos = MAP_APPFONT ( 50 , 71 ) ;
575        Size = MAP_APPFONT ( 50 , 14 ) ;
576    };
577    FixedText RID_PROGRESS_OPERATION_TXT
578    {
579        Pos = MAP_APPFONT ( 6 , 6 ) ;
580        Size = MAP_APPFONT ( 140 , 18 ) ;
581    };
582	FixedText RID_PROGRESS_PROGRESS_TXT
583	{
584		Pos = MAP_APPFONT( 6, 48 );
585		Size = MAP_APPFONT( 140, 8 );
586		Text [ en-US ] = "Progress";
587	};
588	Window RID_PROGRESS_STATUSBAR
589    {
590		SVLook = TRUE;
591		Border = TRUE;
592        Pos = MAP_APPFONT ( 6 , 58 ) ;
593		Size = MAP_APPFONT( 140, 8 );
594    };
595	FixedText RID_PROGRESS_FILENAME_TXT
596    {
597        Pos = MAP_APPFONT ( 6 , 28 ) ;
598        Size = MAP_APPFONT ( 140 , 8 ) ;
599    };
600	Text [ en-US ] = "Please wait";
601};
602
603String RID_OPERATION_CONVERTMETRIC
604{
605	Text [ en-US ] = "Font metrics conversion";
606};
607
608
609ModalDialog RID_PPDIMPORT_DLG
610{
611    HelpID = "padmin:ModalDialog:RID_PPDIMPORT_DLG";
612    OutputSize = TRUE ;
613    SVLook = TRUE ;
614    Size = MAP_APPFONT ( 265 , 225 ) ;
615    Moveable = TRUE ;
616    Closeable = TRUE ;
617
618	FixedLine RID_PPDIMP_GROUP_PATH
619	{
620		Pos = MAP_APPFONT( 5, 5 );
621		Size = MAP_APPFONT( 200, 8 );
622		Text [ en-US ] = "Dri~ver directory";
623	};
624	FixedText RID_PPDIMP_TXT_PATH
625	{
626		Pos = MAP_APPFONT( 10, 33 );
627		Size = MAP_APPFONT( 190, 8 );
628		Text [ en-US ] = "Please select the driver directory.";
629	};
630	ComboBox RID_PPDIMP_LB_PATH
631	{
632	    HelpID = "padmin:ComboBox:RID_PPDIMPORT_DLG:RID_PPDIMP_LB_PATH";
633		Dropdown = TRUE;
634		Border = TRUE;
635		Sort = TRUE;
636
637		Pos = MAP_APPFONT( 10, 15 );
638		Size = MAP_APPFONT( 130, 80 );
639	};
640	PushButton RID_PPDIMP_BTN_SEARCH
641	{
642	    HelpID = "padmin:PushButton:RID_PPDIMPORT_DLG:RID_PPDIMP_BTN_SEARCH";
643		Pos = MAP_APPFONT( 145, 15 );
644		Size = MAP_APPFONT( 50, 14 );
645		Text [ en-US ] = "Browse...";
646	};
647
648	FixedLine RID_PPDIMP_GROUP_DRIVER
649	{
650		Pos = MAP_APPFONT( 5, 60 );
651		Size = MAP_APPFONT( 200, 8 );
652		Text [ en-US ] = "~Selection of drivers";
653	};
654	MultiListBox RID_PPDIMP_LB_DRIVER
655	{
656	    HelpID = "padmin:MultiListBox:RID_PPDIMPORT_DLG:RID_PPDIMP_LB_DRIVER";
657		Border = TRUE;
658		Sort = TRUE;
659		SimpleMode = TRUE;
660		AutoHScroll = TRUE;
661		Pos = MAP_APPFONT( 10, 70 );
662		Size = MAP_APPFONT( 190, 120 );
663	};
664	FixedText RID_PPDIMP_TXT_DRIVER
665	{
666		Pos = MAP_APPFONT( 10, 195 );
667		Size = MAP_APPFONT( 190, 60 );
668		WordBreak = TRUE;
669		Text [ en-US ] = "Please select the drivers to install and press \"%s\".";
670	};
671	String RID_PPDIMP_STR_LOADINGPPD
672	{
673		Text [ en-US ] = "Searching for drivers";
674	};
675	OKButton RID_PPDIMP_BTN_OK
676	{
677		DefButton = TRUE;
678		Pos = MAP_APPFONT( 210, 10 );
679		Size = MAP_APPFONT( 50, 14 );
680	};
681	CancelButton RID_PPDIMP_BTN_CANCEL
682	{
683		Pos = MAP_APPFONT( 210, 29 );
684		Size = MAP_APPFONT( 50, 14 );
685	};
686
687	Text [ en-US ] = "Driver Installation";
688};
689
690String RID_QUERY_REMOVEDRIVER
691{
692	Text [ en-US ] = "Do you really want to remove the driver \"%s\"?";
693};
694
695String RID_QUERY_REMOVEPRINTER
696{
697	Text [ en-US ] = "Do you really want to remove this printer ?";
698};
699
700String RID_QUERY_REMOVEFONTFROMLIST
701{
702	Text [ en-US ] = "Do you really want to remove the selected fonts ?";
703};
704
705String RID_QUERY_DRIVERUSED
706{
707	Text [ en-US ] = "There are still printers using the driver \"%s\". Do you really want to remove it? The corresponding printers will also be removed.";
708};
709
710String RID_ERR_REMOVESGENPRT
711{
712	Text [ en-US ] = "The driver \"%s\" is always needed and can therefore not be removed.";
713};
714
715String RID_ERR_REMOVEDRIVERFAILED
716{
717	Text [ en-US ] = "The driver \"%s1\" could not be removed. It was not possible to remove the file\n\n%s2.";
718};
719
720String RID_ERR_REMOVEDEFAULTDRIVER
721{
722	Text [ en-US ] = "The driver \"%s\" is used by your default printer. Therefore, it cannot be removed.";
723};
724
725String RID_ERR_PRINTERNOTREMOVEABLE
726{
727	Text [ en-US ] = "The printer %s cannot be removed.";
728};
729
730String RID_TXT_PRINTERALREADYEXISTS
731{
732	Text [ en-US ] = "A printer named \"%s\" already exists. This printer will not be imported.";
733};
734
735String RID_TXT_PRINTERWITHOUTCOMMAND
736{
737	Text [ en-US ] = "The printer \"%s\" has no valid configuration and, therefore, cannot be imported.";
738};
739
740String RID_TXT_DRIVERDOESNOTEXIST
741{
742	Text [ en-US ] = "The driver for the printer \"%s1\" (%s2) is not installed. Therefore the printer cannot be imported.";
743};
744
745String RID_TXT_PRINTERADDFAILED
746{
747	Text [ en-US ] = "The printer \"%s\" could not be added.";
748};
749
750ModalDialog RID_ADD_PRINTER_DIALOG
751{
752    HelpID = "padmin:ModalDialog:RID_ADD_PRINTER_DIALOG";
753    OutputSize = TRUE ;
754    SVLook = TRUE ;
755    Size = MAP_APPFONT ( 240 , 172 ) ;
756    Moveable = TRUE ;
757    Closeable = TRUE ;
758
759    Control RID_ADDP_CTRL_TITLE
760    {
761        Pos = MAP_APPFONT( 0, 0 );
762        Size = MAP_APPFONT( 240, 26 );
763    };
764	FixedLine RID_ADDP_LINE
765	{
766		Pos = MAP_APPFONT( 0, 150 );
767		Size = MAP_APPFONT( 240, 2 );
768	};
769	OKButton RID_ADDP_BTN_FINISH
770	{
771		Pos = MAP_APPFONT( 185, 155 );
772		Size = MAP_APPFONT( 50, 12 );
773		Text [ en-US ] = "~Finish";
774	};
775	CancelButton RID_ADDP_BTN_CANCEL
776	{
777		Pos = MAP_APPFONT( 5, 155 );
778		Size = MAP_APPFONT( 50, 12 );
779	};
780	PushButton RID_ADDP_BTN_NEXT
781	{
782	    HelpID = "padmin:PushButton:RID_ADD_PRINTER_DIALOG:RID_ADDP_BTN_NEXT";
783		Pos = MAP_APPFONT( 130, 155 );
784		Size = MAP_APPFONT( 50, 12 );
785		Text [ en-US ] = "~Next >>";
786	};
787	PushButton RID_ADDP_BTN_PREV
788	{
789	    HelpID = "padmin:PushButton:RID_ADD_PRINTER_DIALOG:RID_ADDP_BTN_PREV";
790		Pos = MAP_APPFONT( 75, 155 );
791		Size = MAP_APPFONT( 50, 12 );
792		Text [ en-US ] = "<< ~Back";
793	};
794	Text [ en-US ] = "Add Printer";
795};
796
797TabPage RID_ADDP_PAGE_CHOOSEDRIVER
798{
799    HelpID = "padmin:TabPage:RID_ADDP_PAGE_CHOOSEDRIVER";
800	Hide = TRUE;
801    Pos = MAP_APPFONT( 0, 30 );
802	Size = MAP_APPFONT( 240, 120 );
803    String RID_ADDP_STR_TITLE
804    {
805    	Text [ en-US ] = "Choose a driver";
806	};
807	FixedText RID_ADDP_CHDRV_TXT_DRIVER
808	{
809		Pos = MAP_APPFONT( 5, 5 );
810		Size = MAP_APPFONT( 230, 8 );
811		Text [ en-US ] = "Please select a s~uitable driver.";
812	};
813	ListBox RID_ADDP_CHDRV_BOX_DRIVER
814	{
815	    HelpID = "padmin:ListBox:RID_ADDP_PAGE_CHOOSEDRIVER:RID_ADDP_CHDRV_BOX_DRIVER";
816		Pos = MAP_APPFONT( 5, 15 );
817		Size = MAP_APPFONT( 175, 100 );
818		Border = TRUE;
819		Sort = TRUE;
820	};
821	PushButton RID_ADDP_CHDRV_BTN_ADD
822	{
823	    HelpID = "padmin:PushButton:RID_ADDP_PAGE_CHOOSEDRIVER:RID_ADDP_CHDRV_BTN_ADD";
824		Pos = MAP_APPFONT( 185, 15 );
825		Size = MAP_APPFONT( 50, 12 );
826		Text [ en-US ] = "~Import...";
827	};
828	PushButton RID_ADDP_CHDRV_BTN_REMOVE
829	{
830	    HelpID = "padmin:PushButton:RID_ADDP_PAGE_CHOOSEDRIVER:RID_ADDP_CHDRV_BTN_REMOVE";
831		Pos = MAP_APPFONT( 185, 32 );
832		Size = MAP_APPFONT( 50, 12 );
833		Text [ en-US ] = "~Delete";
834	};
835	String RID_ADDP_CHDRV_STR_REMOVE
836	{
837		Text [ en-US ] = "Delete driver";
838	};
839};
840
841TabPage RID_ADDP_PAGE_CHOOSEDEV
842{
843    HelpID = "padmin:TabPage:RID_ADDP_PAGE_CHOOSEDEV";
844	Hide = TRUE;
845    Pos = MAP_APPFONT( 0, 30 );
846	Size = MAP_APPFONT( 240, 120 );
847    String RID_ADDP_STR_TITLE
848    {
849    	Text [ en-US ] = "Choose a device type";
850	};
851	FixedText RID_ADDP_CHDEV_TXT_OVER
852	{
853		Pos = MAP_APPFONT( 40, 25 );
854		Size = MAP_APPFONT( 180, 8 );
855		Text [ en-US ] = "Do you want to";
856	};
857	RadioButton RID_ADDP_CHDEV_BTN_PRINTER
858	{
859	    HelpID = "padmin:RadioButton:RID_ADDP_PAGE_CHOOSEDEV:RID_ADDP_CHDEV_BTN_PRINTER";
860		Pos = MAP_APPFONT ( 40, 40 );
861		Size = MAP_APPFONT( 180, 10 );
862		Text [ en-US ] = "Add a ~printer";
863	};
864	RadioButton RID_ADDP_CHDEV_BTN_FAX
865	{
866	    HelpID = "padmin:RadioButton:RID_ADDP_PAGE_CHOOSEDEV:RID_ADDP_CHDEV_BTN_FAX";
867		Pos = MAP_APPFONT ( 40, 50 );
868		Size = MAP_APPFONT( 180, 10 );
869		Text [ en-US ] = "Connect a fa~x device";
870	};
871	RadioButton RID_ADDP_CHDEV_BTN_PDF
872	{
873	    HelpID = "padmin:RadioButton:RID_ADDP_PAGE_CHOOSEDEV:RID_ADDP_CHDEV_BTN_PDF";
874		Pos = MAP_APPFONT ( 40, 60 );
875		Size = MAP_APPFONT( 180, 10 );
876		Text [ en-US ] = "Connect a P~DF converter";
877	};
878	RadioButton RID_ADDP_CHDEV_BTN_OLD
879	{
880	    HelpID = "padmin:RadioButton:RID_ADDP_PAGE_CHOOSEDEV:RID_ADDP_CHDEV_BTN_OLD";
881		Pos = MAP_APPFONT ( 40, 70 );
882		Size = MAP_APPFONT( 180, 10 );
883		Text [ en-US ] = "~Import printers from a StarOffice installation";
884	};
885};
886
887TabPage RID_ADDP_PAGE_NAME
888{
889    HelpID = "padmin:TabPage:RID_ADDP_PAGE_NAME";
890	Hide = TRUE;
891    Pos = MAP_APPFONT( 0, 30 );
892	Size = MAP_APPFONT( 240, 120 );
893    String RID_ADDP_STR_TITLE
894    {
895    	Text [ en-US ] = "Choose a name";
896	};
897	FixedText RID_ADDP_NAME_TXT_NAME
898	{
899		Pos = MAP_APPFONT( 40, 25 );
900		Size = MAP_APPFONT( 220, 8 );
901		Text [ en-US ] = "Please enter a name for the printer.";
902	};
903	FixedText RID_ADDP_NAME_TXT_FAXNAME
904	{
905		Pos = MAP_APPFONT( 40, 25 );
906		Size = MAP_APPFONT( 220, 8 );
907		Text [ en-US ] = "Please enter a name for the fax connection.";
908	};
909	FixedText RID_ADDP_NAME_TXT_PDFNAME
910	{
911		Pos = MAP_APPFONT( 40, 25 );
912		Size = MAP_APPFONT( 220, 8 );
913		Text [ en-US ] = "Please enter a name for the PDF connection.";
914	};
915	Edit RID_ADDP_NAME_EDT_NAME
916	{
917	    HelpID = "padmin:Edit:RID_ADDP_PAGE_NAME:RID_ADDP_NAME_EDT_NAME";
918		Pos = MAP_APPFONT( 40, 35 );
919		Size = MAP_APPFONT( 160, 12 );
920		Border = TRUE;
921	};
922	Edit RID_ADDP_NAME_EDT_FAXNAME
923	{
924	    HelpID = "padmin:Edit:RID_ADDP_PAGE_NAME:RID_ADDP_NAME_EDT_FAXNAME";
925		Pos = MAP_APPFONT( 40, 35 );
926		Size = MAP_APPFONT( 160, 12 );
927		Border = TRUE;
928		Text [ en-US ] = "Fax printer";
929	};
930	Edit RID_ADDP_NAME_EDT_PDFNAME
931	{
932	    HelpID = "padmin:Edit:RID_ADDP_PAGE_NAME:RID_ADDP_NAME_EDT_PDFNAME";
933		Pos = MAP_APPFONT( 40, 35 );
934		Size = MAP_APPFONT( 160, 12 );
935		Border = TRUE;
936		Text [ en-US ] = "PDF converter";
937	};
938	CheckBox RID_ADDP_NAME_BOX_DEFAULT
939	{
940	    HelpID = "padmin:CheckBox:RID_ADDP_PAGE_NAME:RID_ADDP_NAME_BOX_DEFAULT";
941		Pos = MAP_APPFONT( 40, 50 );
942		Size = MAP_APPFONT( 160, 12 );
943		Text [ en-US ] = "~Use as default printer";
944	};
945	CheckBox RID_ADDP_NAME_BOX_FAXSWALLOW
946	{
947	    HelpID = "padmin:CheckBox:RID_ADDP_PAGE_NAME:RID_ADDP_NAME_BOX_FAXSWALLOW";
948		Pos = MAP_APPFONT( 40, 50 );
949		Size = MAP_APPFONT( 160, 12 );
950		Text [ en-US ] = "Remo~ve fax number from output";
951	};
952};
953
954TabPage RID_ADDP_PAGE_COMMAND
955{
956    HelpID = "padmin:TabPage:RID_ADDP_PAGE_COMMAND";
957	Hide = TRUE;
958    Pos = MAP_APPFONT( 0, 30 );
959	Size = MAP_APPFONT( 240, 120 );
960    String RID_ADDP_STR_TITLE
961    {
962    	Text [ en-US ] = "Choose a command line";
963	};
964	FixedText RID_ADDP_CMD_TXT_COMMAND
965	{
966		Pos = MAP_APPFONT( 10, 2 );
967		Size = MAP_APPFONT( 160, 24 );
968		WordBreak = TRUE;
969		Text [ en-US ] = "Please enter a c~ommand line appropriate for this device.";
970	};
971	ComboBox RID_ADDP_CMD_BOX_COMMAND
972	{
973	    HelpID = "padmin:ComboBox:RID_ADDP_PAGE_COMMAND:RID_ADDP_CMD_BOX_COMMAND";
974		Pos = MAP_APPFONT( 10, 30);
975		Size = MAP_APPFONT( 220, 85 );
976		Border = TRUE;
977	};
978	ComboBox RID_ADDP_CMD_BOX_PDFCOMMAND
979	{
980	    HelpID = "padmin:ComboBox:RID_ADDP_PAGE_COMMAND:RID_ADDP_CMD_BOX_PDFCOMMAND";
981		Pos = MAP_APPFONT( 10, 30);
982		Size = MAP_APPFONT( 220, 60 );
983		Border = TRUE;
984	};
985	FixedText RID_ADDP_CMD_TXT_PDFDIR
986	{
987		Pos = MAP_APPFONT( 10, 95 );
988		Size = MAP_APPFONT( 220, 8 );
989		Text [ en-US ] = "PDF ~target directory";
990	};
991	Edit RID_ADDP_CMD_EDT_PDFDIR
992	{
993	    HelpID = "padmin:Edit:RID_ADDP_PAGE_COMMAND:RID_ADDP_CMD_EDT_PDFDIR";
994		Border = TRUE;
995		Pos = MAP_APPFONT( 10, 104 );
996		Size = MAP_APPFONT( 190, 12 );
997	};
998	PushButton RID_ADDP_CMD_BTN_PDFDIR
999	{
1000	    HelpID = "padmin:PushButton:RID_ADDP_PAGE_COMMAND:RID_ADDP_CMD_BTN_PDFDIR";
1001		Pos = MAP_APPFONT( 205, 104 );
1002		Size = MAP_APPFONT( 25, 12 );
1003		Text = "~...";
1004	};
1005	PushButton RID_ADDP_CMD_BTN_HELP
1006	{
1007	    HelpID = "padmin:PushButton:RID_ADDP_PAGE_COMMAND:RID_ADDP_CMD_BTN_HELP";
1008		Pos = MAP_APPFONT( 180, 2 );
1009		Size = MAP_APPFONT( 50, 12 );
1010		Text [ en-US ] = "~Help";
1011	};
1012	String RID_ADDP_CMD_STR_PDFHELP
1013	{
1014		Text [ en-US ] = "The command line for PDF converters is executed as follows: for each document printed, \"(TMP)\" in the command line is replaced by a temporary file and \"(OUTFILE)\" in the command line is replaced by the target PDF file name. If \"(TMP)\" is in the command line, the PostScript code will be supplied via a file, otherwise via standard input (i.e. as a pipe).";
1015	};
1016	String RID_ADDP_CMD_STR_FAXHELP
1017	{
1018		Text [ en-US ] = "The command line for fax connections is executed as follows: for each fax sent, \"(TMP)\" in the command line is replaced by a temporary file and \"(PHONE)\" in the command line is replaced by the fax number. If \"(TMP)\" appears in the command line, the PostScript code will be supplied via a file, otherwise it is passed as standard input (i.e. as a pipe).";
1019	};
1020};
1021
1022TabPage RID_ADDP_PAGE_OLDPRINTERS
1023{
1024    HelpID = "padmin:TabPage:RID_ADDP_PAGE_OLDPRINTERS";
1025	Hide = TRUE;
1026    Pos = MAP_APPFONT( 0, 30 );
1027	Size = MAP_APPFONT( 240, 120 );
1028    String RID_ADDP_STR_TITLE
1029    {
1030    	Text [ en-US ] = "Import printers from old versions";
1031	};
1032	FixedText RID_ADDP_OLD_TXT_PRINTERS
1033	{
1034		Pos = MAP_APPFONT( 10, 10 );
1035		Size = MAP_APPFONT( 165, 25 );
1036		WordBreak = TRUE;
1037		Text [ en-US ] = "~These printers can be imported. Please select the ones you want to import.";
1038	};
1039	MultiListBox RID_ADDP_OLD_BOX_PRINTERS
1040	{
1041	    HelpID = "padmin:MultiListBox:RID_ADDP_PAGE_OLDPRINTERS:RID_ADDP_OLD_BOX_PRINTERS";
1042		Pos = MAP_APPFONT( 10, 35 );
1043		Size = MAP_APPFONT( 165, 80 );
1044		Border = TRUE;
1045	};
1046	PushButton RID_ADDP_OLD_BTN_SELECTALL
1047	{
1048	    HelpID = "padmin:PushButton:RID_ADDP_PAGE_OLDPRINTERS:RID_ADDP_OLD_BTN_SELECTALL";
1049		Pos = MAP_APPFONT( 180, 35 );
1050		Size = MAP_APPFONT( 50, 12 );
1051		Text [ en-US ] = "~Select All";
1052	};
1053};
1054
1055TabPage RID_ADDP_PAGE_FAXDRIVER
1056{
1057    HelpID = "padmin:TabPage:RID_ADDP_PAGE_FAXDRIVER";
1058	Hide = TRUE;
1059    Pos = MAP_APPFONT( 0, 30 );
1060	Size = MAP_APPFONT( 240, 120 );
1061    String RID_ADDP_STR_TITLE
1062    {
1063    	Text [ en-US ] = "Choose a driver";
1064	};
1065	FixedText RID_ADDP_FAXDRV_TXT_DRIVER
1066	{
1067		Pos = MAP_APPFONT( 40, 20 );
1068		Size = MAP_APPFONT( 160, 19 );
1069		WordBreak = TRUE;
1070		Text [ en-US ] = "Use the following driver for this fax connection";
1071	};
1072	RadioButton RID_ADDP_FAXDRV_BTN_DEFAULT
1073	{
1074	    HelpID = "padmin:RadioButton:RID_ADDP_PAGE_FAXDRIVER:RID_ADDP_FAXDRV_BTN_DEFAULT";
1075		Pos = MAP_APPFONT( 40,40 );
1076		Size = MAP_APPFONT( 160, 10 );
1077		Text [ en-US ] = "T~he default driver";
1078	};
1079	RadioButton RID_ADDP_FAXDRV_BTN_SELECT
1080	{
1081	    HelpID = "padmin:RadioButton:RID_ADDP_PAGE_FAXDRIVER:RID_ADDP_FAXDRV_BTN_SELECT";
1082		Pos = MAP_APPFONT( 40, 50 );
1083		Size = MAP_APPFONT( 160,24 );
1084		Text [ en-US ] = "A speci~fic driver, to adapt the format to another printer";
1085	};
1086};
1087
1088TabPage RID_ADDP_PAGE_PDFDRIVER
1089{
1090    HelpID = "padmin:TabPage:RID_ADDP_PAGE_PDFDRIVER";
1091	Hide = TRUE;
1092    Pos = MAP_APPFONT( 0, 30 );
1093	Size = MAP_APPFONT( 240, 120 );
1094    String RID_ADDP_STR_TITLE
1095    {
1096    	Text [ en-US ] = "Choose a driver";
1097	};
1098	FixedText RID_ADDP_PDFDRV_TXT_DRIVER
1099	{
1100		Pos = MAP_APPFONT( 40, 20 );
1101		Size = MAP_APPFONT( 160, 19 );
1102		WordBreak = TRUE;
1103		Text [ en-US ] = "Use the following driver for this PDF converter";
1104	};
1105	RadioButton RID_ADDP_PDFDRV_BTN_DEFAULT
1106	{
1107	    HelpID = "padmin:RadioButton:RID_ADDP_PAGE_PDFDRIVER:RID_ADDP_PDFDRV_BTN_DEFAULT";
1108		Pos = MAP_APPFONT( 40, 40 );
1109		Size = MAP_APPFONT( 160, 10 );
1110		Text [ en-US ] = "T~he default driver";
1111	};
1112	RadioButton RID_ADDP_PDFDRV_BTN_DIST
1113	{
1114	    HelpID = "padmin:RadioButton:RID_ADDP_PAGE_PDFDRIVER:RID_ADDP_PDFDRV_BTN_DIST";
1115		Pos = MAP_APPFONT( 40,50 );
1116		Size = MAP_APPFONT( 160, 10 );
1117		Text [ en-US ] = "The Adobe D~istiller(tm) driver";
1118	};
1119	RadioButton RID_ADDP_PDFDRV_BTN_SELECT
1120	{
1121	    HelpID = "padmin:RadioButton:RID_ADDP_PAGE_PDFDRIVER:RID_ADDP_PDFDRV_BTN_SELECT";
1122		Pos = MAP_APPFONT( 40, 60 );
1123		Size = MAP_APPFONT( 160, 24 );
1124		Text [ en-US ] = "A spec~ific driver, to adapt the format to another printer";
1125	};
1126};
1127
1128String RID_TXT_FONT_ITALIC
1129{
1130	Text [ en-US ] = "Italic";
1131};
1132
1133String RID_TXT_FONT_OBLIQUE
1134{
1135	Text [ en-US ] = "Oblique";
1136};
1137
1138String RID_TXT_FONT_THIN
1139{
1140	Text [ en-US ] = "Thin";
1141};
1142
1143String RID_TXT_FONT_ULTRALIGHT
1144{
1145	Text [ en-US ] = "Ultralight";
1146};
1147
1148String RID_TXT_FONT_SEMILIGHT
1149{
1150	Text [ en-US ] = "Semilight";
1151};
1152
1153String RID_TXT_FONT_LIGHT
1154{
1155	Text [ en-US ] = "Light";
1156};
1157
1158String RID_TXT_FONT_SEMIBOLD
1159{
1160	Text [ en-US ] = "Semibold";
1161};
1162
1163String RID_TXT_FONT_BOLD
1164{
1165	Text [ en-US ] = "Bold";
1166};
1167
1168String RID_TXT_FONT_ULTRABOLD
1169{
1170	Text [ en-US ] = "Ultrabold";
1171};
1172
1173String RID_TXT_FONT_ULTRACONDENSED
1174{
1175	Text [ en-US ] = "Ultracondensed";
1176};
1177
1178String RID_TXT_FONT_EXTRACONDENSED
1179{
1180	Text [ en-US ] = "Extracondensed";
1181};
1182
1183String RID_TXT_FONT_CONDENSED
1184{
1185	Text [ en-US ] = "Condensed";
1186};
1187
1188String RID_TXT_FONT_SEMICONDENSED
1189{
1190	Text [ en-US ] = "Semicondensed";
1191};
1192
1193String RID_TXT_FONT_SEMIEXPANDED
1194{
1195	Text [ en-US ] = "Semiexpanded";
1196};
1197
1198String RID_TXT_FONT_EXPANDED
1199{
1200	Text [ en-US ] = "Expanded";
1201};
1202
1203String RID_TXT_FONT_EXTRAEXPANDED
1204{
1205	Text [ en-US ] = "Extraexpanded";
1206};
1207
1208String RID_TXT_FONT_ULTRAEXPANDED
1209{
1210	Text [ en-US ] = "Ultraexpanded";
1211};
1212
1213String RID_TXT_FONT_REGULAR
1214{
1215	Text [ en-US ] = "Regular";
1216};
1217
1218
1219