summaryrefslogtreecommitdiff
path: root/sc/source/ui/navipi/navipi.src
blob: c51a80eae7553619191423cdac559dba6673e663 (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
/*************************************************************************
 *
 *  $RCSfile: navipi.src,v $
 *
 *  $Revision: 1.27 $
 *
 *  last change: $Author: kz $ $Date: 2002-06-11 12:35:27 $
 *
 *  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 "navipi.hrc"

#define SC_NAVI_CMD_IDLIST \
    IdList =               \
    {                      \
        IID_DATA ;         \
        IID_UP ;           \
        IID_DOWN ;         \
        IID_SCENARIOS ;    \
        IID_DROPMODE ;     \
        IID_CHANGEROOT ;   \
        IID_ZOOMOUT ;      \
    };                     \
    IdCount = { 8 ; };

Window RID_SCDLG_NAVIGATOR
{
    SVLook = TRUE ;
    HelpId = HID_SC_NAVIGATOR ;
     //?    Pos = MAP_APPFONT( 0, 0 );
    Size = MAP_APPFONT ( 115 , 116 ) ;
    OutputSize = TRUE ;
    DialogControl = TRUE ;
    Hide = 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" ;
     //    Closeable = TRUE ;
     //    Moveable = TRUE ;
     //    Zoomable = TRUE ;
     //    Sizeable = TRUE ;
     //    EnableResizing = TRUE ;
     //    HideWhenDeactivate = TRUE ;
     //    Border = TRUE ;
     //    Dockable = TRUE ;
    FixedText FT_ROW
    {
         //         Pos = MAP_APPFONT( 2, 20 );
        Pos = MAP_APPFONT ( 2 , 19 ) ;
         // an kleinere Toolbox-Bitmaps angepasst
        Size = MAP_APPFONT ( 19 , 10 ) ;
        Text = "Zeile" ;
        Text [ ENGLISH ] = "Row" ;
        Text [ norwegian ] = "Row" ;
        Text [ italian ] = "Riga" ;
        Text [ portuguese_brazilian ] = "Fileira" ;
        Text [ portuguese ] = "Linha" ;
        Text [ finnish ] = "Rivi" ;
        Text [ danish ] = "Rkke" ;
        Text [ french ] = "Ligne" ;
        Text [ swedish ] = "Rad" ;
        Text [ dutch ] = "Rij" ;
        Text [ spanish ] = "Fila" ;
        Text [ ENGLISH_US ] = "Row" ;
        Text[ chinese_simplified ] = "行";
        Text[ russian ] = "";
        Text[ polish ] = "Wiersz";
        Text[ japanese ] = "行";
        Text[ chinese_traditional ] = "列";
        Text[ arabic ] = "";
        Text[ dutch ] = "Rij";
        Text[ chinese_simplified ] = "行";
        Text[ greek ] = "";
        Text[ korean ] = "행";
        Text[ turkish ] = "Satr";
        Text[ language_user1 ] = " ";
        Text[ catalan ] = "Fila";
        Text[ thai ] = "แถว";
    };
    NumericField ED_ROW
    {
        HelpId = HID_SC_NAVIPI_ROW ;
        Border = TRUE ;
         //         Pos = MAP_APPFONT( 31, 19 );
        Pos = MAP_APPFONT ( 31 , 18 ) ;
         // an kleinere Toolbox-Bitmaps angepasst
        Size = MAP_APPFONT ( 30 , 12 ) ;
        Right = TRUE ;
        Repeat = TRUE ;
        Spin = TRUE ;
        SpinSize = 1 ;
        Minimum = 1 ;
        First = 1 ;
        Maximum = 32000 ;
        Last = 32000 ;
        QuickHelpText = "Zeile" ;
        QuickHelpText [ ENGLISH ] = "Row" ;
        QuickHelpText [ norwegian ] = "Row" ;
        QuickHelpText [ italian ] = "Riga" ;
        QuickHelpText [ portuguese_brazilian ] = "Fileira" ;
        QuickHelpText [ portuguese ] = "Linha" ;
        QuickHelpText [ finnish ] = "Rivi" ;
        QuickHelpText [ danish ] = "Rkke" ;
        QuickHelpText [ french ] = "Ligne" ;
        QuickHelpText [ swedish ] = "Rad" ;
        QuickHelpText [ dutch ] = "Rij" ;
        QuickHelpText [ spanish ] = "Fila" ;
        QuickHelpText [ english_us ] = "Row" ;
        QuickHelpText [ dutch ] = "Rij" ;
        QuickHelpText [ french ] = "Ligne" ;
        QuickHelpText[ russian ] = "";
        QuickHelpText[ polish ] = "Wiersz";
        QuickHelpText[ japanese ] = "行";
        QuickHelpText[ chinese_simplified ] = "行";
        QuickHelpText[ chinese_traditional ] = "欄";
        QuickHelpText[ arabic ] = "";
        QuickHelpText[ dutch ] = "Rij";
        QuickHelpText[ chinese_simplified ] = "行";
        QuickHelpText[ greek ] = "";
        QuickHelpText[ korean ] = "행";
        QuickHelpText[ language_user1 ] = " ";
        QuickHelpText[ language_user1 ] = " ";
        QuickHelpText[ language_user1 ] = " ";
        QuickHelpText[ turkish ] = "Zeile";
        QuickHelpText[ catalan ] = "Fila";
        QuickHelpText[ thai ] = "Row";
    };
    FixedText FT_COL
    {
        Pos = MAP_APPFONT ( 2 , 5 ) ;
        Size = MAP_APPFONT ( 23 , 10 ) ;
        Text = "Spalte" ;
        Text [ ENGLISH ] = "Column" ;
        Text [ norwegian ] = "Column" ;
        Text [ italian ] = "Colonna" ;
        Text [ portuguese_brazilian ] = "Coluna" ;
        Text [ portuguese ] = "Coluna" ;
        Text [ finnish ] = "Sarake" ;
        Text [ danish ] = "Kolonne" ;
        Text [ french ] = "Colonne" ;
        Text [ swedish ] = "Kolumn" ;
        Text [ dutch ] = "Kolom" ;
        Text [ spanish ] = "Columna" ;
        Text [ ENGLISH_US ] = "Column" ;
        Text[ chinese_simplified ] = "列";
        Text[ russian ] = "";
        Text[ polish ] = "Kolumna";
        Text[ japanese ] = "列";
        Text[ chinese_traditional ] = "欄";
        Text[ arabic ] = "";
        Text[ dutch ] = "Kolom";
        Text[ chinese_simplified ] = "列";
        Text[ greek ] = "";
        Text[ korean ] = "단";
        Text[ turkish ] = "Stun";
        Text[ language_user1 ] = " ";
        Text[ catalan ] = "Columna";
        Text[ thai ] = "คอลัมน์";
    };
    SpinField ED_COL
    {
        HelpId = HID_SC_NAVIPI_COL ;
        Border = TRUE ;
        Pos = MAP_APPFONT ( 31 , 4 ) ;
        Size = MAP_APPFONT ( 30 , 12 ) ;
        Right = TRUE ;
        Repeat = TRUE ;
        Spin = TRUE ;
        QuickHelpText = "Spalte" ;
        QuickHelpText [ ENGLISH ] = "Column" ;
        QuickHelpText [ norwegian ] = "Column" ;
        QuickHelpText [ italian ] = "Colonna" ;
        QuickHelpText [ portuguese_brazilian ] = "Coluna" ;
        QuickHelpText [ portuguese ] = "Coluna" ;
        QuickHelpText [ finnish ] = "Sarake" ;
        QuickHelpText [ danish ] = "Kolonne" ;
        QuickHelpText [ french ] = "Colonne" ;
        QuickHelpText [ swedish ] = "Kolumn" ;
        QuickHelpText [ dutch ] = "Kolom" ;
        QuickHelpText [ spanish ] = "Columna" ;
        QuickHelpText [ english_us ] = "Column" ;
        QuickHelpText [ dutch ] = "Kolom" ;
        QuickHelpText [ french ] = "Colonne" ;
    QuickHelpText[ russian ] = "";
        QuickHelpText[ polish ] = "Kolumna";
        QuickHelpText[ japanese ] = "列";
        QuickHelpText[ chinese_simplified ] = "列";
        QuickHelpText[ chinese_traditional ] = "列";
        QuickHelpText[ arabic ] = "";
        QuickHelpText[ dutch ] = "Kolom";
        QuickHelpText[ chinese_simplified ] = "列";
        QuickHelpText[ greek ] = "";
        QuickHelpText[ korean ] = "단";
        QuickHelpText[ language_user1 ] = " ";
        QuickHelpText[ language_user1 ] = " ";
        QuickHelpText[ language_user1 ] = " ";
        QuickHelpText[ turkish ] = "Spalte";
        QuickHelpText[ catalan ] = "Columna";
        QuickHelpText[ thai ] = "Column";
    };
    Control LB_ENTRIES
    {
         // "Control" braucht immer eigene HelpId
        HelpId = HID_SC_NAVIPI_ENTRIES ;
        Border = TRUE ;
         //         Pos = MAP_APPFONT( 2, 52 );
        Pos = MAP_APPFONT ( 2 , 35 ) ;
        Size = MAP_APPFONT ( 110 , 100 ) ;
        TabStop = TRUE ;
    };
    ListBox LB_DOCUMENTS
    {
        HelpId = HID_SC_NAVIPI_DOC ;
        Border = TRUE ;
         //         Pos = MAP_APPFONT( 2, 35 );
        Pos = MAP_APPFONT ( 2 , 89 ) ;
        Size = MAP_APPFONT ( 82 , 50 ) ;
        TabStop = TRUE ;
        DropDown = TRUE ;
        QuickHelpText = "Dokument" ;
        QuickHelpText [ ENGLISH ] = "Document" ;
        QuickHelpText [ dutch ] = "Document" ;
        QuickHelpText [ english_us ] = "Document" ;
        QuickHelpText [ italian ] = "Documento" ;
        QuickHelpText [ spanish ] = "Documento" ;
        QuickHelpText [ french ] = "Document" ;
        QuickHelpText [ danish ] = "Dokument" ;
        QuickHelpText [ portuguese ] = "Documento" ;
        QuickHelpText [ portuguese_brazilian ] = "Dokument" ;
        QuickHelpText [ swedish ] = "Dokument" ;
    QuickHelpText[ russian ] = "";
        QuickHelpText[ polish ] = "Dokument";
        QuickHelpText[ japanese ] = "ドキュメント";
        QuickHelpText[ chinese_simplified ] = "文档";
        QuickHelpText[ chinese_traditional ] = "檔案";
        QuickHelpText[ arabic ] = "";
        QuickHelpText[ dutch ] = "Document";
        QuickHelpText[ chinese_simplified ] = "文档";
        QuickHelpText[ greek ] = "";
        QuickHelpText[ korean ] = "문서";
        QuickHelpText[ language_user1 ] = " ";
        QuickHelpText[ language_user1 ] = " ";
        QuickHelpText[ language_user1 ] = " ";
        QuickHelpText[ turkish ] = "Dokument";
        QuickHelpText[ catalan ] = "Documento";
        QuickHelpText[ finnish ] = "Asiakirja";
        QuickHelpText[ thai ] = "Document";
    };
    ImageList IL_CMD
    {
        ImageBitmap = Bitmap { File = "na_vipi.bmp" ; };
        MaskColor = STD_MASKCOLOR ;
        SC_NAVI_CMD_IDLIST
    };
    ImageList ILH_CMD
    {
        ImageBitmap = Bitmap { File = "nah_vipi.bmp" ; };
        MaskColor = SC_HC_MASKCOLOR ;
        SC_NAVI_CMD_IDLIST
    };
    ToolBox TBX_CMD
    {
        Pos = MAP_APPFONT ( 66 , 3 ) ;
        HelpId = HID_SC_NAVIPI_TOOLBOX ;
        SVLook = TRUE ;
        Border = FALSE ;
        LineCount = 2 ;
        ItemList =
        {
            ToolBoxItem
            {
                Identifier = IID_DATA ;
                HelpId = HID_SC_NAVIPI_DATA ;
                Text = "Datenbereich" ;
                Text [ ENGLISH ] = "Data Area" ;
                Text [ norwegian ] = "Data Area" ;
                Text [ italian ] = "Area dati" ;
                Text [ portuguese_brazilian ] = "Data Area" ;
                Text [ portuguese ] = "rea de dados" ;
                Text [ finnish ] = "Tietoalue" ;
                Text [ danish ] = "Dataomrde" ;
                Text [ french ] = "Plage de donnes" ;
                Text [ swedish ] = "Dataomrde" ;
                Text [ dutch ] = "Gegevensbereik" ;
                Text [ spanish ] = "rea de datos" ;
                Text [ english_us ] = "Data Range" ;
                Text[ chinese_simplified ] = "数据区域";
                Text[ russian ] = " ";
                Text[ polish ] = "Obszar danych";
                Text[ japanese ] = "データ範囲";
                Text[ chinese_traditional ] = "資料區域";
                Text[ arabic ] = " ";
                Text[ dutch ] = "Gegevensbereik";
                Text[ chinese_simplified ] = "数据区域";
                Text[ greek ] = " ";
                Text[ korean ] = "데이터 영역";
                Text[ turkish ] = "Veri alan";
                Text[ language_user1 ] = " ";
                Text[ catalan ] = "rea de dades";
                Text[ thai ] = "ช่วงข้อมูล";
            };
            ToolBoxItem
            {
                Identifier = IID_UP ;
                HelpId = HID_SC_NAVIPI_UP ;
                Text = "Anfang" ;
                Text [ ENGLISH ] = "Start" ;
                Text [ norwegian ] = "Start" ;
                Text [ italian ] = "Inizio" ;
                Text [ portuguese_brazilian ] = "In?cio" ;
                Text [ portuguese ] = "Incio" ;
                Text [ finnish ] = "Aloita" ;
                Text [ danish ] = "Begyndelse" ;
                Text [ french ] = "Dbut" ;
                Text [ swedish ] = "Brjan" ;
                Text [ dutch ] = "Begin" ;
                Text [ spanish ] = "Comienzo" ;
                Text [ english_us ] = "Start" ;
                Text[ chinese_simplified ] = "开始";
                Text[ russian ] = "";
                Text[ polish ] = "Pocztek";
                Text[ japanese ] = "データ頭";
                Text[ chinese_traditional ] = "開始";
                Text[ arabic ] = "";
                Text[ dutch ] = "Begin";
                Text[ chinese_simplified ] = "开始";
                Text[ greek ] = "";
                Text[ korean ] = "시작";
                Text[ turkish ] = "Balang";
                Text[ language_user1 ] = " ";
                Text[ catalan ] = "Inici";
                Text[ thai ] = "เริ่มต้น";
            };
            ToolBoxItem
            {
                Identifier = IID_DOWN ;
                HelpId = HID_SC_NAVIPI_DOWN ;
                Text = "Ende" ;
                Text [ ENGLISH ] = "End" ;
                Text [ norwegian ] = "End" ;
                Text [ italian ] = "Fine" ;
                Text [ portuguese_brazilian ] = "Final" ;
                Text [ portuguese ] = "Fim" ;
                Text [ finnish ] = "Loppu" ;
                Text [ danish ] = "Slut" ;
                Text [ french ] = "Fin" ;
                Text [ swedish ] = "Slut" ;
                Text [ dutch ] = "Einde" ;
                Text [ spanish ] = "Fin" ;
                Text [ english_us ] = "End" ;
                Text[ chinese_simplified ] = "结束";
                Text[ russian ] = "";
                Text[ polish ] = "Koniec";
                Text[ japanese ] = "データ末";
                Text[ chinese_traditional ] = "結束";
                Text[ arabic ] = "";
                Text[ dutch ] = "Einde";
                Text[ chinese_simplified ] = "结束";
                Text[ greek ] = "";
                Text[ korean ] = "끝";
                Text[ turkish ] = "Son";
                Text[ language_user1 ] = " ";
                Text[ catalan ] = "Final";
                Text[ thai ] = "สิ้นสุด";
            };
             //--------------------------------------------
             //         ToolBoxItem { Type = TOOLBOXITEM_SEPARATOR; };
             //--------------------------------------------
             //----------------------------------------
            ToolBoxItem { Type = TOOLBOXITEM_BREAK ; };
             //----------------------------------------
            ToolBoxItem
            {
                Identifier = IID_ZOOMOUT ;
                HelpId = HID_SC_NAVIPI_ZOOM ;
                Text = "Inhalte" ;
                Text [ ENGLISH ] = "Contents" ;
                Text [ dutch ] = "Inhoud" ;
                Text [ english_us ] = "Contents" ;
                Text [ italian ] = "Contenuti" ;
                Text [ spanish ] = "Contenidos" ;
                Text [ french ] = "Contenu" ;
                Text [ swedish ] = "Innehll" ;
                Text [ danish ] = "Indhold" ;
                Text [ portuguese ] = "Contedos" ;
                Text [ portuguese_brazilian ] = "Inhalte" ;
                Text[ chinese_simplified ] = "内容";
                Text[ russian ] = "";
                Text[ polish ] = "Zawartoci";
                Text[ japanese ] = "内容";
                Text[ chinese_traditional ] = "內容";
                Text[ arabic ] = "";
                Text[ dutch ] = "Inhoud";
                Text[ chinese_simplified ] = "内容";
                Text[ greek ] = "";
                Text[ korean ] = "내용";
                Text[ turkish ] = "erikler";
                Text[ language_user1 ] = " ";
                Text[ catalan ] = "Contingut";
                Text[ finnish ] = "Sislt";
                Text[ thai ] = "เนื้อหา";
            };
            ToolBoxItem
            {
                Identifier = IID_CHANGEROOT ;
                HelpId = HID_SC_NAVIPI_ROOT ;
                Text = "Umschalten" ;
                Text [ ENGLISH ] = "Toggle" ;
                Text [ dutch ] = "Omschakelen" ;
                Text [ english_us ] = "Toggle" ;
                Text [ italian ] = "Commuta" ;
                Text [ spanish ] = "Conmutar" ;
                Text [ french ] = "Basculer" ;
                Text [ swedish ] = "Vxla" ;
                Text [ danish ] = "Skift" ;
                Text [ portuguese ] = "Comutar" ;
                Text [ portuguese_brazilian ] = "Umschalten" ;
                Text[ chinese_simplified ] = "切换";
                Text[ russian ] = "";
                Text[ polish ] = "Przecz";
                Text[ japanese ] = "切り替え";
                Text[ chinese_traditional ] = "切換";
                Text[ arabic ] = "";
                Text[ dutch ] = "Omschakelen";
                Text[ chinese_simplified ] = "切换";
                Text[ greek ] = "";
                Text[ korean ] = "토글";
                Text[ turkish ] = "Deitir";
                Text[ language_user1 ] = " ";
                Text[ catalan ] = "Commuta";
                Text[ finnish ] = "Vaihda";
                Text[ thai ] = "สลับ";
            };
            ToolBoxItem
            {
                Identifier = IID_SCENARIOS ;
                HelpId = HID_SC_NAVIPI_SCEN ;
                Text = "Szenarien" ;
                Text [ ENGLISH ] = "Scenarios" ;
                Text [ dutch ] = "Scenarios" ;
                Text [ english_us ] = "Scenarios" ;
                Text [ italian ] = "Scenari" ;
                Text [ spanish ] = "Escenarios" ;
                Text [ french ] = "Scnarios" ;
                Text [ swedish ] = "Scenarion" ;
                Text [ danish ] = "Scenarier" ;
                Text [ portuguese ] = "Cenrios" ;
                Text [ portuguese_brazilian ] = "Szenarien" ;
                Text[ chinese_simplified ] = "方案";
                Text[ russian ] = "";
                Text[ polish ] = "Scenariusz";
                Text[ japanese ] = "シナリオ";
                Text[ chinese_traditional ] = "分析藍本";
                Text[ arabic ] = " ";
                Text[ dutch ] = "Scenarios";
                Text[ chinese_simplified ] = "方案";
                Text[ greek ] = "";
                Text[ korean ] = "시나리오";
                Text[ turkish ] = "Senaryo";
                Text[ language_user1 ] = " ";
                Text[ catalan ] = "Escenaris";
                Text[ finnish ] = "Skenaariot";
                Text[ thai ] = "สถานการณ์สมมติ";
            };
            ToolBoxItem
            {
                Identifier = IID_DROPMODE ;
                HelpId = HID_SC_NAVIPI_DROP ;
                DropDown = TRUE ;
                Text = "Dragmodus" ;
                Text [ ENGLISH ] = "Drag mode" ;
                Text [ dutch ] = "Dragmodus" ;
                Text [ english_us ] = "Drag Mode" ;
                Text [ italian ] = "Modo drag" ;
                Text [ spanish ] = "Modo Arrastrar" ;
                Text [ french ] = "Mode Glisser" ;
                Text [ swedish ] = "Dralge" ;
                Text [ danish ] = "Trkmodus" ;
                Text [ portuguese ] = "Modo Arrastar" ;
                Text [ portuguese_brazilian ] = "Dragmodus" ;
                Text[ chinese_simplified ] = "拖曳模式";
                Text[ russian ] = " ";
                Text[ polish ] = "Tryb przecigania";
                Text[ japanese ] = "ドラッグモード";
                Text[ chinese_traditional ] = "拖曳模式";
                Text[ arabic ] = " ";
                Text[ dutch ] = "Dragmodus";
                Text[ chinese_simplified ] = "拖曳模式";
                Text[ greek ] = " ";
                Text[ korean ] = "끌기 모드";
                Text[ turkish ] = "Srkleme kipi";
                Text[ language_user1 ] = " ";
                Text[ catalan ] = "Mode d'arrossegament";
                Text[ finnish ] = "Vetotila";
                Text[ thai ] = "ลากโหมด";
            };
        };
    };
    String STR_DRAGMODE
    {
        Text = "Dragmodus" ;
        Text [ English ] = "Drag mode" ;
        Text [ dutch ] = "Dragmodus" ;
        Text [ english_us ] = "Drag Mode" ;
        Text [ italian ] = "Modo drag" ;
        Text [ spanish ] = "Modo Arrastrar" ;
        Text [ french ] = "Mode Glisser" ;
        Text [ swedish ] = "Dralge" ;
        Text [ danish ] = "Trkmodus" ;
        Text [ portuguese ] = "Modo Arrastar" ;
        Text [ portuguese_brazilian ] = "Dragmodus" ;
        Text[ chinese_simplified ] = "拖曳模式";
        Text[ russian ] = " ";
        Text[ polish ] = "Tryb przecigania";
        Text[ japanese ] = "ドラッグモード";
        Text[ chinese_traditional ] = "拖曳模式";
        Text[ arabic ] = " ";
        Text[ dutch ] = "Dragmodus";
        Text[ chinese_simplified ] = "拖曳模式";
        Text[ greek ] = " ";
        Text[ korean ] = "끌기 모드";
        Text[ turkish ] = "Srkleme kipi";
        Text[ language_user1 ] = " ";
        Text[ catalan ] = "Mode d'arrossegament";
        Text[ finnish ] = "Vetotila";
        Text[ thai ] = "ลากโหมด";
    };
    String STR_DISPLAY
    {
        Text = "Anzeige" ;
        Text [ English ] = "Display" ;
        Text [ dutch ] = "Beeld" ;
        Text [ english_us ] = "Display" ;
        Text [ italian ] = "Visualizzazione" ;
        Text [ spanish ] = "Visualizacin" ;
        Text [ french ] = "Affichage" ;
        Text [ swedish ] = "Visning" ;
        Text [ danish ] = "Visning" ;
        Text [ portuguese ] = "Mostrar" ;
        Text [ portuguese_brazilian ] = "Anzeige" ;
        Text[ chinese_simplified ] = "显示";
        Text[ russian ] = "";
        Text[ polish ] = "Wywietl";
        Text[ japanese ] = "表示";
        Text[ chinese_traditional ] = "顯示";
        Text[ arabic ] = "";
        Text[ dutch ] = "Beeld";
        Text[ chinese_simplified ] = "显示";
        Text[ greek ] = "";
        Text[ korean ] = "표시";
        Text[ turkish ] = "Grnt";
        Text[ language_user1 ] = " ";
        Text[ catalan ] = "Visualitza";
        Text[ finnish ] = "Nyt";
        Text[ thai ] = "แสดงผล";
    };
    String STR_ACTIVE
    {
        Text = "aktiv" ;
        Text [ English ] = "active" ;
        Text [ dutch ] = "actief" ;
        Text [ english_us ] = "active" ;
        Text [ italian ] = "attivo" ;
        Text [ spanish ] = "activo" ;
        Text [ french ] = "active" ;
        Text [ swedish ] = "aktiv" ;
        Text [ danish ] = "aktiv" ;
        Text [ portuguese ] = "activo" ;
        Text [ portuguese_brazilian ] = "aktiv" ;
        Text[ chinese_simplified ] = "使用中的";
        Text[ russian ] = "";
        Text[ polish ] = "aktywny";
        Text[ japanese ] = "アクティブ";
        Text[ chinese_traditional ] = "使用中";
        Text[ arabic ] = "";
        Text[ dutch ] = "actief";
        Text[ chinese_simplified ] = "使用中的";
        Text[ greek ] = "";
        Text[ korean ] = "활성";
        Text[ turkish ] = "Etkin";
        Text[ language_user1 ] = " ";
        Text[ catalan ] = "actiu";
        Text[ finnish ] = "aktiivinen";
        Text[ thai ] = "ใช้งานอยู่";
    };
    String STR_NOTACTIVE
    {
        Text = "inaktiv" ;
        Text [ English ] = "inactive" ;
        Text [ english_us ] = "inactive" ;
        Text [ italian ] = "inattivo" ;
        Text [ spanish ] = "inactivo" ;
        Text [ french ] = "inactive" ;
        Text [ dutch ] = "inactief" ;
        Text [ swedish ] = "inaktiv" ;
        Text [ danish ] = "inaktiv" ;
        Text [ portuguese ] = "inactivo" ;
        Text [ portuguese_brazilian ] = "inaktiv" ;
        Text[ chinese_simplified ] = "不使用";
        Text[ russian ] = "";
        Text[ polish ] = "nieaktywny";
        Text[ japanese ] = "非アクティブ";
        Text[ chinese_traditional ] = "不使用";
        Text[ arabic ] = " ";
        Text[ dutch ] = "inactief";
        Text[ chinese_simplified ] = "不使用";
        Text[ greek ] = " ";
        Text[ korean ] = "비활성";
        Text[ turkish ] = "Etkin deil";
        Text[ language_user1 ] = " ";
        Text[ catalan ] = "inactiu";
        Text[ finnish ] = "ei kytss";
        Text[ thai ] = "ไม่ได้ใช้งานอยู่";
    };
    String STR_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 ] = "oculto" ;
        Text [ portuguese_brazilian ] = "versteckt" ;
        Text[ chinese_simplified ] = "隐入";
        Text[ russian ] = "";
        Text[ polish ] = "ukryty";
        Text[ japanese ] = "隠し";
        Text[ chinese_traditional ] = "隱入";
        Text[ arabic ] = "";
        Text[ dutch ] = "verborgen";
        Text[ chinese_simplified ] = "隐入";
        Text[ greek ] = "";
        Text[ korean ] = "숨김";
        Text[ turkish ] = "Gizli";
        Text[ language_user1 ] = " ";
        Text[ catalan ] = "ocult";
        Text[ finnish ] = "piilotettu";
        Text[ thai ] = "ซ่อน";
    };
    String STR_ACTIVEWIN
    {
        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 ] = "Janela activa" ;
        Text [ portuguese_brazilian ] = "Aktives Fenster" ;
        Text[ chinese_simplified ] = "当前的视窗";
        Text[ russian ] = " ";
        Text[ polish ] = "Aktywne okno";
        Text[ japanese ] = "アクティブなウィンドウ";
        Text[ chinese_traditional ] = "使用中的視窗";
        Text[ arabic ] = " ";
        Text[ dutch ] = "Actief venster";
        Text[ chinese_simplified ] = "当前的视窗";
        Text[ greek ] = " ";
        Text[ korean ] = "활성 창";
        Text[ turkish ] = "Etkin pencere";
        Text[ language_user1 ] = " ";
        Text[ catalan ] = "Finestra activa";
        Text[ finnish ] = "Aktiivinen ikkuna";
        Text[ thai ] = "หน้าต่างที่ใช้งานอยู่";
    };

    String STR_QHLP_SCEN_LISTBOX
    {
        Text = "Name des Szenarios" ;
        Text [ ENGLISH ] = "Szenario Name" ;
        Text [ ENGLISH_US ] = "Scenario Name";
        Text[ italian ] = "Nome dello scenario";
        Text[ portuguese_brazilian ] = "Name des Szenarios";
        Text[ portuguese ] = "Nome do cenrio";
        Text[ danish ] = "Scenariets navn";
        Text[ french ] = "Nom du scnario";
        Text[ swedish ] = "Namn p scenariot";
        Text[ dutch ] = "Naam van het scenario";
        Text[ spanish ] = "Nombre del escenario";
        Text[ chinese_simplified ] = "方案名称";
        Text[ russian ] = " ";
        Text[ polish ] = "Nazwa scenariusza";
        Text[ japanese ] = "シナリオ名";
        Text[ chinese_traditional ] = "分析藍本的名稱";
        Text[ arabic ] = " ";
        Text[ dutch ] = "Naam van het scenario";
        Text[ chinese_simplified ] = "方案名称";
        Text[ greek ] = " ";
        Text[ korean ] = "시나리오 이름";
        Text[ turkish ] = "Senaryo ad";
        Text[ language_user1 ] = " ";
        Text[ catalan ] = "Nom de l'escenari";
        Text[ finnish ] = "Skenaarion nimi";
        Text[ thai ] = "ชื่อสถานการณ์สมมติ";
    };

    String STR_QHLP_SCEN_COMMENT
    {
        Text = "Kommentar" ;
        Text [ ENGLISH ] = "Comment" ;
        Text [ ENGLISH_US ] = "Comment";
        Text[ italian ] = "Commento";
        Text[ portuguese_brazilian ] = "Kommentar";
        Text[ portuguese ] = "Comentrio";
        Text[ danish ] = "Kommentar";
        Text[ french ] = "Commentaire";
        Text[ swedish ] = "Kommentar";
        Text[ dutch ] = "Commentaar";
        Text[ spanish ] = "Comentario";
        Text[ chinese_simplified ] = "注解";
        Text[ russian ] = "";
        Text[ polish ] = "Komentarz";
        Text[ japanese ] = "コメント";
        Text[ chinese_traditional ] = "註解";
        Text[ arabic ] = "";
        Text[ dutch ] = "Commentaar";
        Text[ chinese_simplified ] = "注解";
        Text[ greek ] = "";
        Text[ korean ] = "주석";
        Text[ turkish ] = "Aklama";
        Text[ language_user1 ] = " ";
        Text[ catalan ] = "Comentari";
        Text[ finnish ] = "Huomautus";
        Text[ thai ] = "ข้อคิดเห็น";
    };

    Text[ chinese_simplified ] = "助手";
    Text[ russian ] = "";
    Text[ polish ] = "Nawigator";
    Text[ japanese ] = "ナビゲータ";
    Text[ chinese_traditional ] = "助手";
    Text[ arabic ] = "";
    Text[ dutch ] = "Navigator";
    Text[ chinese_simplified ] = "助手";
    Text[ greek ] = "Navigator";
    Text[ korean ] = "네비게이터";
    Text[ turkish ] = "Navigatr";
    Text[ language_user1 ] = " ";
    Text[ catalan ] = "Navigator";
    Text[ thai ] = "ตัวนำ";
};

// SC_CONTENT_...
#define SC_NAVI_CONT_IDLIST \
    IdList =                \
    {                       \
        1 ;                 \
        2 ;                 \
        3 ;                 \
        4 ;                 \
        5 ;                 \
        6 ;                 \
        7 ;                 \
        8 ;                 \
    };                      \
    IdCount = { 8 ; };

ImageList RID_IMAGELIST_NAVCONT
{
    ImageBitmap = Bitmap { File = "nc_ont.bmp" ; };
    MaskColor = STD_MASKCOLOR ;
    SC_NAVI_CONT_IDLIST
};
ImageList RID_IMAGELIST_H_NAVCONT
{
    ImageBitmap = Bitmap { File = "nch_ont.bmp" ; };
    MaskColor = SC_HC_MASKCOLOR ;
    SC_NAVI_CONT_IDLIST
};

Bitmap RID_BMP_EXPAND
{
    File = "plus.bmp" ;
};
Bitmap RID_BMP_COLLAPSE
{
    File = "minus.bmp" ;
};
Image RID_IMG_DROP_URL
{
    ImageBitmap = Bitmap { File = "dropurl.bmp" ; };
    MaskColor = STD_MASKCOLOR ;
};
Image RID_IMG_DROP_LINK
{
    ImageBitmap = Bitmap { File = "droplink.bmp" ; };
    MaskColor = STD_MASKCOLOR ;
};
Image RID_IMG_DROP_COPY
{
    ImageBitmap = Bitmap { File = "dropcopy.bmp" ; };
    MaskColor = STD_MASKCOLOR ;
};
Image RID_IMG_H_DROP_URL
{
    ImageBitmap = Bitmap { File = "dropurl_h.bmp" ; };
    MaskColor = SC_HC_MASKCOLOR ;
};
Image RID_IMG_H_DROP_LINK
{
    ImageBitmap = Bitmap { File = "droplink_h.bmp" ; };
    MaskColor = SC_HC_MASKCOLOR ;
};
Image RID_IMG_H_DROP_COPY
{
    ImageBitmap = Bitmap { File = "dropcopy_h.bmp" ; };
    MaskColor = SC_HC_MASKCOLOR ;
};

//  content description strings are also used in ScLinkTargetsObj

String SCSTR_CONTENT_ROOT
{
    TEXT = "Inhalte" ;
    TEXT [ English ] = "Contents" ;
    Text [ english_us ] = "Contents" ;
    Text [ italian ] = "Contenuti" ;
    Text [ spanish ] = "Contenidos" ;
    Text [ french ] = "Contenu" ;
    Text [ dutch ] = "Inhoud" ;
    Text [ swedish ] = "Innehll" ;
    Text [ danish ] = "Indhold" ;
    Text [ portuguese ] = "Contedos" ;
    Text [ portuguese_brazilian ] = "Inhalte" ;
    Text[ chinese_simplified ] = "内容";
    Text[ russian ] = "";
    Text[ polish ] = "Zawartoci";
    Text[ japanese ] = "内容";
    Text[ chinese_traditional ] = "內容";
    Text[ arabic ] = "";
    Text[ dutch ] = "Inhoud";
    Text[ chinese_simplified ] = "内容";
    Text[ greek ] = "";
    Text[ korean ] = "내용";
    Text[ turkish ] = "erikler";
    Text[ language_user1 ] = " ";
    Text[ catalan ] = "Contingut";
    Text[ finnish ] = "Sislt";
    Text[ thai ] = "เนื้อหา";
};
String SCSTR_CONTENT_TABLE
{
    TEXT = "Tabellen" ;
    TEXT [ English ] = "Tables" ;
    Text [ english_us ] = "Sheets" ;
    Text [ italian ] = "Tabelle" ;
    Text [ spanish ] = "Hojas" ;
    Text [ french ] = "Feuilles" ;
    Text [ dutch ] = "Werkbladen" ;
    Text [ swedish ] = "Tabeller" ;
    Text [ danish ] = "Regneark" ;
    Text [ portuguese ] = "Folhas" ;
    Text [ portuguese_brazilian ] = "Tabellen" ;
    Text[ chinese_simplified ] = "工作表";
    Text[ russian ] = "";
    Text[ polish ] = "Arkusze";
    Text[ japanese ] = "表";
    Text[ chinese_traditional ] = "工作表";
    Text[ arabic ] = "";
    Text[ dutch ] = "Werkbladen";
    Text[ chinese_simplified ] = "工作表";
    Text[ greek ] = "";
    Text[ korean ] = "시트";
    Text[ turkish ] = "Tablolar";
    Text[ language_user1 ] = " ";
    Text[ catalan ] = "Fulls";
    Text[ finnish ] = "Lomakkeet";
    Text[ thai ] = "แผ่นงาน";
};
String SCSTR_CONTENT_RANGENAME
{
    TEXT = "Bereichsnamen" ;
    TEXT [ English ] = "Range names" ;
    Text [ dutch ] = "Bereiknamen" ;
    Text [ english_us ] = "Range names" ;
    Text [ italian ] = "Nomi dell'area" ;
    Text [ spanish ] = "Nombres de las reas" ;
    Text [ french ] = "Noms de plage" ;
    Text [ swedish ] = "Omrdesnamn" ;
    Text [ danish ] = "Omrdenavne" ;
    Text [ portuguese ] = "Nomes das reas" ;
    Text [ portuguese_brazilian ] = "Bereichsnamen" ;
    Text[ chinese_simplified ] = "区域名称";
    Text[ russian ] = " ";
    Text[ polish ] = "Nazwy obszarw";
    Text[ japanese ] = "範囲名";
    Text[ chinese_traditional ] = "區域名稱";
    Text[ arabic ] = " ";
    Text[ dutch ] = "Bereiknamen";
    Text[ chinese_simplified ] = "区域名称";
    Text[ greek ] = " ";
    Text[ korean ] = "영역 이름";
    Text[ turkish ] = "Alan adlar";
    Text[ language_user1 ] = " ";
    Text[ catalan ] = "Noms d'rea";
    Text[ finnish ] = "Alueiden nimet";
    Text[ thai ] = "ชื่อช่วง";
};
String SCSTR_CONTENT_DBAREA
{
    TEXT = "Datenbankbereiche" ;
    TEXT [ English ] = "Database areas" ;
    Text [ dutch ] = "Database-bereiken" ;
    Text [ english_us ] = "Database Ranges" ;
    Text [ italian ] = "Aree database" ;
    Text [ spanish ] = "reas de base de datos" ;
    Text [ french ] = "Plages de base de donnes" ;
    Text [ swedish ] = "Databasomrden" ;
    Text [ danish ] = "Databaseomrder" ;
    Text [ portuguese ] = "reas da base de dados" ;
    Text [ portuguese_brazilian ] = "Datenbankbereiche" ;
    Text[ chinese_simplified ] = "数据库区域";
    Text[ russian ] = "  ";
    Text[ polish ] = "Obszary bazy danych";
    Text[ japanese ] = "データベース範囲";
    Text[ chinese_traditional ] = "資料庫區域";
    Text[ arabic ] = "  ";
    Text[ dutch ] = "Database-bereiken";
    Text[ chinese_simplified ] = "数据库区域";
    Text[ greek ] = "  ";
    Text[ korean ] = "데이터베이스 영역";
    Text[ turkish ] = "Veritaban alanlar";
    Text[ language_user1 ] = " ";
    Text[ catalan ] = "rees de la base de dades";
    Text[ finnish ] = "Tietokanta-alueet";
    Text[ thai ] = "ช่วงฐานข้อมูล";
};
String SCSTR_CONTENT_GRAPHIC
{
    TEXT = "Grafiken" ;
    TEXT [ English ] = "Graphics" ;
    Text [ english_us ] = "Graphics" ;
    Text [ italian ] = "Immagini" ;
    Text [ spanish ] = "Imgenes" ;
    Text [ french ] = "Images" ;
    Text [ dutch ] = "Afbeeldingen" ;
    Text [ swedish ] = "Grafik" ;
    Text [ danish ] = "Grafik" ;
    Text [ portuguese ] = "Imagens" ;
    Text [ portuguese_brazilian ] = "Grafiken" ;
    Text[ chinese_simplified ] = "图形";
    Text[ russian ] = "";
    Text[ polish ] = "Grafiki";
    Text[ japanese ] = "図";
    Text[ chinese_traditional ] = "圖形";
    Text[ arabic ] = "";
    Text[ dutch ] = "Afbeeldingen";
    Text[ chinese_simplified ] = "图形";
    Text[ greek ] = "";
    Text[ korean ] = "그래픽";
    Text[ turkish ] = "Grafikler";
    Text[ language_user1 ] = " ";
    Text[ catalan ] = "Grfics";
    Text[ finnish ] = "Kuvat";
    Text[ thai ] = "กราฟิค";
};
String SCSTR_CONTENT_OLEOBJECT
{
    TEXT = "OLE-Objekte" ;
    TEXT [ English ] = "OLE-Objects" ;
    Text [ english_us ] = "OLE objects" ;
    Text [ italian ] = "Oggetti OLE" ;
    Text [ spanish ] = "Objetos OLE" ;
    Text [ french ] = "Objets OLE" ;
    Text [ dutch ] = "OLE-objecten" ;
    Text [ swedish ] = "OLE-objekt" ;
    Text [ danish ] = "OLE-objekter" ;
    Text [ portuguese ] = "Objectos OLE" ;
    Text [ portuguese_brazilian ] = "OLE-Objekte" ;
    Text[ chinese_simplified ] = "OLE-对象";
    Text[ russian ] = " OLE";
    Text[ polish ] = "Obiekty OLE";
    Text[ japanese ] = "OLE オブジェクト";
    Text[ chinese_traditional ] = "OLE-物件";
    Text[ arabic ] = "OLE ";
    Text[ dutch ] = "OLE-objecten";
    Text[ chinese_simplified ] = "OLE-对象";
    Text[ greek ] = " OLE";
    Text[ korean ] = "OLE 개체";
    Text[ turkish ] = "OLE nesneleri";
    Text[ language_user1 ] = " ";
    Text[ catalan ] = "Objectes OLE";
    Text[ finnish ] = "OLE-objektit";
    Text[ thai ] = "วัตถุ OLE ";
};
String SCSTR_CONTENT_NOTE
{
    TEXT = "Notizen" ;
    TEXT [ English ] = "Notes" ;
    Text [ english_us ] = "Notes" ;
    Text [ portuguese ] = "Anotaes" ;
    Text [ swedish ] = "Anteckningar" ;
    Text [ danish ] = "Noter" ;
    Text [ italian ] = "Note" ;
    Text [ spanish ] = "Notas" ;
    Text [ french ] = "Notes" ;
    Text [ dutch ] = "Aantekeningen" ;
    Text [ portuguese_brazilian ] = "Notizen" ;
    Text[ chinese_simplified ] = "备注";
    Text[ russian ] = "";
    Text[ polish ] = "Notatki";
    Text[ japanese ] = "コメント";
    Text[ chinese_traditional ] = "備註";
    Text[ arabic ] = "";
    Text[ dutch ] = "Aantekeningen";
    Text[ chinese_simplified ] = "备注";
    Text[ greek ] = "";
    Text[ korean ] = "메모";
    Text[ turkish ] = "Notlar";
    Text[ language_user1 ] = " ";
    Text[ catalan ] = "Notes";
    Text[ finnish ] = "Huomautukset";
    Text[ thai ] = "หมายเหตุ";
};
String SCSTR_CONTENT_AREALINK
{
    /* ### ACHTUNG: Neuer Text in Resource? Verknpfte Bereiche : Verknpfte Bereiche */
    TEXT = "Verknpfte Bereiche" ;
    TEXT [ English ] = "Linked areas" ;
    Text [ portuguese_brazilian ] = "Verkn?fte Bereiche" ;
    Text [ english_us ] = "Linked areas" ;
    Text [ portuguese ] = "reas ligadas" ;
    Text [ swedish ] = "Lnkade omrden" ;
    Text [ danish ] = "Sammenkdede omrder" ;
    Text [ italian ] = "Aree collegate" ;
    Text [ spanish ] = "reas vinculadas" ;
    Text [ french ] = "Plages lies" ;
    Text [ dutch ] = "Gekoppelde bereiken" ;
    Text[ chinese_simplified ] = "链接的区域";
    Text[ russian ] = " ";
    Text[ polish ] = "Poczone obszary";
    Text[ japanese ] = "リンクされた範囲";
    Text[ chinese_traditional ] = "連結的區域";
    Text[ arabic ] = " ";
    Text[ dutch ] = "Gekoppelde bereiken";
    Text[ chinese_simplified ] = "链接的区域";
    Text[ greek ] = " ";
    Text[ korean ] = "링크된 영역";
    Text[ turkish ] = "Balantl alanlar";
    Text[ language_user1 ] = " ";
    Text[ catalan ] = "rees enllaades";
    Text[ finnish ] = "Linkitetyt alueet";
    Text[ thai ] = "พื้นที่เชื่อมโยง";
};
String SCSTR_CONTENT_DRAWING
{
    TEXT = "Zeichenobjekte" ;
    TEXT [ English ] = "Drawing objects" ;
    TEXT[ english_us ] = "Drawing objects";
    TEXT[ portuguese ] = "Drawing objects";
    TEXT[ russian ] = "Drawing objects";
    TEXT[ greek ] = "Drawing objects";
    TEXT[ dutch ] = "Drawing objects";
    TEXT[ french ] = "Objets de dessin";
    TEXT[ spanish ] = "Objetos de dibujo";
    TEXT[ finnish ] = "Drawing objects";
    TEXT[ italian ] = "Oggetti di disegno";
    TEXT[ danish ] = "Drawing objects";
    TEXT[ swedish ] = "Ritobjekt";
    TEXT[ polish ] = "Drawing objects";
    TEXT[ portuguese_brazilian ] = "Drawing objects";
    TEXT[ japanese ] = "図形描画オブジェクト";
    TEXT[ korean ] = "그리기 개체";
    TEXT[ chinese_simplified ] = "绘图对象";
    TEXT[ chinese_traditional ] = "繪圖物件";
    TEXT[ turkish ] = "Drawing objects";
    TEXT[ arabic ] = "Drawing objects";
    TEXT[ catalan ] = "Drawing objects";
    TEXT[ thai ] = "Drawing objects";
};
 // PopupMenu -------------------------------------------------------------
Menu RID_POPUP_DROPMODE
{
    ItemList =
    {
        MenuItem
        {
            Identifier = RID_DROPMODE_URL ;
            HelpId = HID_SC_DROPMODE_URL ;
            /* ### ACHTUNG: Neuer Text in Resource? Als Hyperlink einfgen : Als Hyperlink einfgen */
            Text = "Als Hyperlink einfgen" ;
            Text [ ENGLISH ] = "Insert as Hyperlink" ;
            Text [ dutch ] = "Als Hyperlink invoegen" ;
            Text [ english_us ] = "Insert as 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 [ portuguese_brazilian ] = "Als Hyperlink einf?en" ;
            Text [ portuguese ] = "Inserir como hiperligao" ;
            Text[ chinese_simplified ] = "当作超链接插入";
            Text[ russian ] = "  ";
            Text[ polish ] = "Wstaw jako hipercze";
            Text[ japanese ] = "ハイパーリンクとして挿入";
            Text[ chinese_traditional ] = "當作超連結插入";
            Text[ arabic ] = "  ";
            Text[ dutch ] = "Als Hyperlink invoegen";
            Text[ chinese_simplified ] = "当作超链接插入";
            Text[ greek ] = "  -";
            Text[ korean ] = "하이퍼링크 삽입";
            Text[ turkish ] = "Hyperlink olarak ekle";
            Text[ language_user1 ] = " ";
            Text[ catalan ] = "Insereix com a hiperenlla";
            Text[ finnish ] = "Lis hyperlinkkin";
            Text[ thai ] = "แทรกเป็นการเชื่อมโยงหลายมิติ";
        };
        MenuItem
        {
            Identifier = RID_DROPMODE_LINK ;
            HelpId = HID_SC_DROPMODE_LINK ;
            /* ### ACHTUNG: Neuer Text in Resource? Als Verknpfung einfgen : Als Verknpfung einfgen */
            Text = "Als Verknpfung einfgen" ;
            Text [ ENGLISH ] = "Insert as Link" ;
            /* ### ACHTUNG: Neuer Text in Resource? Drag & Drop als Verknpfung : Drag & Drop als Verknpfung */
            Text [ dutch ] = "Als koppeling invoegen" ;
            Text [ english_us ] = "Insert as Link" ;
            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 [ portuguese_brazilian ] = "Als Verkn?fung einf?en" ;
            Text [ portuguese ] = "Inserir como ligao" ;
            Text[ chinese_simplified ] = "当作链接插入";
            Text[ russian ] = "  ";
            Text[ polish ] = "Wstaw jako cze";
            Text[ japanese ] = "リンクとして挿入";
            Text[ chinese_traditional ] = "當作捷徑插入";
            Text[ arabic ] = " ";
            Text[ dutch ] = "Als koppeling invoegen";
            Text[ chinese_simplified ] = "当作链接插入";
            Text[ greek ] = "  ";
            Text[ korean ] = "연결로 삽입";
            Text[ turkish ] = "Balant olarak ekle";
            Text[ language_user1 ] = " ";
            Text[ catalan ] = "Insereix com a enlla";
            Text[ finnish ] = "Lis linkkin";
            Text[ thai ] = "แทรกเป็นการเชื่อมโยง";
        };
        MenuItem
        {
            Identifier = RID_DROPMODE_COPY ;
            HelpId = HID_SC_DROPMODE_COPY ;
            /* ### 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 [ 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 como cpia" ;
            Text [ portuguese_brazilian ] = "Als Kopie einf?en" ;
            Text[ chinese_simplified ] = "当作复制件插入";
            Text[ russian ] = "  ";
            Text[ polish ] = "Wstaw jako kopi";
            Text[ japanese ] = "コピーとして挿入";
            Text[ chinese_traditional ] = "當作複製件插入";
            Text[ arabic ] = " ";
            Text[ dutch ] = "Als kopie invoegen";
            Text[ chinese_simplified ] = "当作复制件插入";
            Text[ greek ] = "  ";
            Text[ korean ] = "복사본으로 삽입";
            Text[ turkish ] = "Kopya olarak ekle";
            Text[ language_user1 ] = " ";
            Text[ catalan ] = "Insereix com a cpia";
            Text[ finnish ] = "Lis kopiona";
            Text[ thai ] = "แทรกเป็นคัดลอก";
        };
    };
};
Menu RID_POPUP_NAVIPI_SCENARIO
{
    ItemList =
    {
        MenuItem
        {
            Identifier = RID_NAVIPI_SCENARIO_DELETE ;
            HelpId = HID_SC_SCENARIO_DELETE ;
            Text = "Lschen" ;
            Text [ ENGLISH ] = "Delete" ;
            Text [ portuguese ] = "Eliminar" ;
            Text [ english_us ] = "Delete" ;
            Text [ portuguese_brazilian ] = "L?chen" ;
            Text [ swedish ] = "Radera" ;
            Text [ danish ] = "Slet" ;
            Text [ italian ] = "Elimina" ;
            Text [ spanish ] = "Eliminar" ;
            Text [ french ] = "Supprimer" ;
            Text [ dutch ] = "Wissen" ;
            Text[ chinese_simplified ] = "删除";
            Text[ russian ] = "";
            Text[ polish ] = "Usu";
            Text[ japanese ] = "削除";
            Text[ chinese_traditional ] = "刪除";
            Text[ arabic ] = "";
            Text[ dutch ] = "Wissen";
            Text[ chinese_simplified ] = "删除";
            Text[ greek ] = "";
            Text[ korean ] = "삭제";
            Text[ turkish ] = "Sil";
            Text[ language_user1 ] = " ";
            Text[ catalan ] = "Suprimeix";
            Text[ finnish ] = "Poista";
            Text[ thai ] = "ลบ";
        };
        MenuItem
        {
            Identifier = RID_NAVIPI_SCENARIO_EDIT ;
            HelpId = HID_SC_SCENARIO_EDIT ;
            Text = "Eigenschaften..." ;
            Text [ ENGLISH ] = "Properties..." ;
            Text [ portuguese ] = "Propriedades..." ;
            Text [ english_us ] = "Properties..." ;
            Text [ portuguese_brazilian ] = "Eigenschaften..." ;
            Text [ swedish ] = "Egenskaper..." ;
            Text [ danish ] = "Egenskaber..." ;
            Text [ italian ] = "Propriet..." ;
            Text [ spanish ] = "Propiedades..." ;
            Text [ french ] = "Proprits..." ;
            Text [ dutch ] = "Eigenschappen..." ;
            Text[ chinese_simplified ] = "属性...";
            Text[ russian ] = "...";
            Text[ polish ] = "Waciwoci...";
            Text[ japanese ] = "プロパティ...";
            Text[ chinese_traditional ] = "屬性...";
            Text[ arabic ] = "...";
            Text[ dutch ] = "Eigenschappen...";
            Text[ chinese_simplified ] = "属性...";
            Text[ greek ] = "...";
            Text[ korean ] = "특성...";
            Text[ turkish ] = "zellikler...";
            Text[ language_user1 ] = " ";
            Text[ catalan ] = "Propietats...";
            Text[ finnish ] = "Ominaisuudet";
            Text[ thai ] = "คุณสมบัติ...";
        };
    };
};