summaryrefslogtreecommitdiff
path: root/sw/source/ui/app/app.src
blob: 475ee6e4e87b24f46a5bd2165315cf8e5326f02c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
2264
2265
2266
2267
2268
2269
2270
2271
2272
2273
2274
2275
2276
2277
2278
2279
2280
2281
2282
2283
2284
2285
2286
2287
2288
2289
2290
2291
2292
2293
2294
2295
2296
2297
2298
2299
2300
2301
2302
2303
2304
2305
2306
2307
2308
2309
2310
2311
2312
2313
2314
2315
2316
2317
2318
2319
2320
2321
2322
2323
2324
2325
2326
2327
2328
2329
2330
2331
2332
2333
2334
2335
2336
2337
2338
2339
2340
2341
2342
2343
2344
2345
2346
2347
2348
2349
2350
2351
2352
2353
2354
2355
2356
2357
2358
2359
2360
2361
2362
2363
2364
2365
2366
2367
2368
2369
2370
2371
2372
2373
2374
2375
2376
2377
2378
2379
2380
2381
2382
2383
2384
2385
2386
2387
2388
2389
2390
2391
2392
2393
2394
2395
2396
2397
2398
2399
2400
2401
2402
2403
2404
2405
2406
2407
2408
2409
2410
2411
2412
2413
2414
2415
2416
2417
2418
2419
2420
2421
2422
2423
2424
2425
2426
2427
2428
2429
2430
2431
2432
2433
2434
2435
2436
2437
2438
2439
2440
2441
2442
2443
2444
2445
2446
2447
2448
2449
2450
2451
2452
2453
2454
2455
2456
2457
2458
2459
2460
2461
2462
2463
2464
2465
2466
2467
2468
2469
2470
2471
2472
2473
2474
2475
2476
2477
2478
2479
2480
2481
2482
2483
2484
2485
2486
2487
2488
2489
2490
2491
2492
2493
2494
2495
2496
2497
2498
2499
2500
2501
2502
2503
2504
2505
2506
2507
2508
2509
2510
2511
2512
2513
2514
2515
2516
2517
2518
2519
2520
2521
2522
2523
2524
2525
2526
2527
2528
2529
2530
2531
2532
2533
2534
2535
2536
2537
2538
2539
2540
2541
2542
2543
2544
2545
2546
2547
2548
2549
2550
2551
2552
2553
2554
2555
2556
2557
2558
2559
2560
2561
2562
2563
2564
2565
2566
2567
2568
2569
2570
2571
2572
2573
2574
2575
2576
2577
2578
2579
2580
2581
2582
2583
2584
2585
2586
2587
2588
2589
2590
2591
2592
2593
2594
2595
2596
2597
2598
2599
2600
2601
2602
2603
2604
2605
2606
2607
2608
2609
2610
2611
2612
2613
2614
2615
2616
2617
2618
2619
2620
2621
2622
2623
2624
2625
2626
2627
2628
2629
2630
2631
2632
2633
2634
2635
2636
2637
2638
2639
2640
2641
2642
2643
2644
2645
2646
2647
2648
2649
2650
2651
2652
2653
2654
2655
2656
2657
2658
2659
2660
2661
2662
2663
2664
2665
2666
2667
2668
2669
2670
2671
2672
2673
2674
2675
2676
2677
2678
2679
2680
2681
2682
2683
2684
2685
2686
2687
2688
2689
2690
2691
2692
2693
2694
2695
2696
2697
2698
2699
2700
2701
2702
2703
2704
2705
2706
2707
2708
2709
2710
2711
2712
2713
2714
2715
2716
2717
2718
2719
2720
2721
2722
2723
2724
2725
2726
2727
2728
2729
2730
2731
2732
2733
2734
2735
2736
2737
2738
2739
2740
2741
2742
2743
2744
2745
2746
2747
2748
2749
2750
2751
2752
2753
2754
2755
2756
2757
2758
2759
2760
2761
2762
2763
2764
2765
2766
2767
2768
2769
2770
2771
2772
2773
2774
2775
2776
2777
2778
2779
2780
2781
2782
2783
2784
2785
2786
2787
2788
2789
2790
2791
2792
2793
2794
2795
2796
2797
2798
2799
2800
2801
2802
2803
2804
2805
2806
2807
2808
2809
2810
2811
2812
2813
2814
2815
2816
2817
2818
2819
2820
2821
2822
2823
2824
2825
2826
2827
2828
2829
2830
2831
2832
2833
2834
2835
2836
2837
2838
2839
2840
2841
2842
2843
2844
2845
2846
2847
2848
2849
2850
2851
2852
2853
2854
2855
2856
2857
2858
2859
2860
2861
2862
2863
2864
2865
2866
2867
2868
2869
2870
2871
2872
2873
2874
2875
2876
2877
2878
2879
2880
2881
2882
2883
2884
2885
2886
2887
2888
2889
2890
2891
2892
2893
2894
2895
2896
2897
2898
2899
2900
2901
2902
2903
2904
2905
2906
2907
2908
2909
2910
2911
2912
2913
2914
2915
2916
2917
2918
2919
2920
2921
2922
2923
2924
2925
2926
2927
2928
2929
2930
2931
2932
2933
2934
2935
2936
2937
2938
2939
2940
2941
2942
2943
2944
2945
2946
2947
2948
2949
2950
2951
2952
2953
2954
2955
2956
2957
2958
2959
2960
2961
2962
2963
2964
2965
2966
2967
2968
2969
2970
/*************************************************************************
 *
 *  $RCSfile: app.src,v $
 *
 *  $Revision: 1.4 $
 *
 *  last change: $Author: jp $ $Date: 2000-10-20 13:03:03 $
 *
 *  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 <svtools/style.hrc>
#include <sfx2/sfx.hrc>
#include <svx/dialogs.hrc>
#include <svx/globlmn.hrc>
#include <basctl/basicide.hrc>
#include <offmgr/sba.hrc>
#include "cmdid.h"
#include "globals.hrc"
#include "app.hrc"
#include "statstr.hrc"
#include "swstyle.h"
#include "comcore.hrc"
#include "shells.hrc"


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

String RID_SW_NAME
{
    TEXT = "StarWriter" ;
};

String STR_PRINT_MERGE_MACRO
{
    TEXT = "Serienbriefe drucken" ;
    TEXT [ English ] = "Print merge" ;
    Text [ english_us ] = "Print form letters" ;
    Text [ italian ] = "Stampa in serie" ;
    Text [ spanish ] = "Imprimir cartas en serie" ;
    Text [ french ] = "Imprimer un mailing" ;
    Text [ dutch ] = "Standaardbrieven afdrukken" ;
    Text [ swedish ] = "Skriv ut standardbrev" ;
    Text [ danish ] = "Udskriv flettede breve" ;
    Text [ portuguese_brazilian ] = "Serienbriefe drucken" ;
    Text [ portuguese ] = "Imprimir cartas em s廨ie" ;
    Text[ chinese_simplified ] = "湖荂蚘璃磁甜";
    Text[ language_user1 ] = " ";
    Text[ russian ] = "盷欑譔 儴膻";
    Text[ polish ] = "Drukuj listy seryjne";
    Text[ japanese ] = "";
    Text[ chinese_traditional ] = "合併列印";
    Text[ arabic ] = "媩с 挎ав 蒑慪慓";
    Text[ dutch ] = "Standaardbrieven afdrukken";
    Text[ chinese_simplified ] = "湖荂蚘璃磁甜";
    Text[ greek ] = "髑鐊蹠鵰 樍艕膹蜍 歑澞鐐錞";
    Text[ korean ] = "翱樓ら雖 檣潑";
    Text[ turkish ] = "Standart mektup yazdr";
};

String STR_PAGE_COUNT_MACRO
{
    TEXT = "瓏derung der Seitenanzahl" ;
    TEXT [ English ] = "Page count changed" ;
    Text [ english_us ] = "Changing the page count" ;
    Text [ portuguese_brazilian ] = "瓏derung der Seitenanzahl" ;
    Text [ swedish ] = "瓏dring av sidantal" ;
    Text [ danish ] = "Modificer sideantal" ;
    Text [ italian ] = "Modifica del numero delle pagine" ;
    Text [ spanish ] = "Modificaci鏮 del nmero de p墔inas" ;
    Text [ french ] = "Modification du nombre de pages" ;
    Text [ dutch ] = "Wijziging van het aantal pagina's" ;
    Text [ portuguese ] = "Modificar nmero de p墔inas" ;
    Text[ chinese_simplified ] = "載蜊珜杅";
    Text[ russian ] = "賚樇樇鳺 膰錒灚嚦瘔 嚦譇膻";
    Text[ polish ] = "Zmiana liczby stron";
    Text[ japanese ] = "俓側X";
    Text[ chinese_traditional ] = "變更頁數";
    Text[ arabic ] = "忮臇 硨 ш殎虰";
    Text[ dutch ] = "Wijziging van het aantal pagina's";
    Text[ chinese_simplified ] = "載蜊珜杅";
    Text[ greek ] = "灌鼨鵰 謻碄瀦 鵴錁噘";
    Text[ korean ] = "む檜雖 蘋遴お 滲唳";
    Text[ turkish ] = "Sayfa saysnn de簨tirilmesi";
    Text[ language_user1 ] = " ";
};

 // Image-Liste ----------------------------------------------------------------
 //Dafuer gibt es jetzt eine Vorsortierung:
 //1. SID_
 //2. RID_
 //3. FN_
 //4. Ids, die noch aus der Default-Liste entfernt werden muessen

#define IMAGELIST_AND_COUNT             \
    IdList = {                          \
        SID_SELECTALL                   ;\
        SID_NEWDOCDIRECT                ;\
        SID_DOCINFO                     ;\
        SID_CLOSEDOCS                   ;\
        SID_MAIL_SENDDOC                ;\
        SID_PRINTPREVIEW                ;\
                                        \
           SID_INSERT_GRAPHIC               ;\
           SID_INSERT_DRAW                  ;\
        SID_DOCTEMPLATE                 ;\
        SID_AUTOFORMAT                  ;\
        SID_AUTOSPELL_CHECK             ;\
        SID_EXTENDEDHELP                ;\
        SID_ATTR_CHAR_FONT              ;\
        SID_ATTR_CHAR_FONTHEIGHT        ;\
        SID_ATTR_CHAR_STRIKEOUT         ;\
        SID_ATTR_CHAR_SHADOWED          ;\
        SID_OBJECT_HELL                 ;\
        SID_OBJECT_HEAVEN               ;\
        SID_ATTR_FILL_STYLE             ;\
        SID_ATTR_LINE_STYLE             ;\
        SID_ATTR_LINE_WIDTH             ;\
         SID_ATTR_LINE_COLOR                ;\
        SID_ATTR_LINEEND_STYLE          ;\
         SID_BACKGROUND_COLOR           ;\
         SID_FRAME_LINESTYLE                ;\
         SID_FRAME_LINECOLOR                ;\
        SID_ATTR_ZOOM                   ;\
        SID_WIN_FULLSCREEN              ;\
        SID_FRAME_TO_TOP                ;\
        SID_FRAME_TO_BOTTOM             ;\
        SID_SBA_ADDRPI                  ;\
        SID_FONTWORK                    ;\
                                        \
        SID_ATTR_TRANSFORM              ;\
        SID_ATTR_CHAR_COLOR2;\
        SID_ATTR_CHAR_COLOR_BACKGROUND ;\
                                        \
        FN_NUMBER_BULLETS               ;\
        FN_NUM_BULLET_DOWN              ;\
         FN_NUM_BULLET_UP               ;\
         FN_NUM_BULLET_MOVEUP           ;\
         FN_NUM_BULLET_MOVEDOWN             ;\
         FN_NUM_BULLET_NONUM                ;\
         FN_NUM_BULLET_OFF              ;\
         FN_NUM_BULLET_OUTLINE_DOWN         ;\
         FN_NUM_BULLET_OUTLINE_UP       ;\
         FN_NUM_BULLET_OUTLINE_MOVEUP   ;\
         FN_NUM_BULLET_OUTLINE_MOVEDOWN     ;\
        FN_NUMBER_NEWSTART ;\
          FN_INSERT_FIELD                   ;\
        FN_VIEW_FIELDS                  ;\
        FN_VIEW_FIELDNAME               ;\
        FN_VIEW_GRAPHIC                 ;\
        FN_VIEW_MARKS                   ;\
           FN_VIEW_META_CHARS               ;\
           FN_INSERT_TABLE                  ;\
           FN_INSERT_FRAME_INTERACT     ;\
           FN_INSERT_FRAME_INTERACT_NOCOL   ;\
           FN_FRAME_CHAIN                   ;\
           FN_FRAME_UNCHAIN             ;\
           FN_INSERT_FRAME                  ;\
         FN_TOOL_ANKER                  ;\
        FN_SET_SUPER_SCRIPT             ;\
        FN_SET_SUB_SCRIPT               ;\
        FN_UNDERLINE_DOUBLE             ;\
        SID_ATTR_PARA_ADJUST_BLOCK              ;\
        FN_FORMAT_FRAME_DLG             ;\
        FN_FRAME_NOWRAP                 ;\
        FN_FRAME_WRAP                   ;\
        FN_FRAME_WRAPTHRU               ;\
        FN_FRAME_WRAP_IDEAL             ;\
        FN_FRAME_WRAP_LEFT              ;\
        FN_FRAME_WRAP_RIGHT             ;\
        FN_FRAME_WRAP_CONTOUR           ;\
        SID_CONTOUR_DLG                 ;\
        FN_FRAME_ALIGN_HORZ_LEFT        ;\
        FN_FRAME_ALIGN_HORZ_RIGHT       ;\
        FN_FRAME_ALIGN_HORZ_CENTER      ;\
        FN_FRAME_ALIGN_VERT_TOP         ;\
        FN_FRAME_ALIGN_VERT_BOTTOM      ;\
        FN_FRAME_ALIGN_VERT_CENTER      ;\
        FN_TABLE_INSERT_ROW             ;\
        FN_TABLE_INSERT_COL             ;\
        FN_TABLE_DELETE_ROW             ;\
        FN_TABLE_DELETE_COL             ;\
        FN_TABLE_SPLIT_CELLS            ;\
        FN_TABLE_MERGE_CELLS            ;\
        FN_TABLE_SELECT_ROW             ;\
        FN_TABLE_SELECT_COL             ;\
        FN_TABLE_SELECT_ALL             ;\
        FN_OPTIMIZE_TABLE ;\
        FN_TABLE_OPTIMAL_HEIGHT;\
        FN_TABLE_BALANCE_ROWS  ;\
        FN_TABLE_ADJUST_CELLS  ;\
        FN_TABLE_BALANCE_CELLS ;\
        FN_PAGE_STYLE_SET_COLS          ;\
        FN_FLIP_HORZ_GRAFIC             ;\
        FN_FLIP_VERT_GRAFIC             ;\
        FN_SPELLING_DLG                 ;\
        FN_START_TABLE                  ;\
        FN_END_TABLE                    ;\
        FN_FORMULA_CALC                 ;\
        FN_FORMULA_CANCEL               ;\
         FN_FORMULA_APPLY               ;\
        SID_NAVIGATOR               ;\
        FN_PAGEUP                       ;\
        FN_PAGEDOWN                     ;\
        FN_START_OF_DOCUMENT            ;\
        FN_END_OF_DOCUMENT              ;\
        FN_SHOW_TWO_PAGES               ;\
        FN_SHOW_FOUR_PAGES              ;\
        FN_FORMAT_PAGE_DLG              ;\
        FN_PRINT_PAGEPREVIEW            ;\
        FN_FAX                          ;\
        FN_QRY_MERGE                    ;\
        FN_EDIT_FORMULA; \
        FN_INSERT_CTRL       ;\
        FN_INSERT_OBJ_CTRL   ;\
        FN_INSERT_FIELD_CTRL ;\
        SID_SOURCEVIEW;\
        FN_TABLE_VERT_NONE;\
        FN_TABLE_VERT_CENTER;\
        FN_TABLE_VERT_BOTTOM;\
        FN_TABLE_MODE_FIX      ;\
        FN_TABLE_MODE_FIX_PROP ;\
        FN_TABLE_MODE_VARIABLE ;\
        FN_PRINT_LAYOUT ;\
        FN_INSERT_HEADER;\
        FN_INSERT_FOOTER;\
        FN_TABLE_AUTOSUM;\
        FN_PREVIEW_PRINT_OPTIONS;\
        FN_PREVIEW_ZOOM;\
                                        \
        SID_STYLE_APPLY                 ;\
        SID_STYLE_NEW_BY_EXAMPLE        ;\
        SID_STYLE_UPDATE_BY_EXAMPLE ;\
         SID_ATTR_BORDER                    ;\
        SID_PLAYMACRO                   ;\
        SID_CHAR_DLG                    ;\
        SID_PARA_DLG                    ;\
        SID_INSERT_PREVIEW ; \
        SID_INSERT_SPINBUTTON ;\
        SID_INSERT_HSCROLLBAR ;\
        SID_INSERT_VSCROLLBAR ;\
           FN_QRY                           ;\
           FN_INSERT_OBJECT_DLG         ;\
           FN_INSERT_SYMBOL             ;\
           FN_POSTIT                        ;\
        FN_GROW_FONT_SIZE               ;\
        FN_SHRINK_FONT_SIZE             ;\
        FN_THESAURUS_DLG                ;\
        FN_HYPHENATE_OPT_DLG            ;\
        FN_GLOSSARY_DLG                 ;\
        SID_INSERT_URLBUTTON            ;\
                                                    \
        FN_INSERT_FLD_DATE    ;\
        FN_INSERT_FLD_TIME    ;\
        FN_INSERT_FLD_PGNUMBER;\
        FN_INSERT_FLD_PGCOUNT ;\
        FN_INSERT_FLD_TOPIC   ;\
        FN_INSERT_FLD_TITLE   ;\
        FN_INSERT_FLD_AUTHOR  ;\
        FN_INSERT_SMA;        \
        FN_INSERT_FOOTNOTE;    \
        FN_INSERT_ENDNOTE;    \
        FN_INSERT_IDX_ENTRY_DLG;\
        FN_INSERT_BOOKMARK;      \
        SID_SEARCH_DLG; \
        SID_INSERTDOC;              \
        SID_INSERT_FLOATINGFRAME;\
        FN_SHADOWCURSOR;\
        FN_INSERT_CAPTION;\
        FN_INSERT_REF_FIELD;\
        FN_INSERT_COLUMN_SECTION;\
                                        \
                                        \
        };                              \
    IdCount = {                         \
        172;                            \
    };



ImageList RID_DEFAULTIMAGELIST_SC
{
    ImageBitmap = Bitmap
    {
        File = "sc_out.bmp" ;
        File [ english ] = "sc_out01.bmp" ;
        File [ english_us ] = "sc_out01.bmp" ;
        File [ dutch ] = "sc_out31.bmp" ;
        File [ french ] = "sc_out33.bmp" ;
        File [ spanish ] = "sc_out34.bmp" ;
        File [ italian ] = "sc_out39.bmp" ;
        File [ swedish ] = "sc_out46.bmp" ;
        File [ danish ] = "sc_out45.bmp" ;
        File [ russian ] = "sc_out07.bmp" ;
        File [ polish ] = "sc_out48.bmp" ;
        File [ greek ] = "sc_out30.bmp" ;
        File [ japanese ] = "sc_out81.bmp" ;
        File [ portuguese ] = "sc_out03.bmp" ;
    };
    MaskColor = IMAGE_STDBTN_COLOR ;
    IMAGELIST_AND_COUNT
};
ImageList RID_DEFAULTIMAGELIST_LC
{
    ImageBitmap = Bitmap
    {
        File = "lc_out.bmp" ;
        File [ english ] = "lc_out01.bmp" ;
        File [ english_us ] = "lc_out01.bmp" ;
        File [ dutch ] = "lc_out31.bmp" ;
        File [ french ] = "lc_out33.bmp" ;
        File [ spanish ] = "lc_out34.bmp" ;
        File [ italian ] = "lc_out39.bmp" ;
        File [ swedish ] = "lc_out46.bmp" ;
        File [ danish ] = "lc_out45.bmp" ;
        File [ russian ] = "lc_out07.bmp" ;
        File [ polish ] = "lc_out48.bmp" ;
        File [ greek ] = "lc_out30.bmp" ;
        File [ japanese ] = "lc_out81.bmp" ;
        File [ portuguese ] = "lc_out03.bmp" ;
    };
    MaskColor = IMAGE_STDBTN_COLOR ;
    IMAGELIST_AND_COUNT
};

 // Vorlagen
SfxStyleFamilies DLG_STYLE_DESIGNER
{
    StyleFamilyList =
    {
        SfxStyleFamilyItem
        {
            StyleImage = Image
            {
                ImageBitmap = Bitmap { File = "catpar.bmp" ; };
                MaskColor = IMAGE_STDBTN_COLOR ;
            };
            Text = "Absatzvorlagen" ;
            Text [ ENGLISH ] = "Paragraph Styles" ;
            Text [ norwegian ] = "Avsnittsmaler" ;
            Text [ italian ] = "Modelli di paragrafo" ;
            Text [ portuguese_brazilian ] = "Estilos de par墔rafo" ;
            Text [ portuguese ] = "Estilos de par墔rafo" ;
            Text [ finnish ] = "Kappaletyylit" ;
            Text [ danish ] = "Afsnitstypografier" ;
            Text [ french ] = "Styles de paragraphe" ;
            Text [ swedish ] = "Styckeformatmallar" ;
            Text [ dutch ] = "Alinea-opmaakprofielen" ;
            Text [ spanish ] = "Estilos de p嫫rafo" ;
            Text [ english_us ] = "Paragraph Styles" ;
            StyleFamily = SFX_STYLE_FAMILY_PARA ;
            FilterList =
            {
                < "Automatisch" ; SFXSTYLEBIT_AUTO ; > ;
                < "Alle Vorlagen" ; SFXSTYLEBIT_ALL ; > ;
                < "Verwendete Vorlagen" ; SFXSTYLEBIT_USED ; > ;
                < "Benutzervorlagen" ; SFXSTYLEBIT_USERDEF ; > ;
                < "Textvorlagen" ; SWSTYLEBIT_TEXT ; > ;
                < "Kapitelvorlagen" ; SWSTYLEBIT_CHAPTER ; > ;
                < "Listenvorlagen" ; SWSTYLEBIT_LIST ; > ;
                < "Verzeichnisvorlagen" ; SWSTYLEBIT_IDX ; > ;
                < "Vorlagen Sonderbereiche" ; SWSTYLEBIT_EXTRA ; > ;
                < "HTML Vorlagen" ; SWSTYLEBIT_HTML ; > ;
                < "Bedingte Vorlagen" ; SWSTYLEBIT_CONDCOLL ; > ;
            };
            FilterList [ ENGLISH ] =
            {
                < "Automatisch" ; SFXSTYLEBIT_AUTO ; > ;
                < "Alle Vorlagen" ; SFXSTYLEBIT_ALL ; > ;
                < "Verwendete Vorlagen" ; SFXSTYLEBIT_USED ; > ;
                < "Benutzervorlagen" ; SFXSTYLEBIT_USERDEF ; > ;
                < "Textvorlagen" ; SWSTYLEBIT_TEXT ; > ;
                < "Kapitelvorlagen" ; SWSTYLEBIT_CHAPTER ; > ;
                < "Listenvorlagen" ; SWSTYLEBIT_LIST ; > ;
                < "Verzeichnisvorlagen" ; SWSTYLEBIT_IDX ; > ;
                < "Vorlagen Sonderbereiche" ; SWSTYLEBIT_EXTRA ; > ;
                < "HTML Vorlagen" ; SWSTYLEBIT_HTML ; > ;
                < "Bedingte Vorlagen" ; SWSTYLEBIT_CONDCOLL ; > ;
            };
            filterlist [ english_us ] =
            {
                < "Automatic" ; SFXSTYLEBIT_AUTO ; > ;
                < "All Styles" ; SFXSTYLEBIT_ALL ; > ;
                < "Applied Styles" ; SFXSTYLEBIT_USED ; > ;
                < "Custom Styles" ; SFXSTYLEBIT_USERDEF ; > ;
                < "Text Styles" ; SWSTYLEBIT_TEXT ; > ;
                < "Chapter Styles" ; SWSTYLEBIT_CHAPTER ; > ;
                < "List Styles" ; SWSTYLEBIT_LIST ; > ;
                < "Index Styles" ; SWSTYLEBIT_IDX ; > ;
                < "Special Styles" ; SWSTYLEBIT_EXTRA ; > ;
                < "HTML Styles" ; SWSTYLEBIT_HTML ; > ;
                < "Conditional Styles" ; SWSTYLEBIT_CONDCOLL ; > ;
            };
            filterlist [ portuguese_brazilian ] =
            {
                < "Automatisch" ; SFXSTYLEBIT_AUTO ; > ;
                < "Alle Vorlagen" ; SFXSTYLEBIT_ALL ; > ;
                < "Verwendete Vorlagen" ; SFXSTYLEBIT_USED ; > ;
                < "Benutzervorlagen" ; SFXSTYLEBIT_USERDEF ; > ;
                < "Textvorlagen" ; SWSTYLEBIT_TEXT ; > ;
                < "Kapitelvorlagen" ; SWSTYLEBIT_CHAPTER ; > ;
                < "Listenvorlagen" ; SWSTYLEBIT_LIST ; > ;
                < "Verzeichnisvorlagen" ; SWSTYLEBIT_IDX ; > ;
                < "Vorlagen Sonderbereiche" ; SWSTYLEBIT_EXTRA ; > ;
                < "HTML Vorlagen" ; SWSTYLEBIT_HTML ; > ;
                < "Bedingte Vorlagen" ; SWSTYLEBIT_CONDCOLL ; > ;
            };
            filterlist [ swedish ] =
            {
                < "Automatiskt" ; SFXSTYLEBIT_AUTO ; > ;
                < "Alla formatmallar" ; SFXSTYLEBIT_ALL ; > ;
                < "Anv鄚da formatmallar" ; SFXSTYLEBIT_USED ; > ;
                < "Anv鄚dardefinierade formatmallar" ; SFXSTYLEBIT_USERDEF ; > ;
                < "Textformatmallar" ; SWSTYLEBIT_TEXT ; > ;
                < "Kapitelformatmallar" ; SWSTYLEBIT_CHAPTER ; > ;
                < "Listformatmallar" ; SWSTYLEBIT_LIST ; > ;
                < "F顤teckningsformatmallar" ; SWSTYLEBIT_IDX ; > ;
                < "Formatmallar specialomr嶟e" ; SWSTYLEBIT_EXTRA ; > ;
                < "HTML formatmallar" ; SWSTYLEBIT_HTML ; > ;
                < "Villkorliga formatmallar" ; SWSTYLEBIT_CONDCOLL ; > ;
            };
            filterlist [ danish ] =
            {
                < "Automatisk" ; SFXSTYLEBIT_AUTO ; > ;
                < "Alle typografier" ; SFXSTYLEBIT_ALL ; > ;
                < "Anvendte typografier" ; SFXSTYLEBIT_USED ; > ;
                < "Brugerdefinerede typografier" ; SFXSTYLEBIT_USERDEF ; > ;
                < "Teksttypografier" ; SWSTYLEBIT_TEXT ; > ;
                < "Kapiteltypografier" ; SWSTYLEBIT_CHAPTER ; > ;
                < "Listetypografier" ; SWSTYLEBIT_LIST ; > ;
                < "Indekstypografier" ; SWSTYLEBIT_IDX ; > ;
                < "Typografi s熳omr嶟er" ; SWSTYLEBIT_EXTRA ; > ;
                < "HTML-typografier" ; SWSTYLEBIT_HTML ; > ;
                < "Betingede typografier" ; SWSTYLEBIT_CONDCOLL ; > ;
            };
            filterlist [ italian ] =
            {
                < "Automatico" ; SFXSTYLEBIT_AUTO ; > ;
                < "Tutti i modelli" ; SFXSTYLEBIT_ALL ; > ;
                < "Modelli usati" ; SFXSTYLEBIT_USED ; > ;
                < "Modelli utente" ; SFXSTYLEBIT_USERDEF ; > ;
                < "Modelli di testo" ; SWSTYLEBIT_TEXT ; > ;
                < "Modelli di capitolo" ; SWSTYLEBIT_CHAPTER ; > ;
                < "Modelli di elenchi" ; SWSTYLEBIT_LIST ; > ;
                < "Modelli di indice" ; SWSTYLEBIT_IDX ; > ;
                < "Modelli aree speciali" ; SWSTYLEBIT_EXTRA ; > ;
                < "Modelli HTML" ; SWSTYLEBIT_HTML ; > ;
                < "Modelli condizionati" ; SWSTYLEBIT_CONDCOLL ; > ;
            };
            filterlist [ spanish ] =
            {
                < "Autom嫢ico" ; SFXSTYLEBIT_AUTO ; > ;
                < "Todos los estilos" ; SFXSTYLEBIT_ALL ; > ;
                < "Estilos aplicados" ; SFXSTYLEBIT_USED ; > ;
                < "Estilos del usuario" ; SFXSTYLEBIT_USERDEF ; > ;
                < "Estilos de texto" ; SWSTYLEBIT_TEXT ; > ;
                < "Estilos de cap癃ulos" ; SWSTYLEBIT_CHAPTER ; > ;
                < "Estilos de listas" ; SWSTYLEBIT_LIST ; > ;
                < "Estilos de 璯dices" ; SWSTYLEBIT_IDX ; > ;
                < "Estilos de 嫫eas especiales" ; SWSTYLEBIT_EXTRA ; > ;
                < "Estilos HTML" ; SWSTYLEBIT_HTML ; > ;
                < "Estilos condicionados" ; SWSTYLEBIT_CONDCOLL ; > ;
            };
            filterlist [ french ] =
            {
                < "Automatiquement" ; SFXSTYLEBIT_AUTO ; > ;
                < "Tous les styles" ; SFXSTYLEBIT_ALL ; > ;
                < "Styles utilis廥" ; SFXSTYLEBIT_USED ; > ;
                < "Styles personnalis廥" ; SFXSTYLEBIT_USERDEF ; > ;
                < "Styles de texte" ; SWSTYLEBIT_TEXT ; > ;
                < "Styles de chapitre" ; SWSTYLEBIT_CHAPTER ; > ;
                < "Styles de liste" ; SWSTYLEBIT_LIST ; > ;
                < "Styles d'index/de tables des mati鋨es" ; SWSTYLEBIT_IDX ; > ;
                < "Styles pour zones sp嶰iales" ; SWSTYLEBIT_EXTRA ; > ;
                < "Styles HTML" ; SWSTYLEBIT_HTML ; > ;
                < "Styles conditionnels" ; SWSTYLEBIT_CONDCOLL ; > ;
            };
            filterlist [ dutch ] =
            {
                < "Automatisch" ; SFXSTYLEBIT_AUTO ; > ;
                < "Alle opmaakprofielen" ; SFXSTYLEBIT_ALL ; > ;
                < "Gebruikte opmaakprofielen" ; SFXSTYLEBIT_USED ; > ;
                < "Eigen opmaakprofielen" ; SFXSTYLEBIT_USERDEF ; > ;
                < "Tekstopmaakprofielen" ; SWSTYLEBIT_TEXT ; > ;
                < "Opmaakprofielen voor hoofdtukken" ; SWSTYLEBIT_CHAPTER ; > ;
                < "Lijstopmaakprofielen" ; SWSTYLEBIT_LIST ; > ;
                < "Indexopmaakprofielen" ; SWSTYLEBIT_IDX ; > ;
                < "Opmaakprof. speciale bereiken" ; SWSTYLEBIT_EXTRA ; > ;
                < "HTML-opmaakprofielen" ; SWSTYLEBIT_HTML ; > ;
                < "Conditionele opmaakprofielen" ; SWSTYLEBIT_CONDCOLL ; > ;
            };
            filterlist [ portuguese ] =
            {
                < "Autom嫢ico" ; SFXSTYLEBIT_AUTO ; > ;
                < "Estilos todos" ; SFXSTYLEBIT_ALL ; > ;
                < "Estilos usados" ; SFXSTYLEBIT_USED ; > ;
                < "Estilos personalizados" ; SFXSTYLEBIT_USERDEF ; > ;
                < "Estilos de texto" ; SWSTYLEBIT_TEXT ; > ;
                < "Estilos de cap癃ulos" ; SWSTYLEBIT_CHAPTER ; > ;
                < "Estilos de listas" ; SWSTYLEBIT_LIST ; > ;
                < "Estilos de 璯dices" ; SWSTYLEBIT_IDX ; > ;
                < "Estilos de 嫫eas especiais" ; SWSTYLEBIT_EXTRA ; > ;
                < "Estilos HTML" ; SWSTYLEBIT_HTML ; > ;
                < "Estilos condicionados" ; SWSTYLEBIT_CONDCOLL ; > ;
            };
            Text[ chinese_simplified ] = "僇邈欴宒";
            FilterList [ chinese_simplified ] =
        {
            < "赻雄" ; SFXSTYLEBIT_AUTO ; > ;
            < "垓謀鱹" ; SFXSTYLEBIT_ALL ; > ;
            < "妏蚚腔欴宒" ; SFXSTYLEBIT_USED ; > ;
            < "赻隅欴宒" ; SFXSTYLEBIT_USERDEF ; > ;
            < "恅趼欴宒" ; SWSTYLEBIT_TEXT ; > ;
            < "梒欴宒" ; SWSTYLEBIT_CHAPTER ; > ;
            < "蹈等欴宒" ; SWSTYLEBIT_LIST ; > ;
            < "坰竘欴宒" ; SWSTYLEBIT_IDX ; > ;
            < "欴宒杻忷⑹郖" ; SWSTYLEBIT_EXTRA ; > ;
            < "HTML 欴宒" ; SWSTYLEBIT_HTML ; > ;
            < "衄沭璃腔欴宒" ; SWSTYLEBIT_CONDCOLL ; > ;
        };
        FilterList [ language_user1 ] =
        {
            < " " ; SFXSTYLEBIT_AUTO ; > ;
            < " " ; SFXSTYLEBIT_ALL ; > ;
            < " " ; SFXSTYLEBIT_USED ; > ;
            < " " ; SFXSTYLEBIT_USERDEF ; > ;
            < " " ; SWSTYLEBIT_TEXT ; > ;
            < " " ; SWSTYLEBIT_CHAPTER ; > ;
            < " " ; SWSTYLEBIT_LIST ; > ;
            < " " ; SWSTYLEBIT_IDX ; > ;
            < " " ; SWSTYLEBIT_EXTRA ; > ;
            < " " ; SWSTYLEBIT_HTML ; > ;
            < " " ; SWSTYLEBIT_CONDCOLL ; > ;
        };
        FilterList [ language_user1 ] =
        {
            < " " ; SFXSTYLEBIT_AUTO ; > ;
            < " " ; SFXSTYLEBIT_ALL ; > ;
            < " " ; SFXSTYLEBIT_USED ; > ;
            < " " ; SFXSTYLEBIT_USERDEF ; > ;
            < " " ; SWSTYLEBIT_TEXT ; > ;
            < " " ; SWSTYLEBIT_CHAPTER ; > ;
            < " " ; SWSTYLEBIT_LIST ; > ;
            < " " ; SWSTYLEBIT_IDX ; > ;
            < " " ; SWSTYLEBIT_EXTRA ; > ;
            < " " ; SWSTYLEBIT_HTML ; > ;
            < " " ; SWSTYLEBIT_CONDCOLL ; > ;
        };
        Text[ language_user1 ] = " ";
            Text[ russian ] = "栺鳹 颬諘攡";
            Text[ polish ] = "Style akapitu";
            Text[ japanese ] = "i蝗紱";
            FilterList [ russian ] =
        {
            < "濩襜憵蠂灚齕" ; SFXSTYLEBIT_AUTO ; > ;
            < "鎚 嚦鳹" ; SFXSTYLEBIT_ALL ; > ;
            < "砎鳻樇樇蕻 嚦鳹" ; SFXSTYLEBIT_USED ; > ;
            < "栺鳹 瀁錪賧瘔蠈" ; SFXSTYLEBIT_USERDEF ; > ;
            < "栺鳹 蠈膲蠉" ; SWSTYLEBIT_TEXT ; > ;
            < "栺鳹 蜱飶" ; SWSTYLEBIT_CHAPTER ; > ;
            < "栺鳹 厴黓罻" ; SWSTYLEBIT_LIST ; > ;
            < "栺鳹 鵳馵僗槶" ; SWSTYLEBIT_IDX ; > ;
            < "栺鳹 厴氀魰錪蕻 鍕錟嚦樥" ; SWSTYLEBIT_EXTRA ; > ;
            < "栺鳹 HTML" ; SWSTYLEBIT_HTML ; > ;
            < "迶鋋碴 嚦鳹" ; SWSTYLEBIT_CONDCOLL ; > ;
        };
        FilterList [ polish ] =
        {
            < "Automatycznie" ; SFXSTYLEBIT_AUTO ; > ;
            < "Wszystkie style" ; SFXSTYLEBIT_ALL ; > ;
            < "U篡te style" ; SFXSTYLEBIT_USED ; > ;
            < "Style u篡tkownika" ; SFXSTYLEBIT_USERDEF ; > ;
            < "Style tekstu" ; SWSTYLEBIT_TEXT ; > ;
            < "Style rozdzia逝" ; SWSTYLEBIT_CHAPTER ; > ;
            < "Style listy" ; SWSTYLEBIT_LIST ; > ;
            < "Style indeksu" ; SWSTYLEBIT_IDX ; > ;
            < "Style dla specjalnych zada" ; SWSTYLEBIT_EXTRA ; > ;
            < "Style HTML" ; SWSTYLEBIT_HTML ; > ;
            < "Warunkowe style" ; SWSTYLEBIT_CONDCOLL ; > ;
        };
        FilterList [ japanese ] =
        {
            < "" ; SFXSTYLEBIT_AUTO ; > ;
            < "抻徽" ; SFXSTYLEBIT_ALL ; > ;
            < "gp蝸徽" ; SFXSTYLEBIT_USED ; > ;
            < "桹靼`抻徽" ; SFXSTYLEBIT_USERDEF ; > ;
            < "蝗紱" ; SWSTYLEBIT_TEXT ; > ;
            < "抻徽" ; SWSTYLEBIT_CHAPTER ; > ;
            < "婼抻徽" ; SWSTYLEBIT_LIST ; > ;
            < "蠸徽" ; SWSTYLEBIT_IDX ; > ;
            < "抻徽" ; SWSTYLEBIT_EXTRA ; > ;
            < "HTML蝗紱" ; SWSTYLEBIT_HTML ; > ;
            < "t娃徽" ; SWSTYLEBIT_CONDCOLL ; > ;
        };
        Text[ chinese_traditional ] = "段落樣式";
            FilterList [ chinese_traditional ] =
        {
            < "自動" ; SFXSTYLEBIT_AUTO ; > ;
            < "全部樣式" ; SFXSTYLEBIT_ALL ; > ;
            < "使用的樣式" ; SFXSTYLEBIT_USED ; > ;
            < "自訂樣式" ; SFXSTYLEBIT_USERDEF ; > ;
            < "文字樣式" ; SWSTYLEBIT_TEXT ; > ;
            < "章樣式" ; SWSTYLEBIT_CHAPTER ; > ;
            < "清單樣式" ; SWSTYLEBIT_LIST ; > ;
            < "目錄樣式" ; SWSTYLEBIT_IDX ; > ;
            < "樣式特殊區域" ; SWSTYLEBIT_EXTRA ; > ;
            < "HTML 樣式" ; SWSTYLEBIT_HTML ; > ;
            < "有條件的樣式" ; SWSTYLEBIT_CONDCOLL ; > ;
        };
        Text[ arabic ] = "邊蒯 棰挸";
            FilterList [ arabic ] =
        {
            < "忯痯ら" ; SFXSTYLEBIT_AUTO ; > ;
            < "葐 ш邊蒯" ; SFXSTYLEBIT_ALL ; > ;
            < "邊蒯 碃 шк庉珌" ; SFXSTYLEBIT_USED ; > ;
            < "邊蒯 蓗桽" ; SFXSTYLEBIT_USERDEF ; > ;
            < "邊蒯 馻" ; SWSTYLEBIT_TEXT ; > ;
            < "邊蒯 ш楙" ; SWSTYLEBIT_CHAPTER ; > ;
            < "邊蒯 ш痯み" ; SWSTYLEBIT_LIST ; > ;
            < "邊蒯 楶晊" ; SWSTYLEBIT_IDX ; > ;
            < "邊蒯 馽хв 恉桾" ; SWSTYLEBIT_EXTRA ; > ;
            < "邊蒯  HTML" ; SWSTYLEBIT_HTML ; > ;
            < "邊蒯 虡栭婻" ; SWSTYLEBIT_CONDCOLL ; > ;
        };
        Text[ dutch ] = "Alinea-opmaakprofielen";
            Text[ chinese_simplified ] = "僇邈欴宒";
            FilterList [ dutch ] =
        {
            < "Automatisch" ; SFXSTYLEBIT_AUTO ; > ;
            < "Alle opmaakprofielen" ; SFXSTYLEBIT_ALL ; > ;
            < "Gebruikte opmaakprofielen" ; SFXSTYLEBIT_USED ; > ;
            < "Eigen opmaakprofielen" ; SFXSTYLEBIT_USERDEF ; > ;
            < "Tekstopmaakprofielen" ; SWSTYLEBIT_TEXT ; > ;
            < "Opmaakprofielen voor hoofdtukken" ; SWSTYLEBIT_CHAPTER ; > ;
            < "Lijstopmaakprofielen" ; SWSTYLEBIT_LIST ; > ;
            < "Indexopmaakprofielen" ; SWSTYLEBIT_IDX ; > ;
            < "Opmaakprof. speciale bereiken" ; SWSTYLEBIT_EXTRA ; > ;
            < "HTML-opmaakprofielen" ; SWSTYLEBIT_HTML ; > ;
            < "Conditionele opmaakprofielen" ; SWSTYLEBIT_CONDCOLL ; > ;
        };
        FilterList [ chinese_simplified ] =
        {
            < "赻雄" ; SFXSTYLEBIT_AUTO ; > ;
            < "垓謀鱹" ; SFXSTYLEBIT_ALL ; > ;
            < "妏蚚腔欴宒" ; SFXSTYLEBIT_USED ; > ;
            < "赻隅欴宒" ; SFXSTYLEBIT_USERDEF ; > ;
            < "恅趼欴宒" ; SWSTYLEBIT_TEXT ; > ;
            < "梒欴宒" ; SWSTYLEBIT_CHAPTER ; > ;
            < "蹈等欴宒" ; SWSTYLEBIT_LIST ; > ;
            < "坰竘欴宒" ; SWSTYLEBIT_IDX ; > ;
            < "欴宒杻忷⑹郖" ; SWSTYLEBIT_EXTRA ; > ;
            < "HTML 欴宒" ; SWSTYLEBIT_HTML ; > ;
            < "衄沭璃腔欴宒" ; SWSTYLEBIT_CONDCOLL ; > ;
        };
        Text[ greek ] = "哢鏷謯 謯鼁蜤媺";
            Text[ korean ] = "欽塊 嶸⑽";
            FilterList [ greek ] =
        {
            < "隸鏸憼酃" ; SFXSTYLEBIT_AUTO ; > ;
            < "潺 酃 貘鏷謯" ; SFXSTYLEBIT_ALL ; > ;
            < "癲摙斀鶂楜 黀纆" ; SFXSTYLEBIT_USED ; > ;
            < "哢鏷謯 虀祼鐋" ; SFXSTYLEBIT_USERDEF ; > ;
            < "哢鏷豵 耪濇楜瀦" ; SWSTYLEBIT_TEXT ; > ;
            < "哢鏷謯 耪攠錆裐" ; SWSTYLEBIT_CHAPTER ; > ;
            < "郙纆 錈黀摥" ; SWSTYLEBIT_LIST ; > ;
            < "哢鏷謯 氁鼫鐋麌" ; SWSTYLEBIT_IDX ; > ;
            < "哢鏷謯 樥僸蕘 謥齌濷" ; SWSTYLEBIT_EXTRA ; > ;
            < "哢鏷謯 HTML" ; SWSTYLEBIT_HTML ; > ;
            < "哢鏷謯 臝 厴蘪" ; SWSTYLEBIT_CONDCOLL ; > ;
        };
        FilterList [ korean ] =
        {
            < "濠翕" ; SFXSTYLEBIT_AUTO ; > ;
            < "瞪羹 嶸⑽" ; SFXSTYLEBIT_ALL ; > ;
            < "嶸⑽檜 瞳辨腎歷蝗棲棻." ; SFXSTYLEBIT_USED ; > ;
            < "餌辨濠 薑曖 嶸⑽" ; SFXSTYLEBIT_USERDEF ; > ;
            < "臢蝶お 嶸⑽" ; SWSTYLEBIT_TEXT ; > ;
            < "濰 嶸⑽" ; SWSTYLEBIT_CHAPTER ; > ;
            < "葬蝶お 嶸⑽" ; SWSTYLEBIT_LIST ; > ;
            < "儀檣 嶸⑽" ; SWSTYLEBIT_IDX ; > ;
            < "か滌 雖羲 嶸⑽" ; SWSTYLEBIT_EXTRA ; > ;
            < "HTML 嶸⑽" ; SWSTYLEBIT_HTML ; > ;
            < "褻勒瞳 嶸⑽" ; SWSTYLEBIT_CONDCOLL ; > ;
        };
        Text[ turkish ] = "Paragraf bi蓾mi";
            FilterList [ turkish ] =
        {
            < "Otomatik" ; SFXSTYLEBIT_AUTO ; > ;
            < "Btn bi蓾mler" ; SFXSTYLEBIT_ALL ; > ;
            < "Kullanlan bi蓾m" ; SFXSTYLEBIT_USED ; > ;
            < "Kullanc bi蓾mi" ; SFXSTYLEBIT_USERDEF ; > ;
            < "Metin bi蓾mi" ; SWSTYLEBIT_TEXT ; > ;
            < "B闤m bi蓾mi" ; SWSTYLEBIT_CHAPTER ; > ;
            < "Liste bi蓾mi" ; SWSTYLEBIT_LIST ; > ;
            < "Dizin bi蓾mi" ; SWSTYLEBIT_IDX ; > ;
            < "畤el b闤m bi蓾mi" ; SWSTYLEBIT_EXTRA ; > ;
            < "HTML bi蓾mi" ; SWSTYLEBIT_HTML ; > ;
            < "Koullu bi蓾m" ; SWSTYLEBIT_CONDCOLL ; > ;
        };
    };
        SfxStyleFamilyItem
        {
            StyleImage = Image
            {
                ImageBitmap = Bitmap { File = "catabc.bmp" ; };
                MaskColor = IMAGE_STDBTN_COLOR ;
            };
            Text = "Zeichenvorlagen" ;
            Text [ ENGLISH ] = "Character Styles" ;
            Text [ norwegian ] = "Tegnmaler" ;
            Text [ italian ] = "Modelli di carattere" ;
            Text [ portuguese_brazilian ] = "Estilo de Caracter" ;
            Text [ portuguese ] = "Estilos de caracteres" ;
            Text [ finnish ] = "Merkkityylit" ;
            Text [ danish ] = "Tegntypografier" ;
            Text [ french ] = "Styles de caract鋨e" ;
            Text [ swedish ] = "Teckenformatmallar" ;
            Text [ dutch ] = "Tekenopmaakprofielen" ;
            Text [ spanish ] = "Estilos de caracteres" ;
            Text [ english_us ] = "Character Styles" ;
            StyleFamily = SFX_STYLE_FAMILY_CHAR ;
            FilterList =
            {
                < "Alle" ; SFXSTYLEBIT_ALL ; > ;
                < "Verwendete Vorlagen" ; SFXSTYLEBIT_USED ; > ;
                < "Benutzervorlagen" ; SFXSTYLEBIT_USERDEF ; > ;
            };
            FilterList [ ENGLISH ] =
            {
                < "Alle" ; SFXSTYLEBIT_ALL ; > ;
                < "Verwendete Vorlagen" ; SFXSTYLEBIT_USED ; > ;
                < "Benutzervorlagen" ; SFXSTYLEBIT_USERDEF ; > ;
            };
            filterlist [ dutch ] =
            {
                < "Alle" ; SFXSTYLEBIT_ALL ; > ;
                < "Gebruikte opmaakprofielen" ; SFXSTYLEBIT_USED ; > ;
                < "Eigen opmaakprofielen" ; SFXSTYLEBIT_USERDEF ; > ;
            };
            filterlist [ english_us ] =
            {
                < "All" ; SFXSTYLEBIT_ALL ; > ;
                < "Applied Styles" ; SFXSTYLEBIT_USED ; > ;
                < "Custom Styles" ; SFXSTYLEBIT_USERDEF ; > ;
            };
            filterlist [ italian ] =
            {
                < "Tutti" ; SFXSTYLEBIT_ALL ; > ;
                < "Modelli usati" ; SFXSTYLEBIT_USED ; > ;
                < "Modelli utente" ; SFXSTYLEBIT_USERDEF ; > ;
            };
            filterlist [ spanish ] =
            {
                < "Todos" ; SFXSTYLEBIT_ALL ; > ;
                < "Estilos aplicados" ; SFXSTYLEBIT_USED ; > ;
                < "Estilos del usuario" ; SFXSTYLEBIT_USERDEF ; > ;
            };
            filterlist [ french ] =
            {
                < "Tous les styles" ; SFXSTYLEBIT_ALL ; > ;
                < "Styles utilis廥" ; SFXSTYLEBIT_USED ; > ;
                < "Styles personnalis廥" ; SFXSTYLEBIT_USERDEF ; > ;
            };
            filterlist [ portuguese_brazilian ] =
            {
                < "Alle" ; SFXSTYLEBIT_ALL ; > ;
                < "Verwendete Vorlagen" ; SFXSTYLEBIT_USED ; > ;
                < "Benutzervorlagen" ; SFXSTYLEBIT_USERDEF ; > ;
            };
            filterlist [ swedish ] =
            {
                < "Alla" ; SFXSTYLEBIT_ALL ; > ;
                < "Anv鄚da formatmallar" ; SFXSTYLEBIT_USED ; > ;
                < "Anv鄚dardefinierade formatmallar" ; SFXSTYLEBIT_USERDEF ; > ;
            };
            filterlist [ danish ] =
            {
                < "Alle" ; SFXSTYLEBIT_ALL ; > ;
                < "Anvendte typografier" ; SFXSTYLEBIT_USED ; > ;
                < "Brugerdefinerede typografier" ; SFXSTYLEBIT_USERDEF ; > ;
            };
            filterlist [ portuguese ] =
            {
                < "Todos" ; SFXSTYLEBIT_ALL ; > ;
                < "Estilos utilizados" ; SFXSTYLEBIT_USED ; > ;
                < "Estilos personalizados" ; SFXSTYLEBIT_USERDEF ; > ;
            };
            Text[ chinese_simplified ] = "趼睫欴宒";
            FilterList [ chinese_simplified ] =
        {
            < "垓" ; SFXSTYLEBIT_ALL ; > ;
            < "妏蚚腔欴宒" ; SFXSTYLEBIT_USED ; > ;
            < "赻隅欴宒" ; SFXSTYLEBIT_USERDEF ; > ;
        };
        FilterList [ language_user1 ] =
        {
            < "Alle" ; SFXSTYLEBIT_ALL ; > ;
            < " " ; SFXSTYLEBIT_USED ; > ;
            < " " ; SFXSTYLEBIT_USERDEF ; > ;
        };
        FilterList [ language_user1 ] =
        {
            < "Alle" ; SFXSTYLEBIT_ALL ; > ;
            < " " ; SFXSTYLEBIT_USED ; > ;
            < " " ; SFXSTYLEBIT_USERDEF ; > ;
        };
        Text[ language_user1 ] = " ";
            Text[ russian ] = "栺鳹 賝魛鍒";
            Text[ polish ] = "Style znaku";
            Text[ japanese ] = "蝗紱";
            FilterList [ russian ] =
        {
            < "鎚" ; SFXSTYLEBIT_ALL ; > ;
            < "砎鳻樇樇蕻 嚦鳹" ; SFXSTYLEBIT_USED ; > ;
            < "栺鳹 瀁錪賧瘔蠈" ; SFXSTYLEBIT_USERDEF ; > ;
        };
        FilterList [ polish ] =
        {
            < "Wszystkie" ; SFXSTYLEBIT_ALL ; > ;
            < "U篡te style" ; SFXSTYLEBIT_USED ; > ;
            < "Style u篡tkownika" ; SFXSTYLEBIT_USERDEF ; > ;
        };
        FilterList [ japanese ] =
        {
            < "" ; SFXSTYLEBIT_ALL ; > ;
            < "gp蝸徽" ; SFXSTYLEBIT_USED ; > ;
            < "桹靼`抻徽" ; SFXSTYLEBIT_USERDEF ; > ;
        };
        Text[ chinese_traditional ] = "文字樣式";
            FilterList [ chinese_traditional ] =
        {
            < "全部" ; SFXSTYLEBIT_ALL ; > ;
            < "使用的樣式" ; SFXSTYLEBIT_USED ; > ;
            < "自訂樣式" ; SFXSTYLEBIT_USERDEF ; > ;
        };
        Text[ arabic ] = "邊蒯 襖栳";
            FilterList [ arabic ] =
        {
            < "ш葐" ; SFXSTYLEBIT_ALL ; > ;
            < "邊蒯 碃 шк庉珌" ; SFXSTYLEBIT_USED ; > ;
            < "邊蒯 蓗桽" ; SFXSTYLEBIT_USERDEF ; > ;
        };
        Text[ dutch ] = "Tekenopmaakprofielen";
            Text[ chinese_simplified ] = "趼睫欴宒";
            FilterList [ dutch ] =
        {
            < "Alle" ; SFXSTYLEBIT_ALL ; > ;
            < "Gebruikte opmaakprofielen" ; SFXSTYLEBIT_USED ; > ;
            < "Eigen opmaakprofielen" ; SFXSTYLEBIT_USERDEF ; > ;
        };
        FilterList [ chinese_simplified ] =
        {
            < "垓" ; SFXSTYLEBIT_ALL ; > ;
            < "妏蚚腔欴宒" ; SFXSTYLEBIT_USED ; > ;
            < "赻隅欴宒" ; SFXSTYLEBIT_USERDEF ; > ;
        };
        Text[ greek ] = "郙纆 欒鼁臲碖";
            Text[ korean ] = "僥濠 嶸⑽";
            FilterList [ greek ] =
        {
            < "潺" ; SFXSTYLEBIT_ALL ; > ;
            < "癲摙斀鶂楜 黀纆" ; SFXSTYLEBIT_USED ; > ;
            < "哢鏷謯 虀祼鐋" ; SFXSTYLEBIT_USERDEF ; > ;
        };
        FilterList [ korean ] =
        {
            < "瞪睡" ; SFXSTYLEBIT_ALL ; > ;
            < "嶸⑽檜 瞳辨腎歷蝗棲棻." ; SFXSTYLEBIT_USED ; > ;
            < "餌辨濠 薑曖 嶸⑽" ; SFXSTYLEBIT_USERDEF ; > ;
        };
        Text[ turkish ] = "Karakter bi蓾mi";
            FilterList [ turkish ] =
        {
            < "Tm" ; SFXSTYLEBIT_ALL ; > ;
            < "Uygulanan bi蓾m" ; SFXSTYLEBIT_USED ; > ;
            < "Kullanc bi蓾mi" ; SFXSTYLEBIT_USERDEF ; > ;
        };
    };
        SfxStyleFamilyItem
        {
            StyleImage = Image
            {
                ImageBitmap = Bitmap { File = "catfrm.bmp" ; };
                MaskColor = IMAGE_STDBTN_COLOR ;
            };
            Text = "Rahmenvorlagen" ;
            Text [ ENGLISH ] = "Frame Styles" ;
            Text [ norwegian ] = "Rammemaler" ;
            Text [ italian ] = "Modelli di cornice" ;
            Text [ portuguese_brazilian ] = "Estilos de Moldura" ;
            Text [ portuguese ] = "Estilos de molduras" ;
            Text [ finnish ] = "Kehystyylit" ;
            Text [ danish ] = "Rammetypografier" ;
            Text [ french ] = "Styles de cadre" ;
            Text [ swedish ] = "Ramformatmallar" ;
            Text [ dutch ] = "Kaderopmaakprofielen" ;
            Text [ spanish ] = "Estilos de marcos" ;
            Text [ english_us ] = "Frame Styles" ;
            StyleFamily = SFX_STYLE_FAMILY_FRAME ;
            FilterList =
            {
                < "Alle" ; SFXSTYLEBIT_ALL ; > ;
                < "Verwendete Vorlagen" ; SFXSTYLEBIT_USED ; > ;
                < "Benutzervorlagen" ; SFXSTYLEBIT_USERDEF ; > ;
            };
            FilterList [ ENGLISH ] =
            {
                < "Alle" ; SFXSTYLEBIT_ALL ; > ;
                < "Verwendete Vorlagen" ; SFXSTYLEBIT_USED ; > ;
                < "Benutzervorlagen" ; SFXSTYLEBIT_USERDEF ; > ;
            };
            filterlist [ dutch ] =
            {
                < "Alle" ; SFXSTYLEBIT_ALL ; > ;
                < "Gebruikte opmaakprofielen" ; SFXSTYLEBIT_USED ; > ;
                < "Eigen opmaakprofielen" ; SFXSTYLEBIT_USERDEF ; > ;
            };
            filterlist [ english_us ] =
            {
                < "All" ; SFXSTYLEBIT_ALL ; > ;
                < "Applied Styles" ; SFXSTYLEBIT_USED ; > ;
                < "Custom Styles" ; SFXSTYLEBIT_USERDEF ; > ;
            };
            filterlist [ italian ] =
            {
                < "Tutti" ; SFXSTYLEBIT_ALL ; > ;
                < "Modelli usati" ; SFXSTYLEBIT_USED ; > ;
                < "Modelli utente" ; SFXSTYLEBIT_USERDEF ; > ;
            };
            filterlist [ spanish ] =
            {
                < "Todos" ; SFXSTYLEBIT_ALL ; > ;
                < "Estilos aplicados" ; SFXSTYLEBIT_USED ; > ;
                < "Estilos del usuario" ; SFXSTYLEBIT_USERDEF ; > ;
            };
            filterlist [ french ] =
            {
                < "Tous les styles" ; SFXSTYLEBIT_ALL ; > ;
                < "Styles utilis廥" ; SFXSTYLEBIT_USED ; > ;
                < "Styles personnalis廥" ; SFXSTYLEBIT_USERDEF ; > ;
            };
            filterlist [ portuguese_brazilian ] =
            {
                < "Alle" ; SFXSTYLEBIT_ALL ; > ;
                < "Verwendete Vorlagen" ; SFXSTYLEBIT_USED ; > ;
                < "Benutzervorlagen" ; SFXSTYLEBIT_USERDEF ; > ;
            };
            filterlist [ swedish ] =
            {
                < "Alla" ; SFXSTYLEBIT_ALL ; > ;
                < "Anv鄚da formatmallar" ; SFXSTYLEBIT_USED ; > ;
                < "Anv鄚dardefinierade formatmallar" ; SFXSTYLEBIT_USERDEF ; > ;
            };
            filterlist [ danish ] =
            {
                < "Alle" ; SFXSTYLEBIT_ALL ; > ;
                < "Anvendte typografier" ; SFXSTYLEBIT_USED ; > ;
                < "Brugerdefinerede typografier" ; SFXSTYLEBIT_USERDEF ; > ;
            };
            filterlist [ portuguese ] =
            {
                < "Todos" ; SFXSTYLEBIT_ALL ; > ;
                < "Estilos usados" ; SFXSTYLEBIT_USED ; > ;
                < "Estilos personalizados" ; SFXSTYLEBIT_USERDEF ; > ;
            };
            Text[ chinese_simplified ] = "遺欴宒";
            FilterList [ chinese_simplified ] =
        {
            < "垓" ; SFXSTYLEBIT_ALL ; > ;
            < "妏蚚腔欴宒" ; SFXSTYLEBIT_USED ; > ;
            < "赻隅欴宒" ; SFXSTYLEBIT_USERDEF ; > ;
        };
        FilterList [ language_user1 ] =
        {
            < "Alle" ; SFXSTYLEBIT_ALL ; > ;
            < " " ; SFXSTYLEBIT_USED ; > ;
            < " " ; SFXSTYLEBIT_USERDEF ; > ;
        };
        FilterList [ language_user1 ] =
        {
            < "Alle" ; SFXSTYLEBIT_ALL ; > ;
            < " " ; SFXSTYLEBIT_USED ; > ;
            < " " ; SFXSTYLEBIT_USERDEF ; > ;
        };
        Text[ language_user1 ] = " ";
            Text[ russian ] = "栺鳹 譇斁";
            Text[ polish ] = "Style ramek";
            Text[ japanese ] = "g蝗紱";
            FilterList [ russian ] =
        {
            < "鎚" ; SFXSTYLEBIT_ALL ; > ;
            < "砎鳻樇樇蕻 嚦鳹" ; SFXSTYLEBIT_USED ; > ;
            < "栺鳹 瀁錪賧瘔蠈" ; SFXSTYLEBIT_USERDEF ; > ;
        };
        FilterList [ polish ] =
        {
            < "Wszystkie" ; SFXSTYLEBIT_ALL ; > ;
            < "U篡te style" ; SFXSTYLEBIT_USED ; > ;
            < "Style u篡tkownika" ; SFXSTYLEBIT_USERDEF ; > ;
        };
        FilterList [ japanese ] =
        {
            < "" ; SFXSTYLEBIT_ALL ; > ;
            < "gp蝸徽" ; SFXSTYLEBIT_USED ; > ;
            < "桹靼`抻徽" ; SFXSTYLEBIT_USERDEF ; > ;
        };
        Text[ chinese_traditional ] = "框樣式";
            FilterList [ chinese_traditional ] =
        {
            < "全部" ; SFXSTYLEBIT_ALL ; > ;
            < "使用的樣式" ; SFXSTYLEBIT_USED ; > ;
            < "自訂樣式" ; SFXSTYLEBIT_USERDEF ; > ;
        };
        Text[ arabic ] = "邊蒯 臢и";
            FilterList [ arabic ] =
        {
            < "ш葐" ; SFXSTYLEBIT_ALL ; > ;
            < "邊蒯 碃 шк庉珌" ; SFXSTYLEBIT_USED ; > ;
            < "邊蒯 蓗桽" ; SFXSTYLEBIT_USERDEF ; > ;
        };
        Text[ dutch ] = "Kaderopmaakprofielen";
            Text[ chinese_simplified ] = "遺欴宒";
            FilterList [ dutch ] =
        {
            < "Alle" ; SFXSTYLEBIT_ALL ; > ;
            < "Gebruikte opmaakprofielen" ; SFXSTYLEBIT_USED ; > ;
            < "Eigen opmaakprofielen" ; SFXSTYLEBIT_USERDEF ; > ;
        };
        FilterList [ chinese_simplified ] =
        {
            < "垓" ; SFXSTYLEBIT_ALL ; > ;
            < "妏蚚腔欴宒" ; SFXSTYLEBIT_USED ; > ;
            < "赻隅欴宒" ; SFXSTYLEBIT_USERDEF ; > ;
        };
        Text[ greek ] = "哢鏷謯 謻摋鵸瀦";
            Text[ korean ] = "Щ溯歜 嶸⑽";
            FilterList [ greek ] =
        {
            < "潺" ; SFXSTYLEBIT_ALL ; > ;
            < "癲摙斀鶂楜 黀纆" ; SFXSTYLEBIT_USED ; > ;
            < "哢鏷謯 虀祼鐋" ; SFXSTYLEBIT_USERDEF ; > ;
        };
        FilterList [ korean ] =
        {
            < "瞪睡" ; SFXSTYLEBIT_ALL ; > ;
            < "嶸⑽檜 瞳辨腎歷蝗棲棻." ; SFXSTYLEBIT_USED ; > ;
            < "餌辨濠 薑曖 嶸⑽" ; SFXSTYLEBIT_USERDEF ; > ;
        };
        Text[ turkish ] = "ネr蔒ve bi蓾mi";
            FilterList [ turkish ] =
        {
            < "Tm" ; SFXSTYLEBIT_ALL ; > ;
            < "Uygulanan bi蓾m" ; SFXSTYLEBIT_USED ; > ;
            < "Kullanc bi蓾mi" ; SFXSTYLEBIT_USERDEF ; > ;
        };
    };
        SfxStyleFamilyItem
        {
            StyleImage = Image
            {
                ImageBitmap = Bitmap { File = "catpag.bmp" ; };
                MaskColor = IMAGE_STDBTN_COLOR ;
            };
            Text = "Seitenvorlagen" ;
            Text [ ENGLISH ] = "Page Styles" ;
            Text [ norwegian ] = "Sidetyper" ;
            Text [ italian ] = "Modelli di pagina" ;
            Text [ portuguese_brazilian ] = "Estilos da P墔ina" ;
            Text [ portuguese ] = "Estilos de p墔ina" ;
            Text [ finnish ] = "Sivutyylit" ;
            Text [ danish ] = "Sidetypografier" ;
            Text [ french ] = "Styles de page" ;
            Text [ swedish ] = "Sidformatmallar" ;
            Text [ dutch ] = "Pagina-opmaakprofielen" ;
            Text [ spanish ] = "Estilos de p墔ina" ;
            Text [ english_us ] = "Page Styles" ;
            StyleFamily = SFX_STYLE_FAMILY_PAGE ;
            FilterList =
            {
                < "Alle" ; SFXSTYLEBIT_ALL ; > ;
                < "Verwendete Vorlagen" ; SFXSTYLEBIT_USED ; > ;
                < "Benutzervorlagen" ; SFXSTYLEBIT_USERDEF ; > ;
            };
            FilterList [ ENGLISH ] =
            {
                < "Alle" ; SFXSTYLEBIT_ALL ; > ;
                < "Verwendete Vorlagen" ; SFXSTYLEBIT_USED ; > ;
                < "Benutzervorlagen" ; SFXSTYLEBIT_USERDEF ; > ;
            };
            filterlist [ dutch ] =
            {
                < "Alle" ; SFXSTYLEBIT_ALL ; > ;
                < "Gebruikte opmaakprofielen" ; SFXSTYLEBIT_USED ; > ;
                < "Eigen opmaakprofielen" ; SFXSTYLEBIT_USERDEF ; > ;
            };
            filterlist [ english_us ] =
            {
                < "All" ; SFXSTYLEBIT_ALL ; > ;
                < "Applied Styles" ; SFXSTYLEBIT_USED ; > ;
                < "Custom Styles" ; SFXSTYLEBIT_USERDEF ; > ;
            };
            filterlist [ italian ] =
            {
                < "Tutti" ; SFXSTYLEBIT_ALL ; > ;
                < "Modeli usati" ; SFXSTYLEBIT_USED ; > ;
                < "Modelli utente" ; SFXSTYLEBIT_USERDEF ; > ;
            };
            filterlist [ spanish ] =
            {
                < "Todos" ; SFXSTYLEBIT_ALL ; > ;
                < "Estilos aplicados" ; SFXSTYLEBIT_USED ; > ;
                < "Estilos del usuario" ; SFXSTYLEBIT_USERDEF ; > ;
            };
            filterlist [ french ] =
            {
                < "Tous les styles" ; SFXSTYLEBIT_ALL ; > ;
                < "Styles utilis廥" ; SFXSTYLEBIT_USED ; > ;
                < "Styles personnalis廥" ; SFXSTYLEBIT_USERDEF ; > ;
            };
            filterlist [ portuguese_brazilian ] =
            {
                < "Alle" ; SFXSTYLEBIT_ALL ; > ;
                < "Verwendete Vorlagen" ; SFXSTYLEBIT_USED ; > ;
                < "Benutzervorlagen" ; SFXSTYLEBIT_USERDEF ; > ;
            };
            filterlist [ swedish ] =
            {
                < "Alla" ; SFXSTYLEBIT_ALL ; > ;
                < "Anv鄚da formatmallar" ; SFXSTYLEBIT_USED ; > ;
                < "Anv鄚dardefinierade formatmallar" ; SFXSTYLEBIT_USERDEF ; > ;
            };
            filterlist [ danish ] =
            {
                < "Alle" ; SFXSTYLEBIT_ALL ; > ;
                < "Anvendte typografier" ; SFXSTYLEBIT_USED ; > ;
                < "Brugerdefinerede typografier" ; SFXSTYLEBIT_USERDEF ; > ;
            };
            filterlist [ portuguese ] =
            {
                < "Todos" ; SFXSTYLEBIT_ALL ; > ;
                < "Estilos usados" ; SFXSTYLEBIT_USED ; > ;
                < "Estilos personalizados" ; SFXSTYLEBIT_USERDEF ; > ;
            };
            FilterList [ chinese_simplified ] =
        {
            < "垓" ; SFXSTYLEBIT_ALL ; > ;
            < "妏蚚欴宒" ; SFXSTYLEBIT_USED ; > ;
            < "赻隅欴宒" ; SFXSTYLEBIT_USERDEF ; > ;
        };
        FilterList [ language_user1 ] =
        {
            < "Alle" ; SFXSTYLEBIT_ALL ; > ;
            < " " ; SFXSTYLEBIT_USED ; > ;
            < " " ; SFXSTYLEBIT_USERDEF ; > ;
        };
        FilterList [ language_user1 ] =
        {
            < "Alle" ; SFXSTYLEBIT_ALL ; > ;
            < " " ; SFXSTYLEBIT_USED ; > ;
            < " " ; SFXSTYLEBIT_USERDEF ; > ;
        };
        FilterList [ russian ] =
        {
            < "鎚" ; SFXSTYLEBIT_ALL ; > ;
            < "砎鳻樇樇蕻 嚦鳹" ; SFXSTYLEBIT_USED ; > ;
            < "栺鳹 瀁錪賧瘔蠈" ; SFXSTYLEBIT_USERDEF ; > ;
        };
        FilterList [ polish ] =
        {
            < "Wszystkie" ; SFXSTYLEBIT_ALL ; > ;
            < "U篡te style" ; SFXSTYLEBIT_USED ; > ;
            < "Style u篡tkownika" ; SFXSTYLEBIT_USERDEF ; > ;
        };
        FilterList [ japanese ] =
        {
            < "" ; SFXSTYLEBIT_ALL ; > ;
            < "gp蝸徽" ; SFXSTYLEBIT_USED ; > ;
            < "桹靼`抻徽" ; SFXSTYLEBIT_USERDEF ; > ;
        };
        FilterList [ chinese_traditional ] =
        {
            < "全部" ; SFXSTYLEBIT_ALL ; > ;
            < "自訂樣式" ; SFXSTYLEBIT_USED ; > ;
            < "自訂樣式" ; SFXSTYLEBIT_USERDEF ; > ;
        };
        Text[ russian ] = "栺鳹 嚦譇膻籜";
            Text[ polish ] = "Style strony";
            Text[ japanese ] = "俓側瑍徽";
            Text[ chinese_simplified ] = "珜醱欴宒";
            Text[ chinese_traditional ] = "頁面樣式";
            Text[ arabic ] = "邊蒯 殎虭";
            FilterList [ arabic ] =
        {
            < "ш葐" ; SFXSTYLEBIT_ALL ; > ;
            < "邊蒯 碃 шк庉珌" ; SFXSTYLEBIT_USED ; > ;
            < "邊蒯 蓗桽" ; SFXSTYLEBIT_USERDEF ; > ;
        };
        Text[ dutch ] = "Pagina-opmaakprofielen";
            Text[ chinese_simplified ] = "珜醱欴宒";
            FilterList [ dutch ] =
        {
            < "Alle" ; SFXSTYLEBIT_ALL ; > ;
            < "Gebruikte opmaakprofielen" ; SFXSTYLEBIT_USED ; > ;
            < "Eigen opmaakprofielen" ; SFXSTYLEBIT_USERDEF ; > ;
        };
        FilterList [ chinese_simplified ] =
        {
            < "垓" ; SFXSTYLEBIT_ALL ; > ;
            < "妏蚚欴宒" ; SFXSTYLEBIT_USED ; > ;
            < "赻隅欴宒" ; SFXSTYLEBIT_USERDEF ; > ;
        };
        Text[ greek ] = "哢鏷謯 鵴錁噘";
            Text[ korean ] = "む檜雖 嶸⑽";
            FilterList [ greek ] =
        {
            < "潺" ; SFXSTYLEBIT_ALL ; > ;
            < "癲摙斀鶂楜 黀纆" ; SFXSTYLEBIT_USED ; > ;
            < "哢鏷謯 虀祼鐋" ; SFXSTYLEBIT_USERDEF ; > ;
        };
        FilterList [ korean ] =
        {
            < "瞪睡" ; SFXSTYLEBIT_ALL ; > ;
            < "嶸⑽檜 瞳辨腎歷蝗棲棻." ; SFXSTYLEBIT_USED ; > ;
            < "餌辨濠 薑曖 嶸⑽" ; SFXSTYLEBIT_USERDEF ; > ;
        };
        Text[ turkish ] = "Sayfa bi蓾mi";
            FilterList [ turkish ] =
        {
            < "Tm" ; SFXSTYLEBIT_ALL ; > ;
            < "Uygulanan bi蓾m" ; SFXSTYLEBIT_USED ; > ;
            < "Kullanc bi蓾mi" ; SFXSTYLEBIT_USERDEF ; > ;
        };
        Text[ language_user1 ] = " ";
        };
        SfxStyleFamilyItem
        {
            StyleImage = Image
            {
                ImageBitmap = Bitmap { File = "catnum.bmp" ; };
                MaskColor = IMAGE_STDBTN_COLOR ;
            };
            Text = "Nummerierungsvorlagen" ;
            Text [ ENGLISH ] = "Number Styles" ;
            StyleFamily = SFX_STYLE_FAMILY_PSEUDO ;
            FilterList =
            {
                < "Alle" ; SFXSTYLEBIT_ALL ; > ;
                < "Verwendete Vorlagen" ; SFXSTYLEBIT_USED ; > ;
                < "Benutzervorlagen" ; SFXSTYLEBIT_USERDEF ; > ;
            };
            FilterList [ ENGLISH ] =
            {
                < "Alle" ; SFXSTYLEBIT_ALL ; > ;
                < "Verwendete Vorlagen" ; SFXSTYLEBIT_USED ; > ;
                < "Benutzervorlagen" ; SFXSTYLEBIT_USERDEF ; > ;
            };
            filterlist [ dutch ] =
            {
                < "Alle" ; SFXSTYLEBIT_ALL ; > ;
                < "Gebruikte opmaakprofielen" ; SFXSTYLEBIT_USED ; > ;
                < "Eigen opmaakprofielen" ; SFXSTYLEBIT_USERDEF ; > ;
            };
            filterlist [ english_us ] =
            {
                < "All" ; SFXSTYLEBIT_ALL ; > ;
                < "Applied Styles" ; SFXSTYLEBIT_USED ; > ;
                < "Custom Styles" ; SFXSTYLEBIT_USERDEF ; > ;
            };
            filterlist [ italian ] =
            {
                < "Tutti" ; SFXSTYLEBIT_ALL ; > ;
                < "Modeli usati" ; SFXSTYLEBIT_USED ; > ;
                < "Modelli utente" ; SFXSTYLEBIT_USERDEF ; > ;
            };
            filterlist [ spanish ] =
            {
                < "Todos" ; SFXSTYLEBIT_ALL ; > ;
                < "Estilos aplicados" ; SFXSTYLEBIT_USED ; > ;
                < "Estilos del usuario" ; SFXSTYLEBIT_USERDEF ; > ;
            };
            filterlist [ french ] =
            {
                < "Tous" ; SFXSTYLEBIT_ALL ; > ;
                < "Styles utilis廥" ; SFXSTYLEBIT_USED ; > ;
                < "Styles personnalis廥" ; SFXSTYLEBIT_USERDEF ; > ;
            };
            filterlist [ portuguese_brazilian ] =
            {
                < "Alle" ; SFXSTYLEBIT_ALL ; > ;
                < "Verwendete Vorlagen" ; SFXSTYLEBIT_USED ; > ;
                < "Benutzervorlagen" ; SFXSTYLEBIT_USERDEF ; > ;
            };
            filterlist [ swedish ] =
            {
                < "Alla" ; SFXSTYLEBIT_ALL ; > ;
                < "Anv鄚da formatmallar" ; SFXSTYLEBIT_USED ; > ;
                < "Anv鄚dardefinierade formatmallar" ; SFXSTYLEBIT_USERDEF ; > ;
            };
            filterlist [ danish ] =
            {
                < "Alle" ; SFXSTYLEBIT_ALL ; > ;
                < "Anvendte typografier" ; SFXSTYLEBIT_USED ; > ;
                < "Brugerdefinerede typografier" ; SFXSTYLEBIT_USERDEF ; > ;
            };
            filterlist [ portuguese ] =
            {
                < "Todos" ; SFXSTYLEBIT_ALL ; > ;
                < "Estilos usados" ; SFXSTYLEBIT_USED ; > ;
                < "Estilos personalizados" ; SFXSTYLEBIT_USERDEF ; > ;
            };
            Text [ portuguese ] = "Estilos de numera誽o" ;
            Text [ english_us ] = "Numbering Styles" ;
            Text [ portuguese_brazilian ] = "Numerierungsvorlagen" ;
            Text [ swedish ] = "Numreringsformatmallar" ;
            Text [ danish ] = "Nummereringstypografier" ;
            Text [ italian ] = "Modelli di numerazione" ;
            Text [ spanish ] = "Estilos de numeraci鏮" ;
            Text [ french ] = "Styles de num廨otation" ;
            Text [ dutch ] = "Opmaakprofielen voor nummering" ;
            Text[ chinese_simplified ] = "晤瘍欴宒";
            FilterList [ chinese_simplified ] =
        {
            < "垓" ; SFXSTYLEBIT_ALL ; > ;
            < "妏蚚腔欴宒" ; SFXSTYLEBIT_USED ; > ;
            < "赻隅欴宒" ; SFXSTYLEBIT_USERDEF ; > ;
        };
        FilterList [ language_user1 ] =
        {
            < " " ; SFXSTYLEBIT_ALL ; > ;
            < " " ; SFXSTYLEBIT_USED ; > ;
            < " " ; SFXSTYLEBIT_USERDEF ; > ;
        };
        FilterList [ language_user1 ] =
        {
            < " " ; SFXSTYLEBIT_ALL ; > ;
            < " " ; SFXSTYLEBIT_USED ; > ;
            < " " ; SFXSTYLEBIT_USERDEF ; > ;
        };
        Text[ language_user1 ] = "鳹? 嚦鳹? 蠂E";
            Text[ russian ] = "栺鳹 薃懤譇灕";
            Text[ polish ] = "Style numeracji";
            Text[ japanese ] = "t紗徽";
            FilterList [ russian ] =
        {
            < "鎚" ; SFXSTYLEBIT_ALL ; > ;
            < "砎鳻樇樇蕻 嚦鳹" ; SFXSTYLEBIT_USED ; > ;
            < "栺鳹 瀁錪賧瘔蠈" ; SFXSTYLEBIT_USERDEF ; > ;
        };
        FilterList [ polish ] =
        {
            < "Wszystkie" ; SFXSTYLEBIT_ALL ; > ;
            < "U篡te style" ; SFXSTYLEBIT_USED ; > ;
            < "Style u篡tkownika" ; SFXSTYLEBIT_USERDEF ; > ;
        };
        FilterList [ japanese ] =
        {
            < "" ; SFXSTYLEBIT_ALL ; > ;
            < "gp蝸徽" ; SFXSTYLEBIT_USED ; > ;
            < "桹靼`抻徽" ; SFXSTYLEBIT_USERDEF ; > ;
        };
        Text[ chinese_traditional ] = "編號樣式";
            FilterList [ chinese_traditional ] =
        {
            < "全部" ; SFXSTYLEBIT_ALL ; > ;
            < "使用的樣式" ; SFXSTYLEBIT_USED ; > ;
            < "自訂樣式" ; SFXSTYLEBIT_USERDEF ; > ;
        };
        Text[ arabic ] = "邊蒯 ш庍碃";
            FilterList [ arabic ] =
        {
            < "ш葐" ; SFXSTYLEBIT_ALL ; > ;
            < "邊蒯 碃 шк庉珌" ; SFXSTYLEBIT_USED ; > ;
            < "ш邊蒯 ш蓗桽" ; SFXSTYLEBIT_USERDEF ; > ;
        };
        Text[ dutch ] = "Opmaakprofielen voor nummering";
            Text[ chinese_simplified ] = "晤瘍欴宒";
            FilterList [ dutch ] =
        {
            < "Alle" ; SFXSTYLEBIT_ALL ; > ;
            < "Gebruikte opmaakprofielen" ; SFXSTYLEBIT_USED ; > ;
            < "Eigen opmaakprofielen" ; SFXSTYLEBIT_USERDEF ; > ;
        };
        FilterList [ chinese_simplified ] =
        {
            < "垓" ; SFXSTYLEBIT_ALL ; > ;
            < "妏蚚腔欴宒" ; SFXSTYLEBIT_USED ; > ;
            < "赻隅欴宒" ; SFXSTYLEBIT_USERDEF ; > ;
        };
        Text[ greek ] = "郙纆 摙蛵懞鵰";
            Text[ korean ] = "廓 衙晦晦 嶸⑽";
            FilterList [ greek ] =
        {
            < "潺" ; SFXSTYLEBIT_ALL ; > ;
            < "癲摙斀鶂楜 黀纆" ; SFXSTYLEBIT_USED ; > ;
            < "哢鏷謯 虀祼鐋" ; SFXSTYLEBIT_USERDEF ; > ;
        };
        FilterList [ korean ] =
        {
            < "瞪睡" ; SFXSTYLEBIT_ALL ; > ;
            < "嶸⑽ 瞳辨" ; SFXSTYLEBIT_USED ; > ;
            < "餌辨濠 薑曖 嶸⑽" ; SFXSTYLEBIT_USERDEF ; > ;
        };
        Text[ turkish ] = "Numaralama bi蓾mi";
            FilterList [ turkish ] =
        {
            < "Tm" ; SFXSTYLEBIT_ALL ; > ;
            < "Kullanlan bi蓾m" ; SFXSTYLEBIT_USED ; > ;
            < "Kullanc bi蓾mi" ; SFXSTYLEBIT_USERDEF ; > ;
        };
    };
    };
};



 // Default Bitmap fuer Toolbox
BITMAP BMP_FEHLT { FILE = "x.bmp" ; };
 // Bitmap fuer die NumerierungsVorlagen im Organizer
Bitmap BMP_STYLES_FAMILY_NUM { File = "styfamnu.bmp" ; };

String STR_ENV_TITLE
{
    Text = "Briefumschlag" ;
    Text [ English ] = "Envelop" ;
    Text [ norwegian ] = "Konvolutt" ;
    Text [ italian ] = "Busta" ;
    Text [ portuguese_brazilian ] = "Envelope" ;
    Text [ portuguese ] = "Envelope" ;
    Text [ finnish ] = "Kirjekuori" ;
    Text [ danish ] = "Konvolut" ;
    Text [ french ] = "Enveloppe" ;
    Text [ swedish ] = "Kuvert" ;
    Text [ dutch ] = "Envelop" ;
    Text [ spanish ] = "Sobre" ;
    Text [ english_us ] = "Envelope" ;
    Text[ chinese_simplified ] = "陓猾";
    Text[ russian ] = "扻罿歑";
    Text[ polish ] = "Koperta";
    Text[ japanese ] = "";
    Text[ chinese_traditional ] = "信封";
    Text[ arabic ] = "棦";
    Text[ dutch ] = "Envelop";
    Text[ chinese_simplified ] = "陓猾";
    Text[ greek ] = "笚耪錝";
    Text[ korean ] = "瑰癱";
    Text[ turkish ] = "Zarf";
    Text[ language_user1 ] = " ";
};

String STR_LAB_TITLE
{
    Text = "Etiketten" ;
    Text [ English ] = "Labels" ;
    Text [ norwegian ] = "Etiketter" ;
    Text [ italian ] = "Etichette" ;
    Text [ portuguese_brazilian ] = "Etiquetas" ;
    Text [ portuguese ] = "Etiquetas" ;
    Text [ finnish ] = "Tarrat" ;
    Text [ danish ] = "Etiketter" ;
    Text [ french ] = "尒iquettes" ;
    Text [ swedish ] = "Etiketter" ;
    Text [ dutch ] = "Etiketten" ;
    Text [ spanish ] = "Etiquetas" ;
    Text [ english_us ] = "Labels" ;
    Text[ chinese_simplified ] = "梓ワ";
    Text[ russian ] = "侲膹樥膱";
    Text[ polish ] = "Etykiety";
    Text[ japanese ] = "谹睟";
    Text[ chinese_traditional ] = "貼標";
    Text[ arabic ] = "媋痯 筀緛";
    Text[ dutch ] = "Etiketten";
    Text[ chinese_simplified ] = "梓ワ";
    Text[ greek ] = "灞濋椼殣";
    Text[ korean ] = "塭漣";
    Text[ turkish ] = "Etiket";
    Text[ language_user1 ] = " ";
};

 // ShortName!!!
String STR_HUMAN_SWDOC_NAME
{
    /* ### ACHTUNG: Neuer Text in Resource? Text : Dokument */
    Text = "Text" ;
    Text [ English ] = "Text" ;
    Text [ english_us ] = "Text" ;
    Text [ swedish ] = "Text" ;
    Text [ danish ] = "Tekst" ;
    Text [ italian ] = "Testo" ;
    Text [ spanish ] = "Texto" ;
    Text [ french ] = "Texte" ;
    Text [ dutch ] = "Tekst" ;
    Text [ portuguese_brazilian ] = "Text" ;
    Text [ portuguese ] = "Texto" ;
    Text[ chinese_simplified ] = "恅趼";
    Text[ russian ] = "砱膲";
    Text[ polish ] = "Tekst";
    Text[ japanese ] = "繩衝";
    Text[ chinese_traditional ] = "文字";
    Text[ arabic ] = "ш馻";
    Text[ dutch ] = "Tekst";
    Text[ chinese_simplified ] = "恅趼";
    Text[ greek ] = "忴蜉樇";
    Text[ korean ] = "臢蝶お";
    Text[ turkish ] = "Metin";
    Text[ language_user1 ] = " ";
};

String STR_WRITER_DOCUMENT_FULLTYPE_31
{
    Text = "StarOffice 3.0 Text" ;
    Text [ English ] = "StarOffice 3.0 Text" ;
    Text [ english_us ] = "Text (StarOffice 3.0)" ;
    Text [ portuguese_brazilian ] = "StarOffice 3.0 Text" ;
    Text [ swedish ] = "StarOffice 3.0 text" ;
    Text [ danish ] = "StarOffice 3.0 tekst" ;
    Text [ italian ] = "Test StarOffice 3.0" ;
    Text [ spanish ] = "Texto de StarOffice 3.0" ;
    Text [ french ] = "Texte StarOffice 3.0" ;
    Text [ dutch ] = "StarOffice 3.0 Tekst" ;
    Text [ portuguese ] = "StarOffice 3.0 Text" ;
    Text[ chinese_simplified ] = "StarOffice 3.0 恅掛";
    Text[ russian ] = "砱膲  StarOffice 3.0";
    Text[ polish ] = "Tekst StarOffice 3.0";
    Text[ japanese ] = "StarOffice 3.0 繩衝";
    Text[ chinese_traditional ] = "StarOffice 3.0 文字文件";
    Text[ arabic ] = "馻 蜠 StarOffice 3.0";
    Text[ dutch ] = "StarOffice 3.0 Tekst";
    Text[ chinese_simplified ] = "StarOffice 3.0 恅掛";
    Text[ greek ] = "忴蜉樇 (StarOffice 3.0)";
    Text[ korean ] = "臢蝶お (StarOffice 3.0)";
    Text[ turkish ] = "StarOffice 3.0 metni";
    Text[ language_user1 ] = " ";
};

String STR_WRITER_DOCUMENT_FULLTYPE_40
{
    Text = "StarOffice 4.0 Text" ;
    Text [ English ] = "StarOffice 4.0 Text" ;
    Text [ english_us ] = "Text (StarOffice 4.0)" ;
    Text [ portuguese_brazilian ] = "StarOffice 4.0 Text" ;
    Text [ swedish ] = "StarOffice 4.0 text" ;
    Text [ danish ] = "StarOffice 4.0 tekst" ;
    Text [ italian ] = "Testo StarOffice 4.0" ;
    Text [ spanish ] = "Texto de StarOffice 4.0" ;
    Text [ french ] = "Texte StarOffice 4.0" ;
    Text [ dutch ] = "StarOffice 4.0 Tekst" ;
    Text [ portuguese ] = "Texto (StarOffice 4.0)" ;
    Text[ chinese_simplified ] = "StarOffice 4.0 恅掛";
    Text[ language_user1 ] = " ";
    Text[ russian ] = "砱膲  StarOffice 4.0";
    Text[ polish ] = "Tekst StarOffice 4.0";
    Text[ japanese ] = "StarOffice 4.0 繩衝";
    Text[ chinese_traditional ] = "StarOffice 4.0 文字文件";
    Text[ arabic ] = "馻 蜠 StarOffice 4.0";
    Text[ dutch ] = "StarOffice 4.0 Tekst";
    Text[ chinese_simplified ] = "StarOffice 4.0 恅掛";
    Text[ greek ] = "忴蜉樇 (StarOffice 4.0)";
    Text[ korean ] = "臢蝶お (StarOffice 4.0)";
    Text[ turkish ] = "StarOffice 4.0 metni";
};

String STR_WRITER_DOCUMENT_FULLTYPE
{
    Text = "StarOffice 5.0 Text" ;
    Text [ English ] = "StarOffice 5.0 Text" ;
    Text [ english_us ] = "Text (StarOffice 5.0)" ;
    Text [ portuguese_brazilian ] = "StarOffice 4.0 Text" ;
    Text [ swedish ] = "StarOffice 5.0 text" ;
    Text [ danish ] = "StarOffice 4.0 tekst" ;
    Text [ italian ] = "Testo StarOffice 5.0" ;
    Text [ spanish ] = "Texto de StarOffice 5.0" ;
    Text [ french ] = "Texte StarOffice 5.0" ;
    Text [ dutch ] = "StarOffice 5.0 Tekst" ;
    Text [ portuguese ] = "Texto (StarOffice 5.0)" ;
    Text[ chinese_simplified ] = "StarOffice 5.0 恅掛";
    Text[ russian ] = "砱膲  StarOffice 5.0";
    Text[ polish ] = "Tekst StarOffice 5.0";
    Text[ japanese ] = "StarOffice 5.0 繩衝";
    Text[ chinese_traditional ] = "StarOffice 5.0 文字文件";
    Text[ arabic ] = "馻 蜠 StarOffice 5.0";
    Text[ dutch ] = "StarOffice 5.0 Tekst";
    Text[ chinese_simplified ] = "StarOffice 5.0 恅掛";
    Text[ greek ] = "忴蜉樇 (StarOffice 5.0)";
    Text[ korean ] = "臢蝶お (StarOffice 5.0)";
    Text[ turkish ] = "StarOffice 5.0 metni";
    Text[ language_user1 ] = " ";
};


String STR_CANTOPEN
{
    TEXT = "Kann das Dokument nicht 鐪fnen." ;
    TEXT [ English ] = "Can't open document." ;
    TEXT [ norwegian ] = "Kan ikke 幠ne dokumentet." ;
    TEXT [ italian ] = "Impossibile aprire il documento" ;
    TEXT [ portuguese_brazilian ] = "N緌 posso abrir o documento." ;
    TEXT [ portuguese ] = "Imposs癉el abrir o documento." ;
    TEXT [ finnish ] = "Asiakirjaa ei voi avata." ;
    TEXT [ danish ] = "Kan ikke 嶙ne dokument." ;
    TEXT [ french ] = "Impossible d'ouvrir le document." ;
    TEXT [ swedish ] = "Kan inte 鞿pna dokumentet." ;
    TEXT [ dutch ] = "Document kan niet worden geopend." ;
    TEXT [ spanish ] = "No es posible abrir el documento." ;
    TEXT [ english_us ] = "Cannot open document." ;
    TEXT[ chinese_simplified ] = "拸楊湖羲涴跺恅紫﹝";
    TEXT[ russian ] = "昳膴譔 儋膧懤艜 翴碭賚鍻膼.";
    TEXT[ polish ] = "Nie mo瞠 otworzy dokumentu.";
    TEXT[ japanese ] = "巍楹砯J";
    TEXT[ chinese_traditional ] = "無法開啟這個文件。";
    TEXT[ arabic ] = "慳 縳忐縩 楟 ш蒑怀.";
    TEXT[ dutch ] = "Document kan niet worden geopend.";
    TEXT[ chinese_simplified ] = "拸楊湖羲涴跺恅紫﹝";
    TEXT[ greek ] = "櫻 橀罅 勯罅鏸 罅 摿毉玁橀 鐐 楯蜤暡.";
    TEXT[ korean ] = "僥憮蒂 翮熱 橈蝗棲棻.";
    TEXT[ turkish ] = "Belge a踦lamyor.";
    TEXT[ language_user1 ] = " ";
};

String STR_CANTCREATE
{
    TEXT = "Das Dokument konnte nicht erzeugt werden." ;
    TEXT [ English ] = "Can't create document." ;
    TEXT[ italian ] = "Impossibile creare un documento";
    TEXT[ portuguese_brazilian ] = "Can't create document.";
    TEXT[ portuguese ] = "Foi imposs癉el criar documento.";
    TEXT[ danish ] = "Det var ikke muligt at oprette dokumentet.";
    TEXT[ french ] = "Impossible de cr嶪r le document.";
    TEXT[ swedish ] = "Dokumentet kunde inte skapas.";
    TEXT[ dutch ] = "Het document kon niet worden gemaakt.";
    TEXT[ spanish ] = "El documento no pudo ser creado.";
    TEXT[ english_us ] = "Can't create document.";
    TEXT[ chinese_simplified ] = "拸楊汜傖恅紫";
    TEXT[ russian ] = "椯闅 儋膧懤艜 勷諙僗 翴碭賚鍻膼.";
    TEXT[ polish ] = "Dokument nie m鏬 zosta utworzony.";
    TEXT[ japanese ] = "巍楹砯B";
    TEXT[ chinese_traditional ] = "無法生成文件";
    TEXT[ arabic ] = "忨倳 饜堌 ш蒑怀.";
    TEXT[ dutch ] = "Het document kon niet worden gemaakt.";
    TEXT[ chinese_simplified ] = "拸楊汜傖恅紫";
    TEXT[ greek ] = "櫻 橀罅 勯罅轘  儃擩瀦鼖葐 鐐 樍蜤媺瀦.";
    TEXT[ korean ] = "僥憮蒂 虜菟 熱 橈蝗棲棻.";
    TEXT[ turkish ] = "Belge oluturulamad.";
    TEXT[ language_user1 ] = " ";
};
String STR_DLLNOTFOUND
{
    TEXT = "Filter nicht gefunden." ;
    TEXT [ English ] = "Filter not found." ;
    TEXT [ norwegian ] = "Finner ikke filter." ;
    TEXT [ italian ] = "Filtro non trovato." ;
    TEXT [ portuguese_brazilian ] = "Filtro n緌 encontrado." ;
    TEXT [ portuguese ] = "Filtro n緌 encontrado." ;
    TEXT [ finnish ] = "Suodinta ei l騽dy." ;
    TEXT [ danish ] = "Filter blev ikke fundet." ;
    TEXT [ french ] = "Filtre introuvable." ;
    TEXT [ swedish ] = "Filter hittades ej." ;
    TEXT [ dutch ] = "Filter niet gevonden." ;
    TEXT [ spanish ] = "No se encontr el filtro." ;
    TEXT [ english_us ] = "Filter not found." ;
    TEXT[ chinese_simplified ] = "羶衄梑善伓恁﹝";
    TEXT[ russian ] = "婰錪襝 翴縺毈樇.";
    TEXT[ polish ] = "Filtru nie znaleziono.";
    TEXT[ japanese ] = "怢梴";
    TEXT[ chinese_traditional ] = "沒有找到篩選。";
    TEXT[ arabic ] = "忨倳 ш硪歶 筈 ш楩庍.";
    TEXT[ dutch ] = "Filter niet gevonden.";
    TEXT[ chinese_simplified ] = "羶衄梑善伓恁﹝";
    TEXT[ greek ] = "櫻 碫楴賙 鐐 廲鋷厴.";
    TEXT[ korean ] = "в攪陛 嫦唯腎雖 彊蝗棲棻.";
    TEXT[ turkish ] = "Filtre bulunamad.";
    TEXT[ language_user1 ] = " ";
};


String STR_UNBENANNT
{
    TEXT = "Unbenannt" ;
    TEXT [ English ] = "Untitled" ;
    TEXT [ norwegian ] = "Uten tittel" ;
    TEXT [ italian ] = "Senza nome" ;
    TEXT [ portuguese_brazilian ] = "Sem t癃ulo" ;
    TEXT [ portuguese ] = "Sem nome" ;
    TEXT [ finnish ] = "Nimet霵" ;
    TEXT [ danish ] = "Ikke-navngivet" ;
    TEXT [ french ] = "Sans titre" ;
    TEXT [ swedish ] = "Namnl飉" ;
    TEXT [ dutch ] = "Naamloos" ;
    TEXT [ spanish ] = "Sin nombre" ;
    TEXT [ english_us ] = "Untitled" ;
    TEXT[ chinese_simplified ] = "帤韜靡";
    TEXT[ russian ] = "鍊 鳻樇";
    TEXT[ polish ] = "Bez tytu逝";
    TEXT[ japanese ] = "";
    TEXT[ chinese_traditional ] = "未命名";
    TEXT[ arabic ] = "盻 筀磈";
    TEXT[ dutch ] = "Naamloos";
    TEXT[ chinese_simplified ] = "帤韜靡";
    TEXT[ greek ] = "懼蠮 臩憼";
    TEXT[ korean ] = "薯跡 橈擠";
    TEXT[ turkish ] = "Adsz";
    TEXT[ language_user1 ] = " ";
};


String STR_LOAD_GLOBAL_DOC
{
    TEXT = "Name und Pfad des Globaldokuments" ;
    TEXT [ English ] = "Name and path of the global document" ;
    Text [ english_us ] = "Name and Path of Master Document" ;
    Text [ portuguese_brazilian ] = "Name und Pfad des Globaldokuments" ;
    Text [ swedish ] = "Samlingsdokumentets namn och s闥v輍" ;
    Text [ danish ] = "Hoveddokumentets navn og sti" ;
    Text [ italian ] = "Nome e percorso del documento master" ;
    Text [ spanish ] = "Nombre y ruta del documento maestro" ;
    Text [ french ] = "Nom et chemin du document ma褾re" ;
    Text [ dutch ] = "Naam en pad van het master-document" ;
    Text [ portuguese ] = "Nome e atalho do documento-mestre" ;
    Text[ chinese_simplified ] = "翋諷恅紫腔靡備睿繚噤";
    Text[ russian ] = "  瀀譔 蜱飶膼蜦 儋膧懤艜";
    Text[ polish ] = "Nazwa i cie磬a dokumentu g堯wnego";
    Text[ japanese ] = "牮幫巍楹砯Oて蔇";
    Text[ chinese_traditional ] = "主控文件的名稱和路徑";
    Text[ arabic ] = "к 緷蚡 ш蒑怀 ш堌蝁";
    Text[ dutch ] = "Naam en pad van het master-document";
    Text[ chinese_simplified ] = "翋諷恅紫腔靡備睿繚噤";
    Text[ greek ] = "潤瀌 罼 僸撦厴徻 鐐 艕麌瀦 樍蜤媺瀦";
    Text[ korean ] = "葆蝶顫 僥憮曖 檜葷婁 唳煎";
    Text[ turkish ] = "Ana belgenin ad ve veri yolu";
    Text[ language_user1 ] = " ";
};

String STR_LOAD_HTML_DOC
{
    TEXT = "Name und Pfad des HTML Dokuments" ;
    TEXT [ English ] = "Name and path of the html document" ;
    Text [ english_us ] = "Name and path of the html document" ;
    Text [ portuguese_brazilian ] = "Name und Pfad des HTML Dokuments" ;
    Text [ swedish ] = "HTML-dokumentets namn och s闥v輍" ;
    Text [ danish ] = "HTML-dokumentets navn og sti" ;
    Text [ italian ] = "Nome e percorso del documento HTML " ;
    Text [ spanish ] = "Nombre y ruta del documento HTML " ;
    Text [ french ] = "Nom et chemin du document HTML" ;
    Text [ dutch ] = "Naam en pad van het HTML document" ;
    Text [ portuguese ] = "Nome e atalho do documento HTML" ;
    Text[ chinese_simplified ] = "HTML 恅紫靡備睿繚噤";
    Text[ russian ] = "  瀀譔 儋膧懤艜 HTML";
    Text[ polish ] = "Nazwa i cie磬a dokumentu HTML";
    Text[ japanese ] = "HTML`效瑀倡暊Oて蔇";
    Text[ chinese_traditional ] = "HTML 文件名稱和路徑";
    Text[ arabic ] = "к 緷蚡 蒑怀   HTML";
    Text[ dutch ] = "Naam en pad van het HTML document";
    Text[ chinese_simplified ] = "HTML 恅紫靡備睿繚噤";
    Text[ greek ] = "潤瀌 罼 僸撦厴徻 鐐 樍蜤媺瀦 HTML";
    Text[ korean ] = "HTML 葆蝶顫 僥憮曖 檜葷婁 唳煎";
    Text[ turkish ] = "HTML belgesinin ad ve veri yolu";
    Text[ language_user1 ] = " ";
};

InfoBox MSG_ERROR_SEND_MAIL
{
    BUTTONS = WB_OK ;
    DEFBUTTON = WB_DEF_OK ;
    MESSAGE = "Fehler beim Versenden der Nachricht." ;
    MESSAGE [ English ] = "Error while sending mail." ;
    MESSAGE [ norwegian ] = "Feil ved sending av mail." ;
    MESSAGE [ italian ] = "Errore durante l'invio di un messaggio." ;
    MESSAGE [ portuguese_brazilian ] = "Erro ao enviar correio." ;
    MESSAGE [ portuguese ] = "Erro ao enviar correio." ;
    MESSAGE [ finnish ] = "Virhe s鄣k鞿ostia l鄣etett輑ss." ;
    MESSAGE [ danish ] = "Fejl ved afsendelse af meddelelsen." ;
    MESSAGE [ french ] = "Erreur lors de l'envoi du message." ;
    MESSAGE [ swedish ] = "Fel vid s鄚dning av meddelande." ;
    MESSAGE [ dutch ] = "Fout bij verzenden van bericht." ;
    MESSAGE [ spanish ] = "Error al enviar el mensaje." ;
    MESSAGE [ english_us ] = "Error sending mail." ;
    MESSAGE[ chinese_simplified ] = "婓敵楷萇赽蚘璃奀楷汜渣昫﹝";
    MESSAGE[ language_user1 ] = " ";
    MESSAGE[ russian ] = "昮魨罻 瀔 闅瀔飶錼膻 勷鍕樇.";
    MESSAGE[ polish ] = "B章d przy wysy豉niu wiadomoci.";
    MESSAGE[ japanese ] = "珧M抴蚾";
    MESSAGE[ chinese_traditional ] = "在寄發電子郵件時發生錯誤。";
    MESSAGE[ arabic ] = "挎 襠鞁 竊蚡 ш晊ш.";
    MESSAGE[ dutch ] = "Fout bij verzenden van bericht.";
    MESSAGE[ chinese_simplified ] = "婓敵楷萇赽蚘璃奀楷汜渣昫﹝";
    MESSAGE[ greek ] = "郣塝憼 罼轗 鐋 摫瀀鐐錞 鐐 懞薚憼鐐.";
    MESSAGE[ korean ] = "詭橾 爾頂晦 螃盟.";
    MESSAGE[ turkish ] = "愮eti g霵derilirken hata olutu.";
};
InfoBox MSG_ERROR_PASSWD
{
    BUTTONS = WB_OK ;
    DEFBUTTON = WB_DEF_OK ;
    MESSAGE = "Fehlerhaftes Passwort." ;
    MESSAGE [ English ] = "Password doesn't match." ;
    MESSAGE [ norwegian ] = "Passord passer ikke." ;
    MESSAGE [ italian ] = "La password non corrisponde." ;
    MESSAGE [ portuguese_brazilian ] = "A senha n緌 combina." ;
    MESSAGE [ portuguese ] = "A senha n緌  v嫮ida." ;
    MESSAGE [ finnish ] = "Salasana ei kelpaa." ;
    MESSAGE [ danish ] = "Fejagtig adgangskode" ;
    MESSAGE [ french ] = "Mot de passe incorrect." ;
    MESSAGE [ swedish ] = "Felaktigt l飉enord." ;
    MESSAGE [ dutch ] = "Wachtwoord niet correct." ;
    MESSAGE [ spanish ] = "Contrase鎙 no v嫮ida" ;
    MESSAGE [ english_us ] = "Invalid password." ;
    MESSAGE[ chinese_simplified ] = "渣昫腔諳鍔﹝";
    MESSAGE[ russian ] = "昮魨罻  櫡豂錼.";
    MESSAGE[ polish ] = "Nieprawid這we has這.";
    MESSAGE[ japanese ] = "〨蔇黹巍";
    MESSAGE[ chinese_traditional ] = "密碼無效。";
    MESSAGE[ arabic ] = "葐蓖 衭 趄 梀慴.";
    MESSAGE[ dutch ] = "Wachtwoord niet correct.";
    MESSAGE[ chinese_simplified ] = "渣昫腔諳鍔﹝";
    MESSAGE[ greek ] = "攬攠錎楜濿 蕅僸蕓 貘鶌摷趛.";
    MESSAGE[ korean ] = "嶸褲狫 彊擎 ぬ蝶錶萄";
    MESSAGE[ turkish ] = "Yanl ifre.";
    MESSAGE[ language_user1 ] = " ";
};

/*
 * auskommentiert, da die Toolbox z. Zt. nicht aus der Resource
 * geladen werden kann
Window WIN_TOOLBOX {
HelpText [English] = "";
HelpText [norwegian] = "";
HelpText [italian] = "";
HelpText [portuguese_brazilian] = "";
HelpText [portuguese] = "";
HelpText [finnish] = "";
HelpText [danish] = "";
HelpText [french] = "";
HelpText [swedish] = "";
HelpText [dutch] = "";
HelpText [spanish] = "";
HelpText [english_us] = "";
HelpText = "Die Objektleiste enth鄟t, je nach Bedarf, Buttons fr die "
       "Bearbeitung von Text, Rahmen, Grafik, Tabellen oder "
       "Numerierungen.";
HelpText[English] = "The objectbar contains, depending on your current "
            "working context, buttons for the editing of text, "
            "frames, graphics, tables or numberings.";
HelpText[norwegian] = "Objektlinjen inneholder, avhengig av  din aktuelle arbeidssituasjon, "
            "knapper for redigering av tekst,"
            " rammer, grafikker, tabeller eller nummereringer.";
HelpText[italian] = "La barra dell'oggetto attivo contiene, in base al proprio"
            "contesto lavorativo, pulsanti per la modifica del testo,"
            "cornici, grafici, tabelle o numerazioni..";
HelpText[portuguese_brazilian] = "A barra de objetos conter , dependendo do contexto de trabalho "
            "atual, bot es para edi誽o de texto, "
            "molduras, gr塻icos, tabelas ou numera誽o.";
HelpText[portuguese] = "A barra de objectos conter, dependendo do contexto de trabalho "
            "actual, bot髊s para edi誽o de texto, "
            "molduras, gr塻icos, tabelas ou numera誽o.";
HelpText[finnish] = "Toimintorivill on tilanteen mukaan painikkeita, "
            "joilla muokataan teksti, kehyksi, kuvia, "
            "taulukoita tai numeronteja.";
HelpText[danish] = "Afh熡gig af din aktuelle arbejdskontekst"
            " rummer ikonb幩det knapper for redigering af tekst, "
            "tekstruder, grafik, tabeller eller nummereringer.";
HelpText[french] = "Selon votre contexte de travail, la barre d'objets "
            "contient des boutons de modification du texte, des "
            "cadres, des graphiques, des tables ou des num廨otations.";
HelpText[swedish] = "Objektlisten inneh嶚ler, beroende p aktuellt"
            "arbetsomr嶟e, knappar f顤 redigering av text,"
            "ramar, bilder, tabeller eller numreringar.";
HelpText[dutch] = "Afhankelijk van de huidige werkomgeving bevat de objectbalk "
            "knoppen voor het bewerken van tekst, kaders, illustraties "
            "of nummeringen.";
HelpText[spanish] = "La barra de objetos contiene, dependiendo del contexto "
            "de trabajo actual, botones para la edici鏮 de texto, "
            "marcos, gr塻icos, tablas o numeraciones.";
HelpText[english_us] = "The objectbar contains, depending on your current "
            "working context, buttons for the editing of text, "
            "frames, graphics, tables or numberings.";
    OUTPUTSIZE = TRUE;
    BORDER = TRUE;
    Size = (28,27);
};
 */



















String RID_BUILDVERSION
{
    TEXT = UPDVER ;
};


String STR_FMT_STD
{
    TEXT = "(keins)" ;
    TEXT [ English ] = "(none)" ;
    TEXT [ norwegian ] = "(ingen)" ;
    TEXT [ italian ] = "(senza)" ;
    TEXT [ portuguese_brazilian ] = "(nenhum)" ;
    TEXT [ portuguese ] = "(nenhum)" ;
    TEXT [ finnish ] = "(ei mit鳵n)" ;
    TEXT [ danish ] = "(ingen)" ;
    TEXT [ french ] = "(aucun(e))" ;
    TEXT [ swedish ] = "(ingen)" ;
    TEXT [ dutch ] = "(geen)" ;
    TEXT [ spanish ] = "(ninguna)" ;
    TEXT [ english_us ] = "(none)" ;
    TEXT[ chinese_simplified ] = "(拸)";
    TEXT[ russian ] = "(摎)";
    TEXT[ polish ] = "(brak)";
    TEXT[ japanese ] = "()";
    TEXT[ chinese_traditional ] = "(無)";
    TEXT[ arabic ] = "(盻)";
    TEXT[ dutch ] = "(geen)";
    TEXT[ chinese_simplified ] = "(拸)";
    TEXT[ greek ] = "(罼縻罅)";
    TEXT[ korean ] = "(橈擠)";
    TEXT[ turkish ] = "(yok)";
    TEXT[ language_user1 ] = " ";
};

String STR_DOC_STAT
{
    TEXT = "Statistik" ;
    TEXT [ English ] = "Statistics" ;
    TEXT [ norwegian ] = "Statistics" ;
    TEXT [ italian ] = "Statistiche" ;
    TEXT [ portuguese_brazilian ] = "Estat疄tica" ;
    TEXT [ portuguese ] = "Estat疄tica" ;
    TEXT [ finnish ] = "Tilasto" ;
    TEXT [ danish ] = "Statistik" ;
    TEXT [ french ] = "Statistique" ;
    TEXT [ swedish ] = "Statistik" ;
    TEXT [ dutch ] = "Statistiek" ;
    TEXT [ spanish ] = "Estad疄tica" ;
    TEXT [ english_us ] = "Statistics" ;
    TEXT[ chinese_simplified ] = "苀數";
    TEXT[ russian ] = "栺僗黓蠂罻";
    TEXT[ polish ] = "Statystyka";
    TEXT[ japanese ] = "v";
    TEXT[ chinese_traditional ] = "統計";
    TEXT[ arabic ] = "攪梀らв";
    TEXT[ dutch ] = "Statistiek";
    TEXT[ chinese_simplified ] = "苀數";
    TEXT[ greek ] = "郙敳澞鏻縔";
    TEXT[ korean ] = "鱔啗";
    TEXT[ turkish ] = "酨tatistik";
    TEXT[ language_user1 ] = " ";
};

 // ----------------------------
 // Statusleisten-Ueberschriften
 // ----------------------------

String STR_STATSTR_W4WREAD
{
    Text = "Dokument wird importiert..." ;
    Text [ English ] = "Importing..." ;
    Text [ norwegian ] = "Importerer..." ;
    Text [ italian ] = "Il documento viene importato..." ;
    Text [ portuguese_brazilian ] = "Importando..." ;
    Text [ portuguese ] = "A importar documento..." ;
    Text [ finnish ] = "Tuonti..." ;
    Text [ danish ] = "Importerer dokument..." ;
    Text [ french ] = "Import du document en cours..." ;
    Text [ swedish ] = "Dokument importeras..." ;
    Text [ dutch ] = "Document wordt ge鮛porteerd..." ;
    Text [ spanish ] = "Importando el documento..." ;
    Text [ english_us ] = "Importing document..." ;
    Text[ chinese_simplified ] = "怀輷警...";
    Text[ russian ] = "斀闉 儋膧懤艜...";
    Text[ polish ] = "Importowanie dokumentu...";
    Text[ japanese ] = "戽楱葥...";
    Text[ chinese_traditional ] = "輸入文件...";
    Text[ arabic ] = "昒栔 к扱捚 ш蒑怀...";
    Text[ dutch ] = "Document wordt ge鮛porteerd...";
    Text[ chinese_simplified ] = "怀輷警...";
    Text[ greek ] = "體鶋裺蜛 樍蜤媺瀦...";
    Text[ korean ] = "僥憮 陛螳螃晦...";
    Text[ turkish ] = "Belge i蔒 aktarlyor...";
    Text[ language_user1 ] = " ";
};

String STR_STATSTR_W4WWRITE
{
    Text = "Dokument wird exportiert..." ;
    Text [ English ] = "Exporting..." ;
    Text [ norwegian ] = "Eksporterer..." ;
    Text [ italian ] = "Il documento viene esportato..." ;
    Text [ portuguese_brazilian ] = "Exportando..." ;
    Text [ portuguese ] = "A exportar documento..." ;
    Text [ finnish ] = "Vienti..." ;
    Text [ danish ] = "Eksporterer dokument" ;
    Text [ french ] = "Export du document en cours..." ;
    Text [ swedish ] = "Dokument exporteras..." ;
    Text [ dutch ] = "Document wordt ge褩porteerd..." ;
    Text [ spanish ] = "Exportando el documento..." ;
    Text [ english_us ] = "Exporting document..." ;
    Text[ chinese_simplified ] = "怀堤恅紫...";
    Text[ russian ] = "椻厴闉 儋膧懤艜...";
    Text[ polish ] = "Eksportowanie dokumentu...";
    Text[ japanese ] = "抴蜇拶凰...";
    Text[ chinese_traditional ] = "輸出文件...";
    Text[ arabic ] = "昒栔 彶砅 ш蒑怀...";
    Text[ dutch ] = "Document wordt ge褩porteerd...";
    Text[ chinese_simplified ] = "怀堤恅紫...";
    Text[ greek ] = "鷥摦蜛 樍蜤媺瀦...";
    Text[ korean ] = "僥憮 爾頂晦...";
    Text[ turkish ] = "Belge da aktarlyor...";
    Text[ language_user1 ] = " ";
};

String STR_STATSTR_SWGREAD
{
    Text = "Dokument wird geladen..." ;
    Text [ English ] = "Loading..." ;
    Text [ norwegian ] = "Laster inn..." ;
    Text [ italian ] = "Il documento viene caricato..." ;
    Text [ portuguese_brazilian ] = "Carregando..." ;
    Text [ portuguese ] = "A carregar documento..." ;
    Text [ finnish ] = "Lataus..." ;
    Text [ danish ] = "Indl犘er dokument..." ;
    Text [ french ] = "Document en cours de chargement..." ;
    Text [ swedish ] = "Dokument laddas..." ;
    Text [ dutch ] = "Document wordt gemaakt..." ;
    Text [ spanish ] = "Cargando el documento..." ;
    Text [ english_us ] = "Loading document..." ;
    Text[ chinese_simplified ] = "蚾婥恅紫...";
    Text[ language_user1 ] = " ";
    Text[ russian ] = "癩膧懤艜 諘蜸鵵馲襙...";
    Text[ polish ] = "ζdowanie dokumentu...";
    Text[ japanese ] = "...";
    Text[ chinese_traditional ] = "裝載文件...";
    Text[ arabic ] = "昒栔 庋蝂 ш蒑怀...";
    Text[ dutch ] = "Document wordt gemaakt...";
    Text[ chinese_simplified ] = "蚾婥恅紫...";
    Text[ greek ] = "孲 楯蜤暡 獿嚪翴酃...";
    Text[ korean ] = "僥憮 煎註...";
    Text[ turkish ] = "Belge ykleniyor...";
};

String STR_STATSTR_SWGWRITE
{
    Text = "Dokument wird gespeichert..." ;
    Text [ English ] = "Saving..." ;
    Text [ norwegian ] = "Lagrer..." ;
    Text [ italian ] = "Il documento viene salvato..." ;
    Text [ portuguese_brazilian ] = "Gravando..." ;
    Text [ portuguese ] = "A guardar documento..." ;
    Text [ finnish ] = "Tallennus..." ;
    Text [ danish ] = "Gemmer dokument..." ;
    Text [ french ] = "Enreg. du document en cours..." ;
    Text [ swedish ] = "Dokument sparas..." ;
    Text [ dutch ] = "Document wordt opgeslagen..." ;
    Text [ spanish ] = "Guardando el documento..." ;
    Text [ english_us ] = "Saving document..." ;
    Text = "Dokument wird gespeichert..." ;
    Text[ chinese_simplified ] = "湔攫恅紫...";
    Text[ russian ] = "癩膧懤艜 勷臝鳧殣...";
    Text[ polish ] = "Zapisywanie dokumentu...";
    Text[ japanese ] = "...";
    Text[ chinese_traditional ] = "正在儲存文件...";
    Text[ arabic ] = "昒栔 俍 ш蒑怀...";
    Text[ dutch ] = "Document wordt opgeslagen...";
    Text[ chinese_simplified ] = "湔攫恅紫...";
    Text[ greek ] = "闋歞碅氁鵰 樍蜤媺瀦...";
    Text[ korean ] = "僥憮 盪濰...";
    Text[ turkish ] = "Belge kaydediliyor...";
    Text[ language_user1 ] = " ";
};

String STR_STATSTR_REFORMAT
{
    TEXT = "Neuformatierung des Dokumentes..." ;
    TEXT [ English ] = "Repaginating..." ;
    TEXT [ norwegian ] = "Gj鷨 sidenummerering p nyttRepaginating..." ;
    TEXT [ italian ] = "Riformattazione del documento..." ;
    TEXT [ portuguese_brazilian ] = "Repaginando..." ;
    TEXT [ portuguese ] = "Nova formata誽o do documento..." ;
    TEXT [ finnish ] = "Sivutus..." ;
    TEXT [ danish ] = "Genformatering af dokumentet..." ;
    TEXT [ french ] = "Nouveau formatage du document..." ;
    TEXT [ swedish ] = "Omformatering av dokumentet..." ;
    TEXT [ dutch ] = "Bezig met nieuwe opmaak..." ;
    TEXT [ spanish ] = "Reformateado del documento..." ;
    TEXT [ english_us ] = "Repagination..." ;
    TEXT[ chinese_simplified ] = "笭陔秶釬恅紫跡宒...";
    TEXT[ language_user1 ] = " ";
    TEXT[ russian ] = "侹碭 鐕謽僗麃鍒鳧鳺 儋膧懤艜...";
    TEXT[ polish ] = "Ponowne formatowanie dokumentu...";
    TEXT[ japanese ] = "巍楹砯VK...";
    TEXT[ chinese_traditional ] = "重新制作文件格式...";
    TEXT[ arabic ] = "蘿ж 怀迿 ш蒑怀...";
    TEXT[ dutch ] = "Bezig met nieuwe opmaak...";
    TEXT[ chinese_simplified ] = "笭陔秶釬恅紫跡宒...";
    TEXT[ greek ] = "泬壚瀔檽踠 樏 縻瀦 鐐 樍蜤媺瀦...";
    TEXT[ korean ] = "む檜雖 衙晦晦...";
    TEXT[ turkish ] = "Belge yeniden formatlanyor...";
};

String STR_STATSTR_AUTOFORMAT
{
    TEXT = "Autoformatierung des Dokumentes..." ;
    TEXT [ English ] = "Autoformatting..." ;
    TEXT [ norwegian ] = "Autoformaterer..." ;
    TEXT [ italian ] = "Formattazione automatica..." ;
    TEXT [ portuguese_brazilian ] = "Formata誽o autom嫢ica..." ;
    TEXT [ portuguese ] = "A formatar documento automaticamente..." ;
    TEXT [ finnish ] = "Automaattimuotoilu..." ;
    TEXT [ danish ] = "Autoformatering af dokumentet..." ;
    TEXT [ french ] = "Mise en forme automatique du document..." ;
    TEXT [ swedish ] = "Autoformatering av dokumentet..." ;
    TEXT [ dutch ] = "Bezig met automatisch opmaken..." ;
    TEXT [ spanish ] = "AutoFormato del documento..." ;
    TEXT [ english_us ] = "Formatting document automatically..." ;
    TEXT[ chinese_simplified ] = "恅紫赻雄跡宒趙...";
    TEXT[ language_user1 ] = " ";
    TEXT[ russian ] = "濩襜鐕謽僗麃鍒鳧鳺 儋膧懤艜...";
    TEXT[ polish ] = "Autoformatowanie dokumentu";
    TEXT[ japanese ] = "巍楹砯拑凰怮區紕...";
    TEXT[ chinese_traditional ] = "物件自動格式化...";
    TEXT[ arabic ] = "怀迿 忯痯ら 摽蒑怀...";
    TEXT[ dutch ] = "Bezig met automatisch opmaken...";
    TEXT[ chinese_simplified ] = "恅紫赻雄跡宒趙...";
    TEXT[ greek ] = "隸鏸憼鐋 斀壚瀔檽踠 鐐 樍蜤媺瀦...";
    TEXT[ korean ] = "濠翕 僥憮 憮衝 撲薑...";
    TEXT[ turkish ] = "Otomatik belge formatlama...";
};

String STR_STATSTR_IMPGRF
{
    Text = "Grafik wird importiert..." ;
    Text [ English ] = "Importing picture..." ;
    Text [ norwegian ] = "Importerer bilde..." ;
    Text [ italian ] = "L'immagine viene importata..." ;
    Text [ portuguese_brazilian ] = "Importando figura..." ;
    Text [ portuguese ] = "A importar imagem..." ;
    Text [ finnish ] = "Kuvan tuonti..." ;
    Text [ danish ] = "Importerer grafik..." ;
    Text [ french ] = "Import de l'image en cours..." ;
    Text [ swedish ] = "Grafik importeras..." ;
    Text [ dutch ] = "Afbeelding wordt ge鮛porteerd..." ;
    Text [ spanish ] = "Importando imagen..." ;
    Text [ english_us ] = "Importing graphics..." ;
    Text[ chinese_simplified ] = "怀輹標...";
    Text[ russian ] = "斀闉 蜸僳鴀...";
    Text[ polish ] = "Importowanie grafiki...";
    Text[ japanese ] = "}戽楱葥...";
    Text[ chinese_traditional ] = "輸入圖片...";
    Text[ arabic ] = "昒栔 к扱捚 ш晊...";
    Text[ dutch ] = "Afbeelding wordt ge鮛porteerd...";
    Text[ chinese_simplified ] = "怀輹標...";
    Text[ greek ] = "體鶋裺蜛 蜤暡濋燽...";
    Text[ korean ] = "斜楚а 陛螳螃晦...";
    Text[ turkish ] = "Grafik i蔒 aktarlyor...";
    Text[ language_user1 ] = " ";
};

String STR_STATSTR_SEARCH
{
    Text = "Suche..." ;
    Text [ English ] = "search..." ;
    Text [ norwegian ] = "S鷦er..." ;
    Text [ italian ] = "Cerca..." ;
    Text [ portuguese_brazilian ] = "buscar..." ;
    Text [ portuguese ] = "A localizar..." ;
    Text [ finnish ] = "Etsint..." ;
    Text [ danish ] = "S鷤er..." ;
    Text [ french ] = "Recherche..." ;
    Text [ swedish ] = "S闥er..." ;
    Text [ dutch ] = "Bezig met zoeken..." ;
    Text [ spanish ] = "Bsqueda..." ;
    Text [ english_us ] = "Search..." ;
    Text[ chinese_simplified ] = "刲扆...";
    Text[ language_user1 ] = " ";
    Text[ russian ] = "砐黓...";
    Text[ polish ] = "Szukaj...";
    Text[ japanese ] = "...";
    Text[ chinese_traditional ] = "尋找...";
    Text[ arabic ] = "豖...";
    Text[ dutch ] = "Bezig met zoeken...";
    Text[ chinese_simplified ] = "刲扆...";
    Text[ greek ] = "鍚撂禂踠...";
    Text[ korean ] = "瓊晦...";
    Text[ turkish ] = "Ara...";
};

String STR_STATSTR_FORMAT
{
    Text = "Formatiere..." ;
    Text [ English ] = "Formatting..." ;
    Text [ norwegian ] = "Formaterer..." ;
    Text [ italian ] = "Formattazione..." ;
    Text [ portuguese_brazilian ] = "Formatando..." ;
    Text [ portuguese ] = "A formatar..." ;
    Text [ finnish ] = "Muotoilu..." ;
    Text [ danish ] = "Formaterer..." ;
    Text [ french ] = "Formatage..." ;
    Text [ swedish ] = "Formaterar..." ;
    Text [ dutch ] = "Bezig met opmaken..." ;
    Text [ spanish ] = "Formateando..." ;
    Text [ english_us ] = "Formatting..." ;
    Text[ chinese_simplified ] = "跡宒趙...";
    Text[ language_user1 ] = " ";
    Text[ russian ] = "婜謽僗...";
    Text[ polish ] = "Formatuj";
    Text[ japanese ] = "...";
    Text[ chinese_traditional ] = "格式化...";
    Text[ arabic ] = "怀迿...";
    Text[ dutch ] = "Bezig met opmaken...";
    Text[ chinese_simplified ] = "跡宒趙...";
    Text[ greek ] = "泬壚瀔檽踠...";
    Text[ korean ] = "憮衝 撲薑...";
    Text[ turkish ] = "Formatlanyor...";
};

String STR_STATSTR_PRINT
{
    Text = "Drucke..." ;
    Text [ English ] = "Printing..." ;
    Text [ norwegian ] = "Skriver ut..." ;
    Text [ italian ] = "Stampa..." ;
    Text [ portuguese_brazilian ] = "Imprimindo..." ;
    Text [ portuguese ] = "A imprimir..." ;
    Text [ finnish ] = "Tulostus..." ;
    Text [ danish ] = "Udskriver..." ;
    Text [ french ] = "Impression..." ;
    Text [ swedish ] = "Skriver ut ..." ;
    Text [ dutch ] = "Bezig met afdrukken..." ;
    Text [ spanish ] = "Imprimiendo..." ;
    Text [ english_us ] = "Printing..." ;
    Text[ chinese_simplified ] = "湖荂...";
    Text[ russian ] = "盷欑譔...";
    Text[ polish ] = "Drukuj...";
    Text[ japanese ] = "...";
    Text[ chinese_traditional ] = "列印...";
    Text[ arabic ] = "媩с...";
    Text[ dutch ] = "Bezig met afdrukken...";
    Text[ chinese_simplified ] = "湖荂...";
    Text[ greek ] = "髑鐊蹠鵰...";
    Text[ korean ] = "檣潑...";
    Text[ turkish ] = "Yazdrlyor...";
    Text[ language_user1 ] = " ";
};

String STR_STATSTR_LAYOUTINIT
{
    Text = "Konvertiere..." ;
    Text [ English ] = "Converting..." ;
    Text [ norwegian ] = "Konverterer..." ;
    Text [ italian ] = "Converti..." ;
    Text [ portuguese_brazilian ] = "Convertendo..." ;
    Text [ portuguese ] = "A converter..." ;
    Text [ finnish ] = "Muunto..." ;
    Text [ danish ] = "Konverterer..." ;
    Text [ french ] = "Conversion..." ;
    Text [ swedish ] = "Konverterar..." ;
    Text [ dutch ] = "Bezig met converteren..." ;
    Text [ spanish ] = "Convirtiendo..." ;
    Text [ english_us ] = "Converting..." ;
    Text[ chinese_simplified ] = "蛌遙...";
    Text[ russian ] = "砎槴摫馵鍒鳧鳺...";
    Text[ polish ] = "Konwertuj...";
    Text[ japanese ] = "...";
    Text[ chinese_traditional ] = "轉換...";
    Text[ arabic ] = "庋緱...";
    Text[ dutch ] = "Bezig met converteren...";
    Text[ chinese_simplified ] = "蛌遙...";
    Text[ greek ] = "极酃鐙瀔...";
    Text[ korean ] = "滲...";
    Text[ turkish ] = "D霵trlyor...";
    Text[ language_user1 ] = " ";
};

String STR_STATSTR_LETTER
{
    Text = "Brief" ;
    Text [ English ] = "Letter" ;
    Text [ english_us ] = "Letter" ;
    Text [ italian ] = "Lettera" ;
    Text [ spanish ] = "Carta" ;
    Text [ french ] = "Lettre" ;
    Text [ dutch ] = "Brief" ;
    Text [ swedish ] = "Brev" ;
    Text [ danish ] = "Brev" ;
    Text [ portuguese_brazilian ] = "Brief" ;
    Text [ portuguese ] = "Carta" ;
    Text[ chinese_simplified ] = "陓滲";
    Text[ russian ] = "矧嬿斁";
    Text[ polish ] = "List";
    Text[ japanese ] = "睎";
    Text[ chinese_traditional ] = "信函";
    Text[ arabic ] = "挎а";
    Text[ dutch ] = "Brief";
    Text[ chinese_simplified ] = "陓滲";
    Text[ greek ] = "黴澞鐐錞";
    Text[ korean ] = "ら雖";
    Text[ turkish ] = "Mektup";
    Text[ language_user1 ] = " ";
};

String STR_STATSTR_SPELL
{
    Text = "Rechtschreibprfung..." ;
    Text [ English ] = "Spelling..." ;
    Text [ english_us ] = "Spellcheck..." ;
    Text [ italian ] = "Controllo ortografico..." ;
    Text [ spanish ] = "Revisi鏮 ortogr塻ica..." ;
    Text [ french ] = "Orthographe..." ;
    Text [ dutch ] = "Bezig met spellingcontrole..." ;
    Text [ swedish ] = "R酹tstavningskontroll..." ;
    Text [ danish ] = "Stavekontrol..." ;
    Text [ portuguese_brazilian ] = "Rechtschreibprfung..." ;
    Text [ portuguese ] = "Verifica誽o ortogr塻ica..." ;
    Text[ chinese_simplified ] = "淏趼楊潰脤...";
    Text[ russian ] = "砎鍒歑罻 闉鐕蜸僳鳷...";
    Text[ polish ] = "Sprawdzanie pisowni...";
    Text[ japanese ] = "Z...";
    Text[ chinese_traditional ] = "拼字...";
    Text[ arabic ] = "庌碃 顯慳ら...";
    Text[ dutch ] = "Bezig met spellingcontrole...";
    Text[ chinese_simplified ] = "淏趼楊潰脤...";
    Text[ greek ] = "賈樍艬 瀎鴄蜤暡葐...";
    Text[ korean ] = "蜃辭徹 匐餌...";
    Text[ turkish ] = "Yazm denetimi...";
    Text[ language_user1 ] = " ";
};

String STR_STATSTR_HYPHEN
{
    Text = "Silbentrennung..." ;
    Text [ English ] = "Hyphenating..." ;
    Text [ english_us ] = "Hyphenation..." ;
    Text [ dutch ] = "Woordafbreking..." ;
    Text [ italian ] = "Sillabazione..." ;
    Text [ spanish ] = "Separaci鏮 sil墎ica..." ;
    Text [ french ] = "Coupure de mots..." ;
    Text [ swedish ] = "Avstavning..." ;
    Text [ danish ] = "Orddeling..." ;
    Text [ portuguese_brazilian ] = "Silbentrennung..." ;
    Text [ portuguese ] = "Divis緌 sil墎ica..." ;
    Text[ chinese_simplified ] = "蟀趼睫...";
    Text[ russian ] = "冓嚭蠉膼瞃 櫇謥膼勷...";
    Text[ polish ] = "Dzielenie wyraz闚";
    Text[ japanese ] = "妦昈側栩...";
    Text[ chinese_traditional ] = "連接符...";
    Text[ arabic ] = "楙 ш蜛п...";
    Text[ dutch ] = "Woordafbreking...";
    Text[ chinese_simplified ] = "蟀趼睫...";
    Text[ greek ] = "郚錭摵澞檇...";
    Text[ korean ] = "ж檜Ъ ...";
    Text[ turkish ] = "Heceleme...";
    Text[ language_user1 ] = " ";
};

String STR_STATSTR_TOX_INSERT
{
    Text = "Verzeichnis wird eingefgt..." ;
    Text [ English ] = "Inserting Index..." ;
    Text [ english_us ] = "Inserting Index..." ;
    Text [ italian ] = "L'indice viene inserito..." ;
    Text [ spanish ] = "Insertando directorio..." ;
    Text [ french ] = "Index en cours d'insertion..." ;
    Text [ dutch ] = "Index wordt ingevoegd..." ;
    Text [ swedish ] = "F顤teckning infogas..." ;
    Text [ danish ] = "Inds犚ter indeks..." ;
    Text [ portuguese_brazilian ] = "Verzeichnis wird eingefgt..." ;
    Text [ portuguese ] = "Inserindo 璯dice..." ;
    Text[ chinese_simplified ] = "脣輵壨...";
    Text[ language_user1 ] = " ";
    Text[ russian ] = "鎚蠉瞃 鵳馵僗槶...";
    Text[ polish ] = "Wstawianie indeksu...";
    Text[ japanese ] = "}...";
    Text[ chinese_traditional ] = "插入目錄...";
    Text[ arabic ] = "昒栔 欐捚 ш楶晊...";
    Text[ dutch ] = "Index wordt ingevoegd...";
    Text[ chinese_simplified ] = "脣輵壨...";
    Text[ greek ] = "體鶋裺蜛 罼酃錪蜧...";
    Text[ korean ] = "儀檣 鳶殮...";
    Text[ turkish ] = "Dizin ekleniyor...";
};

String STR_STATSTR_TOX_UPDATE
{
    Text = "Verzeichnis wird aktualisiert..." ;
    Text [ English ] = "Updating Index..." ;
    Text [ english_us ] = "Updating Index..." ;
    Text [ italian ] = "L'indice viene aggiornato..." ;
    Text [ spanish ] = "Actualizando directorio..." ;
    Text [ french ] = "Index en cours d'actualisation..." ;
    Text [ dutch ] = "Index wordt geactualiseerd..." ;
    Text [ swedish ] = "F顤teckning uppdateras..." ;
    Text [ danish ] = "Opdaterer indeks..." ;
    Text [ portuguese_brazilian ] = "Verzeichnis wird aktualisiert..." ;
    Text [ portuguese ] = "Actualizando 璯dice..." ;
    Text[ chinese_simplified ] = "載陔坰竘...";
    Text[ language_user1 ] = " ";
    Text[ russian ] = "挓膼碲樇鳺 鵳馵僗槶...";
    Text[ polish ] = "Aktualizacja indeksu...";
    Text[ japanese ] = "XV...";
    Text[ chinese_traditional ] = "更新目錄...";
    Text[ arabic ] = "昒栔 庋砅 ш楶晊...";
    Text[ dutch ] = "Index wordt geactualiseerd...";
    Text[ chinese_simplified ] = "載陔坰竘...";
    Text[ greek ] = "鱖賚楒鵰 罼酃錪蜧...";
    Text[ korean ] = "儀檣 機 等檜お...";
    Text[ turkish ] = "Dizin gncelleniyor...";
};

String STR_STATSTR_SUMMARY
{
    Text = "Abstrakt wird erstellt..." ;
    Text [ English ] = "Creating summary..." ;
    Text [ english_us ] = "Creating abstract..." ;
    Text [ portuguese_brazilian ] = "Abstrakt wird erstellt..." ;
    Text [ swedish ] = "Utdrag skapas..." ;
    Text [ danish ] = "Opretter abstract..." ;
    Text [ italian ] = "Il sunto viene creato..." ;
    Text [ spanish ] = "Creando el extracto..." ;
    Text [ french ] = "Synth鋊e en cours de cr嶧tion..." ;
    Text [ dutch ] = "Overzicht wordt gemaakt..." ;
    Text [ portuguese ] = "A criar Sum嫫io..." ;
    Text[ chinese_simplified ] = "秶釬晡猁...";
    Text[ language_user1 ] = " ";
    Text[ russian ] = "麧 勷諙鳧鳺 瀔闃斁襝 儋膧懤艜...";
    Text[ polish ] = "Tworzenie Abstraktu...";
    Text[ japanese ] = "v...";
    Text[ chinese_traditional ] = "製作摘要...";
    Text[ arabic ] = "昒栔 饜堌 ш忯昲...";
    Text[ dutch ] = "Overzicht wordt gemaakt...";
    Text[ chinese_simplified ] = "秶釬晡猁...";
    Text[ greek ] = "櫺擩瀦鼖葐 abstract...";
    Text[ korean ] = "蹂擒 虜菟晦...";
    Text[ turkish ] = "畤et oluturuluyor...";
};

String STR_STATSTR_SWGPRTOLENOTIFY
{
    Text = "Objekte Anpassen..." ;
    Text [ English ] = "Adjust Objects..." ;
    Text[ english_us ] = "Adapt Objects...";
    Text[ portuguese ] = "Ajustar objectos...";
    Text[ russian ] = "雞豂碴譔 鍕樏譖...";
    Text[ dutch ] = "Objecten aanpassen...";
    Text[ french ] = "Adapter les objets...";
    Text[ spanish ] = "Ajustar objetos...";
    Text[ italian ] = "Adatta oggetti...";
    Text[ danish ] = "Tilpas objekter...";
    Text[ swedish ] = "Anpassa objekt...";
    Text[ polish ] = "Dopasuj obiekty...";
    Text[ portuguese_brazilian ] = "Adjust Objects...";
    Text[ japanese ] = "腓瑆猼蜊...";
    Text[ chinese_simplified ] = "覃淕勤砓...";
    Text[ chinese_traditional ] = "調整物件...";
    Text[ arabic ] = "窏 萩むв...";
    Text[ dutch ] = "Objecten aanpassen...";
    Text[ chinese_simplified ] = "覃淕勤砓...";
    Text[ greek ] = "哢瀀摙斀蜛 摿鏻耪濇楜...";
    Text[ korean ] = "偃羹 褻薑...";
    Text[ turkish ] = "Nesneleri uyarla...";
    Text[ language_user1 ] = " ";
};


QueryBox MSG_COMCORE_ASKSEARCH
{
    Buttons = WB_YES_NO_CANCEL ;
    DefButton = WB_DEF_YES ;
    Message = "Diese Aktion ben飆igt frs Undo sehr viel Speicher.\nWollen Sie das Undo abschalten?" ;
    Message [ English ] = "This action needs for undo many memory.\nWould you disable undo?" ;
    Message [ norwegian ] = "Hvis du vil angre denne handlingen trenger du mye minne.\nVil du sperre angrefunksjonen?" ;
    Message [ italian ] = "L'annullamento di questa azione occorre molta memoria.\nVolete disattivare la possibilit di annullare?" ;
    Message [ portuguese_brazilian ] = "Esta a誽o requer muita mem鏎ia para desfazer.\nDeseja desativar a fun誽o desfazer?" ;
    Message [ portuguese ] = "Para poder anular esta ac誽o  necess嫫ia muita mem鏎ia.\nDeseja cancelar esta fun誽o?" ;
    Message [ finnish ] = "T鄝鄚 toiminnon kumoamiseen tarvitaan paljon muistia.\nPoistetaanko kumoamismahdollisuus k銛t飉t?" ;
    Message [ danish ] = "Denne handling kr獒er megen hukommelse til fortryd-funktionen\nVil du sl fortryd-funktionen fra?" ;
    Message [ french ] = "Cette action n嶰essite beaucoup de m幦oire pour l'annulation (Undo).\nVoulez-vous d廥activer l'annulation ?" ;
    Message [ swedish ] = "Denna 廞g酺d kr銥er alltf顤 mycket minne f顤 囊gra-funktionen.\nVill Du st鄚ga av 囊gra-funktionen?" ;
    Message [ dutch ] = "Het ongedaan maken van deze bewerking beslaat veel geheugen.\nWilt U \"Ongedaan maken\" opheffen ?" ;
    Message [ spanish ] = "Esta acci鏮 necesita mucha memoria para la operaci鏮 de Deshacer.\n澳esea desactivar la opci鏮 de deshacer?" ;
    Message [ english_us ] = "A large amount of memory is required to undo this action.\nDo you want to cancel the undo?" ;
    Message[ chinese_simplified ] = "雪秏韜鍔髡夔剒猁竭嗣腔囀湔﹝\n蠟猁囮魂雪秏韜鍔髡夔鎘ˋ";
    Message[ russian ] = "椯鍎 麧濄蠋噮 翴鍕羻儰斁 儇 闅懤蕻 儴儑膰 擨鍏 櫡蠂.\n雞 羻蠂蠈 闅膹玁譔 闅懤薃?";
    Message[ polish ] = "Cofni璚ie tej akcji wymaga du瞠j iloci pami璚i.\nCzy chcesz przerwa cofni璚ie?";
    Message[ japanese ] = "秅朊衯KvB\n?";
    Message[ chinese_traditional ] = "復原功\能需要很多的記憶體。\n您要失活復原功\能?";
    Message[ arabic ] = "ш庍д 筀 槱 ш攫捚 簆嵎 陎葌 菙縼 昑⑧.\n槦 庍糨 鑤裀 ш庍д睊";
    Message[ dutch ] = "Het ongedaan maken van deze bewerking beslaat veel geheugen.\nWilt U \"Ongedaan maken\" opheffen ?";
    Message[ chinese_simplified ] = "雪秏韜鍔髡夔剒猁竭嗣腔囀湔﹝\n蠟猁囮魂雪秏韜鍔髡夔鎘ˋ";
    Message[ greek ] = " 樏轕錼鵰 斠轘 鐋 樇楒蜲殧 摫摋醲 懤蜡錣 豵齘鐋酃 擨碡趛.\n楋殦 罅 摓蘘鵴醲 鐋 摿摲鼫鵰;";
    Message[ korean ] = "檜 濛翕擊 鏃模蒂 嬪ж罹 渠辨榆曖 詭賅葬陛 蹂掘腌棲棻.\n褒ч鏃模蒂 鏃模ж衛啊蝗棲梱?";
    Message[ turkish ] = "Bu ilemde geri alma i蓾n byk miktarda bellek gerekiyor.\nGeri alma ilevini kapatmak istiyor musunuz?";
    Message[ language_user1 ] = " ";
};

Bitmap RID_GRAPHIC_REPLACEBMP
{
    File = "grafikei.bmp" ;
};

Bitmap RID_GRAPHIC_ERRORBMP
{
    File = "grafikde.bmp" ;
};

String STR_TABLE_DEFNAME
{
    Text = "Tabelle" ;
    Text [ ENGLISH ] = "Table" ;
    Text [ norwegian ] = "Table" ;
    Text [ italian ] = "Tabella" ;
    Text [ portuguese_brazilian ] = "Tabela" ;
    Text [ portuguese ] = "Tabela" ;
    Text [ finnish ] = "Taulukko" ;
    Text [ danish ] = "Tabel" ;
    Text [ french ] = "Tableau" ;
    Text [ swedish ] = "Tabell" ;
    Text [ dutch ] = "Tabel" ;
    Text [ spanish ] = "Tabla" ;
    Text [ english_us ] = "Table" ;
    Text[ chinese_simplified ] = "桶跡";
    Text[ russian ] = "砫摠儗";
    Text[ polish ] = "Tabela";
    Text[ japanese ] = "\\";
    Text[ chinese_traditional ] = "表格";
    Text[ arabic ] = "昑糌";
    Text[ dutch ] = "Tabel";
    Text[ chinese_simplified ] = "桶跡";
    Text[ greek ] = "冔罅罼";
    Text[ korean ] = "ル";
    Text[ turkish ] = "Tablo";
    Text[ language_user1 ] = " ";
};

String STR_GRAPHIC_DEFNAME
{
    TEXT = "Grafik" ;
    TEXT [ English ] = "Graphic" ;
    TEXT [ norwegian ] = "Graphic" ;
    TEXT [ italian ] = "Immagine" ;
    TEXT [ portuguese_brazilian ] = "Gr塻ico" ;
    TEXT [ portuguese ] = "Imagem" ;
    TEXT [ finnish ] = "Kuva" ;
    TEXT [ danish ] = "Grafik" ;
    TEXT [ french ] = "Image" ;
    TEXT [ swedish ] = "Grafik" ;
    TEXT [ dutch ] = "Afbeelding" ;
    TEXT [ spanish ] = "Imagen" ;
    TEXT [ english_us ] = "Graphic" ;
    TEXT[ chinese_simplified ] = "芞倛";
    TEXT[ russian ] = "剒嚧膼";
    TEXT[ polish ] = "Grafika";
    TEXT[ japanese ] = "}";
    TEXT[ chinese_traditional ] = "圖片";
    TEXT[ arabic ] = "淩挸";
    TEXT[ dutch ] = "Afbeelding";
    TEXT[ chinese_simplified ] = "芞倛";
    TEXT[ greek ] = "鏍暡濋";
    TEXT[ korean ] = "斜楚а";
    TEXT[ turkish ] = "Grafik";
    TEXT[ language_user1 ] = " ";
};

String STR_OBJECT_DEFNAME
{
    TEXT = "Objekt" ;
    TEXT [ English ] = "Object" ;
    TEXT [ norwegian ] = "Object" ;
    TEXT [ italian ] = "Oggetto" ;
    TEXT [ portuguese_brazilian ] = "Objeto" ;
    TEXT [ portuguese ] = "Objecto" ;
    TEXT [ finnish ] = "Objekti" ;
    TEXT [ danish ] = "Objekt" ;
    TEXT [ french ] = "Objet" ;
    TEXT [ swedish ] = "Objekt" ;
    TEXT [ dutch ] = "Object" ;
    TEXT [ spanish ] = "Objeto" ;
    TEXT [ english_us ] = "Object" ;
    TEXT[ chinese_simplified ] = "勤砓";
    TEXT[ russian ] = "挓樏";
    TEXT[ polish ] = "Obiekt";
    TEXT[ japanese ] = "腓瑆猼蜊";
    TEXT[ chinese_traditional ] = "物件";
    TEXT[ arabic ] = "萩む";
    TEXT[ dutch ] = "Object";
    TEXT[ chinese_simplified ] = "勤砓";
    TEXT[ greek ] = "鍚鏻耪蜉樇";
    TEXT[ korean ] = "偃羹";
    TEXT[ turkish ] = "Nesne";
    TEXT[ language_user1 ] = " ";
};

String STR_FRAME_DEFNAME
{
    Text = "Rahmen" ;
    Text [ English ] = "Frames" ;
    Text [ norwegian ] = "Rammer" ;
    Text [ italian ] = "Cornice" ;
    Text [ portuguese_brazilian ] = "Molduras" ;
    Text [ portuguese ] = "Moldura" ;
    Text [ finnish ] = "Kehys" ;
    Text [ danish ] = "Ramme" ;
    Text [ french ] = "Cadre" ;
    Text [ swedish ] = "Ram" ;
    Text [ dutch ] = "Kader" ;
    Text [ spanish ] = "Marco" ;
    Text [ english_us ] = "Frame" ;
    Text[ chinese_simplified ] = "遺";
    Text[ russian ] = "冓擣";
    Text[ polish ] = "Ramka";
    Text[ japanese ] = "繩衝拸站";
    Text[ chinese_traditional ] = "文字方塊";
    Text[ arabic ] = "臢и";
    Text[ dutch ] = "Kader";
    Text[ chinese_simplified ] = "遺";
    Text[ greek ] = "凎麌蜤摐憼";
    Text[ korean ] = "Щ溯歜";
    Text[ turkish ] = "ネr蔒ve";
    Text[ language_user1 ] = " ";
};
String STR_REGION_DEFNAME
{
    Text = "Bereich" ;
    Text [ English ] = "section" ;
    Text [ norwegian ] = "section" ;
    Text [ italian ] = "Sezione" ;
    Text [ portuguese_brazilian ] = "se誽o" ;
    Text [ portuguese ] = "Sec誽o" ;
    Text [ finnish ] = "osa" ;
    Text [ danish ] = "Omr嶟e" ;
    Text [ french ] = "Section" ;
    Text [ swedish ] = "Omr嶟e" ;
    Text [ dutch ] = "Bereik" ;
    Text [ spanish ] = "Area" ;
    Text [ english_us ] = "Section" ;
    Text[ chinese_simplified ] = "⑹郖";
    Text[ russian ] = "挓錟嚦";
    Text[ polish ] = "Obszar";
    Text[ japanese ] = "";
    Text[ chinese_traditional ] = "區域";
    Text[ arabic ] = "馽х";
    Text[ dutch ] = "Bereik";
    Text[ chinese_simplified ] = "⑹郖";
    Text[ greek ] = "鱖鐋酃";
    Text[ korean ] = "掘羲";
    Text[ turkish ] = "B闤m";
    Text[ language_user1 ] = " ";
};
String STR_NUMRULE_DEFNAME
{
    Text = "Nummerierung" ;
    Text [ English ] = "Numbering" ;
    Text [ norwegian ] = "Numbering" ;
    Text [ italian ] = "Numerazione" ;
    Text [ portuguese_brazilian ] = "Numera缹" ;
    Text [ portuguese ] = "Numera誽o" ;
    Text [ finnish ] = "Numerointi" ;
    Text [ danish ] = "Nummerering" ;
    Text [ french ] = "Num廨otation" ;
    Text [ swedish ] = "Numrering" ;
    Text [ dutch ] = "Nummering" ;
    Text [ spanish ] = "Numeraci鏮" ;
    Text [ english_us ] = "Numbering" ;
    Text[ chinese_simplified ] = "晤瘍";
    Text[ russian ] = "勂懤譇灕";
    Text[ polish ] = "Numeracja";
    Text[ japanese ] = "t";
    Text[ chinese_traditional ] = "編號";
    Text[ arabic ] = "ш庍碃";
    Text[ dutch ] = "Nummering";
    Text[ chinese_simplified ] = "晤瘍";
    Text[ greek ] = "闌蛵懞鵰";
    Text[ korean ] = "廓 衙晦晦";
    Text[ turkish ] = "Numaralama";
    Text[ language_user1 ] = " ";
};
String STR_EMPTYPAGE
{
    Text = "leere Seite" ;
    Text [ English ] = "empty page" ;
    Text [ english_us ] = "blank page" ;
    Text [ portuguese_brazilian ] = "leere Seite" ;
    Text [ swedish ] = "tom sida" ;
    Text [ danish ] = "tom side" ;
    Text [ italian ] = "Pagina vuota" ;
    Text [ spanish ] = "P墔ina vac燰" ;
    Text [ french ] = "Page vide" ;
    Text [ dutch ] = "Lege pagina" ;
    Text [ portuguese ] = "p墔ina vazia" ;
    Text[ chinese_simplified ] = "諾啞珜醱";
    Text[ russian ] = "砓嚦 嚦譇膻攡";
    Text[ polish ] = "Pusta strona";
    Text[ japanese ] = "俓側";
    Text[ chinese_traditional ] = "空白頁面";
    Text[ arabic ] = "殎虭 晸桉";
    Text[ dutch ] = "Lege pagina";
    Text[ chinese_simplified ] = "諾啞珜醱";
    Text[ greek ] = "耪縶 鵴錈魟";
    Text[ korean ] = "綴 む檜雖";
    Text[ turkish ] = "Bo sayfa";
    Text[ language_user1 ] = " ";
};

QueryBox MSG_CLPBRD_CLEAR
{
    BUTTONS = WB_YES_NO ;
    DEFBUTTON = WB_DEF_NO ;
    MESSAGE = "Sie haben gr廲ere Datenmengen in die Zwischenablage gestellt.\nSoll der Inhalt der Zwischenablage anderen Applikationen zur Verfgung gestellt werden?" ;
    MESSAGE [ English ] = "Shall the Clipboard Content be available for other Applications?" ;
    MESSAGE [ norwegian ] = "Vil du at Innholdet p Utklippstavlen skal v熳e tilgjengelig til andre applikasjoner?" ;
    MESSAGE [ italian ] = "Negli appunti ci sono molti dati.\nRendere il contenuto degli appunti disponibile per altre applicazioni?" ;
    MESSAGE [ portuguese_brazilian ] = "O Contedo do Clipboard deve estar dispon癉el para outros Aplicativos?" ;
    MESSAGE [ portuguese ] = "Na 嫫ea de transfer瘽cia encontram-se grandes quantidades de dados.\nColocar o contedo da 嫫ea de transfer瘽cia  disposi誽o de outras aplica踥es?" ;
    MESSAGE [ english_us ] = "You have a large amount of data saved in the clipboard.\nShould the clipboard contents remain available for other applications?" ;
    MESSAGE [ finnish ] = "Pit鳵k leikep騽d鄚 sis鄟l霵 olla muiden sovellusten k銛tett銥iss?" ;
    MESSAGE [ danish ] = "Du har placeret en stor m熡gde data i udklipsholderen.\nSkal udklipholderens indhold v熳e tilg熡geligt for andre applikationer?" ;
    MESSAGE [ french ] = "Vous avez d廧os un grand nombre de donn嶪s dans le presse-papiers. \nSouhaitez-vous en conserver le contenu pour une utilisation ult廨ieure sous une autre application ?" ;
    MESSAGE [ swedish ] = "Du har stora datam鄚gder i urklippet.\nSkall inneh嶚let i urklippet g顤as tillg鄚gligt f顤 andra applikationer?" ;
    MESSAGE [ dutch ] = "U hebt een groot aantal gegevens op het Klembord geplaatst.\nWilt u dat de inhoud van het Klembord beschikbaar blijft voor andere toepassingen?" ;
    MESSAGE [ spanish ] = "Usted tiene muchos datos en el portapapeles.\n澳esea mantener disponible el contenido del portapapeles para otras aplicaciones?" ;
    MESSAGE[ chinese_simplified ] = "蠟蔚珨跺誕湮腔杅擂葩秶善熟泂啣﹝\n蠟砑猁蟻頖腔茼蚚最唗珩夔劂妏蚚涴跺杅擂鎘ˋ";
    MESSAGE[ language_user1 ] = " ";
    MESSAGE[ russian ] = "雞 勷臝鳧鳹 搿錪鷿 膰錒灚嚦碭 魡臇  摷醲謥 鍕懤縺.\n癩錛膼 錒 勷麧謷鳻鍷 摷醲譇 鍕懤縺 朢譔 儋嚦鵿蕻 儇 僽鵽儓 瀔鳹鍻樇鴇?";
    MESSAGE[ polish ] = "W schowku zosta造 umieszczone wi瘯sze iloci danych.\nCzy tre tych danych ma zosta udost瘼niona innym aplikacjom?";
    MESSAGE[ japanese ] = "誇羔葰獉巍斻獉B\n誇羔葰獉巍e戔杺媢側栩gp?";
    MESSAGE[ chinese_traditional ] = "您已經將一個較大的資料複製到剪貼簿。\n您想要讓其他的應用程序也能夠使用這個資料?";
    MESSAGE[ arabic ] = "摶 矠 俍 蜄簁 菙縼 蜠 ш簁鞁 楜 ш虰椵.\n槦 庍糨 箷 蒠戺簁 ш虰椵 庋 彶栳 忐縶в 襞栒";
    MESSAGE[ dutch ] = "U hebt een groot aantal gegevens op het Klembord geplaatst.\nWilt u dat de inhoud van het Klembord beschikbaar blijft voor andere toepassingen?";
    MESSAGE[ chinese_simplified ] = "蠟蔚珨跺誕湮腔杅擂葩秶善熟泂啣﹝\n蠟砑猁蟻頖腔茼蚚最唗珩夔劂妏蚚涴跺杅擂鎘ˋ";
    MESSAGE[ greek ] = "跪殦 摫歞賙濆鵴 懤蜡錝 摙氆檇 麧儌徾薋 黀 clipboard.\n楋殦 罅 謯鼁懤蜁樥 僸摜楻濇 鐐 謥齌毿懤臩 鐐 clipboard 蜒 塝錼 氀摙斀蜙;";
    MESSAGE[ korean ] = "贗董爾萄寰縑 盪濰脹 渠辨榆曖 等檜攪陛 氈蝗棲棻.\n贗董爾萄曖 頂辨擊 棻艇 擬辨Щ煎斜極縑憮 嶸褲炵絲 陴啖舒衛啊蝗棲梱?";
    MESSAGE[ turkish ] = "Panoya byk miktarda veri aktardnz.\nPano i蔒ri簨ni baka uygulamalarda kullanmak istiyor musunuz?";
};

QueryBox MSG_SAVE_HTML_QUERY
{
    BUTTONS = WB_YES_NO_CANCEL ;
    DEFBUTTON = WB_DEF_YES ;
    MESSAGE = "Die Umwandlung in das HTML-Format \nkann Informationsverlust verursachen. \nM鐼hten Sie das Dokument speichern?" ;
    MESSAGE [ English ] = "Conversion into HTML \nmay cause information loss. \nWould you like to save the document?" ;
    Message [ english_us ] = "Conversion into HTML format \nmay cause information loss. \nDo you want to save the document?" ;
    Message = "Die Umwandlung in das HTML-Format \nkann Informationsverlust verursachen. \nM鐼hten Sie das Dokument speichern?" ;
    Message [ italian ] = "La conversione nel formato HTML \npu causare perdita di informazioni \nSalvare il documento?" ;
    Message [ spanish ] = "La transformaci鏮 en el formato HTML \npuede causar la p廨dida de informaci鏮. \n澳esea guardar el documento?" ;
    Message [ french ] = "La conversion au format HTML\npeut engendrer une perte d'informations. \nSouhaitez-vous enregistrer le document ?" ;
    Message [ dutch ] = "De convertering naar het HTML-formaat \nkan verlies van gegevens veroorzaken. \nWilt u het document opslaan?" ;
    Message [ swedish ] = "Omvandling till HTML-format \nkan f顤orsaka informationsf顤lust.\nSkall dokumentet sparas?" ;
    Message [ danish ] = "Konvertering til HTML-format\nkan medf鷨e informationstab.\nVil du gemme dokumentet?" ;
    Message [ portuguese_brazilian ] = "Die Umwandlung in das HTML-Format \nkann Informationsverlust verursachen. \nM鐼hten Sie das Dokument speichern?" ;
    Message [ portuguese ] = "A convers緌 para o formato HTML pode \nprovocar perda de informa誽o. \nGuardar o documento?" ;
    Message[ chinese_simplified ] = "恅璃蛌遙傖 HTML 跡宒\n褫夔頗竘れ訧蹋囷囮﹝\n蠟猁湔攫涴跺恅璃鎘?";
    Message[ russian ] = "盷謥羻  鐕謽僗 HTML \n斁緪 瀔魤殥蠂  瀁蠈謥 鴈鐕謽僪鳷. \n 雞 羻蠂蠈 勷臝鳧鼏 襜 儋膧懤艜?";
    Message[ polish ] = "Konwersja na format HTML \nmo瞠 spowodowa utrat informacji. \nCzy chcesz zapisa dokument?";
    Message[ japanese ] = "HTML`躡n\\B\n?";
    Message[ chinese_traditional ] = "檔案轉換成 HTML 格式\n可能會引起資料損失。\n您要儲存這個檔案?";
    Message[ arabic ] = "ш庋糌 鑤 怀迿 HTML \n罾蛷 邊 簂砅 鑤 棰珌 稂 ш蜮撂蒯. \n槦 庍糨 俍 ш蒑怀狤";
    Message[ dutch ] = "De convertering naar het HTML-formaat \nkan verlies van gegevens veroorzaken. \nWilt u het document opslaan?";
    Message[ chinese_simplified ] = "恅璃蛌遙傖 HTML 跡宒\n褫夔頗竘れ訧蹋囷囮﹝\n蠟猁湔攫涴跺恅璃鎘?";
    Message[ greek ] = " 懤酃鐙瀔 鵴 斀壚 HTML \n斶瀎橀 罅 貘氋摠楻樥 摫錼毇 謻趡濼瀎澸. \n楋殦 罅 摫歞賙濆鵴醲 鐐 楯蜤暡;";
    Message[ korean ] = "HTML 憮衝戲煎 滲素 \n薑爾 槳褒曖 錳檣檜 腌棲棻. \n僥憮蒂 盪濰ж衛啊蝗棲梱?";
    Message[ turkish ] = "HTML formatna \nd霵m sonucunda veri kayb olabilir. \nBelgeyi kaydetmek istiyor musunuz?";
    Message[ language_user1 ] = " ";
};

String STR_ABSTRACT_TITLE
{
    Text = "Abstrakt : " ;
    Text [ English ] = "Summary : " ;
    Text [ portuguese ] = "Abstracto : " ;
    Text [ english_us ] = "Abstract: " ;
    Text [ portuguese_brazilian ] = "Abstrakt : " ;
    Text [ swedish ] = "Utdrag:  " ;
    Text [ danish ] = "Abstract : " ;
    Text [ italian ] = "Sunto: " ;
    Text [ spanish ] = "Extracto:  " ;
    Text [ french ] = "Synth鋊e :  " ;
    Text [ dutch ] = "Extract :   " ;
    Text[ chinese_simplified ] = "晡猁ㄩ ";
    Text[ language_user1 ] = " ";
    Text[ russian ] = "砎闃斁襝 :  ";
    Text[ polish ] = "Abstrakt :   ";
    Text[ japanese ] = "v : ";
    Text[ chinese_traditional ] = "摘要: ";
    Text[ arabic ] = "ш忯昲: ";
    Text[ dutch ] = "Extract :   ";
    Text[ chinese_simplified ] = "晡猁ㄩ ";
    Text[ greek ] = "Abstract: ";
    Text[ korean ] = "蹺鼻: ";
    Text[ turkish ] = "畤et: ";
};

String STR_FDLG_TEMPLATE_BUTTON
{
    Text = "Vorlage" ;
    Text [ English ] = "Template" ;
    Text [ english_us ] = "Style" ;
    Text [ portuguese_brazilian ] = "Vorlage" ;
    Text [ swedish ] = "Formatmall" ;
    Text [ danish ] = "Skabelon" ;
    Text [ italian ] = "Modello" ;
    Text [ spanish ] = "Plantilla" ;
    Text [ french ] = "Style" ;
    Text [ dutch ] = "Sjabloon" ;
    Text [ portuguese ] = "Estilo" ;
    Text[ chinese_simplified ] = "欴宒";
    Text[ russian ] = "嵑摠鍙";
    Text[ polish ] = "Szablon";
    Text[ japanese ] = "蹶杺痚";
    Text[ chinese_traditional ] = "樣式";
    Text[ arabic ] = "鳲";
    Text[ dutch ] = "Sjabloon";
    Text[ chinese_simplified ] = "欴宒";
    Text[ greek ] = "哢鏷豵";
    Text[ korean ] = "嶸⑽";
    Text[ turkish ] = "Bi蓾m";
    Text[ language_user1 ] = " ";
};

String STR_FDLG_TEMPLATE_NAME
{
    Text = "Aktuelle Vorlage: " ;
    Text [ English ] = "Current template: " ;
    Text [ english_us ] = "Current Style: " ;
    Text [ portuguese_brazilian ] = "Aktuelle Vorlage: " ;
    Text [ swedish ] = "Aktuell formatmall:  " ;
    Text [ danish ] = "Aktuel skabelon: " ;
    Text [ italian ] = "Modello corrente: " ;
    Text [ spanish ] = "Plantilla actual:  " ;
    Text [ french ] = "Style actif : " ;
    Text [ dutch ] = "Actuele sjabloon  " ;
    Text [ portuguese ] = "Modelo actual: " ;
    Text[ chinese_simplified ] = "絞ヶ腔欴宒ㄩ ";
    Text[ russian ] = "砱膧鴇 鸆摠鍙:  ";
    Text[ polish ] = "Aktualny szablon  ";
    Text[ japanese ] = "斻楎葨凰F ";
    Text[ chinese_traditional ] = "當前的樣式: ";
    Text[ arabic ] = "ш鳲 ш虰摿: ";
    Text[ dutch ] = "Actuele sjabloon  ";
    Text[ chinese_simplified ] = "絞ヶ腔欴宒ㄩ ";
    Text[ greek ] = "寁歃 貘鏷豵:  ";
    Text[ korean ] = "⑷營 蠱Ы葬お: ";
    Text[ turkish ] = "Yrrlkteki bi蓾m: ";
    Text[ language_user1 ] = " ";
};

String STR_PAGEOFFSET
{
    Text = "Seitennummer: " ;
    Text [ English ] = "Page number: " ;
    Text [ english_us ] = "Page number: " ;
    Text [ portuguese_brazilian ] = "Seitennummer: " ;
    Text [ swedish ] = "Sidnummer:  " ;
    Text [ danish ] = "Sidetal: " ;
    Text [ italian ] = "Numero di pagina: " ;
    Text [ spanish ] = "Nmero de p墔ina:  " ;
    Text [ french ] = "Num廨o de page : " ;
    Text [ dutch ] = "Paginanummer  " ;
    Text [ portuguese ] = "Nmero de p墔ina: " ;
    Text[ chinese_simplified ] = "珜鎢ㄩ ";
    Text[ russian ] = "侹懤 嚦譇膻籜:  ";
    Text[ polish ] = "Numer strony:  ";
    Text[ japanese ] = "俓側: ";
    Text[ chinese_traditional ] = "頁碼: ";
    Text[ arabic ] = "栻 ш殎虭: ";
    Text[ dutch ] = "Paginanummer  ";
    Text[ chinese_simplified ] = "珜鎢ㄩ ";
    Text[ greek ] = "闌氆檇 鵴錈魟: ";
    Text[ korean ] = "む檜雖 廓: ";
    Text[ turkish ] = "Sayfa numaras: ";
    Text[ language_user1 ] = " ";
};
String STR_PAGEBREAK
{
    Text = "Umbruch vor neuer Seite" ;
    Text [ English ] = "Break before new page" ;
    Text [ norwegian ] = "Skift f鷨 ny side" ;
    Text [ italian ] = "Interrompi prima della pagina nuova" ;
    Text [ portuguese_brazilian ] = "Interromper antes de nova p墔ina" ;
    Text [ portuguese ] = "Quebra antes de nova p墔ina" ;
    Text [ finnish ] = "V鄟i ennen uutta sivua" ;
    Text [ danish ] = "Skift f鷨 ny side" ;
    Text [ french ] = "Saut avant nouvelle page" ;
    Text [ swedish ] = "Bryt f顤e ny sida" ;
    Text [ dutch ] = "Einde voor nieuwe pagina" ;
    Text [ spanish ] = "Salto antes de p墔ina nueva" ;
    Text [ english_us ] = "Break before new page" ;
    Text[ chinese_simplified ] = "婓陔珨珜眳ヶ遙珜";
    Text[ russian ] = "冓趜 櫇謥 膼碭 嚦譇膻欈";
    Text[ polish ] = "Podzia przed now stron";
    Text[ japanese ] = "V卄葥毆O";
    Text[ chinese_traditional ] = "在新一頁之前換頁";
    Text[ arabic ] = "晸涫 瘏 ш殎虭 ш昑糨";
    Text[ dutch ] = "Einde voor nieuwe pagina";
    Text[ chinese_simplified ] = "婓陔珨珜眳ヶ遙珜";
    Text[ greek ] = "鍛錆蜛 貘澼 摫 縻 鵴錈魟";
    Text[ korean ] = "億 む檜雖 擅縑憮 醞欽";
    Text[ turkish ] = "Yeni sayfa 霵cesi kesme";
    Text[ language_user1 ] = " ";
};

String STR_REDLINE_UNKNOWN_AUTHOR
{
    Text = "unbekannt" ;
    Text [ ENGLISH ] = "unknown" ;
};