sync master with lastest vba changes
[ooovba.git] / padmin / source / padialog.src
blob229826bdb8e0db0a17d8c195beac829080d2f36e
1 /*************************************************************************
2  *
3  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
4  * 
5  * Copyright 2008 by Sun Microsystems, Inc.
6  *
7  * OpenOffice.org - a multi-platform office productivity suite
8  *
9  * $RCSfile: padialog.src,v $
10  * $Revision: 1.60 $
11  *
12  * This file is part of OpenOffice.org.
13  *
14  * OpenOffice.org is free software: you can redistribute it and/or modify
15  * it under the terms of the GNU Lesser General Public License version 3
16  * only, as published by the Free Software Foundation.
17  *
18  * OpenOffice.org is distributed in the hope that it will be useful,
19  * but WITHOUT ANY WARRANTY; without even the implied warranty of
20  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
21  * GNU Lesser General Public License version 3 for more details
22  * (a copy is included in the LICENSE file that accompanied this code).
23  *
24  * You should have received a copy of the GNU Lesser General Public License
25  * version 3 along with OpenOffice.org.  If not, see
26  * <http://www.openoffice.org/license.html>
27  * for a copy of the LGPLv3 License.
28  *
29  ************************************************************************/
31 #include "padialog.hrc"
33 ModalDialog RID_FONTIMPORT_DIALOG
35     OutputSize = TRUE ;
36     SVLook = TRUE ;
37     Size = MAP_APPFONT ( 230 , 185 );
38     Moveable = TRUE ;
39     Closeable = TRUE ;
41     ListBox RID_FIMP_BOX_NEWFONTS
42     {
43         Border = TRUE;
44         Sort=TRUE;
45                 AutoHScroll = TRUE;
46         Pos = MAP_APPFONT( 5, 5 );
47         Size = MAP_APPFONT( 155, 75 );
48     };
49     FixedText RID_FIMP_TXT_HELP
50     {
51         Pos = MAP_APPFONT( 5, 155 );
52         Size = MAP_APPFONT( 220, 24 );
53         WordBreak=TRUE;
54         Text [ en-US ] = "Please select the folder from which you want to import fonts. Add the selected fonts by clicking the OK button.";
55         };
56         FixedLine RID_FIMP_FL_FROM
57         {
58                 Pos = MAP_APPFONT( 5, 85 );
59                 Size = MAP_APPFONT( 160, 8 );
60                 Text [ en-US ] = "Source directory";
61         };
62         Edit RID_FIMP_EDT_FROM
63         {
64                 Border = TRUE;
65                 Pos = MAP_APPFONT( 10, 97 );
66                 Size = MAP_APPFONT( 130, 12 );
67         };
68         PushButton RID_FIMP_BTN_FROM
69         {
70                 Pos = MAP_APPFONT( 145, 97 );
71                 Size = MAP_APPFONT( 15, 12 );
72                 Text = "...";
73         };
74     CheckBox RID_FIMP_BOX_SUBDIRS
75     {
76         Pos = MAP_APPFONT( 10, 115 );
77         Size = MAP_APPFONT( 145, 10 );
78         Text [ en-US ] = "Sea~rch Subdirectories";
79     };
80     FixedLine RID_FIMP_FL_TARGETOPTS
81     {
82         Pos = MAP_APPFONT( 5, 130 );
83         Size = MAP_APPFONT( 160, 8 );
84         Text [ en-US ] = "Target options";
85     };
87     CheckBox RID_FIMP_BOX_LINKONLY
88     {
89         Pos = MAP_APPFONT( 10, 140 );
90         Size = MAP_APPFONT( 145, 10 );
91                 Text [ en-US ] = "Create ~soft links only";
92         };
93         OKButton RID_FIMP_BTN_OK
94         {
95                 DefButton = TRUE;
96                 Pos = MAP_APPFONT( 175, 10 );
97                 Size = MAP_APPFONT( 50, 12 );
98         };
99         CancelButton RID_FIMP_BTN_CANCEL
100         {
101                 Pos = MAP_APPFONT( 175, 27 );
102                 Size = MAP_APPFONT( 50, 12 );
103         };
104     PushButton RID_FIMP_BTN_SELECTALL
105     {
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         };
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";
150 ModalDialog RID_PADIALOG
152     OutputSize = TRUE ;
153     SVLook = TRUE ;
154     Size = MAP_APPFONT ( 260 , 198 ) ;
155     Moveable = TRUE ;
156     Closeable = TRUE ;
158     FixedLine RID_PA_FL_CUPSUSAGE
159     {
160         Pos = MAP_APPFONT( 6, 145 );
161         Size = MAP_APPFONT( 248, 8 );
162         Text [ en-US ] = "CUPS support";
163     };
164     CheckBox RID_PA_CB_CUPSUSAGE
165     {
166         Pos = MAP_APPFONT( 12, 158 );
167         Size = MAP_APPFONT( 168, 8 );
168         Text [ en-US ] = "Disable CUPS Support";
169     };
170     
171     FixedLine RID_PA_FL_SEPBUTTON
172     {
173         Pos = MAP_APPFONT( 0, 176 );
174         Size = MAP_APPFONT( 260, 2 );
175     };
176         CancelButton RID_PA_BTN_CANCEL
177         {
178         DefButton = TRUE;
179                 Pos = MAP_APPFONT( 190, 181 );
180                 Size = MAP_APPFONT( 60, 12 );
181                 Text [ en-US ] = "Close";
182         };
184         FixedLine RID_PA_FL_PRINTERS
185         {
186                 Pos = MAP_APPFONT( 6, 5 );
187                 Size = MAP_APPFONT( 248, 8 );
188                 Text [ en-US ] = "Installed ~printers";
189         };
190         ListBox RID_PA_LB_DEV
191         {
192                 Pos = MAP_APPFONT( 12, 15 );
193                 Size = MAP_APPFONT( 168, 80 );
194                 Border = TRUE;
195                 Sort = TRUE;
196         };
197         FixedText RID_PA_TXT_COMMAND
198         {
199                 Pos = MAP_APPFONT( 10, 100 );
200                 Size = MAP_APPFONT( 40, 8 );
201                 Text [ en-US ] = "Command:";
202         };
203         FixedText RID_PA_TXT_COMMAND_STRING
204         {
205                 Pos = MAP_APPFONT( 55, 100 );
206                 Size = MAP_APPFONT( 135, 8 );
207         };
208         FixedText RID_PA_TXT_DRIVER
209         {
210                 Pos = MAP_APPFONT( 10, 110 );
211                 Size = MAP_APPFONT( 40, 8 );
212                 Text [ en-US ] = "Driver:";
213         };
214         FixedText RID_PA_TXT_DRIVER_STRING
215         {
216                 Pos = MAP_APPFONT( 55, 110 );
217                 Size = MAP_APPFONT( 135, 8 );
218         };
219         FixedText RID_PA_TXT_LOCATION
220         {
221                 Pos = MAP_APPFONT( 10, 120 );
222                 Size = MAP_APPFONT( 40, 8 );
223                 Text [ en-US ] = "Location:";
224         };
225         FixedText RID_PA_TXT_LOCATION_STRING
226         {
227                 Pos = MAP_APPFONT( 55, 120 );
228                 Size = MAP_APPFONT( 135, 8 );
229         };
230         FixedText RID_PA_TXT_COMMENT
231         {
232                 Pos = MAP_APPFONT( 10, 130 );
233                 Size = MAP_APPFONT( 40, 8 );
234                 Text [ en-US ] = "Comment:";
235         };
236         FixedText RID_PA_TXT_COMMENT_STRING
237         {
238                 Pos = MAP_APPFONT( 55, 130 );
239                 Size = MAP_APPFONT( 135, 8 );
240         };
241         PushButton RID_PA_BTN_CONF
242         {
243                 Pos = MAP_APPFONT( 190, 15 );
244                 Size = MAP_APPFONT( 60, 12 );
245                 Text [ en-US ] = "Properties...";
246         };
247         PushButton RID_PA_BTN_RENAME
248         {
249                 Pos = MAP_APPFONT( 190, 32 );
250                 Size = MAP_APPFONT( 60, 12 );
251                 Text [ en-US ] = "R~ename...";
252         };
253         PushButton RID_PA_BTN_STD
254         {
255                 Pos = MAP_APPFONT( 190, 49 );
256                 Size = MAP_APPFONT( 60, 12 );
257                 Text [ en-US ] = "~Default";
258         };
259         PushButton RID_PA_BTN_DEL
260         {
261                 Pos = MAP_APPFONT( 190, 66 );
262                 Size = MAP_APPFONT( 60, 12 );
263                 Text [ en-US ] = "Remo~ve...";
264         };
265         PushButton RID_PA_TESTPAGE
266         {
267                 Pos = MAP_APPFONT( 190, 83 );
268                 Size = MAP_APPFONT( 60, 12 );
269                 Text [ en-US ] = "Test ~Page";
270         };
271         
272         PushButton RID_PA_BTN_FONTS
273         {
274                 Pos = MAP_APPFONT( 80, 181 );
275                 Size = MAP_APPFONT( 70, 12 );
276                 Text [ en-US ] = "Fon~ts...";
277         };
278         PushButton RID_PA_BTN_ADD
279         {
280                 Pos = MAP_APPFONT( 5, 181 );
281                 Size = MAP_APPFONT( 70, 12 );
282                 Text [ en-US ] = "New Printer...";
283         };
285         String RID_PA_STR_DEFPRT
286         {
287                 Text [ en-US ] = "Default printer";
288         };
289         String RID_PA_STR_RENAME
290         {               
291                 Text [ en-US ] = "Rename";
292         };
293         Text [ en-US ] = "Printer Administration";
296 ModalDialog RID_STRINGQUERYDLG
298     OutputSize = TRUE ;
299     SVLook = TRUE ;
300     Pos = MAP_APPFONT ( 10 , 10 ) ;
301     Size = MAP_APPFONT ( 200 , 42 ) ;
302     Moveable = TRUE ;
303     Closeable = TRUE ;
304     FixedText RID_STRQRY_TXT_RENAME
305     {
306         Pos = MAP_APPFONT ( 6 , 6 ) ;
307         Size = MAP_APPFONT ( 130 , 16 ) ;
308         Wordbreak=TRUE;
309     };
310     Edit RID_STRQRY_EDT_NEWNAME
311     {
312         Border = TRUE ;
313         Pos = MAP_APPFONT ( 6 , 23 ) ;
314         Size = MAP_APPFONT ( 130 , 12 ) ;
315     };
316     ComboBox RID_STRQRY_BOX_NEWNAME
317     {
318         Border = TRUE ;
319         DropDown = TRUE;
320         Pos = MAP_APPFONT ( 6 , 23 ) ;
321         Size = MAP_APPFONT ( 130 , 200 ) ;
322     };
323     OKButton RID_STRQRY_BTN_OK
324     {
325         DefButton = TRUE ;
326         Pos = MAP_APPFONT ( 145 , 6 ) ;
327         Size = MAP_APPFONT ( 50 , 12 ) ;
328     };
329     CancelButton RID_STRQRY_BTN_CANCEL
330     {
331         Pos = MAP_APPFONT ( 145 , 23 ) ;
332         Size = MAP_APPFONT ( 50 , 12 ) ;
333     };
336 String RID_ERR_NOPRINTER
338         Text [ en-US ] = "Could not open printer %s.";
341 String RID_PA_TXT_TESTPAGE_PRINTED
343         Text [ en-US ] = "The test page was printed succesfully. Please check the result.";
346 String RID_QRY_PRTNAME
348         Text [ en-US ] = "~New printer name";
351 String RID_TXT_TESTPAGE_MODEL
353         Text [ en-US ] = "Model";
356 String RID_TXT_TESTPAGE_NAME
358         Text [ en-US ] = "Name";
361 String RID_TXT_TESTPAGE_COMMENT
363         Text [ en-US ] = "Comment";
366 String RID_TXT_TESTPAGE_QUEUE
368         Text [ en-US ] = "Queue";
371 String RID_TXT_TESTPAGE_DATE
373         Text [ en-US ] = "Date";
376 String RID_TXT_TESTPAGE_TIME
378         Text [ en-US ] = "Time";
382 ModalDialog RID_FONTNAMEDIALOG
384     OutputSize = TRUE ;
385     SVLook = TRUE ;
386     Size = MAP_APPFONT ( 255 , 110 ) ;
387     Moveable = TRUE ;
388     Closeable = TRUE ;
389     OKButton RID_FNTNM_BTN_OK
390     {
391         DefButton = TRUE ;
392         Pos = MAP_APPFONT ( 196 , 6 ) ;
393         Size = MAP_APPFONT ( 50 , 12 ) ;
394                 Text [ en-US ] = "Close";
395         };
396     PushButton RID_FNTNM_BTN_RENAME
397     {
398         Pos = MAP_APPFONT( 196, 31 );
399         Size = MAP_APPFONT( 50, 12 );
400         Text [ en-US ] = "Re~name...";
401         };
402     PushButton RID_FNTNM_BTN_REMOVE
403     {
404         Pos = MAP_APPFONT ( 196 , 48 ) ;
405         Size = MAP_APPFONT ( 50 , 12 ) ;
406                 Text [ en-US ] = "~Remove...";
407         };
408     PushButton RID_FNTNM_BTN_IMPORT
409     {
410         Pos = MAP_APPFONT ( 196 , 65 ) ;
411         Size = MAP_APPFONT ( 50 , 12 ) ;
412         Text [ en-US ] = "~Add...";
413         };
414     ListBox RID_FNTNM_LB_FONTS
415     {
416         Border = TRUE ;
417         Sort = TRUE ;
418         AutoHScroll = TRUE;
419         Pos = MAP_APPFONT ( 6 , 6 ) ;
420         Size = MAP_APPFONT ( 185 , 70 ) ;
421     };
422     FixedText RID_FNTNM_FIXED
423     {
424         Pos = MAP_APPFONT ( 6 , 81 ) ;
425         Size = MAP_APPFONT ( 175 , 24 ) ;
426                 WordBreak = TRUE;
427                 Text [ en-US ] = "Note: The fonts are only available to the applications.";
428         };
429     String RID_FNTNM_STR_RENAME
430     {
431         Text [ en-US ] = "~New name for %s";
432         };
433     String RID_FNTNM_STR_TTCRENAME
434     {
435         Text [ en-US ] = "~New name for %s (%d1 of %d2)";
436         };
437     String RID_FNTNM_STR_NOTRENAMABLE
438     {
439         Text [ en-US ] = "The font %s cannot be renamed due to missing write permission.";
440         };
441         Text [ en-US ] = "Fonts";
443 String RID_BXT_TESTPAGE
445         Text [ en-US ] = "Test page";
447 String RID_BXT_ENVIRONMENT
449         Text [ en-US ] = "Wrong environment";
452 String RID_YOU_SURE
454         Text [ en-US ] = "Are you sure ?";
457 Bitmap RID_BUTTERFLY
459     File = "butter.png" ;
462 Bitmap RID_BMP_SMALL_PRINTER
464     File = "print.png";
467 Bitmap RID_BMP_SMALL_FAX
469     File = "fax.png";
472 Bitmap RID_BMP_SMALL_PDF
474     File = "pdf.png";
477 Bitmap RID_BMP_PRINTER
479     File = "printer_large.png";
482 Bitmap RID_BMP_SMALL_PRINTER_HC
484     File = "printer_16_h.png";
487 Bitmap RID_BMP_SMALL_FAX_HC
489     File = "fax_16_h.png";
492 Bitmap RID_BMP_SMALL_PDF_HC
494     File = "printpdf_16_h.png";
497 Bitmap RID_BMP_PRINTER_HC
499     File = "printer_40x48_h.png";
503 String RID_AFMERROR_OK
505         Text [ en-US ] = "No error";
507 String RID_AFMERROR_NO_FONT_NAME
509         Text [ en-US ] = "The metric does not contain a 'FontName' entry.";
511 String RID_AFMERROR_NO_FULL_NAME
513         Text [ en-US ] = "The metric does not contain a 'FullName' entry.";
515 String RID_AFMERROR_NO_FAMILY_NAME
517         Text [ en-US ] = "The metric does not contain a 'FamilyName' entry.";
519 String RID_AFMERROR_MOVETO_FAILED
521         Text [ en-US ] = "The converted metric could not be written.";
523 String RID_AFMERROR_STREAM_READ_FAILED
525         Text [ en-US ] = "The metric could not be read.";
527 String RID_AFMERROR_STREAM_WRITE_FAILED
529         Text [ en-US ] = "A temporary file could not be created.";
531 STRING RID_AFMERROR_NOT_A_METRIC
533         Text [ en-US ] = "The file does not contain a metric.";
535 String RID_AFMERROR_BOX_TXT
537         Text [ en-US ] = "The metric\n\n%s\n\ncould not be converted for the following reason:\n\n";
540 ModelessDialog RID_PROGRESS_DLG
542     OutputSize = TRUE ;
543     SVLook = TRUE ;
544     Pos = MAP_APPFONT ( 10 , 10 ) ;
545     Size = MAP_APPFONT ( 150 , 90 ) ;
546     Moveable = TRUE ;
547     Closeable = FALSE ;
548     CancelButton RID_PROGRESS_BTN_CANCEL
549     {
550         Pos = MAP_APPFONT ( 50 , 71 ) ;
551         Size = MAP_APPFONT ( 50 , 14 ) ;
552     };
553     FixedText RID_PROGRESS_OPERATION_TXT
554     {
555         Pos = MAP_APPFONT ( 6 , 6 ) ;
556         Size = MAP_APPFONT ( 140 , 18 ) ;
557     };
558         FixedText RID_PROGRESS_PROGRESS_TXT
559         {
560                 Pos = MAP_APPFONT( 6, 48 );
561                 Size = MAP_APPFONT( 140, 8 );
562                 Text [ en-US ] = "Progress";
563         };
564         Window RID_PROGRESS_STATUSBAR
565     {
566                 SVLook = TRUE;
567                 Border = TRUE;
568         Pos = MAP_APPFONT ( 6 , 58 ) ;
569                 Size = MAP_APPFONT( 140, 8 );
570     };
571         FixedText RID_PROGRESS_FILENAME_TXT
572     {
573         Pos = MAP_APPFONT ( 6 , 28 ) ;
574         Size = MAP_APPFONT ( 140 , 8 ) ;
575     };
576         Text [ en-US ] = "Please wait";
579 String RID_OPERATION_CONVERTMETRIC
581         Text [ en-US ] = "Font metrics conversion";
585 ModalDialog RID_PPDIMPORT_DLG
587     OutputSize = TRUE ;
588     SVLook = TRUE ;
589     Size = MAP_APPFONT ( 265 , 225 ) ;
590     Moveable = TRUE ;
591     Closeable = TRUE ;
593         FixedLine RID_PPDIMP_GROUP_PATH
594         {
595                 Pos = MAP_APPFONT( 5, 5 );
596                 Size = MAP_APPFONT( 200, 8 );
597                 Text [ en-US ] = "Dri~ver directory";
598         };
599         FixedText RID_PPDIMP_TXT_PATH
600         {
601                 Pos = MAP_APPFONT( 10, 33 );
602                 Size = MAP_APPFONT( 190, 8 );
603                 Text [ en-US ] = "Please select the driver directory.";
604         };
605         ComboBox RID_PPDIMP_LB_PATH
606         {
607                 Dropdown = TRUE;
608                 Border = TRUE;
609                 Sort = TRUE;
611                 Pos = MAP_APPFONT( 10, 15 );
612                 Size = MAP_APPFONT( 130, 80 );
613         };
614         PushButton RID_PPDIMP_BTN_SEARCH
615         {
616                 Pos = MAP_APPFONT( 145, 15 );
617                 Size = MAP_APPFONT( 50, 14 );
618                 Text [ en-US ] = "Browse...";
619         };
621         FixedLine RID_PPDIMP_GROUP_DRIVER
622         {
623                 Pos = MAP_APPFONT( 5, 60 );
624                 Size = MAP_APPFONT( 200, 8 );
625                 Text [ en-US ] = "~Selection of drivers";
626         };
627         MultiListBox RID_PPDIMP_LB_DRIVER
628         {
629                 Border = TRUE;
630                 Sort = TRUE;
631                 SimpleMode = TRUE;
632                 AutoHScroll = TRUE;
633                 Pos = MAP_APPFONT( 10, 70 );
634                 Size = MAP_APPFONT( 190, 120 );
635         };
636         FixedText RID_PPDIMP_TXT_DRIVER
637         {
638                 Pos = MAP_APPFONT( 10, 195 );
639                 Size = MAP_APPFONT( 190, 60 );
640                 WordBreak = TRUE;
641                 Text [ en-US ] = "Please select the drivers to install and press \"%s\".";
642         };
643         String RID_PPDIMP_STR_LOADINGPPD
644         {
645                 Text [ en-US ] = "Searching for drivers";
646         };
647         OKButton RID_PPDIMP_BTN_OK
648         {
649                 DefButton = TRUE;
650                 Pos = MAP_APPFONT( 210, 10 );
651                 Size = MAP_APPFONT( 50, 14 );
652         };
653         CancelButton RID_PPDIMP_BTN_CANCEL
654         {
655                 Pos = MAP_APPFONT( 210, 29 );
656                 Size = MAP_APPFONT( 50, 14 );
657         };
659         Text [ en-US ] = "Driver Installation";
662 String RID_QUERY_REMOVEDRIVER
664         Text [ en-US ] = "Do you really want to remove the driver \"%s\"?";
667 String RID_QUERY_REMOVEPRINTER
669         Text [ en-US ] = "Do you really want to remove this printer ?";
672 String RID_QUERY_REMOVEFONTFROMLIST
674         Text [ en-US ] = "Do you really want to remove the selected fonts ?";
677 String RID_QUERY_DRIVERUSED
679         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.";
682 String RID_ERR_REMOVESGENPRT
684         Text [ en-US ] = "The driver \"%s\" is always needed and can therefore not be removed.";
687 String RID_ERR_REMOVEDRIVERFAILED
689         Text [ en-US ] = "The driver \"%s1\" could not be removed. It was not possible to remove the file\n\n%s2.";
692 String RID_ERR_REMOVEDEFAULTDRIVER
694         Text [ en-US ] = "The driver \"%s\" is used by your default printer. Therefore, it cannot be removed.";
697 String RID_ERR_PRINTERNOTREMOVEABLE
699         Text [ en-US ] = "The printer %s cannot be removed.";
702 String RID_TXT_PRINTERALREADYEXISTS
704         Text [ en-US ] = "A printer named \"%s\" already exists. This printer will not be imported.";
707 String RID_TXT_PRINTERWITHOUTCOMMAND
709         Text [ en-US ] = "The printer \"%s\" has no valid configuration and, therefore, cannot be imported.";
712 String RID_TXT_DRIVERDOESNOTEXIST
714         Text [ en-US ] = "The driver for the printer \"%s1\" (%s2) is not installed. Therefore the printer cannot be imported.";
717 String RID_TXT_PRINTERADDFAILED
719         Text [ en-US ] = "The printer \"%s\" could not be added.";
722 ModalDialog RID_ADD_PRINTER_DIALOG
724     OutputSize = TRUE ;
725     SVLook = TRUE ;
726     Size = MAP_APPFONT ( 240 , 172 ) ;
727     Moveable = TRUE ;
728     Closeable = TRUE ;
730     Control RID_ADDP_CTRL_TITLE
731     {
732         Pos = MAP_APPFONT( 0, 0 );
733         Size = MAP_APPFONT( 240, 26 );
734     };
735         FixedLine RID_ADDP_LINE
736         {
737                 Pos = MAP_APPFONT( 0, 150 );
738                 Size = MAP_APPFONT( 240, 2 );
739         };
740         OKButton RID_ADDP_BTN_FINISH
741         {
742                 Pos = MAP_APPFONT( 185, 155 );
743                 Size = MAP_APPFONT( 50, 12 );
744                 Text [ en-US ] = "~Finish";
745         };
746         CancelButton RID_ADDP_BTN_CANCEL
747         {
748                 Pos = MAP_APPFONT( 5, 155 );
749                 Size = MAP_APPFONT( 50, 12 );
750         };
751         PushButton RID_ADDP_BTN_NEXT
752         {
753                 Pos = MAP_APPFONT( 130, 155 );
754                 Size = MAP_APPFONT( 50, 12 );
755                 Text [ en-US ] = "~Next >>";
756         };
757         PushButton RID_ADDP_BTN_PREV
758         {
759                 Pos = MAP_APPFONT( 75, 155 );
760                 Size = MAP_APPFONT( 50, 12 );
761                 Text [ en-US ] = "<< ~Back";
762         };
763         Text [ en-US ] = "Add Printer";
766 TabPage RID_ADDP_PAGE_CHOOSEDRIVER
768         Hide = TRUE;
769     Pos = MAP_APPFONT( 0, 30 );
770         Size = MAP_APPFONT( 240, 120 );
771     String RID_ADDP_STR_TITLE
772     {
773         Text [ en-US ] = "Choose a driver";
774         };
775         FixedText RID_ADDP_CHDRV_TXT_DRIVER
776         {
777                 Pos = MAP_APPFONT( 5, 5 );
778                 Size = MAP_APPFONT( 230, 8 );
779                 Text [ en-US ] = "Please select a s~uitable driver.";
780         };
781         ListBox RID_ADDP_CHDRV_BOX_DRIVER
782         {
783                 Pos = MAP_APPFONT( 5, 15 );
784                 Size = MAP_APPFONT( 175, 100 );
785                 Border = TRUE;
786                 Sort = TRUE;
787         };
788         PushButton RID_ADDP_CHDRV_BTN_ADD
789         {
790                 Pos = MAP_APPFONT( 185, 15 );
791                 Size = MAP_APPFONT( 50, 12 );
792                 Text [ en-US ] = "~Import...";
793         };
794         PushButton RID_ADDP_CHDRV_BTN_REMOVE
795         {
796                 Pos = MAP_APPFONT( 185, 32 );
797                 Size = MAP_APPFONT( 50, 12 );
798                 Text [ en-US ] = "~Delete";
799         };
800         String RID_ADDP_CHDRV_STR_REMOVE
801         {
802                 Text [ en-US ] = "Delete driver";
803         };
806 TabPage RID_ADDP_PAGE_CHOOSEDEV
808         Hide = TRUE;
809     Pos = MAP_APPFONT( 0, 30 );
810         Size = MAP_APPFONT( 240, 120 );
811     String RID_ADDP_STR_TITLE
812     {
813         Text [ en-US ] = "Choose a device type";
814         };
815         FixedText RID_ADDP_CHDEV_TXT_OVER
816         {
817                 Pos = MAP_APPFONT( 40, 25 );
818                 Size = MAP_APPFONT( 180, 8 );
819                 Text [ en-US ] = "Do you want to";
820         };
821         RadioButton RID_ADDP_CHDEV_BTN_PRINTER
822         {
823                 Pos = MAP_APPFONT ( 40, 40 );
824                 Size = MAP_APPFONT( 180, 10 );
825                 Text [ en-US ] = "Add a ~printer";
826         };      
827         RadioButton RID_ADDP_CHDEV_BTN_FAX
828         {
829                 Pos = MAP_APPFONT ( 40, 50 );
830                 Size = MAP_APPFONT( 180, 10 );
831                 Text [ en-US ] = "Connect a fa~x device";
832         };      
833         RadioButton RID_ADDP_CHDEV_BTN_PDF
834         {
835                 Pos = MAP_APPFONT ( 40, 60 );
836                 Size = MAP_APPFONT( 180, 10 );
837                 Text [ en-US ] = "Connect a P~DF converter";
838         };      
839         RadioButton RID_ADDP_CHDEV_BTN_OLD
840         {
841                 Pos = MAP_APPFONT ( 40, 70 );
842                 Size = MAP_APPFONT( 180, 10 );
843                 Text [ en-US ] = "~Import printers from a StarOffice installation";
844         };
847 TabPage RID_ADDP_PAGE_NAME
849         Hide = TRUE;
850     Pos = MAP_APPFONT( 0, 30 );
851         Size = MAP_APPFONT( 240, 120 );
852     String RID_ADDP_STR_TITLE
853     {
854         Text [ en-US ] = "Choose a name";
855         };
856         FixedText RID_ADDP_NAME_TXT_NAME
857         {
858                 Pos = MAP_APPFONT( 40, 25 );
859                 Size = MAP_APPFONT( 220, 8 );
860                 Text [ en-US ] = "Please enter a name for the printer.";
861         };
862         FixedText RID_ADDP_NAME_TXT_FAXNAME
863         {
864                 Pos = MAP_APPFONT( 40, 25 );
865                 Size = MAP_APPFONT( 220, 8 );
866                 Text [ en-US ] = "Please enter a name for the fax connection.";
867         };
868         FixedText RID_ADDP_NAME_TXT_PDFNAME
869         {
870                 Pos = MAP_APPFONT( 40, 25 );
871                 Size = MAP_APPFONT( 220, 8 );
872                 Text [ en-US ] = "Please enter a name for the PDF connection.";
873         };
874         Edit RID_ADDP_NAME_EDT_NAME
875         {
876                 Pos = MAP_APPFONT( 40, 35 );
877                 Size = MAP_APPFONT( 160, 12 );
878                 Border = TRUE;
879         };
880         Edit RID_ADDP_NAME_EDT_FAXNAME
881         {
882                 Pos = MAP_APPFONT( 40, 35 );
883                 Size = MAP_APPFONT( 160, 12 );
884                 Border = TRUE;
885                 Text [ en-US ] = "Fax printer";
886         };
887         Edit RID_ADDP_NAME_EDT_PDFNAME
888         {
889                 Pos = MAP_APPFONT( 40, 35 );
890                 Size = MAP_APPFONT( 160, 12 );
891                 Border = TRUE;
892                 Text [ en-US ] = "PDF converter";
893         };
894         CheckBox RID_ADDP_NAME_BOX_DEFAULT
895         {
896                 Pos = MAP_APPFONT( 40, 50 );
897                 Size = MAP_APPFONT( 160, 12 );
898                 Text [ en-US ] = "~Use as default printer";
899         };
900         CheckBox RID_ADDP_NAME_BOX_FAXSWALLOW
901         {
902                 Pos = MAP_APPFONT( 40, 50 );
903                 Size = MAP_APPFONT( 160, 12 );
904                 Text [ en-US ] = "Remo~ve fax number from output";
905         };
908 TabPage RID_ADDP_PAGE_COMMAND
910         Hide = TRUE;
911     Pos = MAP_APPFONT( 0, 30 );
912         Size = MAP_APPFONT( 240, 120 );
913     String RID_ADDP_STR_TITLE
914     {
915         Text [ en-US ] = "Choose a command line";
916         };
917         FixedText RID_ADDP_CMD_TXT_COMMAND
918         {
919                 Pos = MAP_APPFONT( 10, 2 );
920                 Size = MAP_APPFONT( 160, 24 );
921                 WordBreak = TRUE;
922                 Text [ en-US ] = "Please enter a c~ommand line appropriate for this device.";
923         };
924         ComboBox RID_ADDP_CMD_BOX_COMMAND
925         {
926                 Pos = MAP_APPFONT( 10, 30);
927                 Size = MAP_APPFONT( 220, 85 );
928                 Border = TRUE;
929         };
930         ComboBox RID_ADDP_CMD_BOX_PDFCOMMAND
931         {
932                 Pos = MAP_APPFONT( 10, 30);
933                 Size = MAP_APPFONT( 220, 60 );
934                 Border = TRUE;
935         };
936         FixedText RID_ADDP_CMD_TXT_PDFDIR
937         {
938                 Pos = MAP_APPFONT( 10, 95 );
939                 Size = MAP_APPFONT( 220, 8 );
940                 Text [ en-US ] = "PDF ~target directory";
941         };
942         Edit RID_ADDP_CMD_EDT_PDFDIR
943         {
944                 Border = TRUE;
945                 Pos = MAP_APPFONT( 10, 104 );
946                 Size = MAP_APPFONT( 190, 12 );
947         };
948         PushButton RID_ADDP_CMD_BTN_PDFDIR
949         {
950                 Pos = MAP_APPFONT( 205, 104 );
951                 Size = MAP_APPFONT( 25, 12 );
952                 Text = "~...";
953         };
954         PushButton RID_ADDP_CMD_BTN_HELP
955         {
956                 Pos = MAP_APPFONT( 180, 2 );
957                 Size = MAP_APPFONT( 50, 12 );
958                 Text [ en-US ] = "~Help";
959         };
960         String RID_ADDP_CMD_STR_PDFHELP
961         {
962                 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).";
963         };
964         String RID_ADDP_CMD_STR_FAXHELP
965         {
966                 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).";
967         };
970 TabPage RID_ADDP_PAGE_OLDPRINTERS
972         Hide = TRUE;
973     Pos = MAP_APPFONT( 0, 30 );
974         Size = MAP_APPFONT( 240, 120 );
975     String RID_ADDP_STR_TITLE
976     {
977         Text [ en-US ] = "Import printers from old versions";
978         };
979         FixedText RID_ADDP_OLD_TXT_PRINTERS
980         {
981                 Pos = MAP_APPFONT( 10, 10 );
982                 Size = MAP_APPFONT( 165, 25 );
983                 WordBreak = TRUE;
984                 Text [ en-US ] = "~These printers can be imported. Please select the ones you want to import.";
985         };
986         MultiListBox RID_ADDP_OLD_BOX_PRINTERS
987         {
988                 Pos = MAP_APPFONT( 10, 35 );
989                 Size = MAP_APPFONT( 165, 80 );
990                 Border = TRUE;
991         };
992         PushButton RID_ADDP_OLD_BTN_SELECTALL
993         {
994                 Pos = MAP_APPFONT( 180, 35 );
995                 Size = MAP_APPFONT( 50, 12 );
996                 Text [ en-US ] = "~Select All";
997         };
1000 TabPage RID_ADDP_PAGE_FAXDRIVER
1002         Hide = TRUE;
1003     Pos = MAP_APPFONT( 0, 30 );
1004         Size = MAP_APPFONT( 240, 120 );
1005     String RID_ADDP_STR_TITLE
1006     {
1007         Text [ en-US ] = "Choose a driver";
1008         };
1009         FixedText RID_ADDP_FAXDRV_TXT_DRIVER
1010         {
1011                 Pos = MAP_APPFONT( 40, 20 );
1012                 Size = MAP_APPFONT( 160, 19 );
1013                 WordBreak = TRUE;
1014                 Text [ en-US ] = "Use the following driver for this fax connection";
1015         };
1016         RadioButton RID_ADDP_FAXDRV_BTN_DEFAULT
1017         {
1018                 Pos = MAP_APPFONT( 40,40 );
1019                 Size = MAP_APPFONT( 160, 10 );
1020                 Text [ en-US ] = "T~he default driver";
1021         };
1022         RadioButton RID_ADDP_FAXDRV_BTN_SELECT
1023         {
1024                 Pos = MAP_APPFONT( 40, 50 );
1025                 Size = MAP_APPFONT( 160,24 );
1026                 Text [ en-US ] = "A speci~fic driver, to adapt the format to another printer";
1027         };
1030 TabPage RID_ADDP_PAGE_PDFDRIVER
1032         Hide = TRUE;
1033     Pos = MAP_APPFONT( 0, 30 );
1034         Size = MAP_APPFONT( 240, 120 );
1035     String RID_ADDP_STR_TITLE
1036     {
1037         Text [ en-US ] = "Choose a driver";
1038         };
1039         FixedText RID_ADDP_PDFDRV_TXT_DRIVER
1040         {
1041                 Pos = MAP_APPFONT( 40, 20 );
1042                 Size = MAP_APPFONT( 160, 19 );
1043                 WordBreak = TRUE;
1044                 Text [ en-US ] = "Use the following driver for this PDF converter";
1045         };
1046         RadioButton RID_ADDP_PDFDRV_BTN_DEFAULT
1047         {
1048                 Pos = MAP_APPFONT( 40, 40 );
1049                 Size = MAP_APPFONT( 160, 10 );
1050                 Text [ en-US ] = "T~he default driver";
1051         };
1052         RadioButton RID_ADDP_PDFDRV_BTN_DIST
1053         {
1054                 Pos = MAP_APPFONT( 40,50 );
1055                 Size = MAP_APPFONT( 160, 10 );
1056                 Text [ en-US ] = "The Adobe D~istiller(tm) driver";
1057         };
1058         RadioButton RID_ADDP_PDFDRV_BTN_SELECT
1059         {
1060                 Pos = MAP_APPFONT( 40, 60 );
1061                 Size = MAP_APPFONT( 160, 24 );
1062                 Text [ en-US ] = "A spec~ific driver, to adapt the format to another printer";
1063         };
1066 String RID_TXT_FONT_ITALIC
1068         Text [ en-US ] = "Italic";
1071 String RID_TXT_FONT_OBLIQUE
1073         Text [ en-US ] = "Oblique";
1076 String RID_TXT_FONT_THIN
1078         Text [ en-US ] = "Thin";
1081 String RID_TXT_FONT_ULTRALIGHT
1083         Text [ en-US ] = "Ultralight";
1086 String RID_TXT_FONT_SEMILIGHT
1088         Text [ en-US ] = "Semilight";
1091 String RID_TXT_FONT_LIGHT
1093         Text [ en-US ] = "Light";
1096 String RID_TXT_FONT_SEMIBOLD
1098         Text [ en-US ] = "Semibold";
1101 String RID_TXT_FONT_BOLD
1103         Text [ en-US ] = "Bold";
1106 String RID_TXT_FONT_ULTRABOLD
1108         Text [ en-US ] = "Ultrabold";
1111 String RID_TXT_FONT_ULTRACONDENSED
1113         Text [ en-US ] = "Ultracondensed";
1116 String RID_TXT_FONT_EXTRACONDENSED
1118         Text [ en-US ] = "Extracondensed";
1121 String RID_TXT_FONT_CONDENSED
1123         Text [ en-US ] = "Condensed";
1126 String RID_TXT_FONT_SEMICONDENSED
1128         Text [ en-US ] = "Semicondensed";
1131 String RID_TXT_FONT_SEMIEXPANDED
1133         Text [ en-US ] = "Semiexpanded";
1136 String RID_TXT_FONT_EXPANDED
1138         Text [ en-US ] = "Expanded";
1141 String RID_TXT_FONT_EXTRAEXPANDED
1143         Text [ en-US ] = "Extraexpanded";
1146 String RID_TXT_FONT_ULTRAEXPANDED
1148         Text [ en-US ] = "Ultraexpanded";
1151 String RID_TXT_FONT_REGULAR
1153         Text [ en-US ] = "Regular";