summaryrefslogtreecommitdiff
path: root/padmin/source/padialog.src
blob: ab09d9155d1b2b0dd58a8b7c6220117c40ff03af (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
/*************************************************************************
 *
 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
 *
 * Copyright 2000, 2010 Oracle and/or its affiliates.
 *
 * OpenOffice.org - a multi-platform office productivity suite
 *
 * This file is part of OpenOffice.org.
 *
 * OpenOffice.org is free software: you can redistribute it and/or modify
 * it under the terms of the GNU Lesser General Public License version 3
 * only, as published by the Free Software Foundation.
 *
 * OpenOffice.org is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * GNU Lesser General Public License version 3 for more details
 * (a copy is included in the LICENSE file that accompanied this code).
 *
 * You should have received a copy of the GNU Lesser General Public License
 * version 3 along with OpenOffice.org.  If not, see
 * <http://www.openoffice.org/license.html>
 * for a copy of the LGPLv3 License.
 *
 ************************************************************************/

#include "padialog.hrc"

ModalDialog RID_FONTIMPORT_DIALOG
{
    OutputSize = TRUE ;
    SVLook = TRUE ;
    Size = MAP_APPFONT ( 230 , 185 );
    Moveable = TRUE ;
    Closeable = TRUE ;

    ListBox RID_FIMP_BOX_NEWFONTS
    {
        Border = TRUE;
        Sort=TRUE;
        AutoHScroll = TRUE;
        Pos = MAP_APPFONT( 5, 5 );
        Size = MAP_APPFONT( 155, 75 );
    };
    FixedText RID_FIMP_TXT_HELP
    {
        Pos = MAP_APPFONT( 5, 155 );
        Size = MAP_APPFONT( 220, 24 );
        WordBreak=TRUE;
        Text [ en-US ] = "Please select the folder from which you want to import fonts. Add the selected fonts by clicking the OK button.";
    };
    FixedLine RID_FIMP_FL_FROM
    {
        Pos = MAP_APPFONT( 5, 85 );
        Size = MAP_APPFONT( 160, 8 );
        Text [ en-US ] = "Source directory";
    };
    Edit RID_FIMP_EDT_FROM
    {
        Border = TRUE;
        Pos = MAP_APPFONT( 10, 97 );
        Size = MAP_APPFONT( 130, 12 );
    };
    PushButton RID_FIMP_BTN_FROM
    {
        Pos = MAP_APPFONT( 145, 97 );
        Size = MAP_APPFONT( 15, 12 );
        Text = "...";
    };
    CheckBox RID_FIMP_BOX_SUBDIRS
    {
        Pos = MAP_APPFONT( 10, 115 );
        Size = MAP_APPFONT( 145, 10 );
        Text [ en-US ] = "Sea~rch Subdirectories";
    };
    FixedLine RID_FIMP_FL_TARGETOPTS
    {
        Pos = MAP_APPFONT( 5, 130 );
        Size = MAP_APPFONT( 160, 8 );
        Text [ en-US ] = "Target options";
    };

    CheckBox RID_FIMP_BOX_LINKONLY
    {
        Pos = MAP_APPFONT( 10, 140 );
        Size = MAP_APPFONT( 145, 10 );
        Text [ en-US ] = "Create ~soft links only";
    };
    OKButton RID_FIMP_BTN_OK
    {
        DefButton = TRUE;
        Pos = MAP_APPFONT( 175, 10 );
        Size = MAP_APPFONT( 50, 12 );
    };
    CancelButton RID_FIMP_BTN_CANCEL
    {
        Pos = MAP_APPFONT( 175, 27 );
        Size = MAP_APPFONT( 50, 12 );
    };
    PushButton RID_FIMP_BTN_SELECTALL
    {
        Pos = MAP_APPFONT( 175, 44 );
        Size = MAP_APPFONT( 50, 12 );
        Text [ en-US ] = "~Select All";
    };
    String RID_FIMP_STR_IMPORTOP
    {
        Text [ en-US ] = "Add fonts";
    };
    String RID_FIMP_STR_QUERYOVERWRITE
    {
        Text [ en-US ] = "Do you really want to overwrite this font file?\n   %s";
    };
    String RID_FIMP_STR_OVERWRITEALL
    {
        Text [ en-US ] = "All";
    };
    String RID_FIMP_STR_OVERWRITENONE
    {
        Text [ en-US ] = "None";
    };

    String RID_FIMP_STR_NOAFM
    {
        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.";
    };
    String RID_FIMP_STR_AFMCOPYFAILED
    {
        Text [ en-US ] = "The metric file for the font file\n   %s\ncould not be copied. The font will not be installed.";
    };
    String RID_FIMP_STR_FONTCOPYFAILED
    {
        Text [ en-US ] = "The font file\n   %s\ncould not be copied. The font will not be installed.";
    };
    String RID_FIMP_STR_NOWRITEABLEFONTSDIR
    {
        Text [ en-US ] = "A directory containing a writable fonts.dir file is not located in the Fontpath. Therefore, fonts cannot be installed.";
    };
    String RID_FIMP_STR_NUMBEROFFONTSIMPORTED
    {
        Text [ en-US ] = "%d new fonts were added.";
    };
    Text [ en-US ] = "Add Fonts";
};

ModalDialog RID_PADIALOG
{
    OutputSize = TRUE ;
    SVLook = TRUE ;
    Size = MAP_APPFONT ( 260 , 198 ) ;
    Moveable = TRUE ;
    Closeable = TRUE ;

    FixedLine RID_PA_FL_CUPSUSAGE
    {
        Pos = MAP_APPFONT( 6, 145 );
        Size = MAP_APPFONT( 248, 8 );
        Text [ en-US ] = "CUPS support";
    };
    CheckBox RID_PA_CB_CUPSUSAGE
    {
        Pos = MAP_APPFONT( 12, 158 );
        Size = MAP_APPFONT( 168, 8 );
        Text [ en-US ] = "Disable CUPS Support";
    };

    FixedLine RID_PA_FL_SEPBUTTON
    {
        Pos = MAP_APPFONT( 0, 176 );
        Size = MAP_APPFONT( 260, 2 );
    };
    CancelButton RID_PA_BTN_CANCEL
    {
        DefButton = TRUE;
        Pos = MAP_APPFONT( 190, 181 );
        Size = MAP_APPFONT( 60, 12 );
        Text [ en-US ] = "Close";
    };

    FixedLine RID_PA_FL_PRINTERS
    {
        Pos = MAP_APPFONT( 6, 5 );
        Size = MAP_APPFONT( 248, 8 );
        Text [ en-US ] = "Installed ~printers";
    };
    ListBox RID_PA_LB_DEV
    {
        Pos = MAP_APPFONT( 12, 15 );
        Size = MAP_APPFONT( 168, 80 );
        Border = TRUE;
        Sort = TRUE;
    };
    FixedText RID_PA_TXT_COMMAND
    {
        Pos = MAP_APPFONT( 10, 100 );
        Size = MAP_APPFONT( 40, 8 );
        Text [ en-US ] = "Command:";
    };
    FixedText RID_PA_TXT_COMMAND_STRING
    {
        Pos = MAP_APPFONT( 55, 100 );
        Size = MAP_APPFONT( 135, 8 );
    };
    FixedText RID_PA_TXT_DRIVER
    {
        Pos = MAP_APPFONT( 10, 110 );
        Size = MAP_APPFONT( 40, 8 );
        Text [ en-US ] = "Driver:";
    };
    FixedText RID_PA_TXT_DRIVER_STRING
    {
        Pos = MAP_APPFONT( 55, 110 );
        Size = MAP_APPFONT( 135, 8 );
    };
    FixedText RID_PA_TXT_LOCATION
    {
        Pos = MAP_APPFONT( 10, 120 );
        Size = MAP_APPFONT( 40, 8 );
        Text [ en-US ] = "Location:";
    };
    FixedText RID_PA_TXT_LOCATION_STRING
    {
        Pos = MAP_APPFONT( 55, 120 );
        Size = MAP_APPFONT( 135, 8 );
    };
    FixedText RID_PA_TXT_COMMENT
    {
        Pos = MAP_APPFONT( 10, 130 );
        Size = MAP_APPFONT( 40, 8 );
        Text [ en-US ] = "Comment:";
    };
    FixedText RID_PA_TXT_COMMENT_STRING
    {
        Pos = MAP_APPFONT( 55, 130 );
        Size = MAP_APPFONT( 135, 8 );
    };
    PushButton RID_PA_BTN_CONF
    {
        Pos = MAP_APPFONT( 190, 15 );
        Size = MAP_APPFONT( 60, 12 );
        Text [ en-US ] = "Properties...";
    };
    PushButton RID_PA_BTN_RENAME
    {
        Pos = MAP_APPFONT( 190, 32 );
        Size = MAP_APPFONT( 60, 12 );
        Text [ en-US ] = "R~ename...";
    };
    PushButton RID_PA_BTN_STD
    {
        Pos = MAP_APPFONT( 190, 49 );
        Size = MAP_APPFONT( 60, 12 );
        Text [ en-US ] = "~Default";
    };
    PushButton RID_PA_BTN_DEL
    {
        Pos = MAP_APPFONT( 190, 66 );
        Size = MAP_APPFONT( 60, 12 );
        Text [ en-US ] = "Remo~ve...";
    };
    PushButton RID_PA_TESTPAGE
    {
        Pos = MAP_APPFONT( 190, 83 );
        Size = MAP_APPFONT( 60, 12 );
        Text [ en-US ] = "Test ~Page";
    };

    PushButton RID_PA_BTN_FONTS
    {
        Pos = MAP_APPFONT( 80, 181 );
        Size = MAP_APPFONT( 70, 12 );
        Text [ en-US ] = "Fon~ts...";
    };
    PushButton RID_PA_BTN_ADD
    {
        Pos = MAP_APPFONT( 5, 181 );
        Size = MAP_APPFONT( 70, 12 );
        Text [ en-US ] = "New Printer...";
    };

    String RID_PA_STR_DEFPRT
    {
        Text [ en-US ] = "Default printer";
    };
    String RID_PA_STR_RENAME
    {
        Text [ en-US ] = "Rename";
    };
    Text [ en-US ] = "Printer Administration";
};

ModalDialog RID_STRINGQUERYDLG
{
    OutputSize = TRUE ;
    SVLook = TRUE ;
    Pos = MAP_APPFONT ( 10 , 10 ) ;
    Size = MAP_APPFONT ( 200 , 42 ) ;
    Moveable = TRUE ;
    Closeable = TRUE ;
    FixedText RID_STRQRY_TXT_RENAME
    {
        Pos = MAP_APPFONT ( 6 , 6 ) ;
        Size = MAP_APPFONT ( 130 , 16 ) ;
        Wordbreak=TRUE;
    };
    Edit RID_STRQRY_EDT_NEWNAME
    {
        Border = TRUE ;
        Pos = MAP_APPFONT ( 6 , 23 ) ;
        Size = MAP_APPFONT ( 130 , 12 ) ;
    };
    ComboBox RID_STRQRY_BOX_NEWNAME
    {
        Border = TRUE ;
        DropDown = TRUE;
        Pos = MAP_APPFONT ( 6 , 23 ) ;
        Size = MAP_APPFONT ( 130 , 200 ) ;
    };
    OKButton RID_STRQRY_BTN_OK
    {
        DefButton = TRUE ;
        Pos = MAP_APPFONT ( 145 , 6 ) ;
        Size = MAP_APPFONT ( 50 , 12 ) ;
    };
    CancelButton RID_STRQRY_BTN_CANCEL
    {
        Pos = MAP_APPFONT ( 145 , 23 ) ;
        Size = MAP_APPFONT ( 50 , 12 ) ;
    };
};

String RID_ERR_NOPRINTER
{
    Text [ en-US ] = "Could not open printer %s.";
};

String RID_PA_TXT_TESTPAGE_PRINTED
{
    Text [ en-US ] = "The test page was printed succesfully. Please check the result.";
};

String RID_ERR_NOWRITE
{
    Text [en-US] = "No printers can be installed, because the file system is read-only.\nPlease contact your system administrator.";
};

String RID_QRY_PRTNAME
{
    Text [ en-US ] = "~New printer name";
};

String RID_TXT_TESTPAGE_MODEL
{
    Text [ en-US ] = "Model";
};

String RID_TXT_TESTPAGE_NAME
{
    Text [ en-US ] = "Name";
};

String RID_TXT_TESTPAGE_COMMENT
{
    Text [ en-US ] = "Comment";
};

String RID_TXT_TESTPAGE_QUEUE
{
    Text [ en-US ] = "Queue";
};

String RID_TXT_TESTPAGE_DATE
{
    Text [ en-US ] = "Date";
};

String RID_TXT_TESTPAGE_TIME
{
    Text [ en-US ] = "Time";
};


ModalDialog RID_FONTNAMEDIALOG
{
    OutputSize = TRUE ;
    SVLook = TRUE ;
    Size = MAP_APPFONT ( 255 , 110 ) ;
    Moveable = TRUE ;
    Closeable = TRUE ;
    OKButton RID_FNTNM_BTN_OK
    {
        DefButton = TRUE ;
        Pos = MAP_APPFONT ( 196 , 6 ) ;
        Size = MAP_APPFONT ( 50 , 12 ) ;
        Text [ en-US ] = "Close";
    };
    PushButton RID_FNTNM_BTN_RENAME
    {
        Pos = MAP_APPFONT( 196, 31 );
        Size = MAP_APPFONT( 50, 12 );
        Text [ en-US ] = "Re~name...";
    };
    PushButton RID_FNTNM_BTN_REMOVE
    {
        Pos = MAP_APPFONT ( 196 , 48 ) ;
        Size = MAP_APPFONT ( 50 , 12 ) ;
        Text [ en-US ] = "~Remove...";
    };
    PushButton RID_FNTNM_BTN_IMPORT
    {
        Pos = MAP_APPFONT ( 196 , 65 ) ;
        Size = MAP_APPFONT ( 50 , 12 ) ;
        Text [ en-US ] = "~Add...";
    };
    ListBox RID_FNTNM_LB_FONTS
    {
        Border = TRUE ;
        Sort = TRUE ;
        AutoHScroll = TRUE;
        Pos = MAP_APPFONT ( 6 , 6 ) ;
        Size = MAP_APPFONT ( 185 , 70 ) ;
    };
    FixedText RID_FNTNM_FIXED
    {
        Pos = MAP_APPFONT ( 6 , 81 ) ;
        Size = MAP_APPFONT ( 175 , 24 ) ;
        WordBreak = TRUE;
        Text [ en-US ] = "Note: The fonts are only available to the applications.";
    };
    String RID_FNTNM_STR_RENAME
    {
        Text [ en-US ] = "~New name for %s";
    };
    String RID_FNTNM_STR_TTCRENAME
    {
        Text [ en-US ] = "~New name for %s (%d1 of %d2)";
    };
    String RID_FNTNM_STR_NOTRENAMABLE
    {
        Text [ en-US ] = "The font %s cannot be renamed due to missing write permission.";
    };
    Text [ en-US ] = "Fonts";
};
String RID_BXT_TESTPAGE
{
    Text [ en-US ] = "Test page";
};
String RID_BXT_ENVIRONMENT
{
    Text [ en-US ] = "Wrong environment";
};

String RID_YOU_SURE
{
    Text [ en-US ] = "Are you sure ?";
};

Bitmap RID_BUTTERFLY
{
    File = "butter.png" ;
};

Bitmap RID_BMP_SMALL_PRINTER
{
    File = "print.png";
};

Bitmap RID_BMP_SMALL_FAX
{
    File = "fax.png";
};

Bitmap RID_BMP_SMALL_PDF
{
    File = "pdf.png";
};

Bitmap RID_BMP_PRINTER
{
    File = "printer_large.png";
};

Bitmap RID_BMP_SMALL_PRINTER_HC
{
    File = "printer_16_h.png";
};

Bitmap RID_BMP_SMALL_FAX_HC
{
    File = "fax_16_h.png";
};

Bitmap RID_BMP_SMALL_PDF_HC
{
    File = "printpdf_16_h.png";
};

Bitmap RID_BMP_PRINTER_HC
{
    File = "printer_40x48_h.png";
};


String RID_AFMERROR_OK
{
    Text [ en-US ] = "No error";
};
String RID_AFMERROR_NO_FONT_NAME
{
    Text [ en-US ] = "The metric does not contain a 'FontName' entry.";
};
String RID_AFMERROR_NO_FULL_NAME
{
    Text [ en-US ] = "The metric does not contain a 'FullName' entry.";
};
String RID_AFMERROR_NO_FAMILY_NAME
{
    Text [ en-US ] = "The metric does not contain a 'FamilyName' entry.";
};
String RID_AFMERROR_MOVETO_FAILED
{
    Text [ en-US ] = "The converted metric could not be written.";
};
String RID_AFMERROR_STREAM_READ_FAILED
{
    Text [ en-US ] = "The metric could not be read.";
};
String RID_AFMERROR_STREAM_WRITE_FAILED
{
    Text [ en-US ] = "A temporary file could not be created.";
};
STRING RID_AFMERROR_NOT_A_METRIC
{
    Text [ en-US ] = "The file does not contain a metric.";
};
String RID_AFMERROR_BOX_TXT
{
    Text [ en-US ] = "The metric\n\n%s\n\ncould not be converted for the following reason:\n\n";
};

ModelessDialog RID_PROGRESS_DLG
{
    OutputSize = TRUE ;
    SVLook = TRUE ;
    Pos = MAP_APPFONT ( 10 , 10 ) ;
    Size = MAP_APPFONT ( 150 , 90 ) ;
    Moveable = TRUE ;
    Closeable = FALSE ;
    CancelButton RID_PROGRESS_BTN_CANCEL
    {
        Pos = MAP_APPFONT ( 50 , 71 ) ;
        Size = MAP_APPFONT ( 50 , 14 ) ;
    };
    FixedText RID_PROGRESS_OPERATION_TXT
    {
        Pos = MAP_APPFONT ( 6 , 6 ) ;
        Size = MAP_APPFONT ( 140 , 18 ) ;
    };
    FixedText RID_PROGRESS_PROGRESS_TXT
    {
        Pos = MAP_APPFONT( 6, 48 );
        Size = MAP_APPFONT( 140, 8 );
        Text [ en-US ] = "Progress";
    };
    Window RID_PROGRESS_STATUSBAR
    {
        SVLook = TRUE;
        Border = TRUE;
        Pos = MAP_APPFONT ( 6 , 58 ) ;
        Size = MAP_APPFONT( 140, 8 );
    };
    FixedText RID_PROGRESS_FILENAME_TXT
    {
        Pos = MAP_APPFONT ( 6 , 28 ) ;
        Size = MAP_APPFONT ( 140 , 8 ) ;
    };
    Text [ en-US ] = "Please wait";
};

String RID_OPERATION_CONVERTMETRIC
{
    Text [ en-US ] = "Font metrics conversion";
};


ModalDialog RID_PPDIMPORT_DLG
{
    OutputSize = TRUE ;
    SVLook = TRUE ;
    Size = MAP_APPFONT ( 265 , 225 ) ;
    Moveable = TRUE ;
    Closeable = TRUE ;

    FixedLine RID_PPDIMP_GROUP_PATH
    {
        Pos = MAP_APPFONT( 5, 5 );
        Size = MAP_APPFONT( 200, 8 );
        Text [ en-US ] = "Dri~ver directory";
    };
    FixedText RID_PPDIMP_TXT_PATH
    {
        Pos = MAP_APPFONT( 10, 33 );
        Size = MAP_APPFONT( 190, 8 );
        Text [ en-US ] = "Please select the driver directory.";
    };
    ComboBox RID_PPDIMP_LB_PATH
    {
        Dropdown = TRUE;
        Border = TRUE;
        Sort = TRUE;

        Pos = MAP_APPFONT( 10, 15 );
        Size = MAP_APPFONT( 130, 80 );
    };
    PushButton RID_PPDIMP_BTN_SEARCH
    {
        Pos = MAP_APPFONT( 145, 15 );
        Size = MAP_APPFONT( 50, 14 );
        Text [ en-US ] = "Browse...";
    };

    FixedLine RID_PPDIMP_GROUP_DRIVER
    {
        Pos = MAP_APPFONT( 5, 60 );
        Size = MAP_APPFONT( 200, 8 );
        Text [ en-US ] = "~Selection of drivers";
    };
    MultiListBox RID_PPDIMP_LB_DRIVER
    {
        Border = TRUE;
        Sort = TRUE;
        SimpleMode = TRUE;
        AutoHScroll = TRUE;
        Pos = MAP_APPFONT( 10, 70 );
        Size = MAP_APPFONT( 190, 120 );
    };
    FixedText RID_PPDIMP_TXT_DRIVER
    {
        Pos = MAP_APPFONT( 10, 195 );
        Size = MAP_APPFONT( 190, 60 );
        WordBreak = TRUE;
        Text [ en-US ] = "Please select the drivers to install and press \"%s\".";
    };
    String RID_PPDIMP_STR_LOADINGPPD
    {
        Text [ en-US ] = "Searching for drivers";
    };
    OKButton RID_PPDIMP_BTN_OK
    {
        DefButton = TRUE;
        Pos = MAP_APPFONT( 210, 10 );
        Size = MAP_APPFONT( 50, 14 );
    };
    CancelButton RID_PPDIMP_BTN_CANCEL
    {
        Pos = MAP_APPFONT( 210, 29 );
        Size = MAP_APPFONT( 50, 14 );
    };

    Text [ en-US ] = "Driver Installation";
};

String RID_QUERY_REMOVEDRIVER
{
    Text [ en-US ] = "Do you really want to remove the driver \"%s\"?";
};

String RID_QUERY_REMOVEPRINTER
{
    Text [ en-US ] = "Do you really want to remove this printer ?";
};

String RID_QUERY_REMOVEFONTFROMLIST
{
    Text [ en-US ] = "Do you really want to remove the selected fonts ?";
};

String RID_QUERY_DRIVERUSED
{
    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.";
};

String RID_ERR_REMOVESGENPRT
{
    Text [ en-US ] = "The driver \"%s\" is always needed and can therefore not be removed.";
};

String RID_ERR_REMOVEDRIVERFAILED
{
    Text [ en-US ] = "The driver \"%s1\" could not be removed. It was not possible to remove the file\n\n%s2.";
};

String RID_ERR_REMOVEDEFAULTDRIVER
{
    Text [ en-US ] = "The driver \"%s\" is used by your default printer. Therefore, it cannot be removed.";
};

String RID_ERR_PRINTERNOTREMOVEABLE
{
    Text [ en-US ] = "The printer %s cannot be removed.";
};

String RID_TXT_PRINTERALREADYEXISTS
{
    Text [ en-US ] = "A printer named \"%s\" already exists. This printer will not be imported.";
};

String RID_TXT_PRINTERWITHOUTCOMMAND
{
    Text [ en-US ] = "The printer \"%s\" has no valid configuration and, therefore, cannot be imported.";
};

String RID_TXT_DRIVERDOESNOTEXIST
{
    Text [ en-US ] = "The driver for the printer \"%s1\" (%s2) is not installed. Therefore the printer cannot be imported.";
};

String RID_TXT_PRINTERADDFAILED
{
    Text [ en-US ] = "The printer \"%s\" could not be added.";
};

ModalDialog RID_ADD_PRINTER_DIALOG
{
    OutputSize = TRUE ;
    SVLook = TRUE ;
    Size = MAP_APPFONT ( 240 , 172 ) ;
    Moveable = TRUE ;
    Closeable = TRUE ;

    Control RID_ADDP_CTRL_TITLE
    {
        Pos = MAP_APPFONT( 0, 0 );
        Size = MAP_APPFONT( 240, 26 );
    };
    FixedLine RID_ADDP_LINE
    {
        Pos = MAP_APPFONT( 0, 150 );
        Size = MAP_APPFONT( 240, 2 );
    };
    OKButton RID_ADDP_BTN_FINISH
    {
        Pos = MAP_APPFONT( 185, 155 );
        Size = MAP_APPFONT( 50, 12 );
        Text [ en-US ] = "~Finish";
    };
    CancelButton RID_ADDP_BTN_CANCEL
    {
        Pos = MAP_APPFONT( 5, 155 );
        Size = MAP_APPFONT( 50, 12 );
    };
    PushButton RID_ADDP_BTN_NEXT
    {
        Pos = MAP_APPFONT( 130, 155 );
        Size = MAP_APPFONT( 50, 12 );
        Text [ en-US ] = "~Next >>";
    };
    PushButton RID_ADDP_BTN_PREV
    {
        Pos = MAP_APPFONT( 75, 155 );
        Size = MAP_APPFONT( 50, 12 );
        Text [ en-US ] = "<< ~Back";
    };
    Text [ en-US ] = "Add Printer";
};

TabPage RID_ADDP_PAGE_CHOOSEDRIVER
{
    Hide = TRUE;
    Pos = MAP_APPFONT( 0, 30 );
    Size = MAP_APPFONT( 240, 120 );
    String RID_ADDP_STR_TITLE
    {
        Text [ en-US ] = "Choose a driver";
    };
    FixedText RID_ADDP_CHDRV_TXT_DRIVER
    {
        Pos = MAP_APPFONT( 5, 5 );
        Size = MAP_APPFONT( 230, 8 );
        Text [ en-US ] = "Please select a s~uitable driver.";
    };
    ListBox RID_ADDP_CHDRV_BOX_DRIVER
    {
        Pos = MAP_APPFONT( 5, 15 );
        Size = MAP_APPFONT( 175, 100 );
        Border = TRUE;
        Sort = TRUE;
    };
    PushButton RID_ADDP_CHDRV_BTN_ADD
    {
        Pos = MAP_APPFONT( 185, 15 );
        Size = MAP_APPFONT( 50, 12 );
        Text [ en-US ] = "~Import...";
    };
    PushButton RID_ADDP_CHDRV_BTN_REMOVE
    {
        Pos = MAP_APPFONT( 185, 32 );
        Size = MAP_APPFONT( 50, 12 );
        Text [ en-US ] = "~Delete";
    };
    String RID_ADDP_CHDRV_STR_REMOVE
    {
        Text [ en-US ] = "Delete driver";
    };
};

TabPage RID_ADDP_PAGE_CHOOSEDEV
{
    Hide = TRUE;
    Pos = MAP_APPFONT( 0, 30 );
    Size = MAP_APPFONT( 240, 120 );
    String RID_ADDP_STR_TITLE
    {
        Text [ en-US ] = "Choose a device type";
    };
    FixedText RID_ADDP_CHDEV_TXT_OVER
    {
        Pos = MAP_APPFONT( 40, 25 );
        Size = MAP_APPFONT( 180, 8 );
        Text [ en-US ] = "Do you want to";
    };
    RadioButton RID_ADDP_CHDEV_BTN_PRINTER
    {
        Pos = MAP_APPFONT ( 40, 40 );
        Size = MAP_APPFONT( 180, 10 );
        Text [ en-US ] = "Add a ~printer";
    };
    RadioButton RID_ADDP_CHDEV_BTN_FAX
    {
        Pos = MAP_APPFONT ( 40, 50 );
        Size = MAP_APPFONT( 180, 10 );
        Text [ en-US ] = "Connect a fa~x device";
    };
    RadioButton RID_ADDP_CHDEV_BTN_PDF
    {
        Pos = MAP_APPFONT ( 40, 60 );
        Size = MAP_APPFONT( 180, 10 );
        Text [ en-US ] = "Connect a P~DF converter";
    };
    RadioButton RID_ADDP_CHDEV_BTN_OLD
    {
        Pos = MAP_APPFONT ( 40, 70 );
        Size = MAP_APPFONT( 180, 10 );
        Text [ en-US ] = "~Import printers from a StarOffice installation";
    };
};

TabPage RID_ADDP_PAGE_NAME
{
    Hide = TRUE;
    Pos = MAP_APPFONT( 0, 30 );
    Size = MAP_APPFONT( 240, 120 );
    String RID_ADDP_STR_TITLE
    {
        Text [ en-US ] = "Choose a name";
    };
    FixedText RID_ADDP_NAME_TXT_NAME
    {
        Pos = MAP_APPFONT( 40, 25 );
        Size = MAP_APPFONT( 220, 8 );
        Text [ en-US ] = "Please enter a name for the printer.";
    };
    FixedText RID_ADDP_NAME_TXT_FAXNAME
    {
        Pos = MAP_APPFONT( 40, 25 );
        Size = MAP_APPFONT( 220, 8 );
        Text [ en-US ] = "Please enter a name for the fax connection.";
    };
    FixedText RID_ADDP_NAME_TXT_PDFNAME
    {
        Pos = MAP_APPFONT( 40, 25 );
        Size = MAP_APPFONT( 220, 8 );
        Text [ en-US ] = "Please enter a name for the PDF connection.";
    };
    Edit RID_ADDP_NAME_EDT_NAME
    {
        Pos = MAP_APPFONT( 40, 35 );
        Size = MAP_APPFONT( 160, 12 );
        Border = TRUE;
    };
    Edit RID_ADDP_NAME_EDT_FAXNAME
    {
        Pos = MAP_APPFONT( 40, 35 );
        Size = MAP_APPFONT( 160, 12 );
        Border = TRUE;
        Text [ en-US ] = "Fax printer";
    };
    Edit RID_ADDP_NAME_EDT_PDFNAME
    {
        Pos = MAP_APPFONT( 40, 35 );
        Size = MAP_APPFONT( 160, 12 );
        Border = TRUE;
        Text [ en-US ] = "PDF converter";
    };
    CheckBox RID_ADDP_NAME_BOX_DEFAULT
    {
        Pos = MAP_APPFONT( 40, 50 );
        Size = MAP_APPFONT( 160, 12 );
        Text [ en-US ] = "~Use as default printer";
    };
    CheckBox RID_ADDP_NAME_BOX_FAXSWALLOW
    {
        Pos = MAP_APPFONT( 40, 50 );
        Size = MAP_APPFONT( 160, 12 );
        Text [ en-US ] = "Remo~ve fax number from output";
    };
};

TabPage RID_ADDP_PAGE_COMMAND
{
    Hide = TRUE;
    Pos = MAP_APPFONT( 0, 30 );
    Size = MAP_APPFONT( 240, 120 );
    String RID_ADDP_STR_TITLE
    {
        Text [ en-US ] = "Choose a command line";
    };
    FixedText RID_ADDP_CMD_TXT_COMMAND
    {
        Pos = MAP_APPFONT( 10, 2 );
        Size = MAP_APPFONT( 160, 24 );
        WordBreak = TRUE;
        Text [ en-US ] = "Please enter a c~ommand line appropriate for this device.";
    };
    ComboBox RID_ADDP_CMD_BOX_COMMAND
    {
        Pos = MAP_APPFONT( 10, 30);
        Size = MAP_APPFONT( 220, 85 );
        Border = TRUE;
    };
    ComboBox RID_ADDP_CMD_BOX_PDFCOMMAND
    {
        Pos = MAP_APPFONT( 10, 30);
        Size = MAP_APPFONT( 220, 60 );
        Border = TRUE;
    };
    FixedText RID_ADDP_CMD_TXT_PDFDIR
    {
        Pos = MAP_APPFONT( 10, 95 );
        Size = MAP_APPFONT( 220, 8 );
        Text [ en-US ] = "PDF ~target directory";
    };
    Edit RID_ADDP_CMD_EDT_PDFDIR
    {
        Border = TRUE;
        Pos = MAP_APPFONT( 10, 104 );
        Size = MAP_APPFONT( 190, 12 );
    };
    PushButton RID_ADDP_CMD_BTN_PDFDIR
    {
        Pos = MAP_APPFONT( 205, 104 );
        Size = MAP_APPFONT( 25, 12 );
        Text = "~...";
    };
    PushButton RID_ADDP_CMD_BTN_HELP
    {
        Pos = MAP_APPFONT( 180, 2 );
        Size = MAP_APPFONT( 50, 12 );
        Text [ en-US ] = "~Help";
    };
    String RID_ADDP_CMD_STR_PDFHELP
    {
        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).";
    };
    String RID_ADDP_CMD_STR_FAXHELP
    {
        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).";
    };
};

TabPage RID_ADDP_PAGE_OLDPRINTERS
{
    Hide = TRUE;
    Pos = MAP_APPFONT( 0, 30 );
    Size = MAP_APPFONT( 240, 120 );
    String RID_ADDP_STR_TITLE
    {
        Text [ en-US ] = "Import printers from old versions";
    };
    FixedText RID_ADDP_OLD_TXT_PRINTERS
    {
        Pos = MAP_APPFONT( 10, 10 );
        Size = MAP_APPFONT( 165, 25 );
        WordBreak = TRUE;
        Text [ en-US ] = "~These printers can be imported. Please select the ones you want to import.";
    };
    MultiListBox RID_ADDP_OLD_BOX_PRINTERS
    {
        Pos = MAP_APPFONT( 10, 35 );
        Size = MAP_APPFONT( 165, 80 );
        Border = TRUE;
    };
    PushButton RID_ADDP_OLD_BTN_SELECTALL
    {
        Pos = MAP_APPFONT( 180, 35 );
        Size = MAP_APPFONT( 50, 12 );
        Text [ en-US ] = "~Select All";
    };
};

TabPage RID_ADDP_PAGE_FAXDRIVER
{
    Hide = TRUE;
    Pos = MAP_APPFONT( 0, 30 );
    Size = MAP_APPFONT( 240, 120 );
    String RID_ADDP_STR_TITLE
    {
        Text [ en-US ] = "Choose a driver";
    };
    FixedText RID_ADDP_FAXDRV_TXT_DRIVER
    {
        Pos = MAP_APPFONT( 40, 20 );
        Size = MAP_APPFONT( 160, 19 );
        WordBreak = TRUE;
        Text [ en-US ] = "Use the following driver for this fax connection";
    };
    RadioButton RID_ADDP_FAXDRV_BTN_DEFAULT
    {
        Pos = MAP_APPFONT( 40,40 );
        Size = MAP_APPFONT( 160, 10 );
        Text [ en-US ] = "T~he default driver";
    };
    RadioButton RID_ADDP_FAXDRV_BTN_SELECT
    {
        Pos = MAP_APPFONT( 40, 50 );
        Size = MAP_APPFONT( 160,24 );
        Text [ en-US ] = "A speci~fic driver, to adapt the format to another printer";
    };
};

TabPage RID_ADDP_PAGE_PDFDRIVER
{
    Hide = TRUE;
    Pos = MAP_APPFONT( 0, 30 );
    Size = MAP_APPFONT( 240, 120 );
    String RID_ADDP_STR_TITLE
    {
        Text [ en-US ] = "Choose a driver";
    };
    FixedText RID_ADDP_PDFDRV_TXT_DRIVER
    {
        Pos = MAP_APPFONT( 40, 20 );
        Size = MAP_APPFONT( 160, 19 );
        WordBreak = TRUE;
        Text [ en-US ] = "Use the following driver for this PDF converter";
    };
    RadioButton RID_ADDP_PDFDRV_BTN_DEFAULT
    {
        Pos = MAP_APPFONT( 40, 40 );
        Size = MAP_APPFONT( 160, 10 );
        Text [ en-US ] = "T~he default driver";
    };
    RadioButton RID_ADDP_PDFDRV_BTN_DIST
    {
        Pos = MAP_APPFONT( 40,50 );
        Size = MAP_APPFONT( 160, 10 );
        Text [ en-US ] = "The Adobe D~istiller(tm) driver";
    };
    RadioButton RID_ADDP_PDFDRV_BTN_SELECT
    {
        Pos = MAP_APPFONT( 40, 60 );
        Size = MAP_APPFONT( 160, 24 );
        Text [ en-US ] = "A spec~ific driver, to adapt the format to another printer";
    };
};

String RID_TXT_FONT_ITALIC
{
    Text [ en-US ] = "Italic";
};

String RID_TXT_FONT_OBLIQUE
{
    Text [ en-US ] = "Oblique";
};

String RID_TXT_FONT_THIN
{
    Text [ en-US ] = "Thin";
};

String RID_TXT_FONT_ULTRALIGHT
{
    Text [ en-US ] = "Ultralight";
};

String RID_TXT_FONT_SEMILIGHT
{
    Text [ en-US ] = "Semilight";
};

String RID_TXT_FONT_LIGHT
{
    Text [ en-US ] = "Light";
};

String RID_TXT_FONT_SEMIBOLD
{
    Text [ en-US ] = "Semibold";
};

String RID_TXT_FONT_BOLD
{
    Text [ en-US ] = "Bold";
};

String RID_TXT_FONT_ULTRABOLD
{
    Text [ en-US ] = "Ultrabold";
};

String RID_TXT_FONT_ULTRACONDENSED
{
    Text [ en-US ] = "Ultracondensed";
};

String RID_TXT_FONT_EXTRACONDENSED
{
    Text [ en-US ] = "Extracondensed";
};

String RID_TXT_FONT_CONDENSED
{
    Text [ en-US ] = "Condensed";
};

String RID_TXT_FONT_SEMICONDENSED
{
    Text [ en-US ] = "Semicondensed";
};

String RID_TXT_FONT_SEMIEXPANDED
{
    Text [ en-US ] = "Semiexpanded";
};

String RID_TXT_FONT_EXPANDED
{
    Text [ en-US ] = "Expanded";
};

String RID_TXT_FONT_EXTRAEXPANDED
{
    Text [ en-US ] = "Extraexpanded";
};

String RID_TXT_FONT_ULTRAEXPANDED
{
    Text [ en-US ] = "Ultraexpanded";
};

String RID_TXT_FONT_REGULAR
{
    Text [ en-US ] = "Regular";
};