summaryrefslogtreecommitdiff
path: root/svx/source/dialog/fontwork.src
blob: 96f8ef914c118d5afa9280310029a7533388e284 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
/*************************************************************************
 *
 *  $RCSfile: fontwork.src,v $
 *
 *  $Revision: 1.26 $
 *
 *  last change: $Author: ka $ $Date: 2002-05-22 10:37:15 $
 *
 *  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 ---------------------------------------------------------------
#include "svxids.hrc"
#include "dialogs.hrc"
#include "fontwork.hrc"
#include "helpid.hrc"
 // pragma ----------------------------------------------------------------

 // RID_SVXDLG_FONTWORK ---------------------------------------------------
DockingWindow RID_SVXDLG_FONTWORK
{
    HelpId = SID_FONTWORK ;
    OutputSize = TRUE ;
    SVLook = TRUE ;
    Hide = TRUE ;
    Pos = MAP_APPFONT ( 0 , 0 ) ;
    Size = MAP_APPFONT ( 89 , 193 ) ;
    Text = "FontWork" ;
    Text [ ENGLISH ] = "FontWork" ;
    Text [ norwegian ] = "FontWork" ;
    Text [ italian ] = "FontWork" ;
    Text [ portuguese_brazilian ] = "FontWork" ;
    Text [ portuguese ] = "FontWork" ;
    Text [ french ] = "FontWork" ;
    Text [ dutch ] = "FontWork" ;
    Text [ spanish ] = "FontWork" ;
    Text [ danish ] = "FontWork" ;
    Text [ swedish ] = "FontWork" ;
    Text [ finnish ] = "Fonttity" ;
    Text [ english_us ] = "FontWork" ;
    Moveable = TRUE ;
    Zoomable = TRUE ;
    Closeable = TRUE ;
    Dockable = TRUE ;
    EnableResizing = TRUE ;
    DialogControl = TRUE ;
    Control VS_FORMS
    {
        HelpId = HID_FONTWORK_CTL_FORMS ;
        Pos = MAP_APPFONT ( 6 , 4 ) ;
        Size = MAP_APPFONT ( 71 , 30 ) ;
        Border = TRUE ;
        TabStop = TRUE ;
    };
    ToolBox TBX_STYLE
    {
        SVLook = TRUE ;
        Pos = MAP_APPFONT ( 6 , 41 ) ;
        TabStop = TRUE ;
        ItemList =
        {
            ToolBoxItem
            {
                AutoCheck = TRUE ;
                Identifier = TBI_STYLE_OFF ;
                HelpId = HID_FONTWORK_TBI_STYLE_OFF ;
                Text = "Aus" ;
                Text [ ENGLISH ] = "Off" ;
                Text [ dutch ] = "Uit" ;
                Text [ english_us ] = "Off" ;
                Text [ italian ] = "Off" ;
                Text [ spanish ] = "Desactivado" ;
                Text [ french ] = "Dsactiv" ;
                Text [ swedish ] = "Av" ;
                Text [ danish ] = "Deaktiver" ;
                Text [ portuguese ] = "Desactivar" ;
                Text [ portuguese_brazilian ] = "Aus" ;
                Text[ chinese_simplified ] = "不使用";
                Text[ russian ] = ".";
                Text[ polish ] = "Wycz";
                Text[ japanese ] = "オフ";
                Text[ chinese_traditional ] = "不使用";
                Text[ arabic ] = "";
                Text[ greek ] = "";
                Text[ korean ] = "해제";
                Text[ turkish ] = "Kapal";
                Text[ language_user1 ] = " ";
                Text[ catalan ] = "Desactivado";
                Text[ finnish ] = "Off";
                Text[ thai ] = "ปิด";
            };
            ToolBoxItem
            {
                Type = TOOLBOXITEM_SEPARATOR ;
            };
            ToolBoxItem
            {
                AutoCheck = TRUE ;
                RadioCheck = TRUE ;
                Identifier = TBI_STYLE_ROTATE ;
                HelpId = HID_FONTWORK_TBI_STYLE_ROTATE ;
                Text = "Drehen" ;
                Text [ ENGLISH ] = "Rotate" ;
                Text [ dutch ] = "Draaien" ;
                Text [ english_us ] = "Rotate" ;
                Text [ italian ] = "Ruota" ;
                Text [ spanish ] = "Rodar" ;
                Text [ french ] = "Rotation" ;
                Text [ swedish ] = "Rotera" ;
                Text [ danish ] = "Roter" ;
                Text [ portuguese ] = "Rodar" ;
                Text [ portuguese_brazilian ] = "Drehen" ;
                Text[ chinese_simplified ] = "旋转";
                Text[ russian ] = "";
                Text[ polish ] = "Obr";
                Text[ japanese ] = "回転";
                Text[ chinese_traditional ] = "旋轉";
                Text[ arabic ] = "";
                Text[ greek ] = "";
                Text[ korean ] = "회전";
                Text[ turkish ] = "evir";
                Text[ language_user1 ] = " ";
                Text[ catalan ] = "Rodar";
                Text[ finnish ] = "Kierr";
                Text[ thai ] = "หมุน";
            };
            ToolBoxItem
            {
                AutoCheck = TRUE ;
                RadioCheck = TRUE ;
                Identifier = TBI_STYLE_UPRIGHT ;
                HelpId = HID_FONTWORK_TBI_STYLE_UPRIGHT ;
                Text = "Aufrecht" ;
                Text [ ENGLISH ] = "Upright" ;
                Text [ dutch ] = "Rechtop" ;
                Text [ english_us ] = "Upright" ;
                Text [ italian ] = "In piedi" ;
                Text [ spanish ] = "Derecho" ;
                Text [ french ] = "Debout" ;
                Text [ swedish ] = "Upprtt" ;
                Text [ danish ] = "Opret" ;
                Text [ portuguese ] = "Direito" ;
                Text [ portuguese_brazilian ] = "Aufrecht" ;
                Text[ chinese_simplified ] = "直立";
                Text[ russian ] = "";
                Text[ polish ] = "Prosto";
                Text[ japanese ] = "直立";
                Text[ chinese_traditional ] = "直立";
                Text[ arabic ] = "";
                Text[ greek ] = "";
                Text[ korean ] = "똑바로";
                Text[ turkish ] = "Dik";
                Text[ language_user1 ] = " ";
                Text[ catalan ] = "Derecho";
                Text[ finnish ] = "Pystyss";
                Text[ thai ] = "ตั้งตรง";
            };
            ToolBoxItem
            {
                AutoCheck = TRUE ;
                RadioCheck = TRUE ;
                Identifier = TBI_STYLE_SLANTX ;
                HelpId = HID_FONTWORK_TBI_STYLE_SLANTX ;
                Text = "Horizontal kippen" ;
                Text [ ENGLISH ] = "Slant horizontal" ;
                Text [ dutch ] = "Horizontaal kantelen" ;
                Text [ english_us ] = "Slant Horizontal" ;
                Text [ italian ] = "Inclina in orizzontale" ;
                Text [ spanish ] = "Inclinar horizontalmente" ;
                Text [ french ] = "Basculer  l'horizontale" ;
                Text [ swedish ] = "Tippa horisontellt" ;
                Text [ danish ] = "Hld vandret" ;
                Text [ portuguese ] = "Inclinar na horizontal" ;
                Text [ portuguese_brazilian ] = "Horizontal kippen" ;
                Text[ chinese_simplified ] = "水平倾斜";
                Text[ russian ] = "  ";
                Text[ polish ] = "Przerzu w poziomie";
                Text[ japanese ] = "横に傾斜";
                Text[ chinese_traditional ] = "水平軸向傾斜";
                Text[ arabic ] = " ";
                Text[ greek ] = " ";
                Text[ korean ] = "수평으로 기울기";
                Text[ turkish ] = "Yatay eim";
                Text[ language_user1 ] = " ";
                Text[ catalan ] = "Inclinar horizontalmente";
                Text[ finnish ] = "Kallista vaakasuunnassa";
                Text[ thai ] = "แนวนอนเอียง";
            };
            ToolBoxItem
            {
                AutoCheck = TRUE ;
                RadioCheck = TRUE ;
                Identifier = TBI_STYLE_SLANTY ;
                HelpId = HID_FONTWORK_TBI_STYLE_SLANTY ;
                Text = "Vertikal kippen" ;
                Text [ ENGLISH ] = "Slant vertical" ;
                Text [ english_us ] = "Slant Vertical" ;
                Text [ italian ] = "Inclina in verticale" ;
                Text [ spanish ] = "Inclinar verticalmente" ;
                Text [ french ] = "Basculer  la verticale" ;
                Text [ dutch ] = "Verticaal kantelen" ;
                Text [ swedish ] = "Tippa vertikalt" ;
                Text [ danish ] = "Hld lodret" ;
                Text [ portuguese ] = "Inclinar na vertical" ;
                Text [ portuguese_brazilian ] = "Vertikal kippen" ;
                Text[ chinese_simplified ] = "垂直倾斜";
                Text[ russian ] = "  ";
                Text[ polish ] = "Przerzu w pionie";
                Text[ japanese ] = "縦に傾斜";
                Text[ chinese_traditional ] = "垂直軸向傾斜";
                Text[ arabic ] = " ";
                Text[ greek ] = " ";
                Text[ korean ] = "수직으로 기울기";
                Text[ turkish ] = "Dikey eim";
                Text[ language_user1 ] = " ";
                Text[ catalan ] = "Inclinar verticalmente";
                Text[ finnish ] = "Kallista pystysuunnassa";
                Text[ thai ] = "แนวตั้งเอียง";
            };
        };
    };
    ToolBox TBX_ADJUST
    {
        SVLook = TRUE ;
        Pos = MAP_APPFONT ( 6 , 63 ) ;
        TabStop = TRUE ;
        ItemList =
        {
            ToolBoxItem
            {
                AutoCheck = TRUE ;
                Checkable = TRUE ;
                Identifier = TBI_ADJUST_MIRROR ;
                HelpId = HID_FONTWORK_TBI_ADJUST_MIRROR ;
                Text = "Laufrichtung" ;
                Text [ ENGLISH ] = "Text direction" ;
                Text [ dutch ] = "Looprichting" ;
                Text [ english_us ] = "Orientation" ;
                Text [ italian ] = "Direzione di scorrimento" ;
                Text [ spanish ] = "Orientacin" ;
                Text [ french ] = "Direction" ;
                Text [ swedish ] = "Lpriktning" ;
                Text [ danish ] = "Retning" ;
                Text [ portuguese ] = "Orientao" ;
                Text [ portuguese_brazilian ] = "Laufrichtung" ;
                Text[ chinese_simplified ] = "方向";
                Text[ russian ] = "";
                Text[ polish ] = "Orientacja";
                Text[ japanese ] = "方向";
                Text[ chinese_traditional ] = "方向";
                Text[ arabic ] = "";
                Text[ greek ] = " ";
                Text[ korean ] = "방향";
                Text[ turkish ] = "Metin yn";
                Text[ language_user1 ] = " ";
                Text[ catalan ] = "Orientacin";
                Text[ finnish ] = "Suunta";
                Text[ thai ] = "การวางแนว";
            };
            ToolBoxItem
            {
                Type = TOOLBOXITEM_SEPARATOR ;
            };
            ToolBoxItem
            {
                AutoCheck = TRUE ;
                RadioCheck = TRUE ;
                Identifier = TBI_ADJUST_LEFT ;
                HelpId = HID_FONTWORK_TBI_ADJUST_LEFT ;
                Text = "Linksbndig" ;
                Text [ ENGLISH ] = "Left aligned" ;
                Text [ dutch ] = "Links uitgelijnd" ;
                Text [ english_us ] = "Align Left" ;
                Text [ italian ] = "Allineato a sinistra" ;
                Text [ spanish ] = "Alinear a la izquierda" ;
                Text [ french ] = "Align  gauche" ;
                Text [ swedish ] = "Vnsterjusterat" ;
                Text [ danish ] = "Venstrejusteret" ;
                Text [ portuguese ] = " esquerda" ;
                Text [ portuguese_brazilian ] = "Linksb?dig" ;
                Text[ chinese_simplified ] = "向左对齐";
                Text[ russian ] = "   ";
                Text[ polish ] = "Wyrwnaj do lewej";
                Text[ japanese ] = "左揃え";
                Text[ chinese_traditional ] = "向左對齊";
                Text[ arabic ] = "  ";
                Text[ greek ] = " ";
                Text[ korean ] = "왼쪽 배열";
                Text[ turkish ] = "Sola hizala";
                Text[ language_user1 ] = " ";
                Text[ catalan ] = "Alineado a la izquierda";
                Text[ finnish ] = "Tasaa vasemmalle";
                Text[ thai ] = "ชิดซ้าย";
            };
            ToolBoxItem
            {
                AutoCheck = TRUE ;
                RadioCheck = TRUE ;
                Identifier = TBI_ADJUST_CENTER ;
                HelpId = HID_FONTWORK_TBI_ADJUST_CENTER ;
                Text = "Zentriert" ;
                Text [ ENGLISH ] = "Centered" ;
                Text [ dutch ] = "Centreren" ;
                Text [ english_us ] = "Center" ;
                Text [ italian ] = "Centrato" ;
                Text [ spanish ] = "Centrado" ;
                Text [ french ] = "Centr" ;
                Text [ swedish ] = "Centrerat" ;
                Text [ danish ] = "Centreret" ;
                Text [ portuguese ] = "Centrado" ;
                Text [ portuguese_brazilian ] = "Zentriert" ;
                Text[ chinese_simplified ] = "居中";
                Text[ russian ] = " ";
                Text[ polish ] = "Do rodka";
                Text[ japanese ] = "中央揃え";
                Text[ chinese_traditional ] = "置中";
                Text[ arabic ] = "";
                Text[ greek ] = "";
                Text[ korean ] = "가운데";
                Text[ turkish ] = "Ortala";
                Text[ language_user1 ] = " ";
                Text[ catalan ] = "Centrado";
                Text[ finnish ] = "Keskell";
                Text[ thai ] = "ตรงกลาง";
            };
            ToolBoxItem
            {
                AutoCheck = TRUE ;
                RadioCheck = TRUE ;
                Identifier = TBI_ADJUST_RIGHT ;
                HelpId = HID_FONTWORK_TBI_ADJUST_RIGHT ;
                Text = "Rechtsbndig" ;
                Text [ ENGLISH ] = "Right aligned" ;
                Text [ english_us ] = "Align Right" ;
                Text [ italian ] = "Allineato a destra" ;
                Text [ spanish ] = "Alinear a la derecha" ;
                Text [ french ] = "Align  droite" ;
                Text [ dutch ] = "Rechtslijnend" ;
                Text [ swedish ] = "Hgerjusterat" ;
                Text [ danish ] = "Hjrejusteret" ;
                Text [ portuguese ] = " direita" ;
                Text [ portuguese_brazilian ] = "Rechtsb?dig" ;
                Text[ chinese_simplified ] = "右对齐";
                Text[ russian ] = "   ";
                Text[ polish ] = "Wyrwnaj do prawej";
                Text[ japanese ] = "右揃え";
                Text[ chinese_traditional ] = "向右對齊";
                Text[ arabic ] = "  ";
                Text[ greek ] = " ";
                Text[ korean ] = "오른쪽 배열";
                Text[ turkish ] = "Saa hizala";
                Text[ language_user1 ] = " ";
                Text[ catalan ] = "Alinear a la derecha";
                Text[ finnish ] = "Tasaa oikealle";
                Text[ thai ] = "ชิดขวา";
            };
            ToolBoxItem
            {
                AutoCheck = TRUE ;
                RadioCheck = TRUE ;
                Identifier = TBI_ADJUST_AUTOSIZE ;
                HelpId = HID_FONTWORK_TBI_ADJUST_AUTOSIZE ;
                Text = "Auto-Textgre" ;
                Text [ ENGLISH ] = "Autosize" ;
                Text [ dutch ] = "AutoTekstgrootte" ;
                Text [ english_us ] = "AutoSize Text" ;
                Text [ italian ] = "Dimensione testo automatico" ;
                Text [ spanish ] = "Tamao automtico de texto" ;
                Text [ french ] = "Taille du texte adapte" ;
                Text [ swedish ] = "AutoTextstorlek" ;
                Text [ danish ] = "AutoTekststrrelse" ;
                Text [ portuguese ] = "Tamanho automtico - texto" ;
                Text [ portuguese_brazilian ] = "Auto-Textgr?e" ;
                Text[ chinese_simplified ] = "自动调整文字大小";
                Text[ russian ] = " ";
                Text[ polish ] = "Rozmiar autotekstu";
                Text[ japanese ] = "自動テキストサイズ";
                Text[ chinese_traditional ] = "自動文字大小";
                Text[ arabic ] = "  ";
                Text[ greek ] = "  ";
                Text[ korean ] = "자동텍스트 크기";
                Text[ turkish ] = "Otomatik metin boyu";
                Text[ language_user1 ] = " ";
                Text[ catalan ] = "Tamao automtico de texto";
                Text[ finnish ] = "Automaattinen tekstin koon mritys";
                Text[ thai ] = "ขนาดข้อความอัตโนมัติ";
            };
        };
    };
    FixedImage FB_DISTANCE
    {
        Pos = MAP_APPFONT ( 10 , 84 ) ;
        Size = MAP_APPFONT ( 14 , 15 ) ;
    };
    MetricField MTR_FLD_DISTANCE
    {
        Border = TRUE ;
        Pos = MAP_APPFONT ( 29 , 85 ) ;
        Size = MAP_APPFONT ( 48 , 12 ) ;
        TabStop = TRUE ;
        Repeat = TRUE ;
        Spin = TRUE ;
        Minimum = -5000000 ;
        Maximum = 5000000 ;
        StrictFormat = TRUE ;
        DecimalDigits = 2 ;
        Unit = FUNIT_MM ;
        First = -5000000 ;
        Last = 5000000 ;
        SpinSize = 50 ;
        QuickHelpText = "Abstand" ;
        QuickHelpText [ ENGLISH ] = "Distance" ;
        QuickHelpText [ dutch ] = "Afstand" ;
        QuickHelpText [ english_us ] = "Distance" ;
        CustomUnitText [ italian ] = "-" ;
        QuickHelpText [ italian ] = "Distanza" ;
        QuickHelpText [ spanish ] = "Distancia" ;
        CustomUnitText [ french ] = "-" ;
        QuickHelpText [ french ] = "Distance" ;
        QuickHelpText [ portuguese ] = "Distncia" ;
        QuickHelpText [ portuguese_brazilian ] = "Abstand" ;
        QuickHelpText [ swedish ] = "Avstnd" ;
        QuickHelpText[ russian ] = "";
        QuickHelpText[ danish ] = "Afstand";
        QuickHelpText[ polish ] = "Abstand";
        QuickHelpText[ japanese ] = "間隔";
        QuickHelpText[ chinese_simplified ] = "间隔";
        QuickHelpText[ chinese_traditional ] = "間隔";
        QuickHelpText[ arabic ] = "";
        QuickHelpText[ greek ] = "";
        QuickHelpText[ korean ] = "간격";
        CustomUnitText[ language_user1 ] = " ";
        QuickHelpText[ turkish ] = "Abstand";
        QuickHelpText[ catalan ] = "Distancia";
        QuickHelpText[ finnish ] = "Etisyys";
        QuickHelpText[ thai ] = "Distance";
    };
    FixedImage FB_TEXTSTART
    {
        Pos = MAP_APPFONT ( 10 , 99 ) ;
        Size = MAP_APPFONT ( 14 , 15 ) ;
    };
    MetricField MTR_FLD_TEXTSTART
    {
        Border = TRUE ;
        Pos = MAP_APPFONT ( 29 , 100 ) ;
        Size = MAP_APPFONT ( 48 , 12 ) ;
        TabStop = TRUE ;
        Repeat = TRUE ;
        Spin = TRUE ;
        Maximum = 5000000 ;
        StrictFormat = TRUE ;
        DecimalDigits = 2 ;
        Unit = FUNIT_MM ;
        Last = 5000000 ;
        SpinSize = 50 ;
        QuickHelpText = "Einzug" ;
        QuickHelpText [ ENGLISH ] = "Indention" ;
        QuickHelpText [ english_us ] = "Indent" ;
        QuickHelpText [ italian ] = "Rientro" ;
        QuickHelpText [ spanish ] = "Sangra" ;
        CustomUnitText [ french ] = "-" ;
        QuickHelpText [ french ] = "Retrait" ;
        QuickHelpText [ dutch ] = "1e regel inspringen" ;
        QuickHelpText [ portuguese ] = "Avano" ;
        QuickHelpText [ portuguese_brazilian ] = "Einzug" ;
        QuickHelpText [ swedish ] = "Indrag" ;
        QuickHelpText[ russian ] = "";
        QuickHelpText[ danish ] = "Indrykning";
        QuickHelpText[ polish ] = "Einzug";
        QuickHelpText[ japanese ] = "インデント";
        QuickHelpText[ chinese_simplified ] = "缩进";
        QuickHelpText[ chinese_traditional ] = "縮排";
        QuickHelpText[ arabic ] = "";
        QuickHelpText[ greek ] = "";
        QuickHelpText[ korean ] = "들여쓰기";
        CustomUnitText[ language_user1 ] = " ";
        QuickHelpText[ turkish ] = "Einzug";
        QuickHelpText[ catalan ] = "Sangra";
        QuickHelpText[ finnish ] = "Sisenn";
        QuickHelpText[ thai ] = "Indent";
    };
    ToolBox TBX_SHADOW
    {
        SVLook = TRUE ;
        Pos = MAP_APPFONT ( 6 , 122 ) ;
        TabStop = TRUE ;
        ItemList =
        {
            ToolBoxItem
            {
                AutoCheck = TRUE ;
                Checkable = TRUE ;
                Identifier = TBI_SHOWFORM ;
                HelpId = HID_FONTWORK_TBI_SHOWFORM ;
                Text = "Kontur" ;
                Text [ ENGLISH ] = "Outline" ;
                Text [ english_us ] = "Contour" ;
                Text [ italian ] = "Contorno" ;
                Text [ spanish ] = "Contorno" ;
                Text [ french ] = "Contour" ;
                Text [ dutch ] = "Contour" ;
                Text [ swedish ] = "Kontur" ;
                Text [ danish ] = "Kontur" ;
                Text [ portuguese ] = "Contorno" ;
                Text [ portuguese_brazilian ] = "Kontur" ;
                Text[ chinese_simplified ] = "轮廓";
                Text[ russian ] = "";
                Text[ polish ] = "Kontur";
                Text[ japanese ] = "中抜き";
                Text[ chinese_traditional ] = "輪廓";
                Text[ arabic ] = " ";
                Text[ greek ] = "";
                Text[ korean ] = "윤곽";
                Text[ turkish ] = "Kontur";
                Text[ language_user1 ] = " ";
                Text[ catalan ] = "Contorno";
                Text[ finnish ] = "riviiva";
                Text[ thai ] = "เส้นแสดงรูปร่าง";
            };
            ToolBoxItem
            {
                AutoCheck = TRUE ;
                Checkable = TRUE ;
                Identifier = TBI_OUTLINE ;
                HelpId = HID_FONTWORK_TBI_OUTLINE ;
                Text = "Buchstabenumrandung" ;
                Text [ ENGLISH ] = "Character outlines" ;
                Text [ dutch ] = "Letteromranding" ;
                Text [ english_us ] = "Text Contour" ;
                Text [ italian ] = "Bordo dei caratteri" ;
                Text [ spanish ] = "Contorno de caracteres" ;
                Text [ french ] = "Contour de lettres" ;
                Text [ swedish ] = "Bokstavskontur" ;
                Text [ danish ] = "Bogstavramme" ;
                Text [ portuguese ] = "Contorno de caracteres" ;
                Text [ portuguese_brazilian ] = "Buchstabenumrandung" ;
                Text[ chinese_simplified ] = "字母轮廓";
                Text[ russian ] = " ";
                Text[ polish ] = "Obramowanie liter";
                Text[ japanese ] = "文字の輪郭";
                Text[ chinese_traditional ] = "字母輪廓";
                Text[ arabic ] = "  ";
                Text[ greek ] = " ";
                Text[ korean ] = "텍스트 테두리!";
                Text[ turkish ] = "Metin konturu";
                Text[ language_user1 ] = " ";
                Text[ catalan ] = "Contorno de caracteres";
                Text[ finnish ] = "Tekstin riviiva";
                Text[ thai ] = "เส้นแสดงรูปร่างข้อความ";
            };
            ToolBoxItem
            {
                Type = TOOLBOXITEM_SEPARATOR ;
            };
            ToolBoxItem
            {
                AutoCheck = TRUE ;
                RadioCheck = TRUE ;
                Identifier = TBI_SHADOW_OFF ;
                HelpId = HID_FONTWORK_TBI_SHADOW_OFF ;
                Text = "Aus" ;
                Text [ ENGLISH ] = "Off" ;
                Text [ english_us ] = "No Shadow" ;
                Text [ italian ] = "Senza ombre" ;
                Text [ spanish ] = "Sin sombra" ;
                Text [ french ] = "Dsactiv" ;
                Text [ dutch ] = "Uit" ;
                Text [ swedish ] = "Av" ;
                Text [ danish ] = "Deaktiver" ;
                Text [ portuguese ] = "Desactivar" ;
                Text [ portuguese_brazilian ] = "Aus" ;
                Text[ chinese_simplified ] = "取消阴影";
                Text[ russian ] = ".";
                Text[ polish ] = "Wycz";
                Text[ japanese ] = "影なし";
                Text[ chinese_traditional ] = "不使用";
                Text[ arabic ] = "";
                Text[ greek ] = "";
                Text[ korean ] = "해제";
                Text[ turkish ] = "Kapal";
                Text[ language_user1 ] = " ";
                Text[ catalan ] = "Sin sombra";
                Text[ finnish ] = "Ei varjoa";
                Text[ thai ] = "ไม่แรเงา";
            };
            ToolBoxItem
            {
                AutoCheck = TRUE ;
                RadioCheck = TRUE ;
                Identifier = TBI_SHADOW_NORMAL ;
                HelpId = HID_FONTWORK_TBI_SHADOW_NORMAL ;
                Text = "Senkrecht" ;
                Text [ ENGLISH ] = "Vertical" ;
                Text [ dutch ] = "Verticaal" ;
                Text [ english_us ] = "Vertical" ;
                Text [ italian ] = "Verticale" ;
                Text [ spanish ] = "Vertical" ;
                Text [ french ] = "Vertical" ;
                Text [ swedish ] = "Lodrtt" ;
                Text [ danish ] = "Lodret" ;
                Text [ portuguese ] = "Vertical" ;
                Text [ portuguese_brazilian ] = "Senkrecht" ;
                Text[ chinese_simplified ] = "垂直方向";
                Text[ russian ] = "";
                Text[ polish ] = "Pionowo";
                Text[ japanese ] = "正射影";
                Text[ chinese_traditional ] = "垂直方向";
                Text[ arabic ] = "";
                Text[ greek ] = "";
                Text[ korean ] = "수직";
                Text[ turkish ] = "Dikey";
                Text[ language_user1 ] = " ";
                Text[ catalan ] = "Vertical";
                Text[ finnish ] = "Pystytaso";
                Text[ thai ] = "แนวตั้ง";
            };
            ToolBoxItem
            {
                AutoCheck = TRUE ;
                RadioCheck = TRUE ;
                Identifier = TBI_SHADOW_SLANT ;
                HelpId = HID_FONTWORK_TBI_SHADOW_SLANT ;
                Text = "Kippen" ;
                Text [ ENGLISH ] = "Slant" ;
                Text [ english_us ] = "Slant" ;
                Text [ italian ] = "Inclina" ;
                Text [ spanish ] = "Inclinar" ;
                Text [ french ] = "Basculer" ;
                Text [ dutch ] = "Kantelen" ;
                Text [ swedish ] = "Tippa" ;
                Text [ danish ] = "Hld" ;
                Text [ portuguese ] = "Inclinar" ;
                Text [ portuguese_brazilian ] = "Kippen" ;
                Text[ chinese_simplified ] = "倾斜";
                Text[ russian ] = "";
                Text[ polish ] = "Przerzu";
                Text[ japanese ] = "斜投影";
                Text[ chinese_traditional ] = "傾斜";
                Text[ arabic ] = "";
                Text[ greek ] = "";
                Text[ korean ] = "기울이기";
                Text[ turkish ] = "Eim";
                Text[ language_user1 ] = " ";
                Text[ catalan ] = "Inclinar";
                Text[ finnish ] = "Kallista";
                Text[ thai ] = "เอียง";
            };
        };
    };
    FixedImage FB_SHADOW_X
    {
        Pos = MAP_APPFONT ( 10 , 143 ) ;
        Size = MAP_APPFONT ( 14 , 15 ) ;
    };
    MetricField MTR_FLD_SHADOW_X
    {
        Border = TRUE ;
        Pos = MAP_APPFONT ( 29 , 144 ) ;
        Size = MAP_APPFONT ( 48 , 12 ) ;
        TabStop = TRUE ;
        Repeat = TRUE ;
        Spin = TRUE ;
        Minimum = -5000000 ;
        Maximum = 5000000 ;
        StrictFormat = TRUE ;
        DecimalDigits = 2 ;
        Unit = FUNIT_MM ;
        CustomUnitText = " Grad" ;
        CustomUnitText [ ENGLISH ] = "Degrees" ;
        CustomUnitText [ norwegian ] = "Degrees" ;
        CustomUnitText [ italian ] = "gradi" ;
        CustomUnitText [ portuguese_brazilian ] = "Degrees" ;
        CustomUnitText [ portuguese ] = "Graus" ;
        CustomUnitText [ french ] = " degrs" ;
        CustomUnitText [ dutch ] = "graden" ;
        CustomUnitText [ spanish ] = "Grados" ;
        CustomUnitText [ danish ] = "grader" ;
        CustomUnitText [ swedish ] = " grader" ;
        CustomUnitText [ finnish ] = " asteet" ;
        CustomUnitText [ english_us ] = " degrees" ;
        First = -5000000 ;
        Last = 5000000 ;
        SpinSize = 50 ;
        QuickHelpText = "Abstand X" ;
        QuickHelpText [ ENGLISH ] = "Distance X" ;
        QuickHelpText [ dutch ] = "Afstand X" ;
        QuickHelpText [ english_us ] = "Distance X" ;
        QuickHelpText [ italian ] = "Distanza X" ;
        QuickHelpText [ spanish ] = "Distancia X" ;
        QuickHelpText [ french ] = "Distance X" ;
        QuickHelpText [ danish ] = "Afstand X" ;
        QuickHelpText [ portuguese ] = "Distncia X" ;
        QuickHelpText [ portuguese_brazilian ] = "Abstand X" ;
        QuickHelpText [ swedish ] = "Avstnd X" ;
        CustomUnitText[ chinese_simplified ] = "度";
        CustomUnitText[ russian ] = "";
        CustomUnitText[ polish ] = "Stopie";
        CustomUnitText[ japanese ] = "度";
        CustomUnitText[ chinese_traditional ] = "度";
        CustomUnitText[ arabic ] = "/";
        QuickHelpText[ russian ] = " X";
        QuickHelpText[ polish ] = "Abstand X";
        QuickHelpText[ japanese ] = "間隔 X";
        QuickHelpText[ chinese_simplified ] = "间隔 X";
        QuickHelpText[ chinese_traditional ] = "間隔 X";
        QuickHelpText[ arabic ] = " ";
        CustomUnitText[ greek ] = "";
        CustomUnitText[ korean ] = "도";
        QuickHelpText[ greek ] = "Distance X";
        QuickHelpText[ korean ] = "간격 X";
        CustomUnitText[ turkish ] = "Derece";
        CustomUnitText[ language_user1 ] = " ";
        QuickHelpText[ turkish ] = "Abstand X";
        CustomUnitText[ catalan ] = "Grados";
        QuickHelpText[ catalan ] = "Distancia X";
        QuickHelpText[ finnish ] = "Etisyys X";
        CustomUnitText[ thai ] = " องศา";
        QuickHelpText[ thai ] = "ระยะ X";
    };
    FixedImage FB_SHADOW_Y
    {
        Pos = MAP_APPFONT ( 10 , 158 ) ;
        Size = MAP_APPFONT ( 14 , 15 ) ;
    };
    MetricField MTR_FLD_SHADOW_Y
    {
        Border = TRUE ;
        Pos = MAP_APPFONT ( 29 , 159 ) ;
        Size = MAP_APPFONT ( 48 , 12 ) ;
        TabStop = TRUE ;
        Repeat = TRUE ;
        Spin = TRUE ;
        Maximum = 5000000 ;
        StrictFormat = TRUE ;
        DecimalDigits = 2 ;
        Unit = FUNIT_MM ;
        Last = 5000000 ;
        SpinSize = 50 ;
        CustomUnitText = " %" ;
        QuickHelpText = "Abstand Y" ;
        QuickHelpText [ ENGLISH ] = "Distance Y" ;
        QuickHelpText [ english_us ] = "Distance Y" ;
        QuickHelpText [ italian ] = "Distanza Y" ;
        QuickHelpText [ spanish ] = "Distancia Y" ;
        QuickHelpText [ french ] = "Distance Y" ;
        QuickHelpText [ dutch ] = "Afstand Y" ;
        QuickHelpText [ danish ] = "Afstand Y" ;
        QuickHelpText [ portuguese ] = "Distncia Y" ;
        QuickHelpText [ portuguese_brazilian ] = "Abstand Y" ;
        CustomUnitText [ portuguese ] = "%" ;
        CustomUnitText [ english_us ] = "%" ;
        CustomUnitText [ portuguese_brazilian ] = "%" ;
        CustomUnitText [ swedish ] = "%" ;
        QuickHelpText [ swedish ] = "Avstnd Y" ;
        CustomUnitText [ danish ] = "%" ;
        CustomUnitText [ italian ] = "%" ;
        CustomUnitText [ spanish ] = "%" ;
        CustomUnitText [ french ] = "%" ;
        CustomUnitText [ dutch ] = "%" ;
        CustomUnitText[ chinese_simplified ] = "%";
        CustomUnitText[ russian ] = "%";
        CustomUnitText[ polish ] = "%";
        CustomUnitText[ japanese ] = "%";
        CustomUnitText[ chinese_traditional ] = "%";
        CustomUnitText[ arabic ] = "%";
        QuickHelpText[ russian ] = "Abstand Y";
        QuickHelpText[ polish ] = "Abstand Y";
        QuickHelpText[ japanese ] = "間隔 Y";
        QuickHelpText[ chinese_simplified ] = "间隔 Y";
        QuickHelpText[ chinese_traditional ] = "間隔 Y";
        QuickHelpText[ arabic ] = "Distance Y";
        CustomUnitText[ greek ] = "%";
        CustomUnitText[ korean ] = "%";
        QuickHelpText[ greek ] = " Y";
        QuickHelpText[ korean ] = "간격 Y";
        CustomUnitText[ turkish ] = "%";
        CustomUnitText[ language_user1 ] = " ";
        QuickHelpText[ turkish ] = "Abstand Y";
        CustomUnitText[ catalan ] = "%";
        QuickHelpText[ catalan ] = "Distancia Y";
        CustomUnitText[ finnish ] = "%";
        QuickHelpText[ finnish ] = "Etisyys Y";
        CustomUnitText[ thai ] = "%";
        QuickHelpText[ thai ] = "Distance Y";
    };
    ListBox CLB_SHADOW_COLOR
    {
        Border = TRUE ;
        Pos = MAP_APPFONT ( 6 , 174 ) ;
        Size = MAP_APPFONT ( 71 , 60 ) ;
        DropDown = TRUE ;
        TabStop = TRUE ;
        QuickHelpText = "Schattenfarbe" ;
        QuickHelpText [ portuguese ] = "Cor da sombra" ;
        QuickHelpText [ english_us ] = "Shadow Color" ;
        QuickHelpText [ portuguese_brazilian ] = "Farbe" ;
        QuickHelpText [ danish ] = "Skyggefarve" ;
        QuickHelpText [ spanish ] = "Color sombra" ;
        QuickHelpText [ french ] = "Couleur d'ombre" ;
        QuickHelpText [ portuguese ] = "Cor da sombra" ;
        QuickHelpText [ portuguese_brazilian ] = "Farbe" ;
        QuickHelpText [ danish ] = "Skyggefarve" ;
        QuickHelpText [ dutch ] = "Schaduwkleur" ;
        QuickHelpText [ portuguese ] = "Cor da sombra" ;
        QuickHelpText [ portuguese_brazilian ] = "Farbe" ;
        QuickHelpText [ danish ] = "Skyggefarve" ;
        QuickHelpText [ portuguese ] = "Cor da sombra" ;
        QuickHelpText [ portuguese_brazilian ] = "Farbe" ;
        QuickHelpText [ danish ] = "Skyggefarve" ;
        QuickHelpText [ portuguese ] = "Cor da sombra" ;
        QuickHelpText [ portuguese_brazilian ] = "Farbe" ;
        QuickHelpText [ danish ] = "Skyggefarve" ;
        QuickHelpText [ portuguese ] = "Cor da sombra" ;
        QuickHelpText [ portuguese_brazilian ] = "Farbe" ;
        QuickHelpText [ danish ] = "Skyggefarve" ;
        QuickHelpText [ portuguese ] = "Cor da sombra" ;
        QuickHelpText [ portuguese_brazilian ] = "Farbe" ;
        QuickHelpText [ danish ] = "Skyggefarve" ;
        QuickHelpText [ portuguese ] = "Cor da sombra" ;
        QuickHelpText [ portuguese_brazilian ] = "Farbe" ;
        QuickHelpText [ danish ] = "Skyggefarve" ;
        QuickHelpText [ portuguese ] = "Cor da sombra" ;
        QuickHelpText [ portuguese_brazilian ] = "Farbe" ;
        QuickHelpText [ danish ] = "Skyggefarve" ;
        QuickHelpText [ portuguese ] = "Cor da sombra" ;
        QuickHelpText [ portuguese_brazilian ] = "Farbe" ;
        QuickHelpText [ danish ] = "Skyggefarve" ;
        QuickHelpText [ portuguese ] = "Cor da sombra" ;
        QuickHelpText [ portuguese_brazilian ] = "Farbe" ;
        QuickHelpText [ danish ] = "Skyggefarve" ;
        QuickHelpText [ portuguese ] = "Cor da sombra" ;
        QuickHelpText [ portuguese_brazilian ] = "Farbe" ;
        QuickHelpText [ swedish ] = "Skuggans frg" ;
        QuickHelpText [ danish ] = "Skyggefarve" ;
        QuickHelpText [ portuguese ] = "Cor da sombra" ;
        QuickHelpText [ portuguese_brazilian ] = "Farbe" ;
        QuickHelpText [ danish ] = "Skyggefarve" ;
        QuickHelpText [ portuguese ] = "Cor da sombra" ;
        QuickHelpText [ portuguese_brazilian ] = "Farbe" ;
        QuickHelpText [ danish ] = "Skyggefarve" ;
        QuickHelpText [ portuguese ] = "Cor da sombra" ;
        QuickHelpText [ portuguese_brazilian ] = "Farbe" ;
        QuickHelpText [ danish ] = "Skyggefarve" ;
        QuickHelpText [ portuguese ] = "Cor da sombra" ;
        QuickHelpText [ portuguese_brazilian ] = "Farbe" ;
        QuickHelpText [ danish ] = "Skyggefarve" ;
        QuickHelpText [ italian ] = "Colore dell'ombra" ;
        QuickHelpText [ portuguese ] = "Cor da sombra" ;
        QuickHelpText [ portuguese_brazilian ] = "Farbe" ;
        QuickHelpText [ danish ] = "Skyggefarve" ;
        QuickHelpText [ portuguese_brazilian ] = "Farbe" ;
        QuickHelpText [ danish ] = "Skyggefarve" ;
        QuickHelpText [ portuguese_brazilian ] = "Farbe" ;
        QuickHelpText [ danish ] = "Skyggefarve" ;
            Text[ portuguese_brazilian ] = "Farbe";
        Text[ danish ] = "-";
    QuickHelpText[ russian ] = " ";
        QuickHelpText[ polish ] = "Schattenfarbe";
        QuickHelpText[ japanese ] = "影の色";
        QuickHelpText[ chinese_simplified ] = "阴影颜色";
        QuickHelpText[ chinese_traditional ] = "陰影顏色";
        QuickHelpText[ arabic ] = " ";
        QuickHelpText[ greek ] = "Shadow Color";
        QuickHelpText[ korean ] = "음영색";
        Text[ greek ] = " ";
        Text[ language_user1 ] = " ";
        QuickHelpText[ turkish ] = "Schattenfarbe";
        QuickHelpText[ catalan ] = "Color sombra";
        QuickHelpText[ finnish ] = "Varjon vri";
        QuickHelpText[ thai ] = "Shadow Color";
    };
    Text[ chinese_simplified ] = "美工字体";
    Text[ russian ] = "FontWork";
    Text[ polish ] = "FontWork";
    Text[ japanese ] = "フォントワーク";
    Text[ chinese_traditional ] = "美術字型";
    Text[ arabic ] = "FontWork";
    Text[ greek ] = "FontWork";
    Text[ korean ] = "FontWork";
    Text[ turkish ] = "FontWork";
    Text[ language_user1 ] = " ";
    Text[ catalan ] = "FontWork";
    Text[ thai ] = "ตัวอักษรที่ใช้งาน";

#define FONTWORK_IDLIST \
        IdList =            \
        {                   \
            TBI_STYLE_OFF ; \
            TBI_STYLE_ROTATE ;  \
            TBI_STYLE_UPRIGHT ; \
            TBI_STYLE_SLANTX ;  \
            TBI_STYLE_SLANTY ;  \
            TBI_ADJUST_MIRROR ; \
            TBI_ADJUST_LEFT ;   \
            TBI_ADJUST_CENTER ; \
            TBI_ADJUST_RIGHT ;  \
            TBI_ADJUST_AUTOSIZE ; \
            TBI_SHOWFORM ;  \
            TBI_OUTLINE ;   \
            TBI_SHADOW_OFF ;    \
            TBI_SHADOW_NORMAL ; \
            TBI_SHADOW_SLANT ; \
            TBI_SHADOW_XDIST ; \
            TBI_SHADOW_YDIST ; \
            TBI_SHADOW_ANGLE ; \
            TBI_SHADOW_SIZE ; \
            TBI_DISTANCE ; \
            TBI_TEXTSTART ; \
        };                 \
        IdCount = { 21 ; };

    #define IMAGE_STDBTN_COLOR Color { Red = 0xff00; Green = 0x0000; Blue = 0xff00; }

    ImageList IL_FONTWORK
    {
        ImageBitmap = Bitmap { File = "fw_imagelist.bmp" ; };
        MaskColor = IMAGE_STDBTN_COLOR ;
        FONTWORK_IDLIST
    };
    ImageList ILH_FONTWORK
    {
        ImageBitmap = Bitmap { File = "fwh_imagelist.bmp" ; };
        MaskColor = IMAGE_STDBTN_COLOR ;
        FONTWORK_IDLIST
    };
};
 // Bitmaps ---------------------------------------------------------------
Bitmap RID_SVXBMP_FONTWORK_FORM1
{
    File = "fwthcirc.bmp" ;
};
Bitmap RID_SVXBMP_FONTWORK_FORM2
{
    File = "fwbhcirc.bmp" ;
};
Bitmap RID_SVXBMP_FONTWORK_FORM3
{
    File = "fwlhcirc.bmp" ;
};
Bitmap RID_SVXBMP_FONTWORK_FORM4
{
    File = "fwrhcirc.bmp" ;
};
Bitmap RID_SVXBMP_FONTWORK_FORM5
{
    File = "fwtoparc.bmp" ;
};
Bitmap RID_SVXBMP_FONTWORK_FORM6
{
    File = "fwbotarc.bmp" ;
};
Bitmap RID_SVXBMP_FONTWORK_FORM7
{
    File = "fwlftarc.bmp" ;
};
Bitmap RID_SVXBMP_FONTWORK_FORM8
{
    File = "fwrgtarc.bmp" ;
};
Bitmap RID_SVXBMP_FONTWORK_FORM9
{
    File = "fwbuttn1.bmp" ;
};
Bitmap RID_SVXBMP_FONTWORK_FORM10
{
    File = "fwbuttn2.bmp" ;
};
Bitmap RID_SVXBMP_FONTWORK_FORM11
{
    File = "fwbuttn3.bmp" ;
};
Bitmap RID_SVXBMP_FONTWORK_FORM12
{
    File = "fwbuttn4.bmp" ;
};

Bitmap RID_SVXBMP_FONTWORK_FORM1_H
{
    File = "fwthcirc_h.bmp" ;
};
Bitmap RID_SVXBMP_FONTWORK_FORM2_H
{
    File = "fwbhcirc_h.bmp" ;
};
Bitmap RID_SVXBMP_FONTWORK_FORM3_H
{
    File = "fwlhcirc_h.bmp" ;
};
Bitmap RID_SVXBMP_FONTWORK_FORM4_H
{
    File = "fwrhcirc_h.bmp" ;
};
Bitmap RID_SVXBMP_FONTWORK_FORM5_H
{
    File = "fwtoparc_h.bmp" ;
};
Bitmap RID_SVXBMP_FONTWORK_FORM6_H
{
    File = "fwbotarc_h.bmp" ;
};
Bitmap RID_SVXBMP_FONTWORK_FORM7_H
{
    File = "fwlftarc_h.bmp" ;
};
Bitmap RID_SVXBMP_FONTWORK_FORM8_H
{
    File = "fwrgtarc_h.bmp" ;
};
Bitmap RID_SVXBMP_FONTWORK_FORM9_H
{
    File = "fwbuttn1_h.bmp" ;
};
Bitmap RID_SVXBMP_FONTWORK_FORM10_H
{
    File = "fwbuttn2_h.bmp" ;
};
Bitmap RID_SVXBMP_FONTWORK_FORM11_H
{
    File = "fwbuttn3_h.bmp" ;
};
Bitmap RID_SVXBMP_FONTWORK_FORM12_H
{
    File = "fwbuttn4_h.bmp" ;
};

 // Strings ---------------------------------------------------------------
String RID_SVXSTR_FONTWORK_FORM1
{
    Text = "Oberer Halbkreis" ;
    Text [ ENGLISH ] = "Top half circle" ;
    Text [ norwegian ] = "Top half circle" ;
    Text [ italian ] = "Semicerchio superiore" ;
    Text [ portuguese_brazilian ] = "Top half circle" ;
    Text [ portuguese ] = "Semi-crculo superior" ;
    Text [ french ] = "Demi-cercle suprieur" ;
    Text [ dutch ] = "Bovenste halve cirkel" ;
    Text [ spanish ] = "Semicrculo superior" ;
    Text [ danish ] = "Halvcirkel" ;
    Text [ swedish ] = "vre halvcirkel" ;
    Text [ finnish ] = "Ylempi puoliympyr" ;
    Text [ english_us ] = "Upper Semicircle" ;
    Text[ chinese_simplified ] = "上半圆";
    Text[ russian ] = " ";
    Text[ polish ] = "Grne pkole";
    Text[ japanese ] = "上半円";
    Text[ chinese_traditional ] = "上半圓";
    Text[ arabic ] = "  ";
    Text[ greek ] = " ";
    Text[ korean ] = "위쪽 반원";
    Text[ turkish ] = "st yarm daire";
    Text[ language_user1 ] = " ";
    Text[ catalan ] = "Semicrculo superior";
    Text[ thai ] = "ครึ่งวงกลมบน";
};
String RID_SVXSTR_FONTWORK_FORM2
{
    Text = "Unterer Halbkreis" ;
    Text [ ENGLISH ] = "Bottom half circle" ;
    Text [ norwegian ] = "Bottom half circle" ;
    Text [ italian ] = "Semicerchio inferiore" ;
    Text [ portuguese_brazilian ] = "Bottom half circle" ;
    Text [ portuguese ] = "Semi-crculo inferior" ;
    Text [ french ] = "Demi-cercle infrieur" ;
    Text [ dutch ] = "Onderste halve cirkel" ;
    Text [ spanish ] = "Semicrculo inferior" ;
    Text [ danish ] = "Buet nedad" ;
    Text [ swedish ] = "Undre halvcirkel" ;
    Text [ finnish ] = "Puoliympyr (alaosa)" ;
    Text [ english_us ] = "Lower Semicircle" ;
    Text[ chinese_simplified ] = "下半圆";
    Text[ russian ] = " ";
    Text[ polish ] = "Dolne pkole";
    Text[ japanese ] = "下半円";
    Text[ chinese_traditional ] = "下半圓";
    Text[ arabic ] = "  ";
    Text[ greek ] = " ";
    Text[ korean ] = "아래쪽 반원";
    Text[ turkish ] = "Alt yarm daire";
    Text[ language_user1 ] = " ";
    Text[ catalan ] = "Semicrculo inferior";
    Text[ thai ] = "ครึ่งวงกลมล่าง";
};
String RID_SVXSTR_FONTWORK_FORM3
{
    Text = "Linker Halbkreis" ;
    Text [ ENGLISH ] = "Left half circle" ;
    Text [ norwegian ] = "Left half circle" ;
    Text [ italian ] = "Semicerchio sinistro" ;
    Text [ portuguese_brazilian ] = "Left half circle" ;
    Text [ portuguese ] = "Semi-crculo esquerdo" ;
    Text [ french ] = "Demi-cercle gauche" ;
    Text [ dutch ] = "Linker halve cirkel" ;
    Text [ spanish ] = "Semicrculo izquierdo" ;
    Text [ danish ] = "Venstre halvcirkel" ;
    Text [ swedish ] = "Vnster halvcirkel" ;
    Text [ finnish ] = "Puoliympyr (vasen puoli)" ;
    Text [ english_us ] = "Left Semicircle" ;
    Text[ chinese_simplified ] = "左半圆";
    Text[ russian ] = " ";
    Text[ polish ] = "Lewe pkole";
    Text[ japanese ] = "左半円";
    Text[ chinese_traditional ] = "左半圓";
    Text[ arabic ] = "  ";
    Text[ greek ] = " ";
    Text[ korean ] = "왼쪽 반원";
    Text[ turkish ] = "Sol yarm daire";
    Text[ language_user1 ] = " ";
    Text[ catalan ] = "Semicrculo izquierdo";
    Text[ thai ] = "ครึ่งวงกลมซ้าย";
};
String RID_SVXSTR_FONTWORK_FORM4
{
    Text = "Rechter Halbkreis" ;
    Text [ ENGLISH ] = "Right half circle" ;
    Text [ norwegian ] = "Right half circle" ;
    Text [ italian ] = "Semicerchio destro" ;
    Text [ portuguese_brazilian ] = "Right half circle" ;
    Text [ portuguese ] = "Semi-crculo direito" ;
    Text [ french ] = "Demi-cercle droit" ;
    Text [ dutch ] = "Rechter halve cirkel" ;
    Text [ spanish ] = "Semicrculo derecho" ;
    Text [ danish ] = "Hjre halvcirkel" ;
    Text [ swedish ] = "Hger halvcirkel" ;
    Text [ finnish ] = "Puoliympyr (oikea puoli)" ;
    Text [ english_us ] = "Right Semicircle" ;
    Text[ chinese_simplified ] = "右半圆";
    Text[ russian ] = " ";
    Text[ polish ] = "Prawe pkole";
    Text[ japanese ] = "右半円";
    Text[ chinese_traditional ] = "右半圓";
    Text[ arabic ] = "  ";
    Text[ greek ] = " ";
    Text[ korean ] = "오른쪽 반원";
    Text[ turkish ] = "Sa yarm daire";
    Text[ language_user1 ] = " ";
    Text[ catalan ] = "Semicrculo derecho";
    Text[ thai ] = "ครึ่งวงกลมขวา";
};
String RID_SVXSTR_FONTWORK_FORM5
{
    Text = "Oberer Kreisbogen" ;
    Text [ ENGLISH ] = "Top arc" ;
    Text [ norwegian ] = "Top arc" ;
    Text [ italian ] = "Arco superiore" ;
    Text [ portuguese_brazilian ] = "Top arc" ;
    Text [ portuguese ] = "Arco superior" ;
    Text [ french ] = "Arc suprieur" ;
    Text [ dutch ] = "Bovenste boog" ;
    Text [ spanish ] = "Arco superior de crculo" ;
    Text [ danish ] = "Buet opad" ;
    Text [ swedish ] = "vre cirkelbge" ;
    Text [ finnish ] = "Ylkaari" ;
    Text [ english_us ] = "Upper Arc" ;
    Text[ chinese_simplified ] = "上圆弧";
    Text[ russian ] = " ";
    Text[ polish ] = "Grny uk koa";
    Text[ japanese ] = "上円弧";
    Text[ chinese_traditional ] = "上圓弧";
    Text[ arabic ] = " ";
    Text[ greek ] = "  ";
    Text[ korean ] = "위쪽 원호";
    Text[ turkish ] = "st yay";
    Text[ language_user1 ] = " ";
    Text[ catalan ] = "Arco superior de crculo";
    Text[ thai ] = "ส่วนโค้งของวงกลมบน";
};
String RID_SVXSTR_FONTWORK_FORM6
{
    Text = "Unterer Kreisbogen" ;
    Text [ ENGLISH ] = "Bottom arc" ;
    Text [ norwegian ] = "Bottom arc" ;
    Text [ italian ] = "Arco di cerchio inferiore" ;
    Text [ portuguese_brazilian ] = "Bottom arc" ;
    Text [ portuguese ] = "Arco inferior" ;
    Text [ french ] = "Arc infrieur" ;
    Text [ dutch ] = "Onderste boog" ;
    Text [ spanish ] = "Arco inferior de crculo" ;
    Text [ danish ] = "Buet nedad" ;
    Text [ swedish ] = "Undre cirkelbge" ;
    Text [ finnish ] = "Alakaari" ;
    Text [ english_us ] = "Lower Arc" ;
    Text[ chinese_simplified ] = "下圆弧";
    Text[ russian ] = " ";
    Text[ polish ] = "Dolny uk koa";
    Text[ japanese ] = "下円弧";
    Text[ chinese_traditional ] = "下圓弧";
    Text[ arabic ] = " ";
    Text[ greek ] = "  ";
    Text[ korean ] = "아래쪽 원호";
    Text[ turkish ] = "Alt yay";
    Text[ language_user1 ] = " ";
    Text[ catalan ] = "Arco inferior de crculo";
    Text[ thai ] = "ส่วนโค้งของวงกลมล่าง";
};
String RID_SVXSTR_FONTWORK_FORM7
{
    Text = "Linker Kreisbogen" ;
    Text [ ENGLISH ] = "Left arc" ;
    Text [ norwegian ] = "Left arc" ;
    Text [ italian ] = "Arco sinistro" ;
    Text [ portuguese_brazilian ] = "Left arc" ;
    Text [ portuguese ] = "Arco esquerdo" ;
    Text [ french ] = "Arc gauche" ;
    Text [ dutch ] = "Linker boog" ;
    Text [ spanish ] = "Arco izquierdo de crculo" ;
    Text [ danish ] = "Venstre bue" ;
    Text [ swedish ] = "Vnster cirkelbge" ;
    Text [ finnish ] = "Vasen kaari" ;
    Text [ english_us ] = "Left Arc" ;
    Text[ chinese_simplified ] = "左圆弧";
    Text[ russian ] = " ";
    Text[ polish ] = "Lewy uk koa";
    Text[ japanese ] = "左円弧";
    Text[ chinese_traditional ] = "左圓弧";
    Text[ arabic ] = " ";
    Text[ greek ] = " ";
    Text[ korean ] = "왼쪽 원호";
    Text[ turkish ] = "Sol yay";
    Text[ language_user1 ] = " ";
    Text[ catalan ] = "Arco izquierdo de crculo";
    Text[ thai ] = "ส่วนโค้งของวงกลมซ้าย";
};
String RID_SVXSTR_FONTWORK_FORM8
{
    Text = "Rechter Kreisbogen" ;
    Text [ ENGLISH ] = "Right arc" ;
    Text [ norwegian ] = "Right arc" ;
    Text [ italian ] = "Arco destro" ;
    Text [ portuguese_brazilian ] = "Right arc" ;
    Text [ portuguese ] = "Arco direito" ;
    Text [ french ] = "Arc droit" ;
    Text [ dutch ] = "Rechter boog" ;
    Text [ spanish ] = "Arco derecho de crculo" ;
    Text [ danish ] = "Hjre bue" ;
    Text [ swedish ] = "Hger cirkelbge" ;
    Text [ finnish ] = "Oikea kaari" ;
    Text [ english_us ] = "Right Arc" ;
    Text[ chinese_simplified ] = "右圆弧";
    Text[ russian ] = " ";
    Text[ polish ] = "Prawy uk koa";
    Text[ japanese ] = "右円弧";
    Text[ chinese_traditional ] = "右圓弧";
    Text[ arabic ] = " ";
    Text[ greek ] = " ";
    Text[ korean ] = "오른쪽 원호";
    Text[ turkish ] = "Sa yay";
    Text[ language_user1 ] = " ";
    Text[ catalan ] = "Arco derecho de crculo";
    Text[ thai ] = "ส่วนโค้งของวงกลมขวา";
};
String RID_SVXSTR_FONTWORK_FORM9
{
    Text = "Offener Kreis" ;
    Text [ ENGLISH ] = "Open circle" ;
    Text [ norwegian ] = "Open circle" ;
    Text [ italian ] = "Cerchio aperto" ;
    Text [ portuguese_brazilian ] = "Open circle" ;
    Text [ portuguese ] = "Crculo aberto" ;
    Text [ french ] = "Cercle ouvert" ;
    Text [ dutch ] = "Open cirkel" ;
    Text [ spanish ] = "Circulo abierto" ;
    Text [ danish ] = "ben cirkel" ;
    Text [ swedish ] = "ppen cirkel" ;
    Text [ finnish ] = "Avoin ympyr" ;
    Text [ english_us ] = "Open Circle" ;
    Text[ chinese_simplified ] = "不封闭的圆形";
    Text[ russian ] = " ";
    Text[ polish ] = "Otwarte koo";
    Text[ japanese ] = "上下円弧";
    Text[ chinese_traditional ] = "不封閉的圓形";
    Text[ arabic ] = " ";
    Text[ greek ] = " ";
    Text[ korean ] = "열린 원";
    Text[ turkish ] = "Ak daire";
    Text[ language_user1 ] = " ";
    Text[ catalan ] = "Circulo abierto";
    Text[ thai ] = "เปิดวงกลม";
};
String RID_SVXSTR_FONTWORK_FORM10
{
    Text = "Geschlossener Kreis" ;
    Text [ ENGLISH ] = "Closed circle" ;
    Text [ norwegian ] = "Closed circle" ;
    Text [ italian ] = "Cerchio chiuso" ;
    Text [ portuguese_brazilian ] = "Closed circle" ;
    Text [ portuguese ] = "Circulo fechado" ;
    Text [ french ] = "Cercle ferm" ;
    Text [ dutch ] = "Gesloten cirkel" ;
    Text [ spanish ] = "Crculo cerrado" ;
    Text [ danish ] = "Cirkulr" ;
    Text [ swedish ] = "Stngd cirkel" ;
    Text [ finnish ] = "Suljettu ympyr" ;
    Text [ english_us ] = "Closed Circle" ;
    Text[ chinese_simplified ] = "封闭的圆形";
    Text[ russian ] = " ";
    Text[ polish ] = "Zamknite koo";
    Text[ japanese ] = "円";
    Text[ chinese_traditional ] = "封閉的圓形";
    Text[ arabic ] = " ";
    Text[ greek ] = " ";
    Text[ korean ] = "닫힌 원";
    Text[ turkish ] = "Kapal daire";
    Text[ language_user1 ] = " ";
    Text[ catalan ] = "Crculo cerrado";
    Text[ thai ] = "ปิดวงกลม";
};
String RID_SVXSTR_FONTWORK_FORM11
{
    Text = "Geschlossener Kreis II" ;
    Text [ ENGLISH ] = "Closed circle II" ;
    Text [ norwegian ] = "Closed circle II" ;
    Text [ italian ] = "Cerchio chiuso II" ;
    Text [ portuguese_brazilian ] = "Closed circle II" ;
    Text [ portuguese ] = "Crculo fechado II" ;
    Text [ french ] = "Cercle ferm II" ;
    Text [ dutch ] = "Gesloten cirkel II" ;
    Text [ spanish ] = "Crculo cerrado II" ;
    Text [ danish ] = "Cirkulr II" ;
    Text [ swedish ] = "Stngd cirkel II" ;
    Text [ finnish ] = "Suljettu ympyr II" ;
    Text [ english_us ] = "Closed Circle II" ;
    Text[ chinese_simplified ] = "封闭的圆形 II";
    Text[ russian ] = "  II";
    Text[ polish ] = "Zamknite koo II";
    Text[ japanese ] = "円II";
    Text[ chinese_traditional ] = "封閉的圓型 II";
    Text[ arabic ] = "  II";
    Text[ greek ] = "  II";
    Text[ korean ] = "닫힌 원 II";
    Text[ turkish ] = "Kapal daire II";
    Text[ language_user1 ] = " ";
    Text[ catalan ] = "Crculo cerrado II";
    Text[ thai ] = "ปิดวงกลม II";
};
String RID_SVXSTR_FONTWORK_FORM12
{
    Text = "Offener Kreis senkrecht" ;
    Text [ ENGLISH ] = "Open circle vertical" ;
    Text [ norwegian ] = "Open circle vertical" ;
    Text [ italian ] = "Cerchio aperto verticale" ;
    Text [ portuguese_brazilian ] = "Open circle vertical" ;
    Text [ portuguese ] = "Crculo aberto vertical" ;
    Text [ french ] = "Cercle ouvert vertical" ;
    Text [ dutch ] = "Open cirkel verticaal" ;
    Text [ spanish ] = "Crculo abierto vertical" ;
    Text [ danish ] = "ben cirkel lodret" ;
    Text [ swedish ] = "ppen cirkel lodrtt" ;
    Text [ finnish ] = "Avoin pystysuora ympyr" ;
    Text [ english_us ] = "Open Circle Vertical" ;
    Text[ chinese_simplified ] = "垂直方向不封闭的圆形";
    Text[ russian ] = "  ";
    Text[ polish ] = "Otwarte koo w pionie";
    Text[ japanese ] = "左右円弧";
    Text[ chinese_traditional ] = "垂直的不封閉的圓形";
    Text[ arabic ] = "  ";
    Text[ greek ] = "  ";
    Text[ korean ] = "수직 열린 원";
    Text[ turkish ] = "Dikey ak daire";
    Text[ language_user1 ] = " ";
    Text[ catalan ] = "Crculo abierto vertical";
    Text[ thai ] = "เปิดวงกลมแนวตั้ง";
};
String RID_SVXSTR_FONTWORK_UNDOCREATE
{
    Text = "FontWork-Objekt erzeugen" ;
    Text [ ENGLISH ] = "create FontWork object" ;
    Text [ english_us ] = "Create FontWork object" ;
    Text [ italian ] = "Crea un oggetto FontWork" ;
    Text [ spanish ] = "Crear objeto FontWork" ;
    Text [ french ] = "Crer un objet FontWork" ;
    Text [ dutch ] = "FontWork-object maken" ;
    Text [ swedish ] = "Skapa FontWork-objekt" ;
    Text [ danish ] = "Opret FontWork-objekt" ;
    Text [ portuguese_brazilian ] = "FontWork-Objekt erzeugen" ;
    Text [ portuguese ] = "Criar objecto FontWork" ;
    Text[ chinese_simplified ] = "生成美工字体对象";
    Text[ russian ] = "  FontWork";
    Text[ polish ] = "Utwrz obiekt FontWork";
    Text[ japanese ] = "フォントワーク オブジェクトの作成";
    Text[ chinese_traditional ] = "產生美術字型物件";
    Text[ arabic ] = "  FontWork";
    Text[ greek ] = "  FontWork";
    Text[ korean ] = "FontWork 개체 생성";
    Text[ turkish ] = "FontWork nesnesi olutur";
    Text[ language_user1 ] = " ";
    Text[ catalan ] = "Crear objeto FontWork";
    Text[ finnish ] = "Luo fonttityobjekti";
    Text[ thai ] = "สร้างวัตถตัวอักษรที่ใช้งาน";
};
 // ********************************************************************** EOF