summaryrefslogtreecommitdiff
path: root/sw/source/ui/chrdlg/ccoll.src
blob: 24033763a2bce0934be4c11fe4fe1ea2c77e6c8b (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
/*************************************************************************
 *
 *  $RCSfile: ccoll.src,v $
 *
 *  $Revision: 1.33 $
 *
 *  last change: $Author: os $ $Date: 2002-01-10 14:17:43 $
 *
 *  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): _______________________________________
 *
 *
 ************************************************************************/
 // #pragma ******************************************************************

 // #include *****************************************************************
#include "globals.hrc"
#include "chrdlg.hrc"
#include "ccoll.hrc"
#include "helpid.h"
 // TabPage ******************************************************************
TabPage TP_CONDCOLL
{
    HelpID = HID_COND_COLL ;
    Size = MAP_APPFONT ( 260 , 185 ) ;
    Hide = TRUE ;
    FixedLine    FL_CONDITION
    {
        Pos = MAP_APPFONT ( 6 , 3 ) ;
        Size = MAP_APPFONT ( 248 , 8 ) ;
        Text = "Optionen" ;
        Text [ English ] = "Settings" ;
        Text[ english_us ] = "Options";
        Text[ portuguese ] = "Opes";
        Text[ russian ] = "";
        Text[ greek ] = "";
        Text[ dutch ] = "Opties";
        Text[ french ] = "Options";
        Text[ spanish ] = "Opciones";
        Text[ italian ] = "Opzioni";
        Text[ danish ] = "Settings";
        Text[ swedish ] = "Alternativ";
        Text[ polish ] = "Opcje";
        Text[ portuguese_brazilian ] = "Settings";
        Text[ japanese ] = "オプション";
        Text[ korean ] = "옵션";
        Text[ chinese_simplified ] = "选项";
        Text[ chinese_traditional ] = "選項";
        Text[ turkish ] = "Settings";
        Text[ arabic ] = "";
        Text[ catalan ] = "Opciones";
        Text[ finnish ] = "Mukauta";
    };
    CheckBox CB_CONDITION
    {
        Pos = MAP_APPFONT ( 12 , 14 ) ;
        Size = MAP_APPFONT ( 100 , 10 ) ;
        Text = "~Als bedingte Vorlage" ;
        Text [ English ] = "~As conditioned Style" ;
        TabStop = TRUE ;
        Disable = TRUE ;
        Text [ english_us ] = "~Conditional Style" ;
        Text [ italian ] = "Come modello condizionato" ;
        Text [ spanish ] = "C~omo estilo condicional" ;
        Text [ french ] = "Co~mme style conditionnel" ;
        Text [ dutch ] = "~Als conditioneel opmaakprofiel" ;
        Text [ swedish ] = "som villkorlig m~all" ;
        Text [ danish ] = "Som betinget typografi" ;
        Text [ portuguese_brazilian ] = "~Als bedingte Vorlage" ;
        Text [ portuguese ] = "~Estilo condicional" ;
        Text[ chinese_simplified ] = "当作有条件的样式(~C)";
        Text[ russian ] = "  ";
        Text[ polish ] = "Jako warunkowy szablon";
        Text[ japanese ] = "条件付きスタイルとして(~C)";
        Text[ chinese_traditional ] = "當作有條件的樣式(~C)";
        Text[ arabic ] = " ";
        Text[ greek ] = "  ";
        Text[ korean ] = "조건적 유형(~C)";
        Text[ turkish ] = "~Koullu biim olarak";
        Text[ language_user1 ] = "\"Vorlagen\" Styles are capitalized. EM15.5.00";
        Text[ catalan ] = "C~omo estilo condicional";
        Text[ finnish ] = "~Ehdollinen Tyyli";
    };
    FixedText FT_CONTEXT
    {
        Pos = MAP_APPFONT ( 12 , 28 ) ;
        Size = MAP_APPFONT ( 50 , 8 ) ;
        Text = "~Kontext" ;
        Text [ English ] = "~Context" ;
        Disable = TRUE ;
        Text [ dutch ] = "~Context" ;
        Text [ english_us ] = "Conte~xt" ;
        Text [ italian ] = "Contesto" ;
        Text [ spanish ] = "~Contexto" ;
        Text [ french ] = "~Contexte" ;
        Text [ swedish ] = "~Sammanhang" ;
        Text [ danish ] = "Kontekst" ;
        Text [ portuguese ] = "~Contexto" ;
        Text [ portuguese_brazilian ] = "~Kontext" ;
        Text[ chinese_simplified ] = "上下文(~X)";
        Text[ russian ] = "~";
        Text[ polish ] = "Kontekst";
        Text[ japanese ] = "コンテキスト(~X)";
        Text[ chinese_traditional ] = "上下文(~X)";
        Text[ arabic ] = "";
        Text[ greek ] = "";
        Text[ korean ] = "내용(~X)";
        Text[ turkish ] = "Balam";
        Text[ language_user1 ] = " ";
        Text[ catalan ] = "~Contexto";
        Text[ finnish ] = "~Konteksti";
    };
    FixedText FT_USED
    {
        Pos = MAP_APPFONT ( 100 , 28 ) ;
        Size = MAP_APPFONT ( 80 , 8 ) ;
        Text = "Verwendete Vorlage" ;
        Text [ English ] = "Used Style" ;
        Disable = TRUE ;
        Text [ dutch ] = "Gebruikt opmaakprofiel" ;
        Text [ english_us ] = "Applied Styles" ;
        Text [ italian ] = "Modello utilizzato" ;
        Text [ spanish ] = "Estilos utilizados" ;
        Text [ french ] = "Style utilis" ;
        Text [ swedish ] = "Anvnda formatmallar" ;
        Text [ danish ] = "Anvendt typografi" ;
        Text [ portuguese ] = "Estilos em uso" ;
        Text [ portuguese_brazilian ] = "Verwendete Vorlage" ;
        Text[ chinese_simplified ] = "使用的样式";
        Text[ russian ] = " ";
        Text[ polish ] = "Uyte style";
        Text[ japanese ] = "使用するスタイル";
        Text[ chinese_traditional ] = "使用的樣式";
        Text[ arabic ] = "  ";
        Text[ greek ] = " ";
        Text[ korean ] = "유형이 적용되었습니다.";
        Text[ turkish ] = "Uygulanan biim";
        Text[ language_user1 ] = " ";
        Text[ catalan ] = "Estilos utilizados";
        Text[ finnish ] = "K?ytetyt tyylit";
    };
    Control TB_CONDCOLLS
    {
        Border = TRUE ;
        Pos = MAP_APPFONT ( 12 , 39 ) ;
        Size = MAP_APPFONT ( 173 , 123 ) ;
        TabStop = TRUE ;
        ClipChildren = TRUE ;
        Disable = TRUE ;
        Border = TRUE ;
    };
    FixedText FT_STYLE
    {
        Pos = MAP_APPFONT ( 190 , 28 ) ;
        Size = MAP_APPFONT ( 58 , 8 ) ;
        Text = "A~bsatzvorlagen" ;
        Text [ English ] = "Styles" ;
        Disable = TRUE ;
        Text [ dutch ] = "~Alineaprofielen" ;
        Text [ english_us ] = "~Paragraph Styles" ;
        Text [ italian ] = "Modelli di paragrafo" ;
        Text [ spanish ] = "Es~tilos de prrafo" ;
        Text [ french ] = "Styles de ~paragraphe" ;
        Text [ swedish ] = "St~yckeformatmallar" ;
        Text [ danish ] = "Afsnitstypografier" ;
        Text [ portuguese ] = "E~stilos de pargrafo" ;
        Text [ portuguese_brazilian ] = "Absatzvorlagen" ;
        Text[ chinese_simplified ] = "段落样式(~P)";
        Text[ russian ] = " ";
        Text[ polish ] = "Style akapitu";
        Text[ japanese ] = "段落スタイル(~P)";
        Text[ chinese_traditional ] = "段落樣式(~P)";
        Text[ arabic ] = " ";
        Text[ greek ] = " ";
        Text[ korean ] = "단락 서식(~P)";
        Text[ turkish ] = "Paragraf biimi";
        Text[ language_user1 ] = " ";
        Text[ catalan ] = "Es~tilos de prrafo";
        Text[ finnish ] = "Paragraph Styles";
    };
    ListBox LB_STYLE
    {
        Pos = MAP_APPFONT ( 188 , 39 ) ;
        Size = MAP_APPFONT ( 60 , 108 ) ;
        TabStop = TRUE ;
        Border = TRUE ;
        Sort = TRUE ;
        Disable = TRUE ;
        HScroll = TRUE ;
    };
    ListBox LB_FILTER
    {
        Pos = MAP_APPFONT ( 188 , 150 ) ;
        Size = MAP_APPFONT ( 60 , 50 ) ;
        DropDown = TRUE ;
        TabStop = TRUE ;
        Border = TRUE ;
        Disable = TRUE ;
        HScroll = TRUE ;
    };
    PushButton PB_REMOVE
    {
        Pos = MAP_APPFONT ( 129 , 165 ) ;
        Size = MAP_APPFONT ( 50 , 12 ) ;
        Text = "~Entfernen" ;
        Text [ English ] = "~Remove" ;
        TabStop = TRUE ;
        Disable = TRUE ;
        Text [ dutch ] = "~Verwijderen" ;
        Text [ english_us ] = "Re~move" ;
        Text [ italian ] = "~Rimuovi" ;
        Text [ spanish ] = "~Eliminar" ;
        Text [ french ] = "~Supprimer" ;
        Text [ swedish ] = "Ta ~bort" ;
        Text [ danish ] = "Fjern" ;
        Text [ portuguese ] = "~Remover" ;
        Text [ portuguese_brazilian ] = "~Entfernen" ;
        Text[ chinese_simplified ] = "删除(~M)";
        Text[ russian ] = "~";
        Text[ polish ] = "~Usu";
        Text[ japanese ] = "削除(~M)";
        Text[ chinese_traditional ] = "刪除(~M)";
        Text[ arabic ] = "";
        Text[ greek ] = "";
        Text[ korean ] = "제거(~M)";
        Text[ turkish ] = "~Kaldr";
        Text[ language_user1 ] = " ";
        Text[ catalan ] = "~Eliminar";
        Text[ finnish ] = "~Poista";
    };
    PushButton PB_ASSIGN
    {
        Pos = MAP_APPFONT ( 185 , 165 ) ;
        Size = MAP_APPFONT ( 50 , 12 ) ;
        Text = "~Zuweisen" ;
        Text [ English ] = "Assign" ;
        TabStop = TRUE ;
        Disable = TRUE ;
        Text [ dutch ] = "~Toewijzen" ;
        Text [ english_us ] = "~Apply" ;
        Text [ italian ] = "~Assegna" ;
        Text [ spanish ] = "~Asignar" ;
        Text [ french ] = "~Assigner" ;
        Text [ swedish ] = "Till~dela" ;
        Text [ danish ] = "Tildel" ;
        Text [ portuguese ] = "~Atribuir" ;
        Text [ portuguese_brazilian ] = "~Zuweisen" ;
        Text[ chinese_simplified ] = "指定(~A)";
        Text[ russian ] = "~";
        Text[ polish ] = "P~rzypisz";
        Text[ japanese ] = "割り当て(~A)";
        Text[ chinese_traditional ] = "指定(~A)";
        Text[ arabic ] = "";
        Text[ greek ] = "";
        Text[ korean ] = "지정(~A)";
        Text[ turkish ] = "~Ata";
        Text[ language_user1 ] = " ";
        Text[ catalan ] = "~Asignar";
        Text[ finnish ] = "~K?yt?";
    };
    StringArray STR_REGIONS
    {
        ItemList =
        {
            < "Tabellen Kopfzeile" ; > ;
            < "Tabelle" ; > ;
            < "Rahmen" ; > ;
            < "Bereich" ; > ;
            /* ### ACHTUNG: Neuer Eintrag in Liste? 5 : Funote*/
            < "Funote" ; > ;
            < "Endnote" ; > ;
            < "Kopfzeile" ; > ;
            < "Fusszeile" ; > ;
            < " 1. Ebene Gliederung" ; > ;
            < " 2. Ebene Gliederung" ; > ;
            < " 3. Ebene Gliederung" ; > ;
            < " 4. Ebene Gliederung" ; > ;
            < " 5. Ebene Gliederung" ; > ;
            < " 6. Ebene Gliederung" ; > ;
            < " 7. Ebene Gliederung" ; > ;
            < " 8. Ebene Gliederung" ; > ;
            < " 9. Ebene Gliederung" ; > ;
            < "10. Ebene Gliederung" ; > ;
            < " 1. Ebene Nummerierung" ; > ;
            < " 2. Ebene Nummerierung" ; > ;
            < " 3. Ebene Nummerierung" ; > ;
            < " 4. Ebene Nummerierung" ; > ;
            < " 5. Ebene Nummerierung" ; > ;
            < " 6. Ebene Nummerierung" ; > ;
            < " 7. Ebene Nummerierung" ; > ;
            < " 8. Ebene Nummerierung" ; > ;
            < " 9. Ebene Nummerierung" ; > ;
            < "10. Ebene Nummerierung" ; > ;
        };
        ItemList [ English ] =
        {
            < "Tabellen Kopfzeile" ; > ;
            < "Tabelle" ; > ;
            < "Rahmen" ; > ;
            < "Bereich" ; > ;
            < "Funote" ; > ;
            < "Endnote" ; > ;
            < "Kopfzeile" ; > ;
            < "Fusszeile" ; > ;
            < " 1. Ebene Gliederung" ; > ;
            < " 2. Ebene Gliederung" ; > ;
            < " 3. Ebene Gliederung" ; > ;
            < " 4. Ebene Gliederung" ; > ;
            < " 5. Ebene Gliederung" ; > ;
            < " 6. Ebene Gliederung" ; > ;
            < " 7. Ebene Gliederung" ; > ;
            < " 8. Ebene Gliederung" ; > ;
            < " 9. Ebene Gliederung" ; > ;
            < "10. Ebene Gliederung" ; > ;
            < " 1. Ebene Numerierung" ; > ;
            < " 2. Ebene Numerierung" ; > ;
            < " 3. Ebene Numerierung" ; > ;
            < " 4. Ebene Numerierung" ; > ;
            < " 5. Ebene Numerierung" ; > ;
            < " 6. Ebene Numerierung" ; > ;
            < " 7. Ebene Numerierung" ; > ;
            < " 8. Ebene Numerierung" ; > ;
            < " 9. Ebene Numerierung" ; > ;
            < "10. Ebene Numerierung" ; > ;
        };
        itemlist [ portuguese ] =
        {
            < "Cabealho de folha" ; > ;
            < "Tabela" ; > ;
            < "Moldura" ; > ;
            < "Seco" ; > ;
            < "Nota de rodap" ; > ;
            < "Nota final" ; > ;
            < "Cabealho" ; > ;
            < "Rodap" ; > ;
            < "1 nvel do esquema" ; > ;
            < "2 nvel do esquema" ; > ;
            < "3 nvel do esquema" ; > ;
            < "4 nvel do esquema" ; > ;
            < "5 nvel do esquema" ; > ;
            < "6 nvel do esquema" ; > ;
            < "7 nvel do esquema" ; > ;
            < "8 nvel do esquema" ; > ;
            < "9 nvel do esquema" ; > ;
            < "10 nvel do esquema" ; > ;
            < "1 nvel de numerao" ; > ;
            < "2 nvel de numerao" ; > ;
            < "3 nvel de numerao" ; > ;
            < "4 nvel de numerao" ; > ;
            < "5 nvel de numerao" ; > ;
            < "6 nvel de numerao" ; > ;
            < "7 nvel de numerao" ; > ;
            < "8 nvel de numerao" ; > ;
            < "9 nvel de numerao" ; > ;
            < "10 nvel de numerao" ; > ;
        };
        itemlist [ english_us ] =
        {
            < "Table Header" ; > ;
            < "Table" ; > ;
            < "Frame" ; > ;
            < "Section" ; > ;
            < "Footnote" ; > ;
            < "Endnote" ; > ;
            < "Header" ; > ;
            < "Footer" ; > ;
            < " 1st Outline Level" ; > ;
            < " 2nd Outline Level" ; > ;
            < " 3rd Outline Level" ; > ;
            < " 4th Outline Level" ; > ;
            < " 5th Outline Level" ; > ;
            < " 6th Outline Level" ; > ;
            < " 7th Outline Level" ; > ;
            < " 8th Outline Level" ; > ;
            < " 9th Outline Level" ; > ;
            < "10th Outline Level" ; > ;
            < " 1st Numbering Level" ; > ;
            < " 2nd Numbering Level" ; > ;
            < " 3rd Numbering Level" ; > ;
            < " 4th Numbering Level" ; > ;
            < " 5th Numbering Level" ; > ;
            < " 6th Numbering Level" ; > ;
            < " 7th Numbering Level" ; > ;
            < " 8th Numbering Level" ; > ;
            < " 9th Numbering Level" ; > ;
            < "10th Numbering Level" ; > ;
        };
        itemlist [ portuguese_brazilian ] =
        {
            < "Tabellen Kopfzeile" ; > ;
            < "Tabelle" ; > ;
            < "Rahmen" ; > ;
            < "Bereich" ; > ;
            < "Fu?note" ; > ;
            < "Kopfzeile" ; > ;
            < "Fusszeile" ; > ;
            < "1. Ebene Gliederung" ; > ;
            < "2. Ebene Gliederung" ; > ;
            < "3. Ebene Gliederung" ; > ;
            < "4. Ebene Gliederung" ; > ;
            < "5. Ebene Gliederung" ; > ;
            < "1. Ebene Numerierung" ; > ;
            < "2. Ebene Numerierung" ; > ;
            < "3. Ebene Numerierung" ; > ;
            < "4. Ebene Numerierung" ; > ;
            < "5. Ebene Numerierung" ; > ;
            < "10. Ebene Gliederung" ; > ;
            < "1. Ebene Numerierung" ; > ;
            < "2. Ebene Numerierung" ; > ;
            < "3. Ebene Numerierung" ; > ;
            < "4. Ebene Numerierung" ; > ;
            < "5. Ebene Numerierung" ; > ;
            < "6. Ebene Numerierung" ; > ;
            < "7. Ebene Numerierung" ; > ;
            < "8. Ebene Numerierung" ; > ;
            < "9. Ebene Numerierung" ; > ;
            < "10. Ebene Numerierung" ; > ;
        };
        itemlist [ swedish ] =
        {
            < "Sidhuvud tabell" ; > ;
            < "Tabell" ; > ;
            < "Ram" ; > ;
            < "Omrde" ; > ;
            < "Fotnot" ; > ;
            < "Slutnot" ; > ;
            < "Sidhuvud" ; > ;
            < "Sidfot" ; > ;
            < "1:a dispositionsnivn" ; > ;
            < "2:a dispositionsnivn" ; > ;
            < "3:e dispositionsnivn" ; > ;
            < "4:e dispositionsnivn" ; > ;
            < "5:e dispositionsnivn" ; > ;
            < "2:a dispositionsnivn" ; > ;
            < "7:e dispositionsnivn" ; > ;
            < "8:e dispositionsnivn" ; > ;
            < "9:e dispositionsnivn" ; > ;
            < "10:e dispositionsnivn" ; > ;
            < "1:a numreringsnivn" ; > ;
            < "2:a numreringsnivn" ; > ;
            < "3:e numreringsnivn" ; > ;
            < "4:e numreringsnivn" ; > ;
            < "5:e numreringsnivn" ; > ;
            < "6:e numreringsnivn" ; > ;
            < "7:e numreringsnivn" ; > ;
            < "8:e numreringsnivn" ; > ;
            < "9:e numreringsnivn" ; > ;
            < "10:e numreringsnivn" ; > ;
        };
        itemlist [ danish ] =
        {
            < "Tabelsidehoved" ; > ;
            < "Tabel" ; > ;
            < "Ramme" ; > ;
            < "Omrde" ; > ;
            < "Fodnote" ; > ;
            < "Slutnote" ; > ;
            < "Sidehoved" ; > ;
            < "Sidefod" ; > ;
            < "1. dispositionsniveau" ; > ;
            < "2. dispositionsniveau" ; > ;
            < "3. dispositionsniveau" ; > ;
            < "4. dispositionsniveau" ; > ;
            < "5. dispositionsniveau" ; > ;
            < "6. dispositionsniveau" ; > ;
            < "7. dispositionsniveau" ; > ;
            < "8. dispositionsniveau" ; > ;
            < "9. dispositionsniveau" ; > ;
            < "10. dispositionsniveau" ; > ;
            < "1. nummereringsniveau" ; > ;
            < "2. nummereringsniveau" ; > ;
            < "3. nummereringsniveau" ; > ;
            < "4. nummereringsniveau" ; > ;
            < "5. nummereringsniveau" ; > ;
            < "6. nummereringsniveau" ; > ;
            < "7. nummereringsniveau" ; > ;
            < "8. nummereringsniveau" ; > ;
            < "9. nummereringsniveau" ; > ;
            < "10. nummereringsniveau" ; > ;
        };
        itemlist [ italian ] =
        {
            < "Intestazione tabella" ; > ;
            < "Tabella" ; > ;
            < "Cornice" ; > ;
            < "Sezione" ; > ;
            < "Nota a pi pagina" ; > ;
            < "Nota di chiusura" ; > ;
            < "Riga d'intestazione" ; > ;
            < "Pi di pagina" ; > ;
            < "Livello struttura 1" ; > ;
            < "Livello struttura 2" ; > ;
            < "Livello struttura 3" ; > ;
            < "Livello struttura 4" ; > ;
            < "Livello struttura 5" ; > ;
            < "Livello struttura 6" ; > ;
            < "Livello struttura 7 " ; > ;
            < "Livello struttura 8" ; > ;
            < "Livello struttura 9" ; > ;
            < "10 livello di struttura" ; > ;
            < "1 livello di numerazione" ; > ;
            < "2 livello di numerazione" ; > ;
            < "3 livello di numerazione" ; > ;
            < "4 livello di numerazione" ; > ;
            < "5 livello di numerazione" ; > ;
            < "6 livello di numerazione" ; > ;
            < "7 livello di numerazione" ; > ;
            < "8 livello di numerazione" ; > ;
            < "9 livello di numerazione" ; > ;
            < "10 livello di numerazione" ; > ;
        };
        itemlist [ spanish ] =
        {
            < "Encabezamiento de la hoja" ; > ;
            < "Tabla" ; > ;
            < "Marco" ; > ;
            < "rea" ; > ;
            < "Nota al pie" ; > ;
            < "Nota al final" ; > ;
            < "Encabezamiento" ; > ;
            < "Pie de pgina" ; > ;
            < "1 nivel del esquema" ; > ;
            < "2 nivel del esquema" ; > ;
            < "3 nivel del esquema" ; > ;
            < "4 nivel del esquema" ; > ;
            < "5 nivel del esquema" ; > ;
            < "6 nivel del esquema" ; > ;
            < "7 nivel del esquema" ; > ;
            < "8 nivel del esquema" ; > ;
            < "9 nivel del esquema" ; > ;
            < "10 nivel del esquema" ; > ;
            < "1 nivel de la numeracin" ; > ;
            < "2 nivel de la numeracin" ; > ;
            < "3 nivel de la numeracin" ; > ;
            < "4 nivel de la numeracin" ; > ;
            < "5 nivel de la numeracin" ; > ;
            < "6 nivel de la numeracin" ; > ;
            < "7 nivel de la numeracin" ; > ;
            < "8 nivel de la numeracin" ; > ;
            < "9 nivel de la numeracin" ; > ;
            < "10 nivel de numeracin" ; > ;
        };
        itemlist [ french ] =
        {
            < "En-tte tableau" ; > ;
            < "Tableau" ; > ;
            < "Cadre" ; > ;
            < "Section" ; > ;
            < "Note de bas de page" ; > ;
            < "Note de fin" ; > ;
            < "En-tte" ; > ;
            < "Pied de page" ; > ;
            < "1er niveau de plan" ; > ;
            < "2me niveau de plan" ; > ;
            < "3me niveau de plan" ; > ;
            < "4me niveau de plan" ; > ;
            < "5me niveau de plan" ; > ;
            < "6me niveau de plan" ; > ;
            < "7me niveau de plan" ; > ;
            < "8me niveau de plan" ; > ;
            < "9me niveau de plan" ; > ;
            < "10me niveau de plan" ; > ;
            < "1er niveau de numrotation" ; > ;
            < "2me niveau de numrotation" ; > ;
            < "3me niveau de numrotation" ; > ;
            < "4me niveau de numrotation" ; > ;
            < "5me niveau de numrotation" ; > ;
            < "6me niveau de numrotation" ; > ;
            < "7me niveau de numrotation" ; > ;
            < "8me niveau de numrotation" ; > ;
            < "9me niveau de numrotation" ; > ;
            < "10me niveau de numrotation" ; > ;
        };
        itemlist [ dutch ] =
        {
            < "Koptekst tabel" ; > ;
            < "Tabel" ; > ;
            < "Kader" ; > ;
            < "Bereik" ; > ;
            < "Voetnoot" ; > ;
            < "Eindnoot" ; > ;
            < "Koptekst" ; > ;
            < "Voettekst" ; > ;
            < "1. niveau overzicht" ; > ;
            < "2. niveau overzicht" ; > ;
            < "3. niveau overzicht" ; > ;
            < "4. niveau overzicht" ; > ;
            < "5. niveau nummering" ; > ;
            < "6. niveau overzicht" ; > ;
            < "7. niveau overzicht" ; > ;
            < "8. niveau overzicht" ; > ;
            < "9. niveau overzicht" ; > ;
            < "10. niveau overzicht" ; > ;
            < "1. niveau nummering" ; > ;
            < "2.niveau nummering" ; > ;
            < "3.niveau nummering" ; > ;
            < "4. niveau nummering" ; > ;
            < "5. niveau nummering" ; > ;
            < "6. niveau nummering" ; > ;
            < "7. niveau nummering" ; > ;
            < "8. niveau nummering" ; > ;
            < "9. niveau nummering" ; > ;
            < "10. niveau nummering" ; > ;
        };
    ItemList [ chinese_simplified ] =
    {
            < "表格页眉" ; > ;
        < "表格" ; > ;
        < "框" ; > ;
        < "区域" ; > ;
        < "注脚" ; > ;
        < "尾注" ; > ;
        < "页眉" ; > ;
        < "页脚" ; > ;
        < "第一个大纲级" ; > ;
        < "第二个大纲级" ; > ;
        < "第三个大纲级" ; > ;
        < "第四个大纲级" ; > ;
        < "第五个大纲级" ; > ;
        < "第六个大纲级" ; > ;
        < "第七个大纲级" ; > ;
        < "第八个大纲级" ; > ;
        < "第九个大纲级" ; > ;
        < "第十个大纲级" ; > ;
        < "第一级编号" ; > ;
        < "第二级编号" ; > ;
        < "第三级编号" ; > ;
        < "第四级编号" ; > ;
        < "第五级编号" ; > ;
        < "第六级编号" ; > ;
        < "第七级编号" ; > ;
        < "第八级编号" ; > ;
        < "第九级编号" ; > ;
        < "第十级编号" ; > ;
    };
    ItemList [ russian ] =
    {
            < "  " ; > ;
        < "" ; > ;
        < "" ; > ;
        < "" ; > ;
        < "" ; > ;
        < " " ; > ;
        < " " ; > ;
        < " " ; > ;
        < "1-  " ; > ;
        < "2-  " ; > ;
        < "3-  " ; > ;
        < "4-  " ; > ;
        < "5-  " ; > ;
        < "6-  " ; > ;
        < "7-  " ; > ;
        < "8-  " ; > ;
        < "9-  " ; > ;
        < "10-  " ; > ;
        < "1-  " ; > ;
        < "2-  " ; > ;
        < "3-  " ; > ;
        < "4-  " ; > ;
        < "5-  " ; > ;
        < "6-  " ; > ;
        < "7-  " ; > ;
        < "8-  " ; > ;
        < "9-  " ; > ;
        < "10-  " ; > ;
    };
    ItemList [ polish ] =
    {
            < "Tabele Nagwek" ; > ;
        < "Tabela" ; > ;
        < "Ramka" ; > ;
        < "Sekcja" ; > ;
        < "Przypis dolny" ; > ;
        < "Przypis koc." ; > ;
        < "Nagwek" ; > ;
        < "Stopka" ; > ;
        < "1. Poziom kontekstu" ; > ;
        < "2. poziom konspektu" ; > ;
        < "3. Poziom konspektu" ; > ;
        < "4. Poziom konspektu" ; > ;
        < "5. Poziom konspektu" ; > ;
        < "6. Poziom konspektu" ; > ;
        < "7. Poziom konspektu" ; > ;
        < "8. Poziom konspektu" ; > ;
        < "9. Poziom konspektu" ; > ;
        < "10. Poziom konspektu" ; > ;
        < "1 Poziom numeracji" ; > ;
        < "2. Poziom numeracji" ; > ;
        < "3. Poziom numeracji" ; > ;
        < "4. Poziom numeracji" ; > ;
        < "5. Poziom numeracji" ; > ;
        < "6. Poziom numeracji" ; > ;
        < "7. Poziom numeracji" ; > ;
        < "8. Poziom numeracji" ; > ;
        < "9. Poziom numeracji" ; > ;
        < "10. Poziom numeracji" ; > ;
    };
    ItemList [ japanese ] =
    {
            < "表のヘッダ" ; > ;
        < "表" ; > ;
        < "枠" ; > ;
        < "範囲" ; > ;
        < "脚注" ; > ;
        < "文末脚注" ; > ;
        < "ヘッダ" ; > ;
        < "フッタ" ; > ;
        < "1レベル目のアウトライン" ; > ;
        < "2レベル目のアウトライン" ; > ;
        < "3レベル目のアウトライン" ; > ;
        < "4レベル目のアウトライン" ; > ;
        < "5レベル目のアウトライン" ; > ;
        < "6レベル目のアウトライン" ; > ;
        < "7レベル目のアウトライン" ; > ;
        < "8レベル目のアウトライン" ; > ;
        < "9レベル目のアウトライン" ; > ;
        < "10レベル目のアウトライン" ; > ;
        < "1レベル目の番号付け" ; > ;
        < "2レベル目の番号付け" ; > ;
        < "3レベル目の番号付け" ; > ;
        < "4レベル目の番号付け" ; > ;
        < "5レベル目の番号付け" ; > ;
        < "6レベル目の番号付け" ; > ;
        < "7レベル目の番号付け" ; > ;
        < "8レベル目の番号付け" ; > ;
        < "9レベル目の番号付け" ; > ;
        < "10レベル目の番号付け" ; > ;
    };
    ItemList [ chinese_traditional ] =
    {
            < "表格頁首" ; > ;
        < "表格" ; > ;
        < "文字方塊" ; > ;
        < "區域" ; > ;
        < "註腳" ; > ;
        < "尾註" ; > ;
        < "頁首" ; > ;
        < "頁尾" ; > ;
        < "第一個大綱級" ; > ;
        < "第二個大綱級" ; > ;
        < "第三個大綱級" ; > ;
        < "第四個大綱級" ; > ;
        < "第五個大綱級" ; > ;
        < "第六個大綱級" ; > ;
        < "第七個大綱級" ; > ;
        < "第八個大綱級" ; > ;
        < "第九個大綱級" ; > ;
        < "第十個大綱級" ; > ;
        < "第一級編號" ; > ;
        < "第二級編號" ; > ;
        < "第三級編號" ; > ;
        < "第四級編號" ; > ;
        < "第五級編號" ; > ;
        < "第六級編號" ; > ;
        < "第七級編號" ; > ;
        < "第八級編號" ; > ;
        < "第九級編號" ; > ;
        < "第十級編號" ; > ;
    };
    ItemList [ arabic ] =
    {
            < " " ; > ;
        < "" ; > ;
        < "" ; > ;
        < "" ; > ;
        < " " ; > ;
        < " " ; > ;
        < " " ; > ;
        < " " ; > ;
        < "  " ; > ;
        < "  " ; > ;
        < "  " ; > ;
        < "  " ; > ;
        < "  " ; > ;
        < "  " ; > ;
        < "  " ; > ;
        < "  " ; > ;
        < "  " ; > ;
        < "  " ; > ;
        < "  " ; > ;
        < "  " ; > ;
        < "  " ; > ;
        < "  " ; > ;
        < "  " ; > ;
        < "  " ; > ;
        < "  " ; > ;
        < "  " ; > ;
        < "  " ; > ;
        < "  " ; > ;
    };
    ItemList [ greek ] =
    {
            < " " ; > ;
        < "" ; > ;
        < "" ; > ;
        < "" ; > ;
        < "" ; > ;
        < " " ; > ;
        < "" ; > ;
        < "" ; > ;
        < "1  " ; > ;
        < "2.  " ; > ;
        < "3  " ; > ;
        < "4  " ; > ;
        < "5  " ; > ;
        < "6  " ; > ;
        < "7  " ; > ;
        < "8  " ; > ;
        < "9  " ; > ;
        < "10  " ; > ;
        < "1.  " ; > ;
        < "2.  " ; > ;
        < "3.  " ; > ;
        < "4.  " ; > ;
        < "5.  " ; > ;
        < "6.  " ; > ;
        < "7.  " ; > ;
        < "8.  " ; > ;
        < "9.  " ; > ;
        < "10.  " ; > ;
    };
    ItemList [ korean ] =
    {
            < "시트 머리말" ; > ;
        < "표" ; > ;
        < "테두리" ; > ;
        < "구역" ; > ;
        < "바닥글" ; > ;
        < "미주" ; > ;
        < "머리글" ; > ;
        < "바닥글" ; > ;
        < " 1번째 다단계" ; > ;
        < " 2번째 다단계" ; > ;
        < " 3번째 다단계" ; > ;
        < " 4번째 다단계" ; > ;
        < " 5번째 다단계" ; > ;
        < " 6번째 다단계" ; > ;
        < " 7번째 다단계" ; > ;
        < " 8번째 다단계" ; > ;
        < " 9번째 다단계" ; > ;
        < "10번째 다단계" ; > ;
        < " 1번째 단계 번호 매기기" ; > ;
        < " 2번째 단계 번호 매기기" ; > ;
        < " 3번째 단계 번호 매기기" ; > ;
        < " 4번째 단계 번호 매기기" ; > ;
        < " 5번째 단계 번호 매기기" ; > ;
        < " 6번째 단계 번호 매기기" ; > ;
        < " 7번째 단계 번호 매기기" ; > ;
        < " 8번째 단계 번호 매기기" ; > ;
        < " 9번째 단계 번호 매기기" ; > ;
        < "10번째 단계 번호 매기기" ; > ;
    };
    ItemList [ turkish ] =
    {
            < "Tablo bal" ; > ;
        < "Tablo" ; > ;
        < "ereve" ; > ;
        < "Blm" ; > ;
        < "Dipnot" ; > ;
        < "Sonnot" ; > ;
        < "st bilgi" ; > ;
        < "Alt bilgi" ; > ;
        < "1. Anahat dzeyi" ; > ;
        < "2. Anahat dzeyi" ; > ;
        < "3. Anahat dzeyi" ; > ;
        < "4. Anahat dzeyi" ; > ;
        < "5. Anahat dzeyi" ; > ;
        < "6. Anahat dzeyi" ; > ;
        < "7. Anahat dzeyi" ; > ;
        < "8. Anahat dzeyi" ; > ;
        < "9. Anahat dzeyi" ; > ;
        < "10. Anahat dzeyi" ; > ;
        < "1. Numaralama dzeyi" ; > ;
        < "2. Numaralama dzeyi" ; > ;
        < "3. Numaralama dzeyi" ; > ;
        < "4. Numaralama dzeyi" ; > ;
        < "5. Numaralama dzeyi" ; > ;
        < "6. Numaralama dzeyi" ; > ;
        < "7. Numaralama dzeyi" ; > ;
        < "8. Numaralama dzeyi" ; > ;
        < "9. Numaralama dzeyi" ; > ;
        < "10. Numaralama dzeyi" ; > ;
    };
    ItemList [ language_user1 ] =
    {
            < " " ; > ;
        < " " ; > ;
        < " " ; > ;
        < " " ; > ;
        < " " ; > ;
        < " " ; > ;
        < " " ; > ;
        < " " ; > ;
        < " " ; > ;
        < " " ; > ;
        < " " ; > ;
        < " " ; > ;
        < " " ; > ;
        < " " ; > ;
        < " " ; > ;
        < " " ; > ;
        < " " ; > ;
        < " " ; > ;
        < " " ; > ;
        < " " ; > ;
        < " " ; > ;
        < " " ; > ;
        < " " ; > ;
        < " " ; > ;
        < " " ; > ;
        < " " ; > ;
        < " " ; > ;
        < " " ; > ;
    };
    ItemList [ catalan ] =
    {
            < "Encabezamiento de la hoja" ; > ;
        < "Tabla" ; > ;
        < "Marco" ; > ;
        < "Area" ; > ;
        < "Nota al pie" ; > ;
        < "Nota al final" ; > ;
        < "Encabezamiento" ; > ;
        < "Pie de pgina" ; > ;
        < "1 nivel del esquema" ; > ;
        < "2 nivel del esquema" ; > ;
        < "3 nivel del esquema" ; > ;
        < "4 nivel del esquema" ; > ;
        < "5 nivel del esquema" ; > ;
        < "6 nivel del esquema" ; > ;
        < "7 nivel del esquema" ; > ;
        < "8 nivel del esquema" ; > ;
        < "9 nivel del esquema" ; > ;
        < "10 nivel del esquema" ; > ;
        < "1 nivel de la numeracin" ; > ;
        < "2 nivel de la numeracin" ; > ;
        < "3 nivel de la numeracin" ; > ;
        < "4 nivel de la numeracin" ; > ;
        < "5 nivel de la numeracin" ; > ;
        < "6 nivel de la numeracin" ; > ;
        < "7 nivel de la numeracin" ; > ;
        < "8 nivel de la numeracin" ; > ;
        < "9 nivel de la numeracin" ; > ;
        < "10 nivel de numeracin" ; > ;
    };
    ItemList [ finnish ] =
    {
            < "Taulukon yl?otsikko" ; > ;
        < "Taulukko" ; > ;
        < "Kehys" ; > ;
        < "Osio" ; > ;
        < "Alaviite" ; > ;
        < "Loppuhuomautus" ; > ;
        < "Yl?otsikko" ; > ;
        < "Alaselite" ; > ;
        < " 1. j?sennystaso" ; > ;
        < " 2. j?sennystaso" ; > ;
        < " 3. j?sennystaso" ; > ;
        < " 4. j?sennystaso" ; > ;
        < " 5. j?sennystaso" ; > ;
        < " 6. j?sennystaso" ; > ;
        < " 7. j?sennystaso" ; > ;
        < " 8. j?sennystaso" ; > ;
        < " 9. j?sennystaso" ; > ;
        < "10. j?sennystaso" ; > ;
        < " 1. numerointitaso" ; > ;
        < " 2. numerointitaso" ; > ;
        < " 3. numerointitaso" ; > ;
        < " 4. numerointitaso" ; > ;
        < " 5. numerointitaso" ; > ;
        < " 6. numerointitaso" ; > ;
        < " 7. j?sennystaso" ; > ;
        < " 8. j?sennystaso" ; > ;
        < " 9. j?sennystaso" ; > ;
        < "10. numerointitaso" ; > ;
    };
    };
    String STR_NOTEMPL
    {
        Text = "<keine>" ;
        Text [ English ] = "<none>" ;
        Text [ dutch ] = "<geen>" ;
        Text [ english_us ] = "<none>" ;
        Text [ italian ] = "<nessuno>" ;
        Text [ spanish ] = "<ninguno>" ;
        Text [ french ] = "<aucun(e)>" ;
        Text [ swedish ] = "<ingen>" ;
        Text [ danish ] = "<ingen>" ;
        Text [ portuguese ] = "<nenhum>" ;
        Text [ portuguese_brazilian ] = "<keine>" ;
        Text[ chinese_simplified ] = "<无>";
        Text[ russian ] = "<>";
        Text[ polish ] = "<brak>";
        Text[ japanese ] = "<なし>";
        Text[ language_user1 ] = " ";
        Text[ chinese_traditional ] = "<無>";
        Text[ arabic ] = "<>";
        Text[ greek ] = "<>";
        Text[ korean ] = "<없음>";
        Text[ turkish ] = "<yok>";
        Text[ catalan ] = "<ninguno>";
        Text[ finnish ] = "<ei mit??n>";
    };
};
 // ********************************************************************** EOF