summaryrefslogtreecommitdiff
path: root/sw/source/ui/table/tautofmt.src
blob: 606e4dab7da465a80a6998f375a366aa7a1f0491 (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
/*************************************************************************
 *
 *  $RCSfile: tautofmt.src,v $
 *
 *  $Revision: 1.31 $
 *
 *  last change: $Author: hr $ $Date: 2003-07-17 12:04:44 $
 *
 *  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 "tautofmt.hrc"
#include "helpid.h"
ModalDialog DLG_AUTOFMT_TABLE
{
    OutputSize = TRUE ;
    SVLook = TRUE ;
    HelpID = HID_AUTOFMT_TABLE ;
    Size = MAP_APPFONT ( 312 , 120 ) ;
    Text = "Autoformat" ;
    Text [ ENGLISH ] = "Autoformat" ;
    Text [ norwegian ] = "Autoformat" ;
    Text [ italian ] = "Formattazione automatica" ;
    Text [ portuguese_brazilian ] = "AutoFormatao" ;
    Text [ portuguese ] = "AutoFormato" ;
    Text [ finnish ] = "Automaattinen muotoilu" ;
    Text [ danish ] = "AutoFormat" ;
    Text [ french ] = "AutoFormat" ;
    Text [ swedish ] = "Autoformat" ;
    Text [ dutch ] = "AutoOpmaak" ;
    Text [ spanish ] = "Formateado automtico" ;
    Text [ english_us ] = "AutoFormat" ;
    Moveable = TRUE ;
    FixedLine FL_FORMAT
    {
        Pos = MAP_APPFONT ( 6 , 3 ) ;
        Size = MAP_APPFONT ( 243 , 8 ) ;
        Text = "Format" ;
        Text [ english_us ] = "Format" ;
        Text[ portuguese ] = "Formato";
        Text[ russian ] = "";
        Text[ greek ] = "";
        Text[ dutch ] = "Opmaak";
        Text[ french ] = "Formatage";
        Text[ spanish ] = "Formato";
        Text[ finnish ] = "Muotoilu";
        Text[ italian ] = "Formattazione";
        Text[ danish ] = "Format";
        Text[ swedish ] = "Format";
        Text[ polish ] = "Format";
        Text[ portuguese_brazilian ] = "Formato";
        Text[ japanese ] = "書式";
        Text[ korean ] = "서식";
        Text[ chinese_simplified ] = "格式";
        Text[ chinese_traditional ] = "格式";
        Text[ turkish ] = "Format";
        Text[ arabic ] = "";
        Text[ catalan ] = "Formato";
        Text[ thai ] = "รูปแบบ";
        Text[ czech ] = "Formát";
        Text[ hebrew ] = "‮עיצוב‬";
        Text[ hindi ] = "रचना";
        Text[ slovak ] = "Formát";
    };
    ListBox LB_FORMAT
    {
        Border = TRUE ;
        Pos = MAP_APPFONT ( 12 , 14 ) ;
        Size = MAP_APPFONT ( 65 , 100 ) ;
        TabStop = TRUE ;
    };
    Window WND_PREVIEW
    {
        Pos = MAP_APPFONT ( 83 , 14 ) ;
        Size = MAP_APPFONT ( 161 , 100 ) ;
        Border = TRUE;
    };
    CheckBox BTN_NUMFORMAT
    {
        Hide = TRUE ;
        Pos = MAP_APPFONT ( 12 , 131 ) ;
        Size = MAP_APPFONT ( 60 , 10 ) ;
        Text = "Zahlenf~ormat" ;
        Text [ ENGLISH ] = "~Numberformat" ;
        Text [ norwegian ] = "~Numberformat" ;
        Text [ italian ] = "Formato ~numero" ;
        Text [ portuguese_brazilian ] = "~Formato numrico" ;
        Text [ portuguese ] = "~Formato numrico" ;
        Text [ finnish ] = "Lukumuoto" ;
        Text [ danish ] = "Talformat" ;
        Text [ french ] = "~Format numrique" ;
        Text [ swedish ] = "Talf~ormat" ;
        Text [ dutch ] = "~Getalnotatie" ;
        Text [ spanish ] = "Formato nu~mrico" ;
        Text [ english_us ] = "~Number format" ;
        TabStop = TRUE ;
        Text[ chinese_simplified ] = "数字格式(~N)";
        Text[ russian ] = " ";
        Text[ polish ] = "Format ~liczb";
        Text[ japanese ] = "数の書式(~N)";
        Text[ chinese_traditional ] = "數字格式(~N)";
        Text[ arabic ] = " ";
        Text[ greek ] = " ";
        Text[ korean ] = "숫자 표기 형식(~N)";
        Text[ turkish ] = "~Say format";
        Text[ language_user1 ] = " ";
        Text[ catalan ] = "Format nu~mric";
        Text[ thai ] = "รูปแบบ~ตัวเลข";
        Text[ czech ] = "Formát čísla";
        Text[ hebrew ] = "‮תבנית מספר‬";
        Text[ hindi ] = "~संख्या की रचना";
        Text[ slovak ] = "~Formát čísla";
    };
    CheckBox BTN_BORDER
    {
        Hide = TRUE ;
        Pos = MAP_APPFONT ( 12 , 147 ) ;
        Size = MAP_APPFONT ( 60 , 10 ) ;
        Text = "~Umrandung" ;
        Text [ ENGLISH ] = "~Border" ;
        Text [ norwegian ] = "~Border" ;
        Text [ italian ] = "~Bordo" ;
        Text [ portuguese_brazilian ] = "~Bordas" ;
        Text [ portuguese ] = "~Contornos" ;
        Text [ finnish ] = "~Reunat" ;
        Text [ danish ] = "Ramme" ;
        Text [ french ] = "~Bordure" ;
        Text [ swedish ] = "~Inramning" ;
        Text [ dutch ] = "~Omranding" ;
        Text [ spanish ] = "~Bordes" ;
        Text [ english_us ] = "~Borders" ;
        TabStop = TRUE ;
        Text[ chinese_simplified ] = "边框(~B)";
        Text[ russian ] = "";
        Text[ polish ] = "~Krawdzie";
        Text[ japanese ] = "外枠(~B)";
        Text[ chinese_traditional ] = "邊框(~B)";
        Text[ arabic ] = "";
        Text[ greek ] = "";
        Text[ korean ] = "테두리(~B)";
        Text[ turkish ] = "~Snrlar";
        Text[ language_user1 ] = " ";
        Text[ catalan ] = "~Vores";
        Text[ thai ] = "เ~ส้นขอบ";
        Text[ czech ] = "Okraje";
        Text[ hebrew ] = "‮מסגרות‬";
        Text[ hindi ] = "किना~रें";
        Text[ slovak ] = "~Okraje";
    };
    CheckBox BTN_FONT
    {
        Hide = TRUE ;
        Pos = MAP_APPFONT ( 85 , 131 ) ;
        Size = MAP_APPFONT ( 60 , 10 ) ;
        Text = "Schriftar~t" ;
        Text [ ENGLISH ] = "F~ont" ;
        Text [ norwegian ] = "F~ont" ;
        Text [ italian ] = "~Tipo di carattere" ;
        Text [ portuguese_brazilian ] = "F~onte" ;
        Text [ portuguese ] = "~Tipo de letra" ;
        Text [ finnish ] = "~Fontti" ;
        Text [ danish ] = "Skrifttype" ;
        Text [ french ] = "Police" ;
        Text [ swedish ] = "~Teckensnitt" ;
        Text [ dutch ] = "~Lettertype" ;
        Text [ spanish ] = "Fuen~te" ;
        Text [ english_us ] = "F~ont" ;
        TabStop = TRUE ;
        Text[ chinese_simplified ] = "字体(~O)";
        Text[ russian ] = "";
        Text[ polish ] = "~Czcionka";
        Text[ japanese ] = "フォントの種類(~O)";
        Text[ chinese_traditional ] = "字型(~O)";
        Text[ arabic ] = " ";
        Text[ greek ] = "";
        Text[ korean ] = "글꼴(~O)";
        Text[ turkish ] = "Yaz ti~pi";
        Text[ language_user1 ] = " ";
        Text[ catalan ] = "Tipus de ~lletra";
        Text[ thai ] = "ตัวอั~กษร";
        Text[ czech ] = "Písmo";
        Text[ hebrew ] = "‮גופן‬";
        Text[ hindi ] = "अ~क्षर ";
        Text[ slovak ] = "Pí~smo";
    };
    CheckBox BTN_PATTERN
    {
        Hide = TRUE ;
        Pos = MAP_APPFONT ( 85 , 147 ) ;
        Size = MAP_APPFONT ( 60 , 10 ) ;
        Text = "~Muster" ;
        Text [ ENGLISH ] = "~Pattern" ;
        Text [ norwegian ] = "~Pattern" ;
        Text [ italian ] = "~Modello" ;
        Text [ portuguese_brazilian ] = "~Padro" ;
        Text [ portuguese ] = "~Padro" ;
        Text [ finnish ] = "~Kuvio" ;
        Text [ danish ] = "Mnster" ;
        Text [ french ] = "~Motif" ;
        Text [ swedish ] = "~Mnster" ;
        Text [ dutch ] = "~Patroon" ;
        Text [ spanish ] = "Mo~delo" ;
        Text [ english_us ] = "~Pattern" ;
        TabStop = TRUE ;
        Text[ chinese_simplified ] = "图案(~P)";
        Text[ russian ] = "~";
        Text[ polish ] = "D~ese";
        Text[ japanese ] = "背景(~P)";
        Text[ chinese_traditional ] = "圖案(~P)";
        Text[ arabic ] = "";
        Text[ greek ] = "";
        Text[ korean ] = "패턴(~P)";
        Text[ turkish ] = "~Desen";
        Text[ language_user1 ] = " ";
        Text[ catalan ] = "~Patr";
        Text[ thai ] = "~ลวดลาย";
        Text[ czech ] = "Vzorek";
        Text[ hebrew ] = "~Muster";
        Text[ hindi ] = "~नमूना";
        Text[ slovak ] = "~Vzor";
    };
    CheckBox BTN_ALIGNMENT
    {
        Hide = TRUE ;
        Pos = MAP_APPFONT ( 150 , 131 ) ;
        Size = MAP_APPFONT ( 60 , 10 ) ;
        Text = "~Ausrichtung" ;
        Text [ ENGLISH ] = "Orien~tation" ;
        Text [ norwegian ] = "Orien~tation" ;
        Text [ italian ] = "Allineamento" ;
        Text [ portuguese_brazilian ] = "~Alinhamento" ;
        Text [ portuguese ] = "~Alinhamento" ;
        Text [ finnish ] = "~Tasaus" ;
        Text [ danish ] = "Justering" ;
        Text [ french ] = "Alignement" ;
        Text [ swedish ] = "~Justering" ;
        Text [ dutch ] = "~Uitlijning" ;
        Text [ spanish ] = "Alineacin" ;
        Text [ english_us ] = "Alignmen~t" ;
        TabStop = TRUE ;
        Text[ chinese_simplified ] = "对齐(~T)";
        Text[ russian ] = "";
        Text[ polish ] = "Wy~rwnanie";
        Text[ japanese ] = "配置(~T)";
        Text[ chinese_traditional ] = "對齊(~T)";
        Text[ arabic ] = "";
        Text[ greek ] = "~";
        Text[ korean ] = "맞춤(~T)";
        Text[ turkish ] = "Hizala~ma";
        Text[ language_user1 ] = " ";
        Text[ catalan ] = "Alineamen~t";
        Text[ thai ] = "จัดตำแหน่~ง";
        Text[ czech ] = "Zarovnání";
        Text[ hebrew ] = "~Ausrichtung";
        Text[ hindi ] = "पंक्तिकर~ण";
        Text[ slovak ] = "Zarov~nanie";
    };
    FixedLine FL_FORMATS
    {
        Hide = TRUE ;
        Pos = MAP_APPFONT ( 6 , 120 ) ;
        Size = MAP_APPFONT ( 243 , 8 ) ;
        Text = "Formatierung" ;
        Text [ ENGLISH ] = "For~mats" ;
        Text [ norwegian ] = "For~mats" ;
        Text [ italian ] = "Formattazione" ;
        Text [ portuguese_brazilian ] = "Formatao" ;
        Text [ portuguese ] = "Formatar" ;
        Text [ finnish ] = "Muotoilu" ;
        Text [ danish ] = "Formatering" ;
        Text [ french ] = "Formatage" ;
        Text [ swedish ] = "Formatering" ;
        Text [ dutch ] = "Opmaak" ;
        Text [ spanish ] = "Formato" ;
        Text [ english_us ] = "Formatting" ;
        Text[ chinese_simplified ] = "格式化";
        Text[ russian ] = "";
        Text[ polish ] = "Formatowanie";
        Text[ japanese ] = "書式設定";
        Text[ chinese_traditional ] = "格式化";
        Text[ arabic ] = "";
        Text[ greek ] = "";
        Text[ korean ] = "서식 설정";
        Text[ turkish ] = "Biimleme";
        Text[ language_user1 ] = " ";
        Text[ catalan ] = "Formatatge";
        Text[ thai ] = "จัดรูปแบบ";
        Text[ czech ] = "Formátování";
        Text[ hebrew ] = "Formatierung";
        Text[ hindi ] = "रचना करना";
        Text[ slovak ] = "Formátovanie";
    };
    OKButton BTN_OK
    {
        Pos = MAP_APPFONT ( 255 , 6 ) ;
        Size = MAP_APPFONT ( 50 , 14 ) ;
        TabStop = TRUE ;
        DefButton = TRUE ;
    };
    CancelButton BTN_CANCEL
    {
        Pos = MAP_APPFONT ( 255 , 23 ) ;
        Size = MAP_APPFONT ( 50 , 14 ) ;
        TabStop = TRUE ;
    };
    MoreButton BTN_MORE
    {
        Pos = MAP_APPFONT ( 255 , 101 ) ;
        Size = MAP_APPFONT ( 50 , 14 ) ;
        Text = "~Zustze" ;
        Text [ ENGLISH ] = "~More" ;
        Text [ norwegian ] = "~Mer" ;
        Text [ italian ] = "E~xtra" ;
        Text [ portuguese_brazilian ] = "~Mais" ;
        Text [ portuguese ] = "~Opes" ;
        Text [ finnish ] = "~Lis" ;
        Text [ danish ] = "Flere" ;
        Text [ french ] = "~Options" ;
        Text [ swedish ] = "F~ler" ;
        Text [ dutch ] = "~Overige" ;
        Text [ spanish ] = "~Opciones" ;
        Text [ english_us ] = "~More" ;
        TabStop = TRUE ;
        MapUnit = MAP_APPFONT ;
        Delta = 48 ;
        Text[ chinese_simplified ] = "其他(~M)";
        Text[ russian ] = "";
        Text[ polish ] = "~Wicej";
        Text[ japanese ] = "オプション(~M)";
        Text[ chinese_traditional ] = "其他(~M)";
        Text[ arabic ] = "";
        Text[ greek ] = "";
        Text[ korean ] = "옵션(~M)";
        Text[ turkish ] = "~Fazla";
        Text[ language_user1 ] = " ";
        Text[ catalan ] = "~Ms";
        Text[ thai ] = "~รายละเอียด";
        Text[ czech ] = "Více";
        Text[ hebrew ] = "~Zusätze";
        Text[ hindi ] = "~अधिक";
        Text[ slovak ] = "~Viac";
    };
    PushButton BTN_ADD
    {
        Pos = MAP_APPFONT ( 255 , 64 ) ;
        Size = MAP_APPFONT ( 50 , 14 ) ;
        Text = "Hi~nzufgen" ;
        Text [ ENGLISH ] = "~Add" ;
        Text [ norwegian ] = "Leg~g til" ;
        Text [ italian ] = "~Aggiungi" ;
        Text [ portuguese_brazilian ] = "~Adicionar" ;
        Text [ portuguese ] = "~Adicionar" ;
        Text [ finnish ] = "~Lis" ;
        Text [ danish ] = "Tilfj" ;
        Text [ french ] = "Ajouter" ;
        Text [ swedish ] = "L~gg till" ;
        Text [ dutch ] = "~Toevoegen" ;
        Text [ spanish ] = "~Aadir" ;
        Text [ english_us ] = "~Add" ;
        TabStop = TRUE ;
        Text[ chinese_simplified ] = "新增(~A)";
        Text[ russian ] = "";
        Text[ polish ] = "~Dodaj";
        Text[ japanese ] = "挿入(~A)";
        Text[ chinese_traditional ] = "加入(~A)";
        Text[ arabic ] = "";
        Text[ greek ] = "";
        Text[ korean ] = "추가(~A)";
        Text[ turkish ] = "~Ekle";
        Text[ language_user1 ] = " ";
        Text[ catalan ] = "~Afegeix";
        Text[ thai ] = "เ~พิ่ม";
        Text[ czech ] = "Přidat";
        Text[ hebrew ] = "‮הוספה‬";
        Text[ hindi ] = "~जोड़ो";
        Text[ slovak ] = "~Pridať";
    };
    PushButton BTN_REMOVE
    {
        Pos = MAP_APPFONT ( 255 , 81 ) ;
        Size = MAP_APPFONT ( 50 , 14 ) ;
        Text = "~Lschen" ;
        Text [ ENGLISH ] = "Remo~ve" ;
        Text [ norwegian ] = "Remo~ve" ;
        Text [ italian ] = "~Elimina" ;
        Text [ portuguese_brazilian ] = "~Excluir" ;
        Text [ portuguese ] = "E~liminar" ;
        Text [ finnish ] = "~Poista" ;
        Text [ danish ] = "Slet" ;
        Text [ french ] = "Supprimer" ;
        Text [ swedish ] = "~Radera" ;
        Text [ dutch ] = "~Wissen" ;
        Text [ spanish ] = "~Borrar" ;
        Text [ english_us ] = "~Delete" ;
        TabStop = TRUE ;
        Text[ chinese_simplified ] = "删除(~D)";
        Text[ russian ] = "";
        Text[ polish ] = "~Usu";
        Text[ japanese ] = "削除(~D)";
        Text[ chinese_traditional ] = "刪除(~D)";
        Text[ arabic ] = "";
        Text[ greek ] = "";
        Text[ korean ] = "삭제(~D)";
        Text[ turkish ] = "~Sil";
        Text[ language_user1 ] = " ";
        Text[ catalan ] = "~Suprimeix";
        Text[ thai ] = "~ลบ";
        Text[ czech ] = "Smazat";
        Text[ hebrew ] = "‮מחיקה‬";
        Text[ hindi ] = "~मिटाओ";
        Text[ slovak ] = "Z~mazať";
    };
    PushButton BTN_RENAME
    {
        Pos = MAP_APPFONT ( 255 , 123 ) ;
        Size = MAP_APPFONT ( 50 , 14 ) ;
        Text = "Um~benennen" ;
        Text [ ENGLISH ] = "Ren~ame" ;
        TabStop = TRUE ;
        Text [ portuguese ] = "Mudar ~nome" ;
        Text [ english_us ] = "~Rename" ;
        Text [ portuguese_brazilian ] = "~Renomear" ;
        Text [ swedish ] = "~Byt namn" ;
        Text [ danish ] = "Omdb" ;
        Text [ italian ] = "~Rinomina" ;
        Text [ spanish ] = "Cambiar ~nombre" ;
        Text [ french ] = "Re~nommer" ;
        Text [ dutch ] = "~Naam wijzigen" ;
        Text[ chinese_simplified ] = "重命名(~R)";
        Text[ russian ] = "";
        Text[ polish ] = "~Zmie nazw";
        Text[ japanese ] = "名前の変更(~R)";
        Text[ chinese_traditional ] = "重新命名(~R)";
        Text[ arabic ] = " ";
        Text[ greek ] = "";
        Text[ korean ] = "이름 바꾸기(~R)";
        Text[ turkish ] = "~Yeniden adlandr";
        Text[ language_user1 ] = " ";
        Text[ catalan ] = "~Reanomena";
        Text[ finnish ] = "~Nime uudelleen";
        Text[ thai ] = "เ~ปลี่ยนชื่อ";
        Text[ czech ] = "Přejmenovat";
        Text[ hebrew ] = "Um~benennen";
        Text[ hindi ] = "~पुनः नाम दो";
        Text[ slovak ] = "P~remenovať";
    };
    HelpButton BTN_HELP
    {
        Pos = MAP_APPFONT ( 255 , 43 ) ;
        Size = MAP_APPFONT ( 50 , 14 ) ;
        TabStop = TRUE ;
    };
    String STR_ADD_TITLE
    {
        Text = "Autoformat hinzufgen" ;
        Text [ ENGLISH ] = "Add Autoformat" ;
        Text [ norwegian ] = "Add Autoformat" ;
        Text [ italian ] = "Aggiungi formattazione automatica" ;
        Text [ portuguese_brazilian ] = "Adicionar AutoFormatao" ;
        Text [ portuguese ] = "Adicionar AutoFormato" ;
        Text [ finnish ] = "Lis automaattinen muotoilu" ;
        Text [ danish ] = "Tilfj AutoFormat" ;
        Text [ french ] = "Ajouter un AutoFormat" ;
        Text [ swedish ] = "Lgg till autoformat" ;
        Text [ dutch ] = "AutoOpmaak toevoegen" ;
        Text [ spanish ] = "Aadir Formateado automtico" ;
        Text [ english_us ] = "Add AutoFormat" ;
        Text[ chinese_simplified ] = "新增自动格式";
        Text[ russian ] = " ";
        Text[ polish ] = "Dodaj Autoformatowanie";
        Text[ japanese ] = "オートフォーマットの追加";
        Text[ chinese_traditional ] = "新增自動格式";
        Text[ arabic ] = "  ";
        Text[ greek ] = "  ";
        Text[ korean ] = "자동 서식 추가";
        Text[ turkish ] = "Otomatik formatlamay ekle";
        Text[ language_user1 ] = " ";
        Text[ catalan ] = "Afegeix formatatge automtic";
        Text[ thai ] = "เพิ่มรูปแบบอัตโนมัติ";
        Text[ czech ] = "Přidat automatický formát";
        Text[ hebrew ] = "Autoformat hinzufügen";
        Text[ hindi ] = "स्वचालित रचना जोड़ो";
        Text[ slovak ] = "Pridať automatický formát";
    };
    String STR_ADD_LABEL
    {
        Text = "Name" ;
        Text [ ENGLISH ] = "Name" ;
        Text [ norwegian ] = "Navn" ;
        Text [ italian ] = "Nome" ;
        Text [ portuguese_brazilian ] = "Nome" ;
        Text [ portuguese ] = "Nome" ;
        Text [ finnish ] = "Nimi" ;
        Text [ danish ] = "Navn" ;
        Text [ french ] = "Nom" ;
        Text [ swedish ] = "Namn" ;
        Text [ dutch ] = "Naam" ;
        Text [ spanish ] = "Nombre" ;
        Text [ english_us ] = "Name" ;
        Text[ chinese_simplified ] = "名称";
        Text[ russian ] = "";
        Text[ polish ] = "Nazwa";
        Text[ japanese ] = "名前";
        Text[ chinese_traditional ] = "名稱";
        Text[ arabic ] = "";
        Text[ greek ] = "";
        Text[ korean ] = "이름";
        Text[ turkish ] = "Ad";
        Text[ language_user1 ] = " ";
        Text[ catalan ] = "Nom";
        Text[ thai ] = "ชื่อ";
        Text[ czech ] = "Název";
        Text[ hebrew ] = "Name";
        Text[ hindi ] = "नाम";
        Text[ slovak ] = "Názov";
    };
    String STR_DEL_TITLE
    {
        Text = "Autoformat lschen" ;
        Text [ ENGLISH ] = "Delete Autoformat" ;
        Text [ norwegian ] = "Delete Autoformat" ;
        Text [ italian ] = "Cancella formattazione automatica" ;
        Text [ portuguese_brazilian ] = "Excluir AutoFormatao" ;
        Text [ portuguese ] = "Eliminar AutoFormato" ;
        Text [ finnish ] = "Poista automaattinen muotoilu" ;
        Text [ danish ] = "Slet AutoFormat" ;
        Text [ french ] = "Supprimer l'AutoFormat" ;
        Text [ swedish ] = "Radera Autoformat" ;
        Text [ dutch ] = "AutoOpmaak wissen" ;
        Text [ spanish ] = "Borrar Formateado automtico" ;
        Text [ english_us ] = "Delete AutoFormat" ;
        Text[ chinese_simplified ] = "删除自动格式";
        Text[ russian ] = " ";
        Text[ polish ] = "Usu Autoformatowanie";
        Text[ japanese ] = "オートフォーマットの削除";
        Text[ chinese_traditional ] = "刪除自動格式";
        Text[ arabic ] = "  ";
        Text[ greek ] = "  ";
        Text[ korean ] = "자동 서식 삭제";
        Text[ turkish ] = "Otomatik formatlamay sil";
        Text[ language_user1 ] = " ";
        Text[ catalan ] = "Suprimeix el formatatge automtic";
        Text[ thai ] = "ลบรูปแบบอัตโนมัติ";
        Text[ czech ] = "Odstranit automatický formát";
        Text[ hebrew ] = "Autoformat löschen";
        Text[ hindi ] = "स्वचालित रचना मिटाओ";
        Text[ slovak ] = "Odstrániť automatický formát";
    };
    String STR_DEL_MSG
    {
        Text = "Folgendes Autoformat wird gelscht:" ;
        Text [ ENGLISH ] = "This autoformat will be deleted:" ;
        Text [ norwegian ] = "Dette Autoformat vil bli slettet:" ;
        Text [ italian ] = "Questa formattazione automatica verr cancellata:" ;
        Text [ portuguese_brazilian ] = "A seguinte AutoFormatao ser excluda:" ;
        Text [ portuguese ] = "Ser eliminado o seguinte AutoFormato:" ;
        Text [ finnish ] = "Seuraava automaattisen muotoilun merkint poistetaan:" ;
        Text [ danish ] = "Flgende AutoFormat slettes:" ;
        Text [ french ] = "L'AutoFormat suivant va tre supprim :" ;
        Text [ swedish ] = "Fljande autoformat raderas:" ;
        Text [ dutch ] = "Het volgende AutoOpmaak-item wordt gewist." ;
        Text [ spanish ] = "El Formateado automtico siguiente se borrar:" ;
        Text [ english_us ] = "The following AutoFormat entry will be deleted:" ;
        Text[ chinese_simplified ] = "删除以下的自动格式:";
        Text[ russian ] = "   :";
        Text[ polish ] = "Usunity zostanie nastpujcy wpis Autoformatowania:";
        Text[ japanese ] = "以下のオートフォーマットは削除されます:";
        Text[ chinese_traditional ] = "刪除以下的自動格式:";
        Text[ arabic ] = "     :";
        Text[ greek ] = "     :";
        Text[ korean ] = "다음과 같은 자동 서식은 삭제됩니다:";
        Text[ turkish ] = "Aadaki otomatik formatlama silinecektir:";
        Text[ language_user1 ] = " ";
        Text[ catalan ] = "L'entrada de formatatge automtic segent se suprimir:";
        Text[ thai ] = "รายการรูปแบบอัตโนมัตินี้จะถูกลบ:";
        Text[ czech ] = "Následující automatický formát bude odstraněn:";
        Text[ hebrew ] = "Folgendes Autoformat wird gelöscht:";
        Text[ hindi ] = "निम्नलिखित स्वचालित रचना प्रविष्टि को मिटाया जायेगा:";
        Text[ slovak ] = "Nasledujúci automatický formát bude odstránený:";
    };
    String STR_RENAME_TITLE
    {
        Text = "Autoformat umbenennen" ;
        Text [ ENGLISH ] = "Rename Autoformat" ;
        Text [ english_us ] = "Rename AutoFormat" ;
        Text [ portuguese ] = "Mudar nome do AutoFormato" ;
        Text [ portuguese_brazilian ] = "Renomear AutoFormatao" ;
        Text [ swedish ] = "Byt namn p autoformat" ;
        Text [ danish ] = "Omdb AutoFormat" ;
        Text [ italian ] = "Rinomina formattazione automatica" ;
        Text [ spanish ] = "Cambiar nombre del Formateado automtico" ;
        Text [ french ] = "Renommer l'AutoFormat" ;
        Text [ dutch ] = "AutoOpmaak nieuwe naam geven" ;
        Text[ chinese_simplified ] = "重命名自动格式";
        Text[ russian ] = " ";
        Text[ polish ] = "Zmie nazw Autoformatowania";
        Text[ japanese ] = "オートフォーマットの名前の変更";
        Text[ chinese_traditional ] = "重新命名自動格式";
        Text[ arabic ] = "   ";
        Text[ greek ] = "  ";
        Text[ korean ] = "자동 서식 이름 바꾸기";
        Text[ turkish ] = "Otomatik formatlamay yeniden isimlendir";
        Text[ language_user1 ] = " ";
        Text[ catalan ] = "Reanomena el formatatge automtic";
        Text[ finnish ] = "Nime automaattinen muotoilu uudelleen";
        Text[ thai ] = "เปลี่ยนชื่อรูปแบบอัตโนมัติ";
        Text[ czech ] = "Přejmenovat automatický formát";
        Text[ hebrew ] = "Autoformat umbenennen";
        Text[ hindi ] = "स्वचालित रचना को पुनः नाम दो";
        Text[ slovak ] = "Premenovať automatický formát";
    };
    String STR_BTN_CLOSE
    {
        Text = "~Schlieen" ;
        Text [ ENGLISH ] = "~Close" ;
        Text [ norwegian ] = "~Lukk" ;
        Text [ italian ] = "Chiudi" ;
        Text [ portuguese_brazilian ] = "~Fechar" ;
        Text [ portuguese ] = "~Fechar" ;
        Text [ finnish ] = "~Sulje" ;
        Text [ danish ] = "Luk" ;
        Text [ french ] = "Fermer" ;
        Text [ swedish ] = "~Stng" ;
        Text [ dutch ] = "~Sluiten" ;
        Text [ spanish ] = "~Cerrar" ;
        Text [ english_us ] = "~Close" ;
        Text[ chinese_simplified ] = "关闭(~C)";
        Text[ russian ] = "";
        Text[ polish ] = "~Zamknij";
        Text[ japanese ] = "閉じる(~C)";
        Text[ chinese_traditional ] = "關閉(~C)";
        Text[ arabic ] = "";
        Text[ greek ] = "";
        Text[ korean ] = "닫기(~C)";
        Text[ turkish ] = "~Kapat";
        Text[ language_user1 ] = " ";
        Text[ catalan ] = "~Tanca";
        Text[ thai ] = "~ปิด";
        Text[ czech ] = "Zavřít";
        Text[ hebrew ] = "‮סגירה‬";
        Text[ hindi ] = "~बन्द करो";
        Text[ slovak ] = "~Zavrieť";
    };
    String STR_JAN
    {
        Text = "Jan" ;
        Text [ ENGLISH ] = "Jan" ;
        Text [ norwegian ] = "Jan" ;
        Text [ italian ] = "gen" ;
        Text [ portuguese_brazilian ] = "Jan" ;
        Text [ portuguese ] = "Jan" ;
        Text [ finnish ] = "Tam" ;
        Text [ danish ] = "Jan" ;
        Text [ french ] = "Janv." ;
        Text [ swedish ] = "Jan" ;
        Text [ dutch ] = "Jan" ;
        Text [ spanish ] = "Ene" ;
        Text [ english_us ] = "Jan" ;
        Text[ chinese_simplified ] = "一月";
        Text[ russian ] = "";
        Text[ polish ] = "Stycze";
        Text[ japanese ] = "1月";
        Text[ chinese_traditional ] = "一月";
        Text[ arabic ] = "";
        Text[ greek ] = "";
        Text[ korean ] = "1월";
        Text[ turkish ] = "Ocak";
        Text[ language_user1 ] = " ";
        Text[ catalan ] = "Gen.";
        Text[ thai ] = "ม.ค.";
        Text[ czech ] = "Led";
        Text[ hebrew ] = "Jan";
        Text[ hindi ] = "जनवरी";
        Text[ slovak ] = "01.";
    };
    String STR_FEB
    {
        Text = "Feb" ;
        Text [ ENGLISH ] = "Feb" ;
        Text [ norwegian ] = "Feb" ;
        Text [ italian ] = "feb" ;
        Text [ portuguese_brazilian ] = "Fev" ;
        Text [ portuguese ] = "Fev" ;
        Text [ finnish ] = "Hel" ;
        Text [ danish ] = "Feb" ;
        Text [ french ] = "Fvr." ;
        Text [ swedish ] = "Feb" ;
        Text [ dutch ] = "Feb" ;
        Text [ spanish ] = "Feb" ;
        Text [ english_us ] = "Feb" ;
        Text[ chinese_simplified ] = "二月";
        Text[ russian ] = "";
        Text[ polish ] = "Luty";
        Text[ japanese ] = "2月";
        Text[ chinese_traditional ] = "二月";
        Text[ arabic ] = "";
        Text[ greek ] = "";
        Text[ korean ] = "2월";
        Text[ turkish ] = "ubat";
        Text[ language_user1 ] = " ";
        Text[ catalan ] = "Feb.";
        Text[ thai ] = "ก.พ.";
        Text[ czech ] = "Úno";
        Text[ hebrew ] = "Feb";
        Text[ hindi ] = "फरवरी";
        Text[ slovak ] = "02";
    };
    String STR_MAR
    {
        Text = "Mr" ;
        Text [ ENGLISH ] = "Mar" ;
        Text [ norwegian ] = "Mar" ;
        Text [ italian ] = "mar" ;
        Text [ portuguese_brazilian ] = "Mar" ;
        Text [ portuguese ] = "Mar" ;
        Text [ finnish ] = "Maa" ;
        Text [ danish ] = "Mar" ;
        Text [ french ] = "Mars" ;
        Text [ swedish ] = "Mar" ;
        Text [ dutch ] = "Mrt" ;
        Text [ spanish ] = "Mar" ;
        Text [ english_us ] = "Mar" ;
        Text[ chinese_simplified ] = "三月";
        Text[ russian ] = "";
        Text[ polish ] = "Marzec";
        Text[ japanese ] = "3月";
        Text[ chinese_traditional ] = "三月";
        Text[ arabic ] = "";
        Text[ greek ] = "M";
        Text[ korean ] = "3월";
        Text[ turkish ] = "Mart";
        Text[ language_user1 ] = " ";
        Text[ catalan ] = "Mar";
        Text[ thai ] = "มี.ค.";
        Text[ czech ] = "Bře";
        Text[ hebrew ] = "Mär";
        Text[ hindi ] = "मार्च";
        Text[ slovak ] = "Marec";
    };
    String STR_NORTH
    {
        Text = "Nord" ;
        Text [ ENGLISH ] = "North" ;
        Text [ norwegian ] = "North" ;
        Text [ italian ] = "nord" ;
        Text [ portuguese_brazilian ] = "Norte" ;
        Text [ portuguese ] = "Norte" ;
        Text [ finnish ] = "Pohjoinen" ;
        Text [ danish ] = "Nord" ;
        Text [ french ] = "Nord" ;
        Text [ swedish ] = "Norr" ;
        Text [ dutch ] = "Noorden" ;
        Text [ spanish ] = "Norte" ;
        Text [ english_us ] = "North" ;
        Text[ chinese_simplified ] = "北";
        Text[ russian ] = "";
        Text[ polish ] = "Pnoc";
        Text[ japanese ] = "北";
        Text[ chinese_traditional ] = "北";
        Text[ arabic ] = "";
        Text[ greek ] = "";
        Text[ korean ] = "북쪽";
        Text[ turkish ] = "Kuzey";
        Text[ language_user1 ] = " ";
        Text[ catalan ] = "Nord";
        Text[ thai ] = "เหนือ";
        Text[ czech ] = "Sever";
        Text[ hebrew ] = "Nord";
        Text[ hindi ] = "उत्तर ";
        Text[ slovak ] = "Sever";
    };
    String STR_MID
    {
        Text = "Mitte" ;
        Text [ ENGLISH ] = "Mid" ;
        Text [ norwegian ] = "Mid" ;
        Text [ italian ] = "centro" ;
        Text [ portuguese_brazilian ] = "Centro" ;
        Text [ portuguese ] = "Centro" ;
        Text [ finnish ] = "Keski" ;
        Text [ danish ] = "Midte" ;
        Text [ french ] = "Centre" ;
        Text [ swedish ] = "Mitten" ;
        Text [ dutch ] = "Midden" ;
        Text [ spanish ] = "Centrado" ;
        Text [ english_us ] = "Mid" ;
        Text[ chinese_simplified ] = "中";
        Text[ russian ] = "";
        Text[ polish ] = "Porodku";
        Text[ japanese ] = "中央";
        Text[ chinese_traditional ] = "中";
        Text[ arabic ] = "";
        Text[ greek ] = "";
        Text[ korean ] = "가운데";
        Text[ turkish ] = "Orta";
        Text[ language_user1 ] = " ";
        Text[ catalan ] = "Mig";
        Text[ thai ] = "กลาง";
        Text[ czech ] = "Střed";
        Text[ hebrew ] = "Mitte";
        Text[ hindi ] = "मध्य";
        Text[ slovak ] = "Stred";
    };
    String STR_SOUTH
    {
        Text = "Sd" ;
        Text [ ENGLISH ] = "South" ;
        Text [ norwegian ] = "South" ;
        Text [ italian ] = "Sud" ;
        Text [ portuguese_brazilian ] = "Sul" ;
        Text [ portuguese ] = "Sul" ;
        Text [ finnish ] = "Etel" ;
        Text [ danish ] = "Syd" ;
        Text [ french ] = "Sud" ;
        Text [ swedish ] = "Sder" ;
        Text [ dutch ] = "Zuiden" ;
        Text [ spanish ] = "Sur" ;
        Text [ english_us ] = "South" ;
        Text[ chinese_simplified ] = "南";
        Text[ russian ] = "";
        Text[ polish ] = "Poudnie";
        Text[ japanese ] = "南";
        Text[ chinese_traditional ] = "南";
        Text[ arabic ] = "";
        Text[ greek ] = "";
        Text[ korean ] = "남쪽";
        Text[ turkish ] = "Gney";
        Text[ language_user1 ] = " ";
        Text[ catalan ] = "Sud";
        Text[ thai ] = "ใต้";
        Text[ czech ] = "Jih";
        Text[ hebrew ] = "Süd";
        Text[ hindi ] = "दक्षिण";
        Text[ slovak ] = "Juh";
    };
    String STR_SUM
    {
        Text = "Summe" ;
        Text [ ENGLISH ] = "Sum" ;
        Text [ norwegian ] = "Sum" ;
        Text [ italian ] = "somma" ;
        Text [ portuguese_brazilian ] = "Soma" ;
        Text [ portuguese ] = "Soma" ;
        Text [ finnish ] = "Summa" ;
        Text [ danish ] = "Sum" ;
        Text [ french ] = "Somme" ;
        Text [ swedish ] = "Summa" ;
        Text [ dutch ] = "Totaal" ;
        Text [ spanish ] = "Suma" ;
        Text [ english_us ] = "Sum" ;
        Text[ chinese_simplified ] = "总计";
        Text[ russian ] = "";
        Text[ polish ] = "Suma";
        Text[ japanese ] = "合計";
        Text[ chinese_traditional ] = "小計";
        Text[ arabic ] = "";
        Text[ greek ] = "";
        Text[ korean ] = "합계";
        Text[ turkish ] = "Toplam";
        Text[ language_user1 ] = " ";
        Text[ catalan ] = "Suma";
        Text[ thai ] = "ผลรวม";
        Text[ czech ] = "Součet";
        Text[ hebrew ] = "‮סכום‬";
        Text[ hindi ] = "जोड़";
        Text[ slovak ] = "Celkom";
    };
    String STR_INVALID_AFNAME
    {
        /* ### ACHTUNG: Neuer Text in Resource? Sie haben einen ungltigen Namen angegeben.\nDas AutoFormat konnte nicht angelegt werden.\nWhlen Sie einen anderen Namen. : Sie haben einen ungltigen Namen angegeben.\nDas Autoformat konnte nicht angelegt werden.\nWhlen Sie einen anderen Namen. */
        /* ### ACHTUNG: Neuer Text in Resource? Sie haben einen ungltigen Namen angegeben.\nDas AutoFormat konnte nicht angelegt werden.\nWhlen Sie einen anderen Namen. : Sie haben einen ungltigen Namen angegeben.\nDas Autoformat konnte nicht angelegt werden.\nWhlen Sie einen anderen Namen. */
        Text = "Sie haben einen ungltigen Namen angegeben.\nDas AutoFormat konnte nicht angelegt werden.\nWhlen Sie einen anderen Namen." ;
        Text [ ENGLISH ] = "You entered an invalid name.\nThe desired AutoFormat could not be createdTry again using a different name." ;
        Text [ norwegian ] = "You entered an invalid name.\nThe desired AutoFormat could not be createdTry again using a different name." ;
        Text [ italian ] = "Nome specificato non valido.\nImpossibile creare la Formattazione automatica desiderata.\nScegliete un altro nome." ;
        Text [ portuguese_brazilian ] = "Foi digitado um nome invlido. \nA AutoFormatao desejada no foi criada. \nTente novamente com outro nome." ;
        Text [ portuguese ] = "Indicou um nome incorrecto.\nO AutoFormato desejado no pode ser criado.\nTente de novo usando um nome diferente." ;
        Text [ finnish ] = "Olet syttnyt virheellisen nimen.\nHaluttua automaattista muotoilua ei voitu luoda. \nYrit uudelleen kyttmll eri nime." ;
        Text [ danish ] = "Du har indtastet et ugyldigt navn.\nDet var ikke muligt at oprette AutoFormatet.\nVlg venligst et andet navn." ;
        Text [ french ] = "Vous avez saisi un nom non valide.\nL'AutoFormat n'a pas ou tre ffectu.\nIndiquez un autre nom." ;
        Text [ swedish ] = "Du har angett ett ogiltigt namn.\nDet gick inte att skapa autoformatet.\nVlj ett annat namn." ;
        Text [ dutch ] = "U heeft een ongeldige naam vermeld.\nDe gewenste AutoOpmaak kan niet worden uitgevoerd.\nKies een andere naam." ;
        Text [ spanish ] = "Ha indicado un nombre no vlido.\nEl Formateado automtico no se ha podido efectuar.\nSeleccione otro nombre." ;
        Text [ ENGLISH_US ] = "You have entered an invalid name.\nThe desired AutoFormat could not be created. \nTry again using a different name." ;
        Text[ chinese_simplified ] = "您给定了一个无效的名称。\n因此无法建立自动格式。\n请您输入一个有效名称。";
        Text[ russian ] = "  .\n   .\n  .";
        Text[ polish ] = "Podano nieprawidow nazw.\nUtworzenie Autoformatu nie byo moliwe.\nWybierz inn nazw.";
        Text[ japanese ] = "入力した名前は無効です。\nこのオートフォーマットでは作成できません。\n別の名前を使ってください。";
        Text[ chinese_traditional ] = "您輸入了一個無效的名稱。\n無法建立自動格式。\n請輸入一個有效名稱。";
        Text[ arabic ] = "     .\n    .\n   .";
        Text[ greek ] = "     .\n       .\n   .";
        Text[ korean ] = "잘못된 이름을 입력하셨습니다.\n요구되는 자동 서식을 만들 수 없습니다.\n다른 이름을 선택하십시오.";
        Text[ turkish ] = "Geersiz bir ad girdiniz.\nOtomatik formatlama oluturulamad.\nBaka bir ad ile deneyiniz.";
        Text[ language_user1 ] = " ";
        Text[ catalan ] = "Heu introdut un nom incorrecte.\nNo s'ha pogut crear el formatatge automtic desitjat.\nTorneu-ho a provar amb un altre nom.";
        Text[ thai ] = "คุณได้ใส่ชื่อที่ไม่ถูกต้อง\nไม่สามารถสร้างรูปแบบอัตโนมัติที่ต้องการได้ \nลองใช้ชื่อที่ต่างกันดูอีกครั้ง";
        Text[ czech ] = "Zadali jste neplatný název.\nNelze vytvořit požadovaný automatický formát.\nZkuste znovu s jiným názvem.";
        Text[ hebrew ] = "Sie haben einen ungültigen Namen angegeben.\nDas AutoFormat konnte nicht angelegt werden.\nWählen Sie einen anderen Namen.";
        Text[ hindi ] = "आपका प्रविष्ट की हुयी नाम अमान्य है ।\nउद्देशित स्वचालित रचना को उत्पन्न नहीं कर सकते है ।\nअन्य नाम के साथ फिर से प्रयत्न कीजिए ।";
        Text[ slovak ] = "Zadali ste neplatný názov.\nPožadovaný automatický formát nemožno vytvoriť. \nSkúste znovu s iným názvom.";
    };
    Text[ chinese_simplified ] = "自动格式";
    Text[ russian ] = "";
    Text[ polish ] = "Autoformatowanie";
    Text[ japanese ] = "オートフォーマット";
    Text[ chinese_traditional ] = "自動格式";
    Text[ arabic ] = " ";
    Text[ greek ] = " ";
    Text[ korean ] = "자동 서식";
    Text[ turkish ] = "Otomatik formatlama";
    Text[ language_user1 ] = " ";
    Text[ catalan ] = "Formatatge automtic";
    Text[ thai ] = "รูปแบบอัตโนมัติ";
    Text[ czech ] = "Automatický formát";
    Text[ hebrew ] = "‮עיצוב אוטומטי‬";
    Text[ hindi ] = "स्वचालित रचना ";
    Text[ slovak ] = "Automatický formát";
};
ModalDialog DLG_SWDLG_STRINPUT
{
    OutputSize = TRUE ;
    SVLook = TRUE ;
    Size = MAP_APPFONT ( 172 , 63 ) ;
    Moveable = TRUE ;
    Closeable = TRUE ;
    HelpID = HID_SWDLG_STRINPUT ;
    Edit ED_INPUT
    {
        Border = TRUE ;
        Pos = MAP_APPFONT ( 6 , 24 ) ;
        Size = MAP_APPFONT ( 104 , 12 ) ;
        TabStop = TRUE ;
    };
    FixedText FT_LABEL
    {
        Pos = MAP_APPFONT ( 6 , 13 ) ;
        Size = MAP_APPFONT ( 90 , 10 ) ;
        Text = "Label" ;
    };
    OKButton BTN_OK
    {
        Pos = MAP_APPFONT ( 116 , 6 ) ;
        Size = MAP_APPFONT ( 50 , 14 ) ;
        TabStop = TRUE ;
        DefButton = TRUE ;
    };
    CancelButton BTN_CANCEL
    {
        Pos = MAP_APPFONT ( 116 , 23 ) ;
        Size = MAP_APPFONT ( 50 , 14 ) ;
        TabStop = TRUE ;
    };
};