summaryrefslogtreecommitdiff
path: root/sfx2/source/dialog/filedlghelper.src
blob: 5504cca6d8b6bf6cd5683278165ab77dd1875817 (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
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
/*************************************************************************
 *
 *  $RCSfile: filedlghelper.src,v $
 *
 *  $Revision: 1.1 $
 *
 *  last change: $Author: dv $ $Date: 2001-04-27 10:35:34 $
 *
 *  The Contents of this file are made available subject to the terms of
 *  either of the following licenses
 *
 *         - GNU Lesser General Public License Version 2.1
 *         - Sun Industry Standards Source License Version 1.1
 *
 *  Sun Microsystems Inc., October, 2000
 *
 *  GNU Lesser General Public License Version 2.1
 *  =============================================
 *  Copyright 2000 by Sun Microsystems, Inc.
 *  901 San Antonio Road, Palo Alto, CA 94303, USA
 *
 *  This library is free software; you can redistribute it and/or
 *  modify it under the terms of the GNU Lesser General Public
 *  License version 2.1, as published by the Free Software Foundation.
 *
 *  This library 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 for more details.
 *
 *  You should have received a copy of the GNU Lesser General Public
 *  License along with this library; if not, write to the Free Software
 *  Foundation, Inc., 59 Temple Place, Suite 330, Boston,
 *  MA  02111-1307  USA
 *
 *
 *  Sun Industry Standards Source License Version 1.1
 *  =================================================
 *  The contents of this file are subject to the Sun Industry Standards
 *  Source License Version 1.1 (the "License"); You may not use this file
 *  except in compliance with the License. You may obtain a copy of the
 *  License at http://www.openoffice.org/license.html.
 *
 *  Software provided under this License is provided on an "AS IS" basis,
 *  WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING,
 *  WITHOUT LIMITATION, WARRANTIES THAT THE SOFTWARE IS FREE OF DEFECTS,
 *  MERCHANTABLE, FIT FOR A PARTICULAR PURPOSE, OR NON-INFRINGING.
 *  See the License for the specific provisions governing your rights and
 *  obligations concerning the Software.
 *
 *  The Initial Developer of the Original Code is: Sun Microsystems, Inc.
 *
 *  Copyright: 2000 by Sun Microsystems, Inc.
 *
 *  All Rights Reserved.
 *
 *  Contributor(s): _______________________________________
 *
 *
 ************************************************************************/

// includes ******************************************************************
#include "explorer.hrc"
//#include "filedlghelper.hrc"
//#include "helpid.hrc"

// strings *******************************************************************

String STR_SFX_FILEDLG_ACTUALVERSION
{
    Text = "Aktuelle Version" ;
    Text [ English ] = "Actual version" ;
    Text[ english_us ] = "Current version";
    Text[ portuguese ] = "Verso actual";
    Text[ russian ] = " ";
    Text[ dutch ] = "Actuele versie";
    Text[ french ] = "Version actuelle";
    Text[ spanish ] = "Versin actual";
    Text[ italian ] = "Versione attuale";
    Text[ danish ] = "Aktuel version";
    Text[ swedish ] = "Aktuell version";
    Text[ polish ] = "Wesja bieca";
    Text[ portuguese_brazilian ] = "Actual version";
    Text[ japanese ] = "ŐVްޮ";
    Text[ chinese_simplified ] = "ǰİ汾";
    Text[ chinese_traditional ] = "e";
    Text[ arabic ] = " ";
    Text[ greek ] = " ";
    Text[ korean ] = " ";
    Text[ turkish ] = "Yrrlkteki srm";
};

String STR_SFX_EXPLORERFILE_INSERT
{
    Text = "Einfgen" ;
    Text [ English ] = "Insert" ;
    Text [ portuguese ] = "Inserir" ;
    Text [ english_us ] = "Insert" ;
    Text [ portuguese_brazilian ] = "Einfgen" ;
    Text [ swedish ] = "Infoga" ;
    Text [ danish ] = "Indst" ;
    Text [ italian ] = "Inserisci" ;
    Text [ spanish ] = "Insertar" ;
    Text [ french ] = "Insrer" ;
    Text [ dutch ] = "Invoegen" ;
    Text[ chinese_simplified ] = "";
    Text[ russian ] = "";
    Text[ polish ] = "Wstaw";
    Text[ japanese ] = "}";
    Text[ chinese_traditional ] = "J";
    Text[ arabic ] = "";
    Text[ greek ] = "";
    Text[ korean ] = "";
    Text[ turkish ] = "Ekle";
};

String STR_SFX_EXPLORERFILE_BUTTONINSERT
{
    Text = "~Einfgen" ;
    Text [ English ] = "~Insert" ;
    Text [ portuguese ] = "~Inserir" ;
    Text [ english_us ] = "~Insert" ;
    Text [ portuguese_brazilian ] = "~Einfgen" ;
    Text [ swedish ] = "~Infoga" ;
    Text [ danish ] = "~Indst" ;
    Text [ italian ] = "~Inserici" ;
    Text [ spanish ] = "~Insertar" ;
    Text [ french ] = "~Insrer" ;
    Text [ dutch ] = "~Invoegen" ;
    Text[ chinese_simplified ] = "(~I)";
    Text[ russian ] = "";
    Text[ polish ] = "Wstaw";
    Text[ japanese ] = "}(~I)";
    Text[ chinese_traditional ] = "J(~I)";
    Text[ arabic ] = "";
    Text[ greek ] = "~";
    Text[ korean ] = "(~I)";
    Text[ turkish ] = "Ekle";
};

#if 0

ModalDialog DLG_SFX_EXPLORERFILE
{
    OutputSize = TRUE ;
    SVLook = TRUE ;
    Moveable = TRUE ;
    Closeable = TRUE ;
#if SUPD>=600
    Sizeable = TRUE;
#endif
    HelpId = HID_EXPLORERDLG_FILE ;
    Size = MAP_APPFONT ( 280 , 174 ) ;
    FixedText FT_EXPLORERFILE_CURRENTPATH
    {
        Pos = MAP_APPFONT ( 6 , 6 ) ;
        Size = MAP_APPFONT ( 100 , 10 ) ;
        NoLabel = TRUE ;
    };
    ImageButton BTN_EXPLORERFILE_NEWFOLDER
    {
        TabStop = FALSE ;
        Pos = MAP_APPFONT ( 59 , 6 ) ;
        QuickHelpText = "Neues Verzeichnis anlegen" ;
        QuickHelpText [ English ] = "Create new directory" ;
        QuickHelpText [ english_us ] = "Create new directory" ;
        QuickHelpText [ portuguese_brazilian ] = "Neues Verzeichnis anlegen" ;
        QuickHelpText [ swedish ] = "Skapa ny mapp" ;
        QuickHelpText [ danish ] = "Opret ny mappe" ;
        QuickHelpText [ italian ] = "Crea nuova cartella" ;
        QuickHelpText [ spanish ] = "Crear nuevo directorio" ;
        QuickHelpText [ french ] = "Crer un nouveau rpertoire" ;
        QuickHelpText [ dutch ] = "Nieuwe map maken" ;
        QuickHelpText [ portuguese ] = "Cria novo directrio" ;
        QuickHelpText[ russian ] = "  ";
        QuickHelpText[ polish ] = "Utwrz nowy katalog";
        QuickHelpText[ japanese ] = "V̫ނ̍쐬";
        QuickHelpText[ chinese_simplified ] = "½һĿ¼";
        QuickHelpText[ chinese_traditional ] = "sؤ@ӥؿ";
        QuickHelpText[ arabic ] = "  ";
        QuickHelpText[ greek ] = "  ";
        QuickHelpText[ korean ] = " 丮 ۼ!";
        QuickHelpText[ turkish ] = "Neues Verzeichnis anlegen";
    };
    ImageButton BTN_EXPLORERFILE_LISTVIEW
    {
        TabStop = FALSE ;
        Pos = MAP_APPFONT ( 109 , 6 ) ;
        QuickHelpText = "Liste";
        QuickHelpText [ English ] = "List";
        ButtonImage = Image
        {
            ImageBitmap = Bitmap
            {
                File = "list.bmp" ;
            };
            MaskColor = Color
            {
                Red = 0xC000 ;
                Green = 0xC000 ;
                Blue = 0xC000 ;
            };
        };
        QuickHelpText[ english_us ] = "List";
        QuickHelpText[ portuguese ] = "Lista";
        QuickHelpText[ russian ] = "";
        QuickHelpText[ dutch ] = "Lijst";
        QuickHelpText[ french ] = "Liste";
        QuickHelpText[ spanish ] = "Lista";
        QuickHelpText[ italian ] = "Lista";
        QuickHelpText[ danish ] = "Liste";
        QuickHelpText[ swedish ] = "Lista";
        QuickHelpText[ polish ] = "Lista";
        QuickHelpText[ portuguese_brazilian ] = "List";
        QuickHelpText[ japanese ] = "ؽ";
        QuickHelpText[ chinese_simplified ] = "е";
        QuickHelpText[ chinese_traditional ] = "C";
        QuickHelpText[ arabic ] = "";
        QuickHelpText[ greek ] = "";
        QuickHelpText[ korean ] = "!";
        QuickHelpText[ turkish ] = "Liste";
    };
    ImageButton BTN_EXPLORERFILE_DETAILSVIEW
    {
        TabStop = FALSE ;
        Pos = MAP_APPFONT ( 109 , 6 ) ;
        QuickHelpText = "Details";
        QuickHelpText [ English ] = "Details";
        ButtonImage = Image
        {
            ImageBitmap = Bitmap
            {
                File = "sc06356.bmp" ;
            };
            MaskColor = Color
            {
                Red = 0xC000 ;
                Green = 0xC000 ;
                Blue = 0xC000 ;
            };
        };
        QuickHelpText[ english_us ] = "Details";
        QuickHelpText[ portuguese ] = "Detalhes";
        QuickHelpText[ russian ] = "";
        QuickHelpText[ dutch ] = "Details";
        QuickHelpText[ french ] = "Dtails";
        QuickHelpText[ spanish ] = "Detalles";
        QuickHelpText[ italian ] = "Dettagli";
        QuickHelpText[ danish ] = "Detaljer";
        QuickHelpText[ swedish ] = "Detaljer";
        QuickHelpText[ polish ] = "Szczegy";
        QuickHelpText[ portuguese_brazilian ] = "Details";
        QuickHelpText[ japanese ] = "ڍ";
        QuickHelpText[ chinese_simplified ] = "ϸ";
        QuickHelpText[ chinese_traditional ] = "Ӹ`";
        QuickHelpText[ arabic ] = "";
        QuickHelpText[ greek ] = "";
        QuickHelpText[ korean ] = "!";
        QuickHelpText[ turkish ] = "Details";
    };
    MenuButton BTN_EXPLORERFILE_UP
    {
        TabStop = FALSE ;
        Pos = MAP_APPFONT ( 109 , 6 ) ;
        QuickHelpText = "Ein Verzeichnis hoch" ;
        QuickHelpText [ English ] = "Parent directory" ;
        QuickHelpText [ english_us ] = "Up One Level" ;
        QuickHelpText [ portuguese_brazilian ] = "Ein Verzeichnis hoch" ;
        QuickHelpText [ swedish ] = "Upp en niv" ;
        QuickHelpText [ danish ] = "Et niveau op" ;
        QuickHelpText [ italian ] = "Alla cartella superiore" ;
        QuickHelpText [ spanish ] = "Subir un nivel" ;
        QuickHelpText [ french ] = "Au rpertoire suprieur" ;
        QuickHelpText [ dutch ] = "Een map hoger" ;
        QuickHelpText [ portuguese ] = "Subir um nvel" ;
        QuickHelpText[ russian ] = "  ";
        QuickHelpText[ polish ] = "Katalog wyej";
        QuickHelpText[ japanese ] = "";
        QuickHelpText[ chinese_simplified ] = "һĿ¼";
        QuickHelpText[ chinese_traditional ] = "W@ťؿ";
        QuickHelpText[ arabic ] = "  ";
        QuickHelpText[ greek ] = "   ";
        QuickHelpText[ korean ] = "ѡء!";
        QuickHelpText[ turkish ] = "Ein Verzeichnis hoch";
    };
    Image IMG_FILEDLG_BTN_UP
    {
        ImageBitmap = Bitmap
        {
            File = "prevlev.bmp" ;
        };
        MaskColor = Color
        {
            Red = 0xC000 ;
            Green = 0xC000 ;
            Blue = 0xC000 ;
        };
    };
    PushButton BTN_EXPLORERFILE_STANDARD
    {
        TabStop = FALSE ;
        Pos = MAP_APPFONT ( 59 , 6 ) ;
        QuickHelpText = "Zum Standard-Verzeichnis" ;
        QuickHelpText [ English ] = "Default directory" ;
        QuickHelpText [ portuguese ] = "Para directrio padro" ;
        QuickHelpText [ english_us ] = "Default Directory" ;
        QuickHelpText [ portuguese_brazilian ] = "Zum Standard-Verzeichnis" ;
        QuickHelpText [ swedish ] = "Till standardmappen" ;
        QuickHelpText [ danish ] = "Standardmappe" ;
        QuickHelpText [ italian ] = "Alla cartella standard" ;
        QuickHelpText [ spanish ] = "Directorio predeterminado" ;
        QuickHelpText [ french ] = "Au rpertoire par dfaut" ;
        QuickHelpText [ dutch ] = "Standaardmap" ;
        QuickHelpText[ russian ] = "  ";
        QuickHelpText[ polish ] = "Do katalogu domylnego";
        QuickHelpText[ japanese ] = "Wިڸ؂";
        QuickHelpText[ chinese_simplified ] = "ĬĿ¼";
        QuickHelpText[ chinese_traditional ] = "q{ؿ";
        QuickHelpText[ arabic ] = "  ";
        QuickHelpText[ greek ] = "  ";
        QuickHelpText[ korean ] = "⺻丮!";
        QuickHelpText[ turkish ] = "Default directory";
    };
    Image IMG_FILEDLG_BTN_STD
    {
        ImageBitmap = Bitmap
        {
            File = "std.bmp" ;
        };
        MaskColor = Color
        {
            Red = 0xC000 ;
            Green = 0xC000 ;
            Blue = 0xC000 ;
        };
    };
    PushButton BTN_EXPLORERFILE_LOCAL
    {
        TabStop = FALSE ;
        Pos = MAP_APPFONT ( 109 , 6 ) ;
        QuickHelpText = "Lokales Filesystem" ;
        QuickHelpText [ english_us ] = "Local File System" ;
        QuickHelpText[ portuguese ] = "Sistema local de ficheiros !";
        QuickHelpText[ russian ] = "  ";
        QuickHelpText[ greek ] = "  ";
        QuickHelpText[ dutch ] = "Local file system!";
        QuickHelpText[ french ] = "Systme de fichiers local";
        QuickHelpText[ spanish ] = "Sistema local de archivos";
        QuickHelpText[ italian ] = "Sistema file locale!";
        QuickHelpText[ danish ] = "Local file system";
        QuickHelpText[ swedish ] = "Lokalt filsystem";
        QuickHelpText[ polish ] = "Lokalny system plikw!";
        QuickHelpText[ portuguese_brazilian ] = "Local file system";
        QuickHelpText[ japanese ] = "Local file system!";
        QuickHelpText[ korean ] = "áϡý!";
        QuickHelpText[ chinese_simplified ] = "ֲļϵͳ";
        QuickHelpText[ chinese_traditional ] = "ɨt";
        QuickHelpText[ turkish ] = "Local file system";
        QuickHelpText[ arabic ] = "  ";
    };
    Image IMG_FILEDLG_BTN_LOCAL
    {
        ImageBitmap = Bitmap
        {
            File = "webdrive.bmp" ;
        };
        MaskColor = Color
        {
            Red = 0xC000 ;
            Green = 0xC000 ;
            Blue = 0xC000 ;
        };
    };
    Control CTL_EXPLORERFILE_FILELIST
    {
        TabStop = TRUE ;
        Pos = MAP_APPFONT ( 6 , 26 ) ;
        Size = MAP_APPFONT ( 268 , 85 ) ;
        Border = TRUE ;
    };
    FixedText FT_EXPLORERFILE_FILENAME
    {
        Pos = MAP_APPFONT ( 6 , 118 ) ;
        Size = MAP_APPFONT ( 50 , 10 ) ;
        Text = "Datei~name:" ;
        Text [ English ] = "File~name:" ;
        Text [ english_us ] = "File ~name:" ;
        Text [ portuguese_brazilian ] = "~Nome de ficheiro:" ;
        Text [ swedish ] = "Fil~namn:" ;
        Text [ danish ] = "~Filnavn:" ;
        Text [ italian ] = "Nome ~file:" ;
        Text [ spanish ] = "~Nombre de archivo:" ;
        Text [ french ] = "~Nom de fichier :" ;
        Text [ dutch ] = "Bestands~naam:" ;
        Text [ portuguese ] = "~Nome de ficheiro:" ;
        Text[ chinese_simplified ] = "ļ(~N)";
        Text[ russian ] = " :";
        Text[ polish ] = "Nazwa pliku:";
        Text[ japanese ] = "̧ٖ(~N):";
        Text[ chinese_traditional ] = "ɮצW(~N)";
        Text[ arabic ] = ": ";
        Text[ greek ] = " :";
        Text[ korean ] = " ̸(~N):";
        Text[ turkish ] = "Dosya ad:";
    };
    Edit ED_EXPLORERFILE_FILENAME
    {
        Pos = MAP_APPFONT ( 59 , 117 ) ;
        Size = MAP_APPFONT ( 159 , 12 ) ;
        Border = TRUE ;
    };
    FixedText FT_EXPLORERFILE_FILEVERSION
    {
        Pos = MAP_APPFONT ( 6 , 133 ) ;
        Size = MAP_APPFONT ( 50 , 10 ) ;
        Text = "~Version:" ;
        Text [ English ] = "~Version:";
        Text[ english_us ] = "~Version:";
        Text[ portuguese ] = "~Verso:";
        Text[ russian ] = ":";
        Text[ dutch ] = "~Versie:";
        Text[ french ] = "~Version :";
        Text[ spanish ] = "~Versin:";
        Text[ italian ] = "Versione:";
        Text[ danish ] = "Version:";
        Text[ swedish ] = "~Version:";
        Text[ polish ] = "Wersja:";
        Text[ portuguese_brazilian ] = "~Version:";
        Text[ japanese ] = "ްޮ(~V):";
        Text[ chinese_simplified ] = "汾(~V)";
        Text[ chinese_traditional ] = "(~V)";
        Text[ arabic ] = ":";
        Text[ greek ] = ":";
        Text[ korean ] = "(~V):";
        Text[ turkish ] = "Srm:";
    };
    ListBox LB_EXPLORERFILE_FILEVERSION
    {
        Pos = MAP_APPFONT ( 59 , 132 ) ;
        Size = MAP_APPFONT ( 159 , 40 ) ;
        DropDown = TRUE ;
        AutoSize = TRUE ;
        AutoHScroll = TRUE ;
    };
    FixedText FT_EXPLORERFILE_FILETYPE
    {
        Pos = MAP_APPFONT ( 6 , 148 ) ;
        Size = MAP_APPFONT ( 50 , 10 ) ;
        Text = "Datei~typ:" ;
        Text [ English ] = "File~type:" ;
        Text [ english_us ] = "File ~type:" ;
        Text [ portuguese_brazilian ] = "Datei~typ:" ;
        Text [ swedish ] = "Fil~typ:" ;
        Text [ danish ] = "Fil~type:" ;
        Text [ italian ] = "~Tipo file:" ;
        Text [ spanish ] = "~Tipo de archivo:" ;
        Text [ french ] = "~Type :" ;
        Text [ dutch ] = "Bestands~type:" ;
        Text [ portuguese ] = "~Tipo de ficheiro:" ;
        Text[ chinese_simplified ] = "ļ(~T)";
        Text[ russian ] = " :";
        Text[ polish ] = "Typ pliku:";
        Text[ japanese ] = "̧ق̎(~T):";
        Text[ chinese_traditional ] = "ɮ(~T)";
        Text[ arabic ] = ": ";
        Text[ greek ] = " :";
        Text[ korean ] = " (~T):";
        Text[ turkish ] = "Dosya tipi:";
    };
    ListBox LB_EXPLORERFILE_FILETYPE
    {
        Pos = MAP_APPFONT ( 59 , 147 ) ;
        Size = MAP_APPFONT ( 159 , 80 ) ;
        DropDown = TRUE ;
        AutoSize = TRUE ;
        AutoHScroll = TRUE ;
        Sort = FALSE ;
    };
    CheckBox CB_EXPLORERFILE_READONLY
    {
        Size = MAP_APPFONT ( 80 , 10 ) ;
        Text = "N~ur lesen" ;
        Text [ English ] = "~Read only" ;
        Text [ english_us ] = "~Read-only" ;
        Text [ portuguese_brazilian ] = "Nur lesen" ;
        Text [ swedish ] = "Endast lsning" ;
        Text [ danish ] = "Skrivebeskyttet" ;
        Text [ italian ] = "Sola lettura" ;
        Text [ spanish ] = "Solo ~lectura" ;
        Text [ french ] = "En ~lecture seule" ;
        Text [ dutch ] = "~Alleen lezen" ;
        Text [ portuguese ] = "S ~leitura" ;
        Text[ chinese_simplified ] = "ֻ(~R)";
        Text[ russian ] = "  ";
        Text[ polish ] = "Tylko do odczytu";
        Text[ japanese ] = "ǂݎp(~R)";
        Text[ chinese_traditional ] = "Ū(~R)";
        Text[ arabic ] = " ";
        Text[ greek ] = "  ";
        Text[ korean ] = "б (~R)";
        Text[ turkish ] = "Salt okunur";
    };
    CheckBox CB_EXPLORERFILE_PASSWORD
    {
        Size = MAP_APPFONT ( 120 , 10 ) ;
        Text = "mit ~Passwort speichern" ;
        Text [ English ] = "Save ~with password" ;
        Text [ english_us ] = "Save with ~password" ;
        Text [ portuguese_brazilian ] = "guardar con senha" ;
        Text [ swedish ] = "spara med lsenord" ;
        Text [ danish ] = "gem med adgangskode" ;
        Text [ italian ] = "Sal~va con password" ;
        Text [ spanish ] = "Guardar con c~ontrasea" ;
        Text [ french ] = "Enregistrer avec ~mot de passe" ;
        Text [ dutch ] = "met ~wachtwoord opslaan" ;
        Text [ portuguese ] = "Guardar com ~senha" ;
        Text[ chinese_simplified ] = "ʹ(~P)";
        Text[ russian ] = "  ";
        Text[ polish ] = "Zapisz z ~hasem";
        Text[ japanese ] = "߽ܰޕtŕۑ(~P)";
        Text[ chinese_traditional ] = "ϥαKXxs(~P)";
        Text[ arabic ] = "  ";
        Text[ greek ] = "    ";
        Text[ korean ] = "н (~P)";
        Text[ turkish ] = "ifreyle kaydet";
    };
    CheckBox CB_AUTO_EXTENSION
    {
        Size = MAP_APPFONT ( 140 , 10 ) ;
        Text = "automatische Dateinamens~erweiterung" ;
        Text [ English ] = "automatic file name ~extensions" ;
        Text [ english_us ] = "~Automatic file name extension" ;
        Text [ portuguese_brazilian ] = "automatische Dateinamens~erweiterung" ;
        Text [ swedish ] = "~automatiskt filnamnstillgg" ;
        Text [ danish ] = "automatisk filtypenavn" ;
        Text [ italian ] = "~Estensione automatica del nome del file" ;
        Text [ spanish ] = "~Ampliacin automtica del nombre de archivo" ;
        Text [ french ] = "~Extension automatique du nom de fichier" ;
        Text [ dutch ] = "automatische bestandsnaam~extensie" ;
        Text [ portuguese ] = "Extenso automtica do nome de ficheiro" ;
        Text[ chinese_simplified ] = "Զĵչ(~A)";
        Text[ russian ] = "   ";
        Text[ polish ] = "Automatyczne rozszerzenie nazwy pliku";
        Text[ japanese ] = "I̧ق̖Og(~A)";
        Text[ chinese_traditional ] = "۰ʥ[WɦW(~A)";
        Text[ arabic ] = "   ";
        Text[ greek ] = "   ";
        Text[ korean ] = "ڵ  ̸ Ȯ(~A)";
        Text[ turkish ] = "Otomatik dosya ad uzants";
    };
    CheckBox CB_OPTIONS
    {
        Size = MAP_APPFONT ( 120 , 10 ) ;
        Text = "Filtereinstellungen ~bearbeiten" ;
        Text [ English ] = "~Customize Filtersettings" ;
        Text[ english_us ] = "Edit filter settings";
        Text[ portuguese ] = "~Editar configurao de filtros";
        Text[ russian ] = "~  ";
        Text[ dutch ] = "~Filterinstellingen ~bewerken";
        Text[ french ] = "~Modifier les paramtres de filtres";
        Text[ spanish ] = "Editar ~configuracin de filtros";
        Text[ italian ] = "~Modifica impostazioni filtro";
        Text[ danish ] = "Rediger filterindstillinger";
        Text[ swedish ] = "~redigera filterinstllningar";
        Text[ polish ] = "Edytuj ustawienia filtra";
        Text[ portuguese_brazilian ] = "~Customize Filtersettings";
        Text[ japanese ] = "̨̐ݒҏW";
        Text[ chinese_simplified ] = "༭ɸѡ趨";
        Text[ chinese_traditional ] = "sz]w";
        Text[ arabic ] = "  ";
        Text[ greek ] = "  ";
        Text[ korean ] = "ͼ ";
        Text[ turkish ] = "Filtre ayarlarn dzenle";
    };
    PushButton BTN_EXPLORERFILE_OPEN
    {
        Pos = MAP_APPFONT ( 224 , 117 ) ;
        Size = MAP_APPFONT ( 50 , 14 ) ;
        DefButton = TRUE ;
        Text = "~ffnen" ;
        Text [ English ] = "~Open" ;
        Text [ portuguese ] = "~Abrir" ;
        Text [ english_us ] = "~Open" ;
        Text [ portuguese_brazilian ] = "~Abrir" ;
        Text [ swedish ] = "~ppna" ;
        Text [ danish ] = "bn" ;
        Text [ italian ] = "~Apri" ;
        Text [ spanish ] = "~Abrir" ;
        Text [ french ] = "~Ouvrir" ;
        Text [ dutch ] = "~Openen" ;
        Text[ chinese_simplified ] = "(~O)";
        Text[ russian ] = "~";
        Text[ polish ] = "Otwrz";
        Text[ japanese ] = "J(~O)";
        Text[ chinese_traditional ] = "}(~O)";
        Text[ arabic ] = "";
        Text[ greek ] = "~";
        Text[ korean ] = "(~O)";
        Text[ turkish ] = "A";
    };
    CancelButton BTN_EXPLORERFILE_CANCEL
    {
        Pos = MAP_APPFONT ( 224 , 134 ) ;
        Size = MAP_APPFONT ( 50 , 14 ) ;
    };
    HelpButton BTN_EXPLORERFILE_HELP
    {
        Pos = MAP_APPFONT ( 224 , 151 ) ;
        Size = MAP_APPFONT ( 50 , 14 ) ;
    };
    String STR_EXPLORERFILE_OPEN
    {
        Text = "ffnen" ;
        Text [ English ] = "Open" ;
        Text [ portuguese ] = "Abrir" ;
        Text [ english_us ] = "Open" ;
        Text [ portuguese_brazilian ] = "ffnen" ;
        Text [ swedish ] = "ppna" ;
        Text [ danish ] = "bn" ;
        Text [ italian ] = "Apri" ;
        Text [ spanish ] = "Abrir" ;
        Text [ french ] = "Ouvrir" ;
        Text [ dutch ] = "Openen" ;
        Text[ chinese_simplified ] = "";
        Text[ russian ] = "";
        Text[ polish ] = "Otwrz";
        Text[ japanese ] = "J";
        Text[ chinese_traditional ] = "}";
        Text[ arabic ] = "";
        Text[ greek ] = "";
        Text[ korean ] = "";
        Text[ turkish ] = "A";
    };
    String STR_EXPLORERFILE_SAVE
    {
        Text = "Speichern unter" ;
        Text [ English ] = "Save as" ;
        Text [ portuguese ] = "Guardar como" ;
        Text [ english_us ] = "Save As" ;
        Text [ portuguese_brazilian ] = "Speichern unter" ;
        Text [ swedish ] = "Spara som" ;
        Text [ danish ] = "Gem som" ;
        Text [ italian ] = "Salva con nome" ;
        Text [ spanish ] = "Guardar como" ;
        Text [ french ] = "Enregistrer sous" ;
        Text [ dutch ] = "Opslaan als" ;
        Text[ chinese_simplified ] = "Ϊ";
        Text[ russian ] = " ";
        Text[ polish ] = "Zapisz jako";
        Text[ japanese ] = "Otĕۑ";
        Text[ chinese_traditional ] = "tss";
        Text[ arabic ] = " ";
        Text[ greek ] = " ";
        Text[ korean ] = "ٸ ̸ ";
        Text[ turkish ] = "Farkl kaydet";
    };
    String STR_EXPLORERFILE_BUTTONSAVE
    {
        Text = "~Speichern" ;
        Text [ English ] = "~Save" ;
        Text [ portuguese ] = "~Guardar" ;
        Text [ english_us ] = "~Save" ;
        Text [ portuguese_brazilian ] = "~Speichern" ;
        Text [ swedish ] = "~Spara" ;
        Text [ danish ] = "Gem" ;
        Text [ italian ] = "~Salva" ;
        Text [ spanish ] = "~Guardar" ;
        Text [ french ] = "~Enregistrer" ;
        Text [ dutch ] = "~Opslaan" ;
        Text[ chinese_simplified ] = "(~S)";
        Text[ russian ] = "";
        Text[ polish ] = "Zapisz";
        Text[ japanese ] = "ۑ(~S)";
        Text[ chinese_traditional ] = "xsɮ(~S)";
        Text[ arabic ] = "";
        Text[ greek ] = "";
        Text[ korean ] = "(~S)";
        Text[ turkish ] = "Kaydet";
    };
    String STR_PATHNAME
    {
        Text = "~Pfad:" ;
        Text [ English ] = "~Path:" ;
        Text [ portuguese ] = "~Atalho:" ;
        Text [ english_us ] = "~Path:" ;
        Text [ portuguese_brazilian ] = "~Pfad:" ;
        Text [ swedish ] = "~Skvg:" ;
        Text [ danish ] = "Sti:" ;
        Text [ italian ] = "~Percorso:" ;
        Text [ spanish ] = "~Ruta:" ;
        Text [ french ] = "~Chemin :" ;
        Text [ dutch ] = "~Pad:" ;
        Text[ chinese_simplified ] = "·(~P)";
        Text[ russian ] = ":";
        Text[ polish ] = "cieka:";
        Text[ japanese ] = "߽(~P):";
        Text[ chinese_traditional ] = "|(~P)";
        Text[ arabic ] = ":";
        Text[ greek ] = ":";
        Text[ korean ] = "(~P):";
        Text[ turkish ] = "Veri yolu:";
    };
    String STR_PATHSELECT
    {
        Text = "Pfad auswhlen" ;
        Text [ English ] = "Select path" ;
        Text [ portuguese ] = "Seleccionar atalho" ;
        Text [ english_us ] = "Select Path" ;
        Text [ portuguese_brazilian ] = "Pfad auswhlen" ;
        Text [ swedish ] = "Vlj ut skvg" ;
        Text [ danish ] = "Vlg sti" ;
        Text [ italian ] = "Seleziona percorso" ;
        Text [ spanish ] = "Seleccionar ruta" ;
        Text [ french ] = "Selection d'un chemin" ;
        Text [ dutch ] = "Pad selecteren" ;
        Text[ chinese_simplified ] = "ѡ·";
        Text[ russian ] = " ";
        Text[ polish ] = "Wybierz ciek";
        Text[ japanese ] = "߽̑I";
        Text[ chinese_traditional ] = "ܸ|";
        Text[ arabic ] = " ";
        Text[ greek ] = " ";
        Text[ korean ] = " ";
        Text[ turkish ] = "Veri yolunu se";
    };
    String STR_BUTTONSELECT
    {
        Text = "Au~swhlen" ;
        Text [ English ] = "~Select" ;
        Text[ english_us ] = "~Select";
        Text[ portuguese ] = "~Seleccionar";
        Text[ russian ] = "";
        Text[ dutch ] = "~Selecteren";
        Text[ french ] = "~Slectionner";
        Text[ spanish ] = "~Seleccionar";
        Text[ italian ] = "Seleziona";
        Text[ danish ] = "Marker";
        Text[ swedish ] = "~Vlj ut";
        Text[ polish ] = "Wybierz";
        Text[ portuguese_brazilian ] = "~Select";
        Text[ japanese ] = "I(~S)";
        Text[ chinese_simplified ] = "ѡ(~S)";
        Text[ chinese_traditional ] = "(~S)";
        Text[ arabic ] = "";
        Text[ greek ] = "";
        Text[ korean ] = "(~S)";
        Text[ turkish ] = "Se";
    };

    Image IMG_FILEDLG_DOCUMENT
    {
        ImageBitmap = Bitmap { File = "sn095.bmp" ; };
        MaskColor = Color { Red = 0xFFFF ; Green = 0x0000 ; Blue = 0xFFFF ; };
    };
    Image IMG_FILEDLG_FOLDER
    {
        ImageBitmap = Bitmap { File = "sn03.bmp" ; };
        MaskColor = Color { Red = 0xFFFF ; Green = 0x0000 ; Blue = 0xFFFF ; };
    };
};

Image IMG_SFX_FOLDER
{
    ImageBitmap = Bitmap { File = "sn03.bmp" ; };
    MaskColor = Color { Red = 0xFFFF ; Green = 0x0000 ; Blue = 0xFFFF ; };
};

ModalDialog DLG_IODLG_EDIT_FAVORITES
{
    OutputSize = TRUE;
    HelpId = HID_FILEDLG_EDIT_FAVORITES;
    Size = MAP_APPFONT( 260, 119 );
    Text[ language_user1 ] = "PB: es handelt sich hier um Bookmarks auf Ordner/Verzeichnnise und nicht um Ordner deren Inhalt Bookmarks sind.";
    Text = "Ordner-Bookmarks bearbeiten";
    Text[English] = "Edit folder bookmarks";
    Text[ english_us ] = "Edit Folder Bookmarks";
    Text[ portuguese ] = "Editar pastas correntes";
    Text[ russian ] = "   ";
    Text[ greek ] = "  ";
    Text[ dutch ] = "Bookmaps voor mappen bewerken";
    Text[ french ] = "Gestion des rpertoires courants";
    Text[ spanish ] = "Modificar marcadores carpetas";
    Text[ italian ] = "Modifica bookmark della cartella";
    Text[ danish ] = "Rediger mappe-bogmrker";
    Text[ swedish ] = "Redigera mappbokmrken";
    Text[ polish ] = "Edytuj zakadki folderu";
    Text[ portuguese_brazilian ] = "Edit user folders";
    Text[ japanese ] = "̫ނޯϰҏW";
    Text[ korean ] = " å ";
    Text[ chinese_simplified ] = "༭ļǩ";
    Text[ chinese_traditional ] = "sƧ";
    Text[ arabic ] = "   ";
    Moveable = TRUE;
    Control CTRL_FAVORITES
    {
        Border = TRUE;
        Pos = MAP_APPFONT( 12, 14 );
        Size = MAP_APPFONT( 180, 73 );
        TabStop = TRUE;
    };
    PushButton BTN_FAVORITES_RENAME
    {
        Pos = MAP_APPFONT( 198, 14 );
        Size = MAP_APPFONT( 50, 14 );
        Text = "~Umbenennen...";
        Text[English] = "~Rename...";
        Text[ english_us ] = "Re~name...";
        Text[ portuguese ] = "~Mudar nome...";
        Text[ russian ] = "...";
        Text[ greek ] = "...";
        Text[ dutch ] = "~Naam wijzigen...";
        Text[ french ] = "~Renommer...";
        Text[ spanish ] = "~Cambiar nombre...";
        Text[ italian ] = "Ri~nomina";
        Text[ danish ] = "Omdb...";
        Text[ swedish ] = "~Byt namn...";
        Text[ polish ] = "Zmie nazw...";
        Text[ portuguese_brazilian ] = "~Rename...";
        Text[ japanese ] = "O̕ύX(~N)...";
        Text[ korean ] = "̸ (~N)...";
        Text[ chinese_simplified ] = "(~N)...";
        Text[ chinese_traditional ] = "sRW(~N)...";
        Text[ arabic ] = " ...";
        Text[ turkish ] = "Yeniden adlandr";
    };
    PushButton BTN_FAVORITES_DELETE
    {
        Pos = MAP_APPFONT( 198, 31 );
        Size = MAP_APPFONT( 50, 14 );
        Text = "~Lschen";
        Text[English] = "~Delete";
        Text[ english_us ] = "~Delete";
        Text[ portuguese ] = "E~liminar";
        Text[ russian ] = "";
        Text[ greek ] = "";
        Text[ dutch ] = "~Wissen";
        Text[ french ] = "~Supprimer";
        Text[ spanish ] = "~Eliminar";
        Text[ italian ] = "~Elimina";
        Text[ danish ] = "Slet";
        Text[ swedish ] = "~Radera";
        Text[ polish ] = "Usu";
        Text[ portuguese_brazilian ] = "~Delete";
        Text[ japanese ] = "폜(~D)";
        Text[ korean ] = "(~D)";
        Text[ chinese_simplified ] = "ɾ(~D)";
        Text[ chinese_traditional ] = "R(~D)";
        Text[ arabic ] = "";
        Text[ turkish ] = "Sil";
    };
    PushButton BTN_FAVORITES_RESET
    {
        Pos = MAP_APPFONT( 198, 73 );
        Size = MAP_APPFONT( 50, 14 );
        Text = "~Zurcksetzen";
        Text[English] = "~Reset";
        Text[ english_us ] = "~Reset";
        Text[ portuguese ] = "~Restaurar";
        Text[ russian ] = "";
        Text[ greek ] = "";
        Text[ dutch ] = "~Terugzetten";
        Text[ french ] = "~Restaurer";
        Text[ spanish ] = "~Restablecer";
        Text[ italian ] = "~Ripristina";
        Text[ danish ] = "Nulstil";
        Text[ swedish ] = "~terstll";
        Text[ polish ] = "Zresetuj";
        Text[ portuguese_brazilian ] = "~Reset";
        Text[ japanese ] = "ؾ(~R)";
        Text[ korean ] = "(~R)";
        Text[ chinese_simplified ] = "(~R)";
        Text[ chinese_traditional ] = "](~R)";
        Text[ arabic ] = " ";
        Text[ turkish ] = "Baa al";
    };
    GroupBox GB_FAVORITES
    {
        Pos = MAP_APPFONT( 6, 3 );
        Size = MAP_APPFONT( 248, 90 );
        Text[ language_user1 ] = "PB: es handelt sich hier um Bookmarks auf Ordner/Verzeichnnise und nicht um Ordner deren Inhalt Bookmarks sind.";
        Text = "Ordner-Bookmarks";
        Text[English] = "Folder bookmarks";
        Text[ english_us ] = "Folder Bookmarks";
        Text[ portuguese ] = "Pastas correntes";
        Text[ russian ] = "  ";
        Text[ greek ] = " ";
        Text[ dutch ] = "Bookmarks voor mappen";
        Text[ french ] = "Rpertoires courants";
        Text[ spanish ] = "Marcadores de carpetas";
        Text[ italian ] = "Bookmark della cartella";
        Text[ danish ] = "Mappe-bogmrker";
        Text[ swedish ] = "Mappbokmrken";
        Text[ polish ] = "Zakadka folderu";
        Text[ portuguese_brazilian ] = "User folders";
        Text[ japanese ] = "̫ނޯϰ ";
        Text[ korean ] = " å";
        Text[ chinese_simplified ] = "ļǩ";
        Text[ chinese_traditional ] = "Ƨ";
        Text[ arabic ] = "  ";
        Text[ turkish ] = "Klasr yer iareti";
    };
    OKButton BTN_FAVORITES_OK
    {
        Pos = MAP_APPFONT( 151, 99 );
        Size = MAP_APPFONT( 50, 14 );
        DefButton = TRUE;
    };
    CancelButton BTN_FAVORITES_CANCEL
    {
        Pos = MAP_APPFONT( 204, 99 );
        Size = MAP_APPFONT( 50, 14 );
    };
    Text[ turkish ] = "Klasr yer iaretlerini dzenle";
};

ModalDialog DLG_IODLG_NEW_FAVORITE
{
    OutputSize = TRUE;
    Size = MAP_APPFONT( 165, 44 );
    Text[ language_user1 ] = "PB: es handelt sich hier um Bookmarks auf Ordner/Verzeichnnise und nicht um Ordner deren Inhalt Bookmarks sind.";
    Text = "Neues Ordner-Bookmark";
    Text[English] = "New Folder Bookmark";
    Text[ english_us ] = "New Folder Bookmark";
    Text[ portuguese ] = "Nova pasta corrente";
    Text[ russian ] = "   ";
    Text[ greek ] = "  ";
    Text[ dutch ] = "Nieuwe bookmark voor mappen";
    Text[ french ] = "Nouveau rpertoire courant";
    Text[ spanish ] = "Nuevo marcador carpeta";
    Text[ italian ] = "Nuovo bookmark cartella";
    Text[ danish ] = "Nyt mappe-bogmrke";
    Text[ swedish ] = "Nytt mappbokmrke";
    Text[ polish ] = "Nowa zakadka folderu";
    Text[ portuguese_brazilian ] = "New user folder";
    Text[ japanese ] = "V̫ނޯϰ";
    Text[ korean ] = "  å";
    Text[ chinese_simplified ] = "½ļǩ";
    Text[ chinese_traditional ] = "sWƧ";
    Text[ arabic ] = "   ";
    Moveable = TRUE;
    FixedText FT_NEWFAV_TITLE
    {
        Pos = MAP_APPFONT( 6, 7 );
        Size = MAP_APPFONT( 30, 10 );
        Text = "~Titel";
        Text[English] = "~Title";
        Text[ english_us ] = "~Title";
        Text[ portuguese ] = "~Ttulo";
        Text[ russian ] = "";
        Text[ greek ] = "~";
        Text[ dutch ] = "~Titel";
        Text[ french ] = "~Titre";
        Text[ spanish ] = "~Ttulo";
        Text[ italian ] = "~Titolo";
        Text[ danish ] = "Titel";
        Text[ swedish ] = "~Titel";
        Text[ polish ] = "Tytu";
        Text[ portuguese_brazilian ] = "~Title";
        Text[ japanese ] = "(~T)";
        Text[ korean ] = "(~T)";
        Text[ chinese_simplified ] = "(~T)";
        Text[ chinese_traditional ] = "D(~T)";
        Text[ arabic ] = "";
        Text[ turkish ] = "Balk";
    };
    Edit ED_NEWFAV_TITLE
    {
        Border = TRUE;
        Pos = MAP_APPFONT( 39, 6 );
        Size = MAP_APPFONT( 120, 12 );
    };
    OKButton BTN_NEWFAV_OK
    {
        Pos = MAP_APPFONT( 56, 24 );
        Size = MAP_APPFONT( 50, 14 );
        DefButton = TRUE;
    };
    CancelButton BTN_NEWFAV_CANCEL
    {
        Pos = MAP_APPFONT( 109, 24 );
        Size = MAP_APPFONT( 50, 14 );
    };
    String STR_NEWFAV_RENAME
    {
        Text[ language_user1 ] = "PB: es handelt sich hier um Bookmarks auf Ordner/Verzeichnnise und nicht um Ordner deren Inhalt Bookmarks sind.";
        Text = "Ordner-Bookmark umbenennen";
        Text[English] = "Rename folder bookmark";
        Text[ english_us ] = "Rename Folder Bookmark";
        Text[ portuguese ] = "Mudar nome ao marcador de pasta";
        Text[ russian ] = "   ";
        Text[ greek ] = "  ";
        Text[ dutch ] = "Bookmark voor mappen andere naam geven";
        Text[ french ] = "Renommer le rpertoire courant";
        Text[ spanish ] = "Cambiar nombre marcador carpeta";
        Text[ italian ] = "Rinomina bookmark della cartella";
        Text[ danish ] = "Omdb mappe-bogmrke";
        Text[ swedish ] = "Byt namn p mappbokmrke";
        Text[ polish ] = "Zmie nazw zakadki folderu";
        Text[ portuguese_brazilian ] = "Rename user folder";
        Text[ japanese ] = "̫ނޯϰ̖O̕ύX";
        Text[ korean ] = " å ̸ ";
        Text[ chinese_simplified ] = "ļǩ";
        Text[ chinese_traditional ] = "sRWҥؿ";
        Text[ arabic ] = "    ";
        Text[ turkish ] = "Klasr yer iaretini yeniden adlandr";
    };
    Text[ turkish ] = "Yeni klasr yer iareti";
};

 // menus ********************************************************************

Menu MNU_SFX_PREDEFINEDFOLDERS
{
    ItemList =
    {
        MenuItem
        {
            Identifier = MID_PDFOLDERS_FAVORITES_ADD ;
            HelpId = HID_PDFOLDERS_FAVORITES_ADD;
        };
        MenuItem
        {
            Identifier = MID_PDFOLDERS_FAVORITES_REMOVE ;
            HelpId = HID_PDFOLDERS_FAVORITES_REMOVE;
            Text = "Ordn~er-Bookmarks bearbeiten..." ;
            Text [ ENGLISH ] = "Edi~t Folder Bookmarks..." ;
            Text[ english_us ] = "Edi~t Folder Bookmarks...";
            Text[ portuguese ] = "E~ditar pasta corrente...";
            Text[ russian ] = "   ...";
            Text[ greek ] = "~  ...";
            Text[ dutch ] = "~Bookmarks voor mappen bewerken...";
            Text[ french ] = "~Grer les rpertoires courants...";
            Text[ spanish ] = "Modificar ~marcadores de carpetas...";
            Text[ italian ] = "Modifica bookmark della cart~ella...";
            Text[ danish ] = "Rediger mappe-bogmrker...";
            Text[ swedish ] = "R~edigera mappbokmrken...";
            Text[ polish ] = "Edytuj zakadki folderu...";
            Text[ portuguese_brazilian ] = "Edit user folders...";
            Text[ japanese ] = "̫ނޯϰҏW(~T)...";
            Text[ korean ] = " å (~T)...";
            Text[ chinese_simplified ] = "༭ļǩ(~T)...";
            Text[ chinese_traditional ] = "קҸƧ(~T)...";
            Text[ arabic ] = "   ...";
            Text[ turkish ] = "Klasr yer iaretlerini dzenle...";
        };
        MenuItem
        {
            Separator = TRUE ;
        };
        MenuItem
        {
            Identifier = MID_PDFOLDERS_STANDARD ;
            HelpId = HID_PDFOLDERS_STANDARD ;
            Text = "~Arbeitsverzeichnis" ;
            Text [ English ] = "Working path" ;
            Text [ norwegian ] = "Arbeidsbane" ;
            Text [ italian ] = "C~artella di lavoro" ;
            Text [ portuguese_brazilian ] = "~Standard" ;
            Text [ portuguese ] = "~Directrio de trabalho" ;
            Text [ finnish ] = "Tyhakemisto" ;
            Text [ danish ] = "Arbejdsmappe" ;
            Text [ french ] = "~Dossier de travail" ;
            Text [ swedish ] = "~Arbetskatalog" ;
            Text [ dutch ] = "~Werkmap" ;
            Text [ spanish ] = "~Directorio de trabajo" ;
            Text [ english_us ] = "~My Documents" ;
            Text[ chinese_simplified ] = "Ŀ¼(~M)";
            Text[ russian ] = " ";
            Text[ polish ] = "Folder roboczy";
            Text[ japanese ] = "ܰݸިڸ(~M)";
            Text[ chinese_traditional ] = "u@ؿ(~M)";
            Text[ arabic ] = "";
            Text[ greek ] = "~ ";
            Text[ korean ] = " (~M)";
            Text[ turkish ] = "alma dizini";
        };
        MenuItem
        {
            Identifier = MID_PDFOLDERS_GRAPHICS ;
            HelpId = HID_PDFOLDERS_GRAPHICS ;
            Text = "~Grafiken" ;
            Text [ English ] = "~Graphics" ;
            Text[ english_us ] = "~Graphics";
            Text[ portuguese ] = "~Imagens";
            Text[ russian ] = "";
            Text[ dutch ] = "~Afbeeldingen";
            Text[ french ] = "~Images";
            Text[ spanish ] = "~Imgenes";
            Text[ italian ] = "~Immagini";
            Text[ danish ] = "Grafik";
            Text[ swedish ] = "~Grafik";
            Text[ polish ] = "Grafiki";
            Text[ portuguese_brazilian ] = "~Graphics";
            Text[ japanese ] = "̨(~G)";
            Text[ chinese_simplified ] = "ͼ(~G)";
            Text[ chinese_traditional ] = "ϧ(~G)";
            Text[ arabic ] = "";
            Text[ greek ] = "~";
            Text[ korean ] = "׷(~G)";
            Text[ turkish ] = "emalar";
        };
        MenuItem
        {
            Identifier = MID_PDFOLDERS_TEMPLATE ;
            HelpId = HID_PDFOLDERS_TEMPLATE ;
            Text = "D~okumentvorlagen" ;
            Text [ English ] = "D~ocument Templates" ;
            Text [ english_us ] = "Templates" ;
            Text [ italian ] = "Modelli" ;
            Text [ portuguese_brazilian ] = "Modelos de documento" ;
            Text [ portuguese ] = "Modelos de ~documentos" ;
            Text [ finnish ] = "Asiakirjamallit" ;
            Text [ danish ] = "Dokumentskabeloner" ;
            Text [ french ] = "Modles de document" ;
            Text [ swedish ] = "D~okumentmallar" ;
            Text [ dutch ] = "~Sjablonen" ;
            Text [ spanish ] = "Plantill~as" ;
            Text[ chinese_simplified ] = "ĵʽ";
            Text[ russian ] = " ";
            Text[ polish ] = "Szablony dokumentw";
            Text[ japanese ] = "޷Ăڰ";
            Text[ chinese_traditional ] = "˦";
            Text[ arabic ] = " ";
            Text[ greek ] = " ~";
            Text[ korean ] = " ";
            Text[ turkish ] = "Belge ablonlar";
        };
        MenuItem
        {
            Identifier = MID_PDFOLDERS_GROUPS ;
            HelpId = HID_PDFOLDERS_GROUPS ;
            Text = "G~ruppen" ;
            Text [ English ] = "G~roups" ;
            Text[ english_us ] = "G~roups";
            Text[ portuguese ] = "G~rupos";
            Text[ russian ] = "";
            Text[ dutch ] = "G~roepen";
            Text[ french ] = "Groupes";
            Text[ spanish ] = "Gr~upos";
            Text[ italian ] = "G~ruppi";
            Text[ danish ] = "Gupper";
            Text[ swedish ] = "G~rupper";
            Text[ polish ] = "Grupy";
            Text[ portuguese_brazilian ] = "G~roups";
            Text[ japanese ] = "ٰ(~R)";
            Text[ chinese_simplified ] = "С(~R)";
            Text[ chinese_traditional ] = "s(~R)";
            Text[ arabic ] = "";
            Text[ greek ] = "~";
            Text[ korean ] = "׷(~R)";
            Text[ turkish ] = "Gruplar";
        };
        MenuItem
        {
            Identifier = MID_PDFOLDERS_DESKTOP ;
            HelpId = HID_PDFOLDERS_DESKTOP ;
            Text = "~Desktop" ;
            Text [ English ] = "~Desktop" ;
            Text [ portuguese ] = "~Desktop" ;
            Text [ english_us ] = "Desktop" ;
            Text [ portuguese_brazilian ] = "~Desktop" ;
            Text [ swedish ] = "~Desktop" ;
            Text [ danish ] = "Desktop" ;
            Text [ italian ] = "~Desktop" ;
            Text [ spanish ] = "~Escritorio" ;
            Text [ french ] = "~Desktop" ;
            Text [ dutch ] = "~Desktop" ;
            Text[ chinese_simplified ] = "(~D)";
            Text[ russian ] = " ";
            Text[ polish ] = "Pulpit";
            Text[ japanese ] = "޽į";
            Text[ chinese_traditional ] = "ୱ(~D)";
            Text[ arabic ] = " ";
            Text[ greek ] = "~Desktop";
            Text[ korean ] = "ȭ";
            Text[ turkish ] = "Masast";
        };
        MenuItem
        {
            Separator = TRUE ;
        };
        MenuItem
        {
            Identifier = MID_PDFOLDERS_HISTORY ;
            HelpId = HID_PDFOLDERS_HISTORY;
            Text = "~Zuletzt verwendet" ;
            Text [ English ] = "~Last used" ;
            Text[ english_us ] = "~Last Used";
            Text[ portuguese ] = "~Utilizado por ltimo";
            Text[ russian ] = " ";
            Text[ greek ] = " ~";
            Text[ dutch ] = "Als ~laatste gebruikt";
            Text[ french ] = "~Derniers rpertoires utiliss";
            Text[ spanish ] = "~Usado por ltimo";
            Text[ italian ] = "Usato per ultimo";
            Text[ danish ] = "Senest anvendt";
            Text[ swedish ] = "~Senast anvnd";
            Text[ polish ] = "Ostatnio uyte";
            Text[ portuguese_brazilian ] = "~Last used";
            Text[ japanese ] = "ŋߎgp(~L)";
            Text[ korean ] = " (~L)";
            Text[ chinese_simplified ] = "һʹõ(~L)";
            Text[ chinese_traditional ] = "WϥΪ(~L)";
            Text[ arabic ] = " ";
            Text[ turkish ] = "Son kullanlanlar";
        };
    };
};

String STR_SFX_IODLG_FAVORITES_ADD
{
    Text = "Ordner-~Bookmark hinzufgen..." ;
    Text [ ENGLISH ] = "Add ~folder bookmark..." ;
    Text[ english_us ] = "Add Folder ~Bookmark...";
    Text[ portuguese ] = "~Adicionar pasta corrente...";
    Text[ russian ] = "   ...";
    Text[ greek ] = "  ...";
    Text[ dutch ] = "B~ookmark voor mappen toevoegen...";
    Text[ french ] = "~Ajouter un rpertoire courant...";
    Text[ spanish ] = "~Aadir marcador carpeta...";
    Text[ italian ] = "Aggiungi ~bookmark della cartella...";
    Text[ danish ] = "Tilfj mappe-bogmrke...";
    Text[ swedish ] = "Lgg till mapp~bokmrke...";
    Text[ polish ] = "Dodaj zakadk folderu...";
    Text[ portuguese_brazilian ] = "Add user folder...";
    Text[ japanese ] = "̫ނޯϰlj(~B)...";
    Text[ korean ] = " å ߰(~B)...";
    Text[ chinese_simplified ] = "ļǩ(~B)...";
    Text[ chinese_traditional ] = "sWƧ(~B)...";
    Text[ arabic ] = "   ...";
    Text[ turkish ] = "Klasr yer iareti ekle...";
};

String STR_SFX_IODLG_FAVORITES_REMOVE
{
    Text = "Ordner-~Bookmark '%1' entfernen" ;
    Text [ ENGLISH ] = "Remove Folder Bookmark'%1'" ;
    Text[ english_us ] = "Re~move Folder Bookmark '%1'";
    Text[ portuguese ] = "~Remover marcador de pasta '%1'";
    Text[ russian ] = "    '%1'";
    Text[ greek ] = "   '%1'";
    Text[ dutch ] = "~Bookmark voor mappen '%1' verwijderen";
    Text[ french ] = "~Supprimer le rpertoire courant '%1'";
    Text[ spanish ] = "~Eliminar marcador carpeta '%1'";
    Text[ italian ] = "Elimina ~bookmark della cartella '%1'";
    Text[ danish ] = "Fjern mappe-bogmrke '%1'";
    Text[ swedish ] = "Ta bort mapp~bokmrke '%1'";
    Text[ polish ] = "Usu zakadk folderu '%1'";
    Text[ portuguese_brazilian ] = "Remove user folder '%1'";
    Text[ japanese ] = "̫ނޯϰ '%1' 폜(~M)";
    Text[ korean ] = " -  å'%1'   (~M)";
    Text[ chinese_simplified ] = "ɾļǩ '%1'(~M)";
    Text[ chinese_traditional ] = "RƧ '%1'(~M)";
    Text[ arabic ] = "    '%1'";
    Text[ turkish ] = "'%1' klasr yer iaretini kaldr";
};

String STR_SFX_IODLG_FAVORITES_TITLE
{
    Text = "Titel" ;
    Text [ ENGLISH ] = "Title" ;
    Text[ language_user1 ] = "LS 21.09.99: Es geht um den neuen Namen, den man einem bereits bestehenden Arbeitsverzeichnis zuweisen will. - - - -";
    Text[ english_us ] = "Title";
    Text[ portuguese ] = "Ttulo";
    Text[ russian ] = "";
    Text[ greek ] = "";
    Text[ dutch ] = "Titel";
    Text[ french ] = "Nom";
    Text[ spanish ] = "Ttulo";
    Text[ italian ] = "Titolo";
    Text[ danish ] = "Titel";
    Text[ swedish ] = "Titel";
    Text[ polish ] = "Tytu";
    Text[ portuguese_brazilian ] = "Title";
    Text[ japanese ] = "";
    Text[ korean ] = "";
    Text[ chinese_simplified ] = "";
    Text[ chinese_traditional ] = "D";
    Text[ arabic ] = "";
    Text[ turkish ] = "Balk";
};

String STR_SFX_IODLG_FAVORITES_PATH
{
    Text = "Pfad" ;
    Text [ ENGLISH ] = "Path" ;
    Text[ english_us ] = "Path";
    Text[ portuguese ] = "Atalho";
    Text[ russian ] = "";
    Text[ greek ] = "";
    Text[ dutch ] = "Pad";
    Text[ french ] = "Chemin";
    Text[ spanish ] = "Ruta";
    Text[ italian ] = "Percorso";
    Text[ danish ] = "Sti";
    Text[ swedish ] = "Skvg";
    Text[ polish ] = "cieka";
    Text[ portuguese_brazilian ] = "Path";
    Text[ japanese ] = "߽";
    Text[ korean ] = "";
    Text[ chinese_simplified ] = "·";
    Text[ chinese_traditional ] = "|";
    Text[ arabic ] = "";
    Text[ turkish ] = "Veri yolu";
};
#endif

//******************************************************************** EOF