summaryrefslogtreecommitdiff
path: root/sw/source/ui/utlui/navipi.src
blob: 07c9cc6d79e118a61cdb62a11cc9e598c3717b23 (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
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
/*************************************************************************
 *
 *  $RCSfile: navipi.src,v $
 *
 *  $Revision: 1.6 $
 *
 *  last change: $Author: kz $ $Date: 2000-12-04 11:58:20 $
 *
 *  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): _______________________________________
 *
 *
 ************************************************************************/

#include "cmdid.h"
#include "utlui.hrc"
#include "navipi.hrc"
#include "helpid.h"
#define IMAGE_STDBTN_COLOR Color { Red = 0xC000; Green = 0xC000; Blue = 0xC000; }
Window DLG_NAVIGATION_PI
{
    HelpID = HID_NAVIGATION_PI ;
    OutputSize = TRUE ;
    DialogControl = TRUE ;
    SVLook = TRUE ;
     // Size = MAP_PIXEL( 235, 195 );
     // ZoomInOutputSize = MAP_PIXEL(235, 56);
    Size = MAP_PIXEL ( 282 , 59 ) ;
     //    Closeable = TRUE ;
     //    Zoomable = TRUE ;
     //    Moveable = TRUE ;
     // ZoomIn = FALSE;
    Hide = TRUE ;
     //    HideWhenDeactivate = TRUE ;
     //    Sizeable = TRUE ;
     //    EnableResizing = TRUE ;
     //    Dockable = TRUE ;
     //    Sizeable = TRUE ;
    Text = "Navigator" ;
    Text [ English ] = "Navigator" ;
    Text [ norwegian ] = "Navigator" ;
    Text [ italian ] = "Navigatore" ;
    Text [ portuguese_brazilian ] = "Navegador" ;
    Text [ portuguese ] = "Navegador" ;
    Text [ finnish ] = "Navigaattori" ;
    Text [ danish ] = "Navigator" ;
    Text [ french ] = "Navigateur" ;
    Text [ swedish ] = "Navigator" ;
    Text [ dutch ] = "Navigator" ;
    Text [ spanish ] = "Navegador" ;
    Text [ english_us ] = "Navigator" ;
    ExtraData =
    {
        198;
    };
    /************************************************************************************
    Toolbox ab 323 x
************************************************************************************/
    ImageList IL_CONTENT
    {
        ImageBitmap = Bitmap { File = "scnacon.bmp" ; };
        MaskColor = IMAGE_STDBTN_COLOR ;
        IdList =
        {
            FN_UP ;  // sc20186.bmp
            FN_DOWN ;  // sc20175.bmp
            FN_SELECT_HEADER ;  // sc20179.bmp
            FN_SELECT_FOOTER ;  // sc20177.bmp
            FN_SELECT_FOOTNOTE ;  // sc20182.bmp
            FN_SHOW_CONTENT_BOX ;  // 20233.bmp
            FN_SHOW_ROOT ;  // 20234.bmp
            FN_ITEM_UP ;  // sc20174.bmp
            FN_ITEM_DOWN ;  // sc20171.bmp
            FN_ITEM_LEFT ;  // sc20172.bmp
            FN_ITEM_RIGHT ;  // sc20173.bmp
            FN_DROP_REGION ;  // sc20235.bmp
            FN_OUTLINE_LEVEL ;  // sc20236.bmp
            FN_SELECT_SET_AUTO_BOOKMARK ;  // sc20183.bmp
            FN_DROP_REGION_LINK ;  // 20238
            FN_DROP_REGION_COPY ;  // 20239
            FN_GLOBAL_SWITCH ;  //20244
            FN_GLOBAL_EDIT ;  //20245
            FN_GLOBAL_UPDATE ;  //20246
            FN_GLOBAL_OPEN ;  //20247
            FN_GLOBAL_SAVE_CONTENT ;  //20248
            FN_CREATE_NAVIGATION ;  //20249
        };
        IdCount = { 21 ; };
    };
    Toolbox TB_CONTENT
    {
        Pos = MAP_PIXEL ( 5 , 5 ) ;
        Size = MAP_PIXEL ( 300 , 47 ) ;
        LineCount = 2 ;
        ItemList =
        {
            ToolBoxItem
            {
                Identifier = FN_GLOBAL_SWITCH ;
                HelpID = HID_NAVI_TBX17 ;
                Text = "Umschalten" ;
                Text [ English ] = "Switch" ;
                Text [ english_us ] = "Toggle" ;
                Text [ portuguese_brazilian ] = "Umschalten" ;
                Text [ swedish ] = "Vxla" ;
                Text [ danish ] = "Skift" ;
                Text [ italian ] = "Commuta" ;
                Text [ spanish ] = "Conmutar" ;
                Text [ french ] = "Basculer" ;
                Text [ dutch ] = "Omschakelen" ;
                Text [ portuguese ] = "Comutar" ;
                Text[ chinese_simplified ] = "л";
                Text[ russian ] = "";
                Text[ polish ] = "Przecz";
                Text[ japanese ] = "؂ւ";
                Text[ chinese_traditional ] = "ഫ";
                Text[ arabic ] = "";
                Text[ greek ] = "";
                Text[ korean ] = "";
                Text[ turkish ] = "Deitir";
            };
            ToolBoxItem
            {
                Identifier = FN_CREATE_NAVIGATION ;
                HelpID = HID_NAVI_TBX24 ;
                Text = "Navigation" ;
                Text [ English ] = "Navigation" ;
                Text [ english_us ] = "Navigation" ;
                Text [ portuguese_brazilian ] = "Navigation" ;
                Text [ swedish ] = "Navigation" ;
                Text [ danish ] = "Navigation" ;
                Text [ italian ] = "Navigazione" ;
                Text [ spanish ] = "Navegacin" ;
                Text [ french ] = "Navigation" ;
                Text [ dutch ] = "Navigatie" ;
                Text [ portuguese ] = "Navegao" ;
                Text[ chinese_simplified ] = "";
                Text[ russian ] = "";
                Text[ polish ] = "Nawigacja";
                Text[ japanese ] = "޹ް";
                Text[ chinese_traditional ] = "s";
                Text[ arabic ] = "";
                Text[ greek ] = "";
                Text[ korean ] = "׺̼";
                Text[ turkish ] = "Dolama";
            };
            /*            ToolBoxItem
            {
                Identifier = FN_CONTENT_LB ;
                HelpID = HID_NAVI_TBX1 ;
                Text = "Inhaltstyp" ;
                Text [ English ] = "Content type" ;
                 // Listbox mit Inhaltsauswahl
                Text [ dutch ] = "Inhoudstype" ;
                Text [ english_us ] = "Content Type" ;
                Text [ italian ] = "Tipo di contenuto" ;
                Text [ spanish ] = "Tipo de contenido" ;
                Text [ french ] = "Type de contenu" ;
                Text [ swedish ] = "Innehllstyp" ;
                Text [ danish ] = "Indholdstype" ;
                Text [ portuguese_brazilian ] = "Inhaltstyp" ;
                Text [ portuguese ] = "Tipo de contedo" ;
            };*/
            ToolBoxItem
            {
                Identifier = FN_UP ;
                 //                 ItemBitmap = Bitmap { File = "navup.bmp"; };
                HelpID = HID_NAVI_TBX2 ;
                /* ### ACHTUNG: Neuer Text in Resource? Rckwrts : Rckwrts */
                Text = "Rckwrts" ;
                Text [ English ] = "Backward" ;
                Text [ norwegian ] = "Bakover" ;
                Text [ italian ] = "Indietro" ;
                Text [ portuguese_brazilian ] = "Para trs" ;
                Text [ portuguese ] = "Anterior" ;
                Text [ finnish ] = "Taaaksepin" ;
                Text [ danish ] = "Tilbage" ;
                Text [ french ] = "Prcdent" ;
                Text [ swedish ] = "Bakt" ;
                Text [ dutch ] = "Achteruit" ;
                Text [ spanish ] = "Retroceder" ;
                Text [ english_us ] = "Back" ;
                Text[ chinese_simplified ] = "";
                Text[ russian ] = "";
                Text[ polish ] = "Wstecz";
                Text[ japanese ] = "߂";
                Text[ chinese_traditional ] = "^";
                Text[ arabic ] = " ";
                Text[ greek ] = "";
                Text[ korean ] = "ڷ";
                Text[ turkish ] = "Geri";
            };
            ToolBoxItem
            {
                Identifier = FN_DOWN ;
                 //                 ItemBitmap = Bitmap { File = "navdn.bmp"; };
                HelpID = HID_NAVI_TBX3 ;
                /* ### ACHTUNG: Neuer Text in Resource? Vorwrts : Vorwrts */
                Text = "Vorwrts" ;
                Text [ English ] = "Forward" ;
                Text [ norwegian ] = "Fram" ;
                Text [ italian ] = "Avanti" ;
                Text [ portuguese_brazilian ] = "Para Frente" ;
                Text [ portuguese ] = "Seguinte" ;
                Text [ finnish ] = "Seuraava" ;
                Text [ danish ] = "Fremad" ;
                Text [ french ] = "Suivant" ;
                Text [ swedish ] = "Framt" ;
                Text [ dutch ] = "Voorwaarts" ;
                Text [ spanish ] = "Avanzar" ;
                Text [ english_us ] = "Forward" ;
                Text[ chinese_simplified ] = "ǰ";
                Text[ russian ] = "";
                Text[ polish ] = "Do przodu";
                Text[ japanese ] = "i";
                Text[ chinese_traditional ] = "Ve";
                Text[ arabic ] = " ";
                Text[ greek ] = "";
                Text[ korean ] = "";
                Text[ turkish ] = "leri";
            };
            ToolBoxItem
            {
                Type = TOOLBOXITEM_SEPARATOR ;
            };
            ToolBoxItem
            {
                Type = TOOLBOXITEM_SEPARATOR ;
            };
            ToolBoxItem
            {
                Identifier = FN_DROP_REGION ;
                HelpID = HID_NAVI_TBX4 ;
                Text = "Dragmodus" ;
                Text [ English ] = "Drag Mode" ;
                /* ### ACHTUNG: Neuer Text in Resource? Modus fr Drag & Drop auswhlen : Modus fr Drag & Drop auswhlen */
                DropDown = TRUE ;
                Text [ english_us ] = "Drag Mode" ;
                Text [ italian ] = "Modo drag" ;
                Text [ spanish ] = "Modo Arrastrar" ;
                Text [ french ] = "Mode Glisser" ;
                Text [ dutch ] = "Modus Slepen" ;
                Text [ swedish ] = "Dralge" ;
                Text [ danish ] = "Trkmodus" ;
                Text [ portuguese_brazilian ] = "Dragmodus" ;
                Text [ portuguese ] = "Modo Arrastar" ;
                Text[ chinese_simplified ] = "ҷģʽ";
                Text[ russian ] = " ";
                Text[ polish ] = "Tryb przecigania";
                Text[ japanese ] = "ׯӰ";
                Text[ chinese_traditional ] = "즲Ҧ";
                Text[ arabic ] = " ";
                Text[ greek ] = " ";
                Text[ korean ] = "巡 ";
                Text[ turkish ] = "Srkleme kipi";
            };
            ToolBoxItem
            {
                Type = TOOLBOXITEM_SEPARATOR ;
            };
            ToolBoxItem
            {
                Identifier = FN_ITEM_UP ;
                 //                 ItemBitmap = Bitmap { File = "navchup.bmp"; };
                HelpID = HID_NAVI_TBX5 ;
                Text = "Kapitel hoch" ;
                Text [ English ] = "Chapter up" ;
                Text [ norwegian ] = "Kapittel opp" ;
                Text [ italian ] = "Capitolo superiore" ;
                Text [ portuguese_brazilian ] = "Captulo acima" ;
                Text [ portuguese ] = "Subir um captulo" ;
                Text [ finnish ] = "Edellinen luku" ;
                Text [ danish ] = "Kapitel op" ;
                Text [ french ] = "Chapitre vers le haut" ;
                Text [ swedish ] = "Kapitel uppt" ;
                Text [ dutch ] = "Hoofdstuk hoger" ;
                Text [ spanish ] = "Un captulo hacia arriba" ;
                Text [ english_us ] = "Promote Chapter" ;
                 //HelpText[english_us-wrong] = "Move chapter down";//"Move chapter up"
                Text[ chinese_simplified ] = "";
                Text[ russian ] = " ";
                Text[ polish ] = "Rozdzia do gry";
                Text[ japanese ] = "͂OɈړ";
                Text[ chinese_traditional ] = "ɯ";
                Text[ arabic ] = " ";
                Text[ greek ] = " ";
                Text[ korean ] = " °";
                Text[ turkish ] = "Blm yukar al";
            };
            ToolBoxItem
            {
                Identifier = FN_ITEM_DOWN ;
                 //                 ItemBitmap = Bitmap { File = "navchdn.bmp"; };
                HelpID = HID_NAVI_TBX6 ;
                Text = "Kapitel hinunter" ;
                Text [ English ] = "Chapter down" ;
                Text [ norwegian ] = "Kapittel ned" ;
                Text [ italian ] = "Capitolo inferiore" ;
                Text [ portuguese_brazilian ] = "Captulo abaixo" ;
                Text [ portuguese ] = "Descer um captulo" ;
                Text [ finnish ] = "Seuraava luku" ;
                Text [ danish ] = "Kapitel ned" ;
                Text [ french ] = "Chapitre vers le bas" ;
                Text [ swedish ] = "Kapitel nedt" ;
                Text [ dutch ] = "Hoofdstuk lager" ;
                Text [ spanish ] = "Un captulo hacia abajo" ;
                Text [ english_us ] = "Demote Chapter" ;
                Text[ chinese_simplified ] = "½";
                Text[ russian ] = " ";
                Text[ polish ] = "Rozdzia w d";
                Text[ japanese ] = "͂Ɉړ";
                Text[ chinese_traditional ] = "";
                Text[ arabic ] = " ";
                Text[ greek ] = " ";
                Text[ korean ] = " ߱";
                Text[ turkish ] = "Blm aa ek";
            };
            ToolBoxItem
            {
                Type = TOOLBOXITEM_BREAK ;
            };
            ToolBoxItem
            {
                Identifier = FN_SHOW_CONTENT_BOX ;
                HelpID = HID_NAVI_TBX7 ;
                Text = "Auswahlbox an-/ausschalten" ;
                Text [ English ] = "Toggle Listbox" ;
                Text [ english_us ] = "List Box On/Off" ;
                Text [ italian ] = "Mostra/nascondi la casella di selezione" ;
                Text [ spanish ] = "Mostrar/ocultar cuadro de seleccin" ;
                Text [ french ] = "Afficher/masquer la bote de slection" ;
                Text [ dutch ] = "Keuzebox in-/uitschakelen" ;
                Text [ swedish ] = "Urvalsbox p/av" ;
                Text [ danish ] = "Vis/skjul liste" ;
                Text [ portuguese_brazilian ] = "Auswahlbox an-/ausschalten" ;
                Text [ portuguese ] = "Act./Desactivar caixa de seleco" ;
                Text[ chinese_simplified ] = "ʾ/б";
                Text[ russian ] = "./.  ";
                Text[ polish ] = "Wcz/Wycz pole listy";
                Text[ japanese ] = "ؽޯ /";
                Text[ chinese_traditional ] = "/JM";
                Text[ arabic ] = "/  ";
                Text[ greek ] = "  /";
                Text[ korean ] = "Ʈ ڽ /";
                Text[ turkish ] = "Liste kutusu ak/kapal";
            };
            ToolBoxItem
            {
                Identifier = FN_SHOW_ROOT ;
                HelpID = HID_NAVI_TBX8 ;
                Text = "Inhaltsansicht umschalten" ;
                Text [ English ] = "Toggle content view" ;
                Text [ english_us ] = "Content View" ;
                Text [ italian ] = "Commuta la vista del contenuto" ;
                Text [ spanish ] = "Conmutar visualizacin del contenido" ;
                Text [ french ] = "Basculer l'affichage du contenu" ;
                Text [ dutch ] = "Inhoudsopgave in-/uitschakelen" ;
                Text [ swedish ] = "Vxla innehllsvisning" ;
                Text [ danish ] = "Skift til/fra indholdsvisning" ;
                Text [ portuguese_brazilian ] = "Inhaltsansicht umschalten" ;
                Text [ portuguese ] = "Comutar vista do contedo" ;
                Text[ chinese_simplified ] = "лͼ";
                Text[ russian ] = "  ";
                Text[ polish ] = "Przecz widok treci";
                Text[ japanese ] = "eޭ̐؂芷";
                Text[ chinese_traditional ] = "e˵";
                Text[ arabic ] = "   ";
                Text[ greek ] = "  /";
                Text[ korean ] = " ";
                Text[ turkish ] = "erik grnm";
            };
            ToolBoxItem
            {
                Type = TOOLBOXITEM_SEPARATOR ;
            };
            ToolBoxItem
            {
                Identifier = FN_SELECT_SET_AUTO_BOOKMARK ;
                HelpID = HID_NAVI_TBX9 ;
                 //                 ItemBitmap = Bitmap { File = "navstmp.bmp"; };
                Text = "Merker setzen" ;
                Text [ English ] = "Set Bookmarks" ;
                Text [ norwegian ] = "Sett inn Bokmerker" ;
                Text [ italian ] = "Imposta contrassegno" ;
                Text [ portuguese_brazilian ] = "Definir Marcas" ;
                Text [ portuguese ] = "Definir marca" ;
                Text [ finnish ] = "Aseta kirjanmerkit" ;
                Text [ danish ] = "St bogmrke" ;
                Text [ french ] = "Dfinir un pense-bte" ;
                Text [ swedish ] = "Stt temporrt bokmrke" ;
                Text [ dutch ] = "Merktekens plaatsen" ;
                Text [ spanish ] = "Insertar marca" ;
                Text [ english_us ] = "Set Reminder" ;
                Text[ chinese_simplified ] = "ñ";
                Text[ russian ] = " ";
                Text[ polish ] = "Osad znaczniki";
                Text[ japanese ] = "o~߂t";
                Text[ chinese_traditional ] = "]w";
                Text[ arabic ] = "  ";
                Text[ greek ] = " ";
                Text[ korean ] = "̸˸ ";
                Text[ turkish ] = "Anmsatc yerletir";
            };
            ToolBoxItem
            {
                Type = TOOLBOXITEM_SEPARATOR ;
            };
            ToolBoxItem
            {
                Identifier = FN_SELECT_HEADER ;
                 //                 ItemBitmap = Bitmap { File = "navhead.bmp"; };
                HelpID = HID_NAVI_TBX10 ;
                Text = "Kopfzeile" ;
                Text [ English ] = "Header" ;
                Text [ norwegian ] = "Header" ;
                Text [ italian ] = "Intestazione" ;
                Text [ portuguese_brazilian ] = "Cabealho" ;
                Text [ portuguese ] = "Cabealho" ;
                Text [ finnish ] = "Ylteksti" ;
                Text [ danish ] = "Sidehoved" ;
                Text [ french ] = "En-tte " ;
                Text [ swedish ] = "Sidhuvud" ;
                Text [ dutch ] = "Koptekst" ;
                Text [ spanish ] = "Encabezamiento" ;
                Text [ english_us ] = "Header" ;
                Text[ chinese_simplified ] = "ҳü";
                Text[ russian ] = " ";
                Text[ polish ] = "Nagwek";
                Text[ japanese ] = "ͯ";
                Text[ chinese_traditional ] = "";
                Text[ arabic ] = " ";
                Text[ greek ] = "";
                Text[ korean ] = "Ӹ";
                Text[ turkish ] = "stbilgi";
            };
            ToolBoxItem
            {
                Identifier = FN_SELECT_FOOTER ;
                 //                 ItemBitmap = Bitmap { File = "navfoot.bmp"; };
                HelpID = HID_NAVI_TBX11 ;
                /* ### ACHTUNG: Neuer Text in Resource? Fuzeile : Fuzeile */
                Text = "Fuzeile" ;
                Text [ English ] = "Footer" ;
                Text [ norwegian ] = "Footer" ;
                Text [ italian ] = "Pi di pagina" ;
                Text [ portuguese_brazilian ] = "Rodap" ;
                Text [ portuguese ] = "Rodap" ;
                Text [ finnish ] = "Alateksti" ;
                Text [ danish ] = "Sidefod" ;
                Text [ french ] = "Pied de page" ;
                Text [ swedish ] = "Sidfot" ;
                Text [ dutch ] = "Voettekst" ;
                Text [ spanish ] = "Pie de pgina" ;
                Text [ english_us ] = "Footer" ;
                /* ### ACHTUNG: Neuer Text in Resource? Springen zur Fuzeile : Springen zur Fuzeile */
                Text[ chinese_simplified ] = "ҳ";
                Text[ russian ] = " ";
                Text[ polish ] = "Stopka";
                Text[ japanese ] = "̯";
                Text[ chinese_traditional ] = "";
                Text[ arabic ] = " ";
                Text[ greek ] = "";
                Text[ korean ] = "ٴڱ";
                Text[ turkish ] = "Altbilgi";
            };
            ToolBoxItem
            {
                Identifier = FN_SELECT_FOOTNOTE ;
                 //                 ItemBitmap = Bitmap { File = "navnote.bmp"; };
                HelpID = HID_NAVI_TBX12 ;
                Text = "Anker<->Text" ;
                Text [ English ] = "Anchor<->Text" ;
                Text [ norwegian ] = "Anker<->Tekst" ;
                Text [ italian ] = "Ancoraggio<->Testo" ;
                Text [ portuguese_brazilian ] = "ncora<->Texto" ;
                Text [ portuguese ] = "ncora<->Texto" ;
                Text [ finnish ] = "Ankkuri<->Teksti" ;
                Text [ danish ] = "Anker<->Tekst" ;
                Text [ french ] = "Ancre <-> texte" ;
                Text [ swedish ] = "Ankare<->Text" ;
                Text [ dutch ] = "Anker<->Tekst" ;
                Text [ spanish ] = "Ancla <->Texto" ;
                Text [ english_us ] = "Anchor<->Text" ;
                /* ### ACHTUNG: Neuer Text in Resource? Springen zwischen Funotenankern und dem Funotentext : Springen zwischen Funotenankern und dem Funotentext */
                Text[ chinese_simplified ] = "<->";
                Text[ russian ] = "<->";
                Text[ polish ] = "Kotwica<->Tekst";
                Text[ japanese ] = "r";
                Text[ chinese_traditional ] = "и<->";
                Text[ arabic ] = "<->";
                Text[ greek ] = "<->";
                Text[ korean ] = "<->ؽƮ";
                Text[ turkish ] = "Sabitleyici<->Metin";
            };
            ToolBoxItem
            {
                Type = TOOLBOXITEM_SEPARATOR ;
            };
            ToolBoxItem
            {
                Identifier = FN_OUTLINE_LEVEL ;
                HelpID = HID_NAVI_TBX13 ;
                /* ### ACHTUNG: Neuer Text in Resource? Angezeigte berschriftenebenen : Angezeigte berschriftenebenen */
                Text = "Angezeigte berschriftenebenen" ;
                Text [ English ] = "Number of outline level" ;
                DropDown = TRUE ;
                Text [ dutch ] = "Weergegeven kopregelniveaus" ;
                Text [ english_us ] = "Heading Levels Shown" ;
                Text [ italian ] = "Livelli di intestazioni visualizzati" ;
                Text [ spanish ] = "Niveles de encabezados mostrados" ;
                Text [ french ] = "Niveaux de titres affichs" ;
                Text [ swedish ] = "Visade verskriftsniver" ;
                Text [ danish ] = "Viste overskriftsniveauer" ;
                Text [ portuguese_brazilian ] = "Angezeigte berschriftenebenen" ;
                Text [ portuguese ] = "Nveis de ttulos mostrados" ;
                Text[ chinese_simplified ] = "ʾĴټ";
                Text[ russian ] = "  ";
                Text[ polish ] = "Wywietlone poziomy konspektu";
                Text[ japanese ] = "ײ ";
                Text[ chinese_traditional ] = "ܪj";
                Text[ arabic ] = "  ";
                Text[ greek ] = "  ";
                Text[ korean ] = "ܰ ";
                Text[ turkish ] = "Grntlenen balk dzeyleri";
            };
            ToolBoxItem
            {
                Type = TOOLBOXITEM_SEPARATOR ;
            };
            ToolBoxItem
            {
                Identifier = FN_ITEM_LEFT ;
                HelpID = HID_NAVI_TBX14 ;
                 //                 ItemBitmap = Bitmap { File = "navchlf.bmp"; };
                Text = "Ebene hoch" ;
                Text [ English ] = "Increase Level" ;
                Text [ norwegian ] = "+++Increase Level" ;
                Text [ italian ] = "Livello superiore" ;
                Text [ portuguese_brazilian ] = "Aumentar Nvel" ;
                Text [ portuguese ] = "Subir um nvel" ;
                Text [ finnish ] = "Korota tasoa" ;
                Text [ danish ] = "Niveau op" ;
                Text [ french ] = "Hausser d'un niveau" ;
                Text [ swedish ] = "Hj nivn" ;
                Text [ dutch ] = "Hoger niveau" ;
                Text [ spanish ] = "Subir un nivel" ;
                Text [ english_us ] = "Promote Level" ;
                Text[ chinese_simplified ] = "";
                Text[ russian ] = "   ";
                Text[ polish ] = "Poziom wyej";
                Text[ japanese ] = "قグ";
                Text[ chinese_traditional ] = "ɯ";
                Text[ arabic ] = " ";
                Text[ greek ] = " ";
                Text[ korean ] = " ø";
                Text[ turkish ] = "Dzeyi yukar al";
            };
            ToolBoxItem
            {
                Identifier = FN_ITEM_RIGHT ;
                 //                 ItemBitmap = Bitmap { File = "navchrg.bmp"; };
                HelpID = HID_NAVI_TBX15 ;
                Text = "Ebene senken" ;
                Text [ English ] = "Decrease Level" ;
                Text [ norwegian ] = "+++Decrease Level" ;
                Text [ italian ] = "Livello inferiore" ;
                Text [ portuguese_brazilian ] = "Diminuir Nvel" ;
                Text [ portuguese ] = "Descer um nvel" ;
                Text [ finnish ] = "Laske tasoa" ;
                Text [ danish ] = "Niveau ned" ;
                Text [ french ] = "Abaisser d'un niveau" ;
                Text [ swedish ] = "Snk nivn" ;
                Text [ dutch ] = "Lager niveau" ;
                Text [ spanish ] = "Bajar un nivel" ;
                Text [ english_us ] = "Demote Level" ;
                Text[ chinese_simplified ] = "";
                Text[ russian ] = "   ";
                Text[ polish ] = "Obni poziom";
                Text[ japanese ] = "ق";
                Text[ chinese_traditional ] = "";
                Text[ arabic ] = " ";
                Text[ greek ] = " ";
                Text[ korean ] = " ߱";
                Text[ turkish ] = "Dzeyi aa ek";
            };
        };
    };
    ToolBox TB_GLOBAL
    {
        Pos = MAP_PIXEL ( 5 , 5 ) ;
        Size = MAP_PIXEL ( 300 , 47 ) ;
        LineCount = 1 ;
        Hide = TRUE ;
        ItemList =
        {
            ToolBoxItem
            {
                Identifier = FN_GLOBAL_SWITCH ;
                HelpID = HID_NAVI_TBX17 ;
                Text = "Umschalten" ;
                Text [ English ] = "Switch" ;
                Text [ english_us ] = "Toggle" ;
                Text [ portuguese_brazilian ] = "Umschalten" ;
                Text [ swedish ] = "Vxla" ;
                Text [ danish ] = "Skift" ;
                Text [ italian ] = "Commuta" ;
                Text [ spanish ] = "Conmutar" ;
                Text [ french ] = "Basculer" ;
                Text [ dutch ] = "Omschakelen" ;
                Text [ portuguese ] = "Comutar" ;
                Text[ chinese_simplified ] = "л";
                Text[ russian ] = "";
                Text[ polish ] = "Przecz";
                Text[ japanese ] = "؂ւ";
                Text[ chinese_traditional ] = "ഫ";
                Text[ arabic ] = "";
                Text[ greek ] = "";
                Text[ korean ] = "";
                Text[ turkish ] = "Toggle";
            };
            ToolBoxItem
            {
                Type = TOOLBOXITEM_SEPARATOR ;
            };
            ToolBoxItem
            {
                Identifier = FN_GLOBAL_EDIT ;
                HelpID = HID_NAVI_TBX18 ;
                Text = "Bearbeiten" ;
                Text [ English ] = "Edit" ;
                Text [ english_us ] = "Edit" ;
                Text [ portuguese_brazilian ] = "Bearbeiten" ;
                Text [ swedish ] = "Redigera" ;
                Text [ danish ] = "Rediger" ;
                Text [ italian ] = "Modifica" ;
                Text [ spanish ] = "Editar" ;
                Text [ french ] = "diter" ;
                Text [ dutch ] = "Bewerken" ;
                Text [ portuguese ] = "Editar" ;
                Text[ chinese_simplified ] = "༭";
                Text[ russian ] = "";
                Text[ polish ] = "Edytuj";
                Text[ japanese ] = "ҏW";
                Text[ chinese_traditional ] = "s";
                Text[ arabic ] = "";
                Text[ greek ] = "";
                Text[ korean ] = "";
                Text[ turkish ] = "Dzenle";
            };
            ToolBoxItem
            {
                Identifier = FN_GLOBAL_UPDATE ;
                HelpID = HID_NAVI_TBX19 ;
                Text = "Aktualisieren" ;
                Text [ English ] = "Update" ;
                Text [ english_us ] = "Update" ;
                Text [ portuguese_brazilian ] = "Aktualisieren" ;
                Text [ swedish ] = "Uppdatera" ;
                Text [ danish ] = "Opdater" ;
                Text [ italian ] = "Aggiorna" ;
                Text [ spanish ] = "Actualizar" ;
                Text [ french ] = "Actualiser" ;
                Text [ dutch ] = "Actualiseren" ;
                Text [ portuguese ] = "Actualizar" ;
                Text[ chinese_simplified ] = "";
                Text[ russian ] = "";
                Text[ polish ] = "Aktualizuj";
                Text[ japanese ] = "XV";
                Text[ chinese_traditional ] = "s";
                Text[ arabic ] = "";
                Text[ greek ] = "";
                Text[ korean ] = " Ʈ";
                Text[ turkish ] = "Gncelle";
            };
            ToolBoxItem
            {
                Identifier = FN_GLOBAL_OPEN ;
                HelpID = HID_NAVI_TBX20 ;
                /* ### ACHTUNG: Neuer Text in Resource? Einfgen : Einfgen */
                Text = "Einfgen" ;
                Text [ English ] = "Insert" ;
                Text [ english_us ] = "Insert" ;
                Text [ portuguese_brazilian ] = "Einfgen" ;
                Text [ swedish ] = "Infoga" ;
                Text [ danish ] = "St ind" ;
                Text [ italian ] = "Inserisci" ;
                Text [ spanish ] = "Insertar" ;
                Text [ french ] = "Insertion" ;
                Text [ dutch ] = "Invoegen" ;
                Text [ portuguese ] = "Inserir" ;
                Text[ chinese_simplified ] = "";
                Text[ russian ] = "";
                Text[ polish ] = "Wstaw";
                Text[ japanese ] = "}";
                Text[ chinese_traditional ] = "J";
                Text[ arabic ] = "";
                Text[ greek ] = "";
                Text[ korean ] = "";
                Text[ turkish ] = "Ekle";
            };
            ToolBoxItem
            {
                Type = TOOLBOXITEM_SEPARATOR ;
            };
            ToolBoxItem
            {
                Identifier = FN_GLOBAL_SAVE_CONTENT ;
                HelpID = HID_NAVI_TBX21 ;
                Text = "Inhalte mitspeichern" ;
                Text [ English ] = "Save content" ;
                Text [ english_us ] = "Save Contents as well" ;
                Text [ portuguese_brazilian ] = "Inhalte mitspeichern" ;
                Text [ swedish ] = "Spara med innehll" ;
                Text [ danish ] = "Gem med indhold" ;
                Text [ italian ] = "Salva anche i contenuti" ;
                Text [ spanish ] = "Guardar contenidos" ;
                Text [ french ] = "Enregistrer le contenu" ;
                Text [ dutch ] = "Inhoud opslaan" ;
                Text [ portuguese ] = "Guardar tambm contedos" ;
                Text[ russian ] = " ";
                Text[ polish ] = "Zapisz zawarto";
                Text[ japanese ] = "eۑ";
                Text[ chinese_simplified ] = "";
                Text[ chinese_traditional ] = "xse";
                Text[ arabic ] = " ";
                Text[ greek ] = "   ";
                Text[ korean ] = " ";
                Text[ turkish ] = "erii de kaydet";
            };
            ToolBoxItem
            {
                Type = TOOLBOXITEM_SEPARATOR ;
            };
            ToolBoxItem
            {
                Identifier = FN_ITEM_UP ;
                HelpID = HID_NAVI_TBX22 ;
                /* ### ACHTUNG: Neuer Text in Resource? Nach oben verschieben : Nach unten verschieben */
                Text = "Nach oben verschieben" ;
                Text [ English ] = "Move up" ;
                Text [ english_us ] = "Move Up" ;
                Text [ portuguese_brazilian ] = "Nach unten verschieben" ;
                Text [ swedish ] = "Flytta uppt" ;
                Text [ danish ] = "Flyt opad" ;
                Text [ italian ] = "Sposta verso l'alto" ;
                Text [ spanish ] = "Desplazar hacia arriba" ;
                Text [ french ] = "Dplacer vers le haut" ;
                Text [ dutch ] = "Naar boven verplaatsen" ;
                Text [ portuguese ] = "Mover para cima" ;
                Text[ chinese_simplified ] = "ƶ";
                Text[ russian ] = " ";
                Text[ polish ] = "Przenie w gr";
                Text[ japanese ] = "ֈړ";
                Text[ chinese_traditional ] = "VW";
                Text[ arabic ] = "  ";
                Text[ greek ] = "   ";
                Text[ korean ] = " ̵";
                Text[ turkish ] = "Yukar ta";
            };
            ToolBoxItem
            {
                Identifier = FN_ITEM_DOWN ;
                HelpID = HID_NAVI_TBX23 ;
                /* ### ACHTUNG: Neuer Text in Resource? Nach unten verschieben : Nach oben verschieben */
                Text = "Nach unten verschieben" ;
                Text [ English ] = "Move down" ;
                Text [ english_us ] = "Move Down" ;
                Text [ portuguese_brazilian ] = "Nach oben verschieben" ;
                Text [ swedish ] = "Flytta nedt" ;
                Text [ danish ] = "Flyt nedad" ;
                Text [ italian ] = "Sposta verso il basso" ;
                Text [ spanish ] = "Desplazar hacia abajo" ;
                Text [ french ] = "Dplacer vers le bas" ;
                Text [ dutch ] = "Naar beneden verplaatsen" ;
                Text [ portuguese ] = "Mover para baixo" ;
                Text[ chinese_simplified ] = "ƶ";
                Text[ russian ] = " ";
                Text[ polish ] = "Przenie w d";
                Text[ japanese ] = "ֈړ";
                Text[ chinese_traditional ] = "VU";
                Text[ arabic ] = "  ";
                Text[ greek ] = "   ";
                Text[ korean ] = "Ʒ ̵";
                Text[ turkish ] = "Aa ta";
            };
        };
    };
    /* TreeListBox */
    Control TL_CONTENT
    {
        HelpID = HID_NAVI_CONTENT ;
        Border = TRUE ;
        Pos = MAP_PIXEL ( 5 , 62 ) ;
        Size = MAP_PIXEL ( 274 , 112 ) ;
        TabStop = TRUE ;
        ClipChildren = TRUE ;
        Hide = TRUE ;
    };
    Control TL_GLOBAL
    {
        HelpID = HID_NAVI_GLOBAL ;
        Border = TRUE ;
        Pos = MAP_PIXEL ( 5 , 34 ) ;
        Size = MAP_PIXEL ( 274 , 112 ) ;
        TabStop = TRUE ;
        ClipChildren = TRUE ;
        Hide = TRUE ;
    };
    ListBox LB_DOCS
    {
        Border = TRUE ;
        Pos = MAP_PIXEL ( 5 , 115 ) ;
        Size = MAP_APPFONT ( 150 , 50 ) ;
        DropDown = TRUE ;
    };
    NumericField NF_PAGE
    {
        Border = TRUE ;
        Pos = MAP_PIXEL ( 50 , 29 ) ;
        Size = MAP_PIXEL ( 44 , 20 ) ;
        TabStop = TRUE ;
        Left = TRUE ;
        Repeat = TRUE ;
        Spin = TRUE ;
        Minimum = 1 ;
        First = 1 ;
         // Outline als Default
        Maximum = 5 ;
        Last = 5 ;
        Value = 5 ;
    };
    String ST_OUTLINE_LEVEL
    {
        Text = "Gliederungsebenen" ;
        Text [ English ] = "Outline level" ;
        Text [ dutch ] = "Overzichtsniveaus" ;
        Text [ english_us ] = "Outline Level" ;
        Text [ italian ] = "Livelli di struttura" ;
        Text [ spanish ] = "Niveles del esquema" ;
        Text [ french ] = "Niveaux de plan" ;
        Text [ swedish ] = "Dispositionsniver" ;
        Text [ danish ] = "Dispositionsniveauer" ;
        Text [ portuguese_brazilian ] = "Gliederungsebenen" ;
        Text [ portuguese ] = "Nveis de esquema" ;
        Text[ chinese_simplified ] = "ټ";
        Text[ russian ] = " ";
        Text[ polish ] = "Poziomy konspektu";
        Text[ japanese ] = "ײ ";
        Text[ chinese_traditional ] = "j";
        Text[ arabic ] = " ";
        Text[ greek ] = " ";
        Text[ korean ] = "ܰ ";
        Text[ turkish ] = "Anahat dzeyleri";
    };
    String ST_DRAGMODE
    {
        Text = "Dragmodus" ;
        Text [ English ] = "Drag mode" ;
        Text [ dutch ] = "Dragmodus" ;
        Text [ english_us ] = "Drag Mode" ;
        Text [ italian ] = "Modo trascina" ;
        Text [ spanish ] = "Modo Arrastrar" ;
        Text [ french ] = "Mode Glisser" ;
        Text [ swedish ] = "Dralge" ;
        Text [ danish ] = "Trkmodus" ;
        Text [ portuguese_brazilian ] = "Dragmodus" ;
        Text [ portuguese ] = "Modo Arrastar" ;
        Text[ chinese_simplified ] = "ҷģʽ";
        Text[ russian ] = " ";
        Text[ polish ] = "Tryb przecigania";
        Text[ japanese ] = "ׯ Ӱ";
        Text[ chinese_traditional ] = "즲Ҧ";
        Text[ arabic ] = " ";
        Text[ greek ] = " ";
        Text[ korean ] = "巡 ";
        Text[ turkish ] = "Srkleme kipi";
    };
    String ST_HYPERLINK
    {
        /* ### ACHTUNG: Neuer Text in Resource? Als Hyperlink einfgen : Als Hyperlink einfgen */
        Text = "Als Hyperlink einfgen" ;
        Text [ English ] = "Insert as hyperlink" ;
        Text [ english_us ] = "Insert as Hyperlink" ;
        Text [ portuguese_brazilian ] = "Hyperlink" ;
        Text [ swedish ] = "Infoga som hyperlnk" ;
        Text [ danish ] = "Indst som hyperlink" ;
        Text [ italian ] = "Inserisci come hyperlink" ;
        Text [ spanish ] = "Insertar como hiperenlace" ;
        Text [ french ] = "Insrer comme hyperlien" ;
        Text [ dutch ] = "Als Hyperlink invoegen" ;
        Text [ portuguese ] = "Inserir como hiperligao" ;
        Text[ chinese_simplified ] = "Ӳ";
        Text[ russian ] = "  ";
        Text[ polish ] = "Wstaw jako hipercze";
        Text[ japanese ] = "ʲ߰ݸƂđ}";
        Text[ chinese_traditional ] = "@WsJ";
        Text[ arabic ] = "  ";
        Text[ greek ] = "  -";
        Text[ korean ] = "۸ũ ";
        Text[ turkish ] = "Hyperlink olarak ekle";
    };
    String ST_LINK_REGION
    {
        /* ### ACHTUNG: Neuer Text in Resource? Als Verknpfung einfgen : Als Verknpfung einfgen */
        Text = "Als Verknpfung einfgen" ;
        Text [ English ] = "Insert as link" ;
        Text [ english_us ] = "Insert as Link" ;
        Text [ portuguese_brazilian ] = "Verknpfung" ;
        Text [ swedish ] = "Infoga som lnk" ;
        Text [ danish ] = "Indst som kde" ;
        Text [ italian ] = "Inserisci come collegamento" ;
        Text [ spanish ] = "Insertar como vnculo" ;
        Text [ french ] = "Insrer comme lien" ;
        Text [ dutch ] = "Als koppeling invoegen" ;
        Text [ portuguese ] = "Inserir como ligao" ;
        Text[ chinese_simplified ] = "Ӳ";
        Text[ russian ] = "  ";
        Text[ polish ] = "Wstaw jako cze";
        Text[ japanese ] = "ݸƂđ}";
        Text[ chinese_traditional ] = "@sJ";
        Text[ arabic ] = " ";
        Text[ greek ] = "  ";
        Text[ korean ] = " ";
        Text[ turkish ] = "Balant olarak ekle";
    };
    String ST_COPY_REGION
    {
        /* ### ACHTUNG: Neuer Text in Resource? Als Kopie einfgen : Als Kopie einfgen */
        Text = "Als Kopie einfgen" ;
        Text [ English ] = "Insert as copy" ;
        Text [ english_us ] = "Insert as Copy" ;
        Text [ portuguese_brazilian ] = "Kopie" ;
        Text [ swedish ] = "Infoga som kopia" ;
        Text [ danish ] = "Indst som kopi" ;
        Text [ italian ] = "Inserisci come copia" ;
        Text [ spanish ] = "Insertar como copia" ;
        Text [ french ] = "Insrer comme copie" ;
        Text [ dutch ] = "Als kopie invoegen" ;
        Text [ portuguese ] = "Inserir com cpia" ;
        Text[ chinese_simplified ] = "";
        Text[ russian ] = "  ";
        Text[ polish ] = "Wstaw jako kopi";
        Text[ japanese ] = "߰Ƃđ}";
        Text[ chinese_traditional ] = "@_󴡤J";
        Text[ arabic ] = " ";
        Text[ greek ] = "  ";
        Text[ korean ] = " ";
        Text[ turkish ] = "Kopya olarak ekle";
    };
    String ST_DISPLAY
    {
        Text = "Anzeige" ;
        Text [ English ] = "Display" ;
        Text [ english_us ] = "Display" ;
        Text [ italian ] = "Visualizzazione" ;
        Text [ spanish ] = "Visualizacin" ;
        Text [ french ] = "Affichage" ;
        Text [ dutch ] = "Weergave" ;
        Text [ swedish ] = "Visa" ;
        Text [ danish ] = "Visning" ;
        Text [ portuguese_brazilian ] = "Anzeige" ;
        Text [ portuguese ] = "Mostrar" ;
        Text[ chinese_simplified ] = "ʾ";
        Text[ russian ] = "";
        Text[ polish ] = "Wywietlenie";
        Text[ japanese ] = "\\";
        Text[ chinese_traditional ] = "";
        Text[ arabic ] = "";
        Text[ greek ] = "";
        Text[ korean ] = "ǥ";
        Text[ turkish ] = "Grnt";
    };
    String ST_ACTIVE_VIEW
    {
        Text = "Aktives Fenster" ;
        Text [ English ] = "Active Window" ;
        Text [ dutch ] = "Actief venster" ;
        Text [ english_us ] = "Active Window" ;
        Text [ italian ] = "Finestra attiva" ;
        Text [ spanish ] = "Ventana activa" ;
        Text [ french ] = "Fentre active" ;
        Text [ swedish ] = "Aktivt fnster" ;
        Text [ danish ] = "Aktivt vindue" ;
        Text [ portuguese_brazilian ] = "Aktives Fenster" ;
        Text [ portuguese ] = "Janela activa" ;
        Text[ chinese_simplified ] = "ǰӴ";
        Text[ russian ] = " ";
        Text[ polish ] = "Aktywne okno";
        Text[ japanese ] = "èނȳ޳";
        Text[ language_user1 ] = "?  - - - :  - : ";
        Text[ chinese_traditional ] = "e";
        Text[ arabic ] = " ";
        Text[ greek ] = " ";
        Text[ korean ] = "Ȱ â";
        Text[ turkish ] = "Etkin pencere";
    };
    String ST_HIDDEN
    {
        Text = "versteckt" ;
        Text [ English ] = "hidden" ;
        Text [ english_us ] = "hidden" ;
        Text [ italian ] = "nascosto" ;
        Text [ spanish ] = "oculto" ;
        Text [ french ] = "cach" ;
        Text [ dutch ] = "verborgen" ;
        Text [ swedish ] = "gmd" ;
        Text [ danish ] = "skjult" ;
        Text [ portuguese_brazilian ] = "versteckt" ;
        Text [ portuguese ] = "oculto" ;
        Text[ chinese_simplified ] = "";
        Text[ russian ] = "";
        Text[ polish ] = "ukryty";
        Text[ japanese ] = "B";
        Text[ chinese_traditional ] = "J";
        Text[ arabic ] = "";
        Text[ greek ] = "";
        Text[ korean ] = "";
        Text[ turkish ] = "gizli";
    };
    String ST_ACTIVE
    {
        Text = "aktiv" ;
        Text [ English ] = "active" ;
        Text [ dutch ] = "actief" ;
        Text [ english_us ] = "active" ;
        Text [ italian ] = "attivo" ;
        Text [ spanish ] = "activo" ;
        Text [ french ] = "actif" ;
        Text [ swedish ] = "aktiv" ;
        Text [ danish ] = "aktiv" ;
        Text [ portuguese_brazilian ] = "aktiv" ;
        Text [ portuguese ] = "activo" ;
        Text[ chinese_simplified ] = "";
        Text[ russian ] = "";
        Text[ polish ] = "aktywny";
        Text[ japanese ] = "è";
        Text[ chinese_traditional ] = "E";
        Text[ arabic ] = "";
        Text[ greek ] = "";
        Text[ korean ] = "Ȱ";
        Text[ turkish ] = "etkin";
    };
    String ST_INACTIVE
    {
        Text = "inaktiv" ;
        Text [ English ] = "inactive" ;
        Text [ english_us ] = "inactive" ;
        Text [ italian ] = "inattivo" ;
        Text [ spanish ] = "inactivo" ;
        Text [ french ] = "inactif" ;
        Text [ dutch ] = "inactief" ;
        Text [ swedish ] = "inaktiv" ;
        Text [ danish ] = "inaktiv" ;
        Text [ portuguese_brazilian ] = "inaktiv" ;
        Text [ portuguese ] = "inactivo" ;
        Text[ chinese_simplified ] = "ʧ";
        Text[ russian ] = "";
        Text[ polish ] = "nieaktywny";
        Text[ japanese ] = "èނłȂ";
        Text[ chinese_traditional ] = "";
        Text[ arabic ] = " ";
        Text[ greek ] = " ";
        Text[ korean ] = " Ȱ";
        Text[ turkish ] = "etkin deil";
    };
    String ST_EDIT_ENTRY
    {
        Text = "~Bearbeiten..." ;
        Text [ English ] = "~Edit..." ;
        Text [ english_us ] = "Edit..." ;
        Text [ swedish ] = "Redigera..." ;
        Text [ danish ] = "Rediger..." ;
        Text [ italian ] = "~Modifica..." ;
        Text [ spanish ] = "Edi~tar..." ;
        Text [ french ] = "~Modifier..." ;
        Text [ dutch ] = "~Bewerken..." ;
        Text [ portuguese_brazilian ] = "Bearbeiten..." ;
        Text [ portuguese ] = "~Editar..." ;
        Text[ chinese_simplified ] = "༭...";
        Text[ russian ] = "...";
        Text[ polish ] = "Edytuj...";
        Text[ japanese ] = "ҏW...";
        Text[ chinese_traditional ] = "s...";
        Text[ arabic ] = "...";
        Text[ greek ] = "...";
        Text[ korean ] = "...";
        Text[ turkish ] = "~Dzenle...";
    };
    String ST_UPDATE
    {
        Text = "~Aktualisieren" ;
        Text [ English ] = "Update" ;
        Text [ dutch ] = "~Actualiseren" ;
        Text [ english_us ] = "~Update" ;
        Text [ italian ] = "~Aggiorna" ;
        Text [ spanish ] = "Actuali~zar" ;
        Text [ french ] = "~Actualiser" ;
        Text [ swedish ] = "Uppd~atera" ;
        Text [ danish ] = "Opdater" ;
        Text [ portuguese ] = "~Actualizar" ;
        Text [ portuguese_brazilian ] = "Aktualisieren" ;
        Text[ chinese_simplified ] = "(~U)";
        Text[ russian ] = "";
        Text[ polish ] = "Aktualizuj";
        Text[ japanese ] = "XV(~U)";
        Text[ chinese_traditional ] = "s(~U)";
        Text[ arabic ] = "";
        Text[ greek ] = "~";
        Text[ korean ] = " Ʈ(~U)";
        Text[ turkish ] = "~Gncelle";
    };
    String ST_EDIT_CONTENT
    {
        Text = "Bearbeiten" ;
        Text [ English ] = "Edit" ;
        Text [ english_us ] = "Edit" ;
        Text [ swedish ] = "Redigera" ;
        Text [ danish ] = "Rediger" ;
        Text [ italian ] = "Modifica" ;
        Text [ spanish ] = "Editar" ;
        Text [ french ] = "Edition" ;
        Text [ dutch ] = "Bewerken" ;
        Text [ portuguese_brazilian ] = "Bearbeiten" ;
        Text [ portuguese ] = "Editar" ;
        Text[ chinese_simplified ] = "༭";
        Text[ russian ] = "";
        Text[ polish ] = "Edytuj";
        Text[ japanese ] = "ҏW";
        Text[ chinese_traditional ] = "s";
        Text[ arabic ] = "";
        Text[ greek ] = "";
        Text[ korean ] = "";
        Text[ turkish ] = "Dzenle";
    };
    String ST_INSERT
    {
        /* ### ACHTUNG: Neuer Text in Resource? Einfgen : Einfgen */
        Text = "Einfgen" ;
        Text [ English ] = "Insert" ;
        Text [ norwegian ] = "Sette inn" ;
        Text [ italian ] = "Inserisci" ;
        Text [ portuguese_brazilian ] = "Inserir" ;
        Text [ portuguese ] = "Inserir" ;
        Text [ finnish ] = "Lis" ;
        Text [ danish ] = "Indst" ;
        Text [ french ] = "Insrer" ;
        Text [ swedish ] = "Infoga" ;
        Text [ dutch ] = "Invoegen" ;
        Text [ spanish ] = "Insertar" ;
        Text [ english_us ] = "Insert" ;
        Text[ chinese_simplified ] = "";
        Text[ russian ] = "";
        Text[ polish ] = "Wstaw";
        Text[ japanese ] = "}";
        Text[ chinese_traditional ] = "J";
        Text[ arabic ] = "";
        Text[ greek ] = "";
        Text[ korean ] = "";
        Text[ turkish ] = "Ekle";
    };
    String ST_INDEX
    {
        Text = "~Verzeichnis" ;
        Text [ English ] = "Inde~x" ;
        Text[ english_us ] = "~Index";
        Text[ portuguese ] = "~ndice";
        Text[ russian ] = "";
        Text[ greek ] = "~";
        Text[ dutch ] = "~Index";
        Text[ french ] = "~Index";
        Text[ spanish ] = "~ndice";
        Text[ italian ] = "Indice";
        Text[ danish ] = "Indeks";
        Text[ swedish ] = "~Frteckning";
        Text[ polish ] = "Indeks";
        Text[ portuguese_brazilian ] = "n~ice";
        Text[ japanese ] = "(~I)";
        Text[ korean ] = "(~I)";
        Text[ chinese_simplified ] = "Ŀ¼(~I)";
        Text[ chinese_traditional ] = "(~I)";
        Text[ arabic ] = "";
        Text[ turkish ] = "~Dizin";
    };
    String ST_FILE
    {
        Text = "Datei" ;
        Text [ English ] = "File" ;
        Text [ english_us ] = "File" ;
        Text [ portuguese_brazilian ] = "Datei" ;
        Text [ swedish ] = "Fil" ;
        Text [ danish ] = "Fil" ;
        Text [ italian ] = "File" ;
        Text [ spanish ] = "Archivo" ;
        Text [ french ] = "Fichier" ;
        Text [ dutch ] = "Bestand" ;
        Text [ portuguese ] = "Ficheiro" ;
        Text[ chinese_simplified ] = "ļ";
        Text[ russian ] = "";
        Text[ polish ] = "Plik";
        Text[ japanese ] = "̧";
        Text[ chinese_traditional ] = "ɮ";
        Text[ arabic ] = "";
        Text[ greek ] = "";
        Text[ korean ] = "";
        Text[ turkish ] = "Dosya";
    };
    String ST_NEW_FILE
    {
        Text = "Neues Dokument" ;
        Text [ English ] = "New document" ;
        Text [ english_us ] = "New Document" ;
        Text [ portuguese_brazilian ] = "Neues Dokument" ;
        Text [ swedish ] = "Nytt dokument" ;
        Text [ danish ] = "Nyt dokument" ;
        Text [ italian ] = "Nuovo documento" ;
        Text [ spanish ] = "Nuevo documento" ;
        Text [ french ] = "Nouveau document" ;
        Text [ dutch ] = "Nieuw document" ;
        Text [ portuguese ] = "Novo documento" ;
        Text[ chinese_simplified ] = "½ĵ";
        Text[ russian ] = " ";
        Text[ polish ] = "Nowy dokument";
        Text[ japanese ] = "V޷";
        Text[ chinese_traditional ] = "}ҷs";
        Text[ arabic ] = " ";
        Text[ greek ] = " ";
        Text[ korean ] = " ";
        Text[ turkish ] = "Yeni belge";
    };
    String ST_TEXT
    {
        Text = "Text" ;
        Text [ English ] = "Text" ;
        Text [ english_us ] = "Text" ;
        Text [ portuguese_brazilian ] = "Text" ;
        Text [ swedish ] = "Text" ;
        Text [ danish ] = "Tekst" ;
        Text [ italian ] = "Testo" ;
        Text [ spanish ] = "Texto" ;
        Text [ french ] = "Texte" ;
        Text [ dutch ] = "Tekst" ;
        Text [ portuguese ] = "Texto" ;
        Text[ chinese_simplified ] = "ı";
        Text[ russian ] = "";
        Text[ polish ] = "Tekst";
        Text[ japanese ] = "÷";
        Text[ chinese_traditional ] = "r";
        Text[ arabic ] = "";
        Text[ greek ] = "";
        Text[ korean ] = "ؽƮ";
        Text[ turkish ] = "Metin";
    };
    String ST_DELETE
    {
        /* ### ACHTUNG: Neuer Text in Resource? Lschen : Lschen */
        Text = "Lschen" ;
        Text [ English ] = "Delete" ;
        Text [ norwegian ] = "Slett" ;
        Text [ italian ] = "Elimina" ;
        Text [ portuguese_brazilian ] = "Apagar" ;
        Text [ portuguese ] = "Eliminar" ;
        Text [ finnish ] = "Poista" ;
        Text [ danish ] = "Slet" ;
        Text [ french ] = "Supprimer" ;
        Text [ swedish ] = "Radera" ;
        Text [ dutch ] = "Wissen" ;
        Text [ spanish ] = "Eliminar" ;
        Text [ english_us ] = "Delete" ;
        Text[ chinese_simplified ] = "ɾ";
        Text[ russian ] = "";
        Text[ polish ] = "Usu";
        Text[ japanese ] = "폜";
        Text[ chinese_traditional ] = "R";
        Text[ arabic ] = "";
        Text[ greek ] = "";
        Text[ korean ] = "";
        Text[ turkish ] = "Sil";
    };
    String ST_DELETE_ENTRY
    {
        Text = "~Lschen" ;
        Text [ English ] = "~Delete" ;
        Text [ norwegian ] = "Slett" ;
        Text [ italian ] = "Elimina" ;
        Text [ portuguese_brazilian ] = "Apagar" ;
        Text [ portuguese ] = "E~liminar" ;
        Text [ finnish ] = "Poista" ;
        Text [ danish ] = "Slet" ;
        Text [ french ] = "~Supprimer" ;
        Text [ swedish ] = "~Radera" ;
        Text [ dutch ] = "Wis~sen" ;
        Text [ spanish ] = "~Eliminar" ;
        Text [ english_us ] = "~Delete" ;
        Text[ chinese_simplified ] = "ɾ(~D)";
        Text[ russian ] = "";
        Text[ polish ] = "Usu";
        Text[ japanese ] = "폜(~D)";
        Text[ chinese_traditional ] = "R(~D)";
        Text[ arabic ] = "";
        Text[ greek ] = "";
        Text[ korean ] = "(~D)";
        Text[ turkish ] = "~Sil";
    };
    String ST_UPDATE_SEL
    {
        Text = "Selektion" ;
        Text [ English ] = "Selection" ;
        Text [ english_us ] = "Selection" ;
        Text [ portuguese_brazilian ] = "Selektion" ;
        Text [ swedish ] = "Markering" ;
        Text [ danish ] = "Markering" ;
        Text [ italian ] = "Selezione" ;
        Text [ spanish ] = "Seleccin" ;
        Text [ french ] = "Slection" ;
        Text [ dutch ] = "Selectie" ;
        Text [ portuguese ] = "Seleco" ;
        Text[ chinese_simplified ] = "ѡ";
        Text[ russian ] = "";
        Text[ polish ] = "Selekcja";
        Text[ japanese ] = "I͈";
        Text[ chinese_traditional ] = "襤";
        Text[ arabic ] = "";
        Text[ greek ] = "";
        Text[ korean ] = "";
        Text[ turkish ] = "Seim";
    };
    String ST_UPDATE_INDEX
    {
        Text = "Verzeichnisse" ;
        Text [ English ] = "Indexes" ;
        Text [ english_us ] = "Indexes" ;
        Text [ portuguese_brazilian ] = "Verzeichnisse" ;
        Text [ swedish ] = "Frteckningar" ;
        Text [ danish ] = "Indeks" ;
        Text [ italian ] = "Indici" ;
        Text [ spanish ] = "ndices" ;
        Text [ french ] = "Index" ;
        Text [ dutch ] = "Indices" ;
        Text [ portuguese ] = "ndices" ;
        Text[ chinese_simplified ] = "";
        Text[ russian ] = "";
        Text[ polish ] = "Indeksy";
        Text[ japanese ] = "ڎƍ";
        Text[ chinese_traditional ] = "ؿ";
        Text[ arabic ] = "";
        Text[ greek ] = "";
        Text[ korean ] = "";
        Text[ turkish ] = "Dizin";
    };
    String ST_UPDATE_LINK
    {
        /* ### ACHTUNG: Neuer Text in Resource? Verknpfungen : Verknpfungen */
        Text = "Verknpfungen" ;
        Text [ English ] = "Links" ;
        Text [ english_us ] = "Links" ;
        Text [ portuguese_brazilian ] = "Verknpfungen" ;
        Text [ swedish ] = "Lnkar" ;
        Text [ danish ] = "Kder" ;
        Text [ italian ] = "Collegamenti" ;
        Text [ spanish ] = "Vnculos" ;
        Text [ french ] = "Liens" ;
        Text [ dutch ] = "Koppelingen" ;
        Text [ portuguese ] = "Ligaes" ;
        Text[ chinese_simplified ] = "";
        Text[ russian ] = "";
        Text[ polish ] = "cza";
        Text[ japanese ] = "ݸ";
        Text[ chinese_traditional ] = "|";
        Text[ arabic ] = "";
        Text[ greek ] = "";
        Text[ korean ] = "";
        Text[ turkish ] = "Balant";
    };
    String ST_UPDATE_ALL
    {
        Text = "Alles" ;
        Text [ English ] = "All" ;
        Text [ english_us ] = "All" ;
        Text [ portuguese_brazilian ] = "Alles" ;
        Text [ swedish ] = "Allt" ;
        Text [ danish ] = "Alt" ;
        Text [ italian ] = "Tutto" ;
        Text [ spanish ] = "Todo" ;
        Text [ french ] = "Tout" ;
        Text [ dutch ] = "Alles" ;
        Text [ portuguese ] = "Tudo" ;
        Text[ chinese_simplified ] = "ȫ";
        Text[ russian ] = "";
        Text[ polish ] = "Wszystko";
        Text[ japanese ] = "ׂ";
        Text[ chinese_traditional ] = "";
        Text[ arabic ] = "";
        Text[ greek ] = "";
        Text[ korean ] = "ü";
        Text[ turkish ] = "Tm";
    };
    String ST_REMOVE_INDEX
    {
        Text = "~Verzeichnis aufheben" ;
        Text [ English ] = "Dismiss index" ;
        Text [ english_us ] = "~Remove Index" ;
        Text [ portuguese_brazilian ] = "Verzeichnis aufheben" ;
        Text [ swedish ] = "Upph~v frteckning" ;
        Text [ danish ] = "Ophv indeks" ;
        Text [ italian ] = "Rimuovi indice" ;
        Text [ spanish ] = "Eliminar dire~ctorio" ;
        Text [ french ] = "~Supprimer l'index" ;
        Text [ dutch ] = "~Index opheffen" ;
        Text [ portuguese ] = "~Remover ndice" ;
        Text[ chinese_simplified ] = "ɾĿ¼(~R)";
        Text[ russian ] = " ";
        Text[ polish ] = "Usu indeks";
        Text[ japanese ] = "̉(~R)";
        Text[ chinese_traditional ] = "ؿ(~R)";
        Text[ arabic ] = " ";
        Text[ greek ] = " ";
        Text[ korean ] = " (~R)";
        Text[ turkish ] = "D~izini kaldr";
    };
    String ST_REMOVE_TBL_PROTECTION
    {
        Text = "Schutz ~aufheben" ;
        Text [ English ] = "~Unprotect" ;
        Text [ norwegian ] = "~Ubeskytte" ;
        Text [ italian ] = "Disattiva~ protezione" ;
        Text [ portuguese_brazilian ] = "~Desproteger" ;
        Text [ portuguese ] = "D~esproteger" ;
        Text [ finnish ] = "~Unprotect" ;
        Text [ danish ] = "Ophv beskyttelse" ;
        Text [ french ] = "~Annuler la protection" ;
        Text [ swedish ] = "~Upphv skydd" ;
        Text [ dutch ] = "Beveiliging ~opheffen" ;
        Text [ spanish ] = "~Desproteger" ;
        Text [ english_us ] = "~Unprotect" ;
        Text[ chinese_simplified ] = "ȡ(~U)";
        Text[ russian ] = " ";
        Text[ polish ] = "Usu ochron";
        Text[ japanese ] = "ی̉(~U)";
        Text[ chinese_traditional ] = "O@(~U)";
        Text[ arabic ] = " ";
        Text[ greek ] = " ";
        Text[ korean ] = "ȣ (~U)";
        Text[ turkish ] = "Korumay ~kaldr";
    };
    String ST_INVISIBLE
    {
        Text = "versteckt";
        Text[English] = "hidden";
        Text[ english_us ] = "hidden";
        Text[ portuguese ] = "oculto";
        Text[ russian ] = "";
        Text[ greek ] = "";
        Text[ dutch ] = "verborgen";
        Text[ french ] = "cach";
        Text[ spanish ] = "oculto";
        Text[ italian ] = "Nascosto";
        Text[ danish ] = "skjult";
        Text[ swedish ] = "gmd";
        Text[ polish ] = "schowany";
        Text[ portuguese_brazilian ] = "hidden";
        Text[ japanese ] = "B";
        Text[ korean ] = "";
        Text[ chinese_simplified ] = "";
        Text[ chinese_traditional ] = "J";
        Text[ arabic ] = "";
        Text[ turkish ] = "gizli";
    };
    String ST_BROKEN_LINK
    {
        Text = "Datei nicht gefunden: ";
        Text[English] = "File not found: ";
        Text[ italian ] = "File non trovato: ";
        Text[ portuguese_brazilian ] = "File not found: ";
        Text[ portuguese ] = "Ficheiro no encontrado: ";
        Text[ danish ] = "Fil blev ikke fundet: ";
        Text[ french ] = "Fichier introuvable : ";
        Text[ swedish ] = "Filen har ej hittats: ";
        Text[ dutch ] = "Bestand niet gevonden: ";
        Text[ spanish ] = "Archivo no encontrado: ";
        Text[ english_us ] = "File not found: ";
        Text[ chinese_simplified ] = "ûҵļ ";
        Text[ russian ] = "  :  ";
        Text[ polish ] = "Pliku nie znaleziono:  ";
        Text[ japanese ] = "̧ق‚܂: ";
        Text[ chinese_traditional ] = "SɮסG ";
        Text[ arabic ] = "   : ";
        Text[ greek ] = "   : ";
        Text[ korean ] = " ߰ߵ ʽϴ: ";
        Text[ turkish ] = "Dosya bulunamad: ";
    };
    String ST_RENAME
    {
        Text = "~Umbenennen";
        Text[English] = "Rename";
        Text[ english_us ] = "~Rename";
        Text[ portuguese ] = "~Mudar nome";
        Text[ russian ] = "";
        Text[ greek ] = "";
        Text[ dutch ] = "~Naam wijzigen";
        Text[ french ] = "~Renommer";
        Text[ spanish ] = "Ca~mbiar nombre";
        Text[ italian ] = "Rinomina";
        Text[ danish ] = "Omdb";
        Text[ swedish ] = "~Byt namn";
        Text[ polish ] = "Zmie nazw";
        Text[ portuguese_brazilian ] = "Rename";
        Text[ japanese ] = "O̕ύX(~R)";
        Text[ korean ] = "̸ ٲٱ(~R)";
        Text[ chinese_simplified ] = "(~R)";
        Text[ chinese_traditional ] = "sRW(~R)";
        Text[ arabic ] = " ";
        Text[ turkish ] = "~Yeniden adlandr";
    };
    String ST_READONLY_IDX
    {
        Text = "~Schreibgeschtzt";
        Text[English] = "Readonly";
        Text[ english_us ] = "Read-~only";
        Text[ portuguese ] = "S ~leitura";
        Text[ russian ] = "  ";
        Text[ greek ] = "M  ";
        Text[ dutch ] = "~Schrijfbeveiligd";
        Text[ french ] = "en ~lecture seule";
        Text[ spanish ] = "Solo le~ctura";
        Text[ italian ] = "A sola lettura";
        Text[ danish ] = "Skrivebeskyttet";
        Text[ swedish ] = "~Skrivskyddad";
        Text[ polish ] = "Tylko do odczytu";
        Text[ portuguese_brazilian ] = "Readonly";
        Text[ japanese ] = "ǂݎp(~O)";
        Text[ korean ] = "б(~O)";
        Text[ chinese_simplified ] = "д(~O)";
        Text[ chinese_traditional ] = "мg(~O)";
        Text[ arabic ] = " ";
        Text[ turkish ] = "Sa~lt okunur";
    };
    Text[ chinese_simplified ] = "";
    Text[ russian ] = "";
    Text[ polish ] = "Nawigator";
    Text[ japanese ] = "޹ް";
    Text[ chinese_traditional ] = "U";
    Text[ arabic ] = "";
    Text[ greek ] = "Navigator";
    Text[ korean ] = "׺";
    Text[ turkish ] = "Navigatr";
};
ImageList IMG_NAVI_ENTRYBMP
{
    ImageBitmap = Bitmap { File = "nccntnt.bmp" ; };
    MaskColor = IMAGE_STDBTN_COLOR ;
    IdList =
    {
        20000 ;
        20001 ;
        20002 ;
        20003 ;
        20004 ;
        20005 ;
        20006 ;
        20007 ;
        20008 ;
        20009 ;
        20010 ;
        20102 ;
    };
    IdCount = { 12 ; };
};