summaryrefslogtreecommitdiff
path: root/sfx2/source/appl/app.src
blob: a31d7a2efee946b05cedd5942a3382c091675dc6 (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
2971
2972
2973
2974
2975
2976
2977
2978
2979
2980
2981
2982
2983
2984
2985
2986
2987
2988
2989
2990
2991
2992
2993
2994
2995
2996
2997
2998
2999
3000
3001
3002
3003
3004
3005
3006
3007
3008
3009
3010
3011
3012
3013
3014
3015
3016
3017
3018
3019
3020
3021
3022
3023
3024
3025
3026
3027
3028
3029
3030
3031
3032
3033
3034
3035
3036
3037
3038
3039
3040
3041
3042
3043
3044
3045
3046
3047
3048
3049
3050
3051
3052
3053
3054
3055
3056
3057
3058
3059
3060
3061
3062
3063
3064
3065
3066
3067
3068
3069
3070
3071
3072
3073
3074
3075
3076
3077
3078
3079
3080
3081
3082
3083
3084
3085
3086
3087
3088
3089
3090
3091
3092
3093
3094
3095
3096
3097
3098
3099
3100
3101
3102
3103
3104
3105
3106
3107
3108
3109
3110
3111
3112
3113
3114
3115
3116
3117
3118
3119
3120
3121
3122
3123
3124
3125
3126
3127
3128
3129
3130
3131
3132
3133
3134
3135
3136
3137
3138
3139
3140
3141
3142
3143
3144
3145
3146
3147
3148
3149
3150
3151
3152
3153
3154
3155
3156
3157
3158
3159
3160
3161
3162
3163
3164
3165
3166
3167
3168
3169
3170
3171
3172
3173
3174
3175
3176
3177
3178
3179
3180
3181
3182
3183
3184
3185
3186
3187
3188
3189
3190
3191
3192
3193
3194
3195
3196
3197
3198
3199
3200
3201
3202
3203
3204
3205
3206
3207
3208
3209
3210
3211
3212
3213
3214
3215
3216
3217
3218
3219
3220
3221
3222
3223
3224
3225
3226
3227
3228
3229
3230
3231
3232
3233
3234
3235
3236
3237
3238
3239
3240
3241
3242
3243
3244
3245
3246
3247
3248
3249
3250
3251
3252
3253
3254
3255
3256
3257
3258
3259
3260
3261
3262
3263
3264
3265
3266
3267
3268
3269
3270
3271
3272
3273
3274
3275
3276
3277
3278
3279
3280
3281
3282
3283
3284
3285
3286
3287
3288
3289
3290
3291
3292
3293
3294
3295
3296
3297
3298
3299
3300
3301
3302
3303
3304
3305
3306
3307
3308
3309
3310
3311
3312
3313
3314
3315
3316
3317
3318
3319
3320
3321
3322
3323
3324
3325
3326
3327
3328
3329
3330
3331
3332
3333
3334
3335
3336
3337
3338
3339
3340
3341
3342
3343
3344
3345
3346
3347
3348
3349
3350
3351
3352
3353
3354
3355
3356
3357
3358
3359
3360
3361
3362
3363
3364
3365
3366
3367
3368
3369
3370
3371
3372
3373
3374
3375
3376
3377
3378
3379
3380
3381
3382
3383
3384
3385
3386
3387
3388
3389
3390
3391
3392
3393
3394
3395
3396
3397
3398
3399
3400
3401
3402
3403
3404
3405
3406
/*************************************************************************
 *
 *  $RCSfile: app.src,v $
 *
 *  $Revision: 1.1.1.1 $
 *
 *  last change: $Author: hr $ $Date: 2000-09-18 16:52:26 $
 *
 *  The Contents of this file are made available subject to the terms of
 *  either of the following licenses
 *
 *         - GNU Lesser General Public License Version 2.1
 *         - Sun Industry Standards Source License Version 1.1
 *
 *  Sun Microsystems Inc., October, 2000
 *
 *  GNU Lesser General Public License Version 2.1
 *  =============================================
 *  Copyright 2000 by Sun Microsystems, Inc.
 *  901 San Antonio Road, Palo Alto, CA 94303, USA
 *
 *  This library is free software; you can redistribute it and/or
 *  modify it under the terms of the GNU Lesser General Public
 *  License version 2.1, as published by the Free Software Foundation.
 *
 *  This library is distributed in the hope that it will be useful,
 *  but WITHOUT ANY WARRANTY; without even the implied warranty of
 *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
 *  Lesser General Public License for more details.
 *
 *  You should have received a copy of the GNU Lesser General Public
 *  License along with this library; if not, write to the Free Software
 *  Foundation, Inc., 59 Temple Place, Suite 330, Boston,
 *  MA  02111-1307  USA
 *
 *
 *  Sun Industry Standards Source License Version 1.1
 *  =================================================
 *  The contents of this file are subject to the Sun Industry Standards
 *  Source License Version 1.1 (the "License"); You may not use this file
 *  except in compliance with the License. You may obtain a copy of the
 *  License at http://www.openoffice.org/license.html.
 *
 *  Software provided under this License is provided on an "AS IS" basis,
 *  WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING,
 *  WITHOUT LIMITATION, WARRANTIES THAT THE SOFTWARE IS FREE OF DEFECTS,
 *  MERCHANTABLE, FIT FOR A PARTICULAR PURPOSE, OR NON-INFRINGING.
 *  See the License for the specific provisions governing your rights and
 *  obligations concerning the Software.
 *
 *  The Initial Developer of the Original Code is: Sun Microsystems, Inc.
 *
 *  Copyright: 2000 by Sun Microsystems, Inc.
 *
 *  All Rights Reserved.
 *
 *  Contributor(s): _______________________________________
 *
 *
 ************************************************************************/

 // include ------------------------------------------------------------------

#include "sfx.hrc"
#include "app.hrc"
#include "helpid.hrc"

InfoBox RID_DOCALREADYLOADED_DLG
{
    Message = "Das Dokument war bereits geladen und wurde aktiviert." ;
    Message [ ENGLISH ] = "Document was already open." ;
    Message [ norwegian ] = "Dokumentet er allerede pent." ;
    Message [ italian ] = "Documento gi aperto ed attivato." ;
    Message [ portuguese_brazilian ] = "O documento j est aberto." ;
    Message [ portuguese ] = "O documento j se encontra aberto e foi activado." ;
    Message [ finnish ] = "Asiakirja on jo avoinna." ;
    Message [ danish ] = "Dokumentet var allerede indlst og blev aktiveret." ;
    Message [ french ] = "Document dj charg et activ." ;
    Message [ swedish ] = "Dokumentet var redan laddat och har aktiverats." ;
    Message [ dutch ] = "Document is reeds geladen en geactiveerd." ;
    Message [ spanish ] = "El documento ya est cargado y activado." ;
    Message [ english_us ] = "Document already open." ;
    Message[ chinese_simplified ] = "Ѿװļڼ״̬";
    Message[ russian ] = "    .";
    Message[ polish ] = "Dokument zosta ju zaadowany i uaktywniony.";
    Message[ japanese ] = "޷Ă͂łɓǂݍ܂걸èނɂȂĂ܂B";
    Message[ chinese_traditional ] = "wg˸oɮרóBEAC";
    Message[ arabic ] = "     .";
    Message[ dutch ] = "Document is reeds geladen en geactiveerd.";
    Message[ chinese_simplified ] = "Ѿװļڼ״̬";
    Message[ greek ] = "      .";
    Message[ korean ] = " ̹ ֽϴ.";
    Message[ turkish ] = "Belge zaten ykl ve ak.";
    Message[ language_user1 ] = " ";
};

ErrorBox RID_CANTLOADDOC_DLG
{
    Message = "Das Dokument kann nicht geladen werden." ;
    Message [ ENGLISH ] = "Cannot open document." ;
    Message [ norwegian ] = "Kan ikke pne dokument." ;
    Message [ italian ] = "Impossibile aprire il documento." ;
    Message [ portuguese_brazilian ] = "No consigo abrir o documento." ;
    Message [ portuguese ] = "Impossvel abrir o documento." ;
    Message [ finnish ] = "Asiakirjaa ei voi avata." ;
    Message [ danish ] = "Det er ikke muligt at indlse dokumentet." ;
    Message [ french ] = "Impossible de charger le document." ;
    Message [ swedish ] = "Dokumentet kan inte laddas." ;
    Message [ dutch ] = "Het document kan niet worden geopend." ;
    Message [ spanish ] = "No es posible cargar el documento." ;
    Message [ english_us ] = "Cannot open document." ;
    Message[ chinese_simplified ] = "޷װĵ";
    Message[ russian ] = "   .";
    Message[ polish ] = "Dokument nie moe by zaadowany.";
    Message[ japanese ] = "޷Ă͓ǂݍ݂ł܂B";
    Message[ chinese_traditional ] = "Lk˸oɮסC";
    Message[ arabic ] = "   .";
    Message[ dutch ] = "Het document kan niet worden geopend.";
    Message[ chinese_simplified ] = "޷װĵ";
    Message[ greek ] = "      .";
    Message[ korean ] = "   ϴ.";
    Message[ turkish ] = "Belge yklenemiyor.";
    Message[ language_user1 ] = " ";
};

ErrorBox MSG_ERR_READ_CFG
{
    BUTTONS = WB_OK ;
    DEFBUTTON = WB_DEF_OK ;
    Message = "Fehler beim Lesen der Konfiguration." ;
    Message [ ENGLISH ] = "Error reading configuration file." ;
    Message [ norwegian ] = "Feil ved lesing av konfigurasjonsfil." ;
    Message [ italian ] = "Errore durante la lettura del file di configurazione." ;
    Message [ portuguese_brazilian ] = "Erro ao ler o arquivo de configurao." ;
    Message [ portuguese ] = "Erro durante a leitura do ficheiro de configurao." ;
    Message [ finnish ] = "Virhe asetustiedostoa luettaessa." ;
    Message [ danish ] = "Fejl under lsning af konfiguration." ;
    Message [ french ] = "Erreur de lecture de la configuration." ;
    Message [ swedish ] = "Fel vid lsning av konfiguration." ;
    Message [ dutch ] = "Fout bij het lezen van het configuratiebestand." ;
    Message [ spanish ] = "Error al leer el archivo de configuracin." ;
    Message [ english_us ] = "Error reading configuration file." ;
    Message[ chinese_simplified ] = "ڶȡļʱ";
    Message[ russian ] = "    .";
    Message[ polish ] = "Bd przy odczycie konfiguracji.";
    Message[ japanese ] = "ݒǂݎۂ̴װ";
    Message[ chinese_traditional ] = "bŪtmɮ׮ɵoͿ~C";
    Message[ arabic ] = "     .";
    Message[ dutch ] = "Fout bij het lezen van het configuratiebestand.";
    Message[ chinese_simplified ] = "ڶȡļʱ";
    Message[ greek ] = "      ";
    Message[ korean ] = "  б .";
    Message[ turkish ] = "Konfigrasyon dosyas okunurken hata olutu.";
    Message[ language_user1 ] = " ";
};

ErrorBox MSG_ERR_WRITE_CFG
{
    BUTTONS = WB_OK ;
    DEFBUTTON = WB_DEF_OK ;
    Message = "Fehler beim Schreiben der Konfiguration." ;
    Message [ ENGLISH ] = "Error writing configuration file." ;
    Message [ norwegian ] = "Feil ved skriving av konfigurasjonsfil." ;
    Message [ italian ] = "Errore durante la scrittura del file di configurazione." ;
    Message [ portuguese_brazilian ] = "Erro ao gravar o arquivo de configurao." ;
    Message [ portuguese ] = "Erro ao gravar o ficheiro de configurao." ;
    Message [ finnish ] = "Virhe asetustiedostoa kirjoitettaessa." ;
    Message [ danish ] = "Fejl under skrivning af konfiguration." ;
    Message [ french ] = "Erreur lors de l'criture du fichier de configuration." ;
    Message [ swedish ] = "Fel vid skrivning av konfigurationsfil." ;
    Message [ dutch ] = "Fout bij het schrijven van het configuratiebestand." ;
    Message [ spanish ] = "Error al escribir el archivo de configuracin." ;
    Message [ english_us ] = "Error writing configuration file." ;
    Message[ chinese_simplified ] = "дļʱ";
    Message[ russian ] = "   .";
    Message[ polish ] = "Bd przy zapisie konfiguracji.";
    Message[ japanese ] = "ݒ̓ǂݍ݂̍ۂ̴װ";
    Message[ chinese_traditional ] = "bgJtmɮ׮ɵoX~C";
    Message[ arabic ] = "     .";
    Message[ dutch ] = "Fout bij het schrijven van het configuratiebestand.";
    Message[ chinese_simplified ] = "дļʱ";
    Message[ greek ] = "      .";
    Message[ korean ] = "   .";
    Message[ turkish ] = "Konfigrasyon dosyasna yazlrken hata olutu.";
    Message[ language_user1 ] = " ";
};

ErrorBox MSG_ERR_OPEN_CFG
{
    BUTTONS = WB_OK ;
    DEFBUTTON = WB_DEF_OK ;
    Message = "Fehler beim ffnen der Konfiguration." ;
    Message [ ENGLISH ] = "Error opening configuration file." ;
    Message [ norwegian ] = "Feil ved pning av konfigurasjonsfil." ;
    Message [ italian ] = "Errore durante l'apertura del file di configurazione." ;
    Message [ portuguese_brazilian ] = "Erro ao abrir o arquivo de configurao." ;
    Message [ portuguese ] = "Erro ao abrir o ficheiro de configurao." ;
    Message [ finnish ] = "Virhe asetustiedostoa avattaessa." ;
    Message [ danish ] = "Fejl ved bning af konfiguration." ;
    Message [ french ] = "Erreur lors de l'ouverture du fichier de configuration." ;
    Message [ swedish ] = "Fel vid ppning av konfiguration." ;
    Message [ dutch ] = "Fout bij het openen van het configuratiebestand." ;
    Message [ spanish ] = "Error al abrir el archivo de configuracin." ;
    Message [ english_us ] = "Error opening configuration file." ;
    Message[ chinese_simplified ] = "ڴļʱ";
    Message[ russian ] = "    .";
    Message[ polish ] = "Bd przy otwieraniu konfiguracji.";
    Message[ japanese ] = "ݒJۂ̴װ";
    Message[ chinese_traditional ] = "b}ҰtmɮɵoͿ~C";
    Message[ arabic ] = "     .";
    Message[ dutch ] = "Fout bij het openen van het configuratiebestand.";
    Message[ chinese_simplified ] = "ڴļʱ";
    Message[ greek ] = "      .";
    Message[ korean ] = "   .";
    Message[ turkish ] = "Konfigrasyon dosyas alrken hata olutu.";
    Message[ language_user1 ] = " ";
};

ErrorBox MSG_ERR_FILETYPE_CFG
{
    BUTTONS = WB_OK ;
    DEFBUTTON = WB_DEF_OK ;
    Message = "Datei ist keine Konfigurationsdatei." ;
    Message [ ENGLISH ] = "File is not a configuration file." ;
    Message [ norwegian ] = "Filen er ikke en konfigurasjonsfil." ;
    Message [ italian ] = "Il file non  un file di configurazione." ;
    Message [ portuguese_brazilian ] = "O arquivo no  um arquivo de configurao." ;
    Message [ portuguese ] = "Este ficheiro no  um ficheiro de configurao." ;
    Message [ finnish ] = "Tiedosto ei ole asetustiedosto." ;
    Message [ danish ] = "Filen er ikke en konfigurationsfil." ;
    Message [ french ] = "Ce fichier n'est pas un fichier de configuration." ;
    Message [ swedish ] = "Filen r inte en konfigurationsfil." ;
    Message [ dutch ] = "Dit bestand is geen configuratiebestand." ;
    Message [ spanish ] = "El archivo no es un archivo de configuracin." ;
    Message [ english_us ] = "File is not a configuration file." ;
    Message[ chinese_simplified ] = "ļļ";
    Message[ russian ] = "    .";
    Message[ polish ] = "Ten plik nie jest plikiem konfiguracyjnym.";
    Message[ japanese ] = "̧ق͐ݒ̧قł͂܂B";
    Message[ chinese_traditional ] = "ɮפOtmɮסC";
    Message[ arabic ] = "    .";
    Message[ dutch ] = "Dit bestand is geen configuratiebestand.";
    Message[ chinese_simplified ] = "ļļ";
    Message[ greek ] = "     .";
    Message[ korean ] = "  ƴմϴ.";
    Message[ turkish ] = "Dosya, konfigrasyon dosyas deil.";
    Message[ language_user1 ] = " ";
};

ErrorBox MSG_ERR_VERSION_CFG
{
    BUTTONS = WB_OK ;
    DEFBUTTON = WB_DEF_OK ;
    Message = "Konfigurationsdatei hat falsche Version." ;
    Message [ ENGLISH ] = "Configuration file has wrong version." ;
    Message [ norwegian ] = "Konfigurasjonsfilen har feil versjon." ;
    Message [ italian ] = "Il file di configurazione  di versione errata." ;
    Message [ portuguese_brazilian ] = "Verso errada do arquivo de configurao." ;
    Message [ portuguese ] = "Verso errada do ficheiro de configurao." ;
    Message [ finnish ] = "Asetustiedoston versio on vr." ;
    Message [ danish ] = "Konfigurationsfilen indeholder forkert version." ;
    Message [ french ] = "Version incorrecte du fichier de configuration." ;
    Message [ swedish ] = "Konfigurationsfil har fel version." ;
    Message [ dutch ] = "Verkeerde versie van configuratiebestand." ;
    Message [ spanish ] = "El archivo de configuracin tiene una versin falsa." ;
    Message [ english_us ] = "Configuration file contains the wrong version." ;
    Message[ chinese_simplified ] = "ļ汾";
    Message[ russian ] = "    .";
    Message[ polish ] = "Plik konfiguracji zawiera nieprawidow wersj.";
    Message[ japanese ] = "ݒ̧ق Ȃްޮ݂łB";
    Message[ chinese_traditional ] = "tmɮת~C";
    Message[ arabic ] = "   .";
    Message[ dutch ] = "Verkeerde versie van configuratiebestand.";
    Message[ chinese_simplified ] = "ļ汾";
    Message[ greek ] = "    .";
    Message[ korean ] = "  ߸  ϰ ֽϴ.";
    Message[ turkish ] = "Konfigrasyon dosyasnn srm yanl.";
    Message[ language_user1 ] = " ";
};

ErrorBox MSG_ERR_WRITE_SBL
{
    BUTTONS = WB_OK ;
    DEFBUTTON = WB_DEF_OK ;
    Message = "Fehler beim Schreiben der BASIC-Bibliothek in\n'@'." ;
    Message [ ENGLISH ] = "Error writing BASIC library to file\n'@'." ;
    Message [ norwegian ] = "Feil oppstod ved skriving av BASIC bibliotek til fil\n'@'." ;
    Message [ italian ] = "Errore durante la scrittura della libreria BASIC nel file\n'@'." ;
    Message [ portuguese_brazilian ] = "Erro ao gravar a biblioteca BASICA no arquivo\n'@'." ;
    Message [ portuguese ] = "Erro ao gravar a biblioteca BASIC em \n'@'." ;
    Message [ finnish ] = "Virhe kirjoitettaessa BASIC-kirjastoa tiedostoon\n'@'." ;
    Message [ danish ] = "Fejl under skrivning af BASIC-biblioteket til \n'@'." ;
    Message [ french ] = "Erreur lors de l'criture de la bibliothque BASIC dans \n'@'." ;
    Message [ swedish ] = "Fel vid skrivning av BASIC-bibliotek i\n'@'." ;
    Message [ dutch ] = "Fout bij het schrijven van de BASIC-bibliotheek in\n'@'." ;
    Message [ spanish ] = "Error al escribir la biblioteca BASIC en\n'@'." ;
    Message [ english_us ] = "Error recording BASIC library in\n'@'." ;
    Message[ chinese_simplified ] = "BASIC д\n'@' ʱ";
    Message[ russian ] = "    BASIC  \n'@'.";
    Message[ polish ] = "Bd przy zapisie biblioteki BASIC w in\n'@'.";
    Message[ japanese ] = "\n'@'łBASIC ײ؂̓ǂݍ݂̍ۂ̴װ";
    Message[ chinese_traditional ] = "BASIC wbgJ\n'@' ɵoͿ~C";
    Message[ arabic ] = "     BASIC \n'@'.";
    Message[ dutch ] = "Fout bij het schrijven van de BASIC-bibliotheek in\n'@'.";
    Message[ chinese_simplified ] = "BASIC д\n'@' ʱ";
    Message[ greek ] = "      BASIC \n'@'.";
    Message[ korean ] = "BASIC ̺귯\n'@'   .";
    Message[ turkish ] = "BASIC kitapl, \n'@' iine kaydedilirken hata olutu.";
    Message[ language_user1 ] = " ";
};

ErrorBox MSG_SIGNAL
{
    BUTTONS = WB_YES_NO ;
    DEFBUTTON = WB_DEF_YES ;
    Message = "Es ist ein unerwarter Anwendungsfehler aufgetreten!\nSie knnen jetzt auf eigene Gefahr hin versuchen,\nalle offenen Dokumente zu sichern!\n\nSoll versucht werden, Ihre Arbeit zu sichern, bevor die Applikation beendet wird?" ;
    Message [ ENGLISH ] = "-" ;
    Message [ dutch ] = "Er is een onverwachte programmafout opgetreden!\nU kunt nu op eigen risico proberen,\nalle geopende documenten op te slaan!\n\nWilt u proberen uw werk op te slaan voordat de applicatie wordt beindigd?" ;
    Message [ swedish ] = "Ett ovntat programfel har uppsttt!\nDu kan nu p eget bevg frska\nspara alla ppna dokument!\n\nVill Du frska spara alla ndringar i dokumenten innan programmet avslutas?" ;
    Message [ danish ] = "Der opstod en uventet programfejl\nDu kan p eget ansvar prve p at\ngemme alle bne dokumenter!\n\nVil du prve p at gemme dine dokumenter, fr programmet afsluttes?" ;
    Message [ italian ] = "Nell'applicazione si  verificato un errore inatteso!\nAdesso potete provare, a proprio rischio, di\nsalvare tutti i documenti aperti!\n\nVolete che si provi a salvare il lavoro prima di chiudere l'applicazione?" ;
    Message [ spanish ] = "Se ha producido un error inesperado de la aplicacin!\nUsted puede ahora, a riesgo propio, intentar\nsalvar todos los documentos abiertos!\n\nDesea guardar su trabajo antes de cerrar la aplicacin?" ;
    Message [ french ] = "Erreur d'application inattendue !\nVous pouvez tout de mme essayer de \nsauvegarder tous les documents ouverts !\n\nSauvegarder votre travail avant de fermer l'application ?" ;
    Message [ english_us ] = "An unexpected program error has occurred.\n\nDo you want to try to save your changes in all nopen documents before the program is terminated?" ;
    Message [ portuguese ] = "Surgiu um erro de programa inesperado!\n\nPoder agora, sob o seu prprio risco, \ntentar guardar todos os documentos abertos.\nTentar guardar o seu trabalho antes que a aplicao seja fechada?" ;
    Message [ portuguese_brazilian ] = "Es ist ein unerwarter Anwendungsfehler aufgetreten!\nSie knnen jetzt auf eigene Gefahr hin versuchen,\nalle offenen Dokumente zu sichern!\n\nSoll versucht werden, Ihre Arbeit zu sichern, bevor die Applikation beendet wird?" ;
    Message[ chinese_simplified ] = "һij\nڿԳԱб򿪵ļ\nҪڹرӦó֮ǰеļ";
    Message[ russian ] = "   !\n      ,\n    !\n\n       ?";
    Message[ polish ] = "Wystpi nieoczekiwany bd w programie!\nNa wasn odpowiedzialno moesz sprbowa \nzapisa wszystkie otwarte dokumenty!\n\nCzy sprbowa zapisa twoj prac przed zamkniciem aplikacji?";
    Message[ japanese ] = "\\Ȃ۸ װ܂B\nؽ͂܂\nJĂ޷Ăׂ͂ĕۑĂ݂ĂB\n\nع݂IOɁAƒ޷ĂۑĂ݂܂H";
    Message[ chinese_traditional ] = "oͤF@ӷN~{~I\nz{biHիOsҦQ}ҪɮסI\nznboε{exsҦɮסH";
    Message[ arabic ] = "    !\n    ɡ   \n  !\n\n    ߡ   ޿";
    Message[ dutch ] = "Er is een onverwachte programmafout opgetreden!\nU kunt nu op eigen risico proberen,\nalle geopende documenten op te slaan!\n\nWilt u proberen uw werk op te slaan voordat de applicatie wordt beindigd?";
    Message[ chinese_simplified ] = "һij\nڿԳԱб򿪵ļ\nҪڹرӦó֮ǰеļ";
    Message[ greek ] = "    !\n\n    (   )          ;";
    Message[ korean ] = "ġ   α׷  ߻߽ϴ.\n\n       õ   ֽϴ.  α׷ ϱ  ۾   õ ðڽϱ?";
    Message[ turkish ] = "Beklenmeyen bir program hatas olutu!\nu an ak olan tm belgeleri\nkaydetmeyi deneyebilirsiniz!\n\nUygulama kapatlmadan nce belgeleriniz kaydedilmeye allsn m?";
    Message[ language_user1 ] = " ";
};

Resource SID_UNKNOWN
{
    String 1 "-" ;
};

Resource BMP_SFX_COLOR
{
    ExtraData =
    {
        SID_NEWDOC;             // 043
        SID_OPENDOC;            // 044
        SID_CLOSEDOC;           // 045
        SID_RELOAD;             // 046
        SID_SAVEASDOC;          // 047
        SID_PRINTDOC;           // 051
        SID_SETUPPRINTER;       // 053
        SID_QUITAPP;            // 054
        SID_UNDO;               // 055
        SID_REDO;               // 056
        SID_REPEAT;             // 057
        SID_CUT;                // 058
        SID_COPY;               // 059
        SID_PASTE;              // 060
        SID_DELETE;             // 061
        SID_SELECTALL;          // 062
        SID_SAVEDOC;            // 063 vormals 046
        SID_EXITANDRETURN;      // 064 vormals 054
        SID_RECORDMACRO;        // 095
        SID_EDITMACRO;          // 096
        SID_HELPMENU;           // 098
        SID_CONFIG;             // 123
        SID_CONFIGTOOLBOX;      // 124
        0;
    };
    Bitmap BMP_SFX_SMALL { File = "sco.bmp" ; };
    Bitmap BMP_SFX_LARGE { File = "lco.bmp" ; };
};

Resource BMP_SFX_MONO
{
    ExtraData =
    {
        SID_NEWDOC;             // 043
        SID_OPENDOC;            // 044
        SID_CLOSEDOC;           // 045
        SID_RELOAD;             // 046
        SID_SAVEASDOC;          // 047
        SID_PRINTDOC;           // 051
        SID_SETUPPRINTER;       // 053
        SID_QUITAPP;            // 054
        SID_UNDO;               // 055
        SID_REDO;               // 056
        SID_REPEAT;             // 057
        SID_CUT;                // 058
        SID_COPY;               // 059
        SID_PASTE;              // 060
        SID_DELETE;             // 061
        SID_SELECTALL;          // 062
        SID_SAVEDOC;            // 063 vormals 046
        SID_EXITANDRETURN;      // 064 vormals 054
        SID_RECORDMACRO;        // 095
        SID_EDITMACRO;          // 096
        SID_HELPMENU;           // 098
        SID_CONFIG;             // 123
        SID_CONFIGTOOLBOX;      // 124
        0;
    };
    Bitmap BMP_SFX_SMALL { File = "smo.bmp" ; };
    Bitmap BMP_SFX_LARGE { File = "lmo.bmp" ; };
};

WarningBox STR_RECOVER_PREPARED
{
    Message = "Es ist ein nicht behebbarer Fehler aufgetreten.\n\nAlle modifizierten Dateien wurden jedoch\ngesichert und knnen voraussichtlich beim nchsten\nProgrammstart wiederhergestellt werden." ;
    Message [ ENGLISH ] = "An unrecoverable error has occured.\n\nAll modified files are saved and can\nprobably be recovered on application restart." ;
    Message [ portuguese ] = "Surgiu um erro irrecupervel. Contudo, todos os ficheiros \nmodificados foram guardados e podero provavelmente \nser recuperados ao reiniciar o programa." ;
    Message [ english_us ] = "An unrecoverable error has occurred.\n\nAll modified files have been saved and can\nprobably be recovered at program restart." ;
    Message [ portuguese_brazilian ] = "Es ist ein nicht behebbarer Fehler aufgetreten.\n\nAlle modifizierten Dateien wurden jedoch\ngesichert und knnen voraussichtlich beim nchsten\nProgrammstart wiederhergestellt werden." ;
    Message [ swedish ] = "Ett icke reparerbart fel har upptrtt.\n\nAlla ndrade filer sparades\noch kan frmodligen terupprttas\nvid nsta programstart." ;
    Message [ danish ] = "Der opstod en irreparabel fejl.\n\nAlle ndrede filer er dog\nblevet gemt og kan sandsynligvis gendannes\nved nste programstart." ;
    Message [ italian ] = "Si  verificato un errore irrimediabile.\n\nTutti i file modificati sono stati \nsalvati e probabilmente verranno recuperati \nal prossimo avvio del programma." ;
    Message [ spanish ] = "Ha ocurrido un error irreparable.\n\nSin embargo se guardaron todos los cambios realizados\nen los archivos y quizs podrn recuperarse\nal iniciar de nuevo el programa." ;
    Message [ french ] = "Une erreur fatale est survenue.\n\nTous les fichiers dits ont t sauvegards\net devraient tre restaurs au\nredmarrage du programme." ;
    Message [ dutch ] = "Er is een niet-corrigeerbare fout opgetreden.\n\nAlle gemodificeerde bestanden werden echter\nopgeslagen en kunnen waarschijnlijk bij de volgende\nprogrammastart opnieuw gemaakt worden." ;
    Message[ chinese_simplified ] = "ǷdzǸIJһ޷ųĴ\nղ޸ĹļѾ档\nһʱܿ»ָЩļ";
    Message[ russian ] = "  .\n\n    \n      \n .";
    Message[ polish ] = "Wystpi nieodwracalny bd.\n\nWszystkie zmodyfikowane pliki zostay jednak\nzabezpieczone i zostan prawdopodobnie przywrcone przy nastpnym rozpoczciu programu.\n.";
    Message[ japanese ] = "łȂװ܂B\n\nύX̧قׂ̂ĂۑĂ܂\n۸тJnۂɂ͕͂łB";
    Message[ chinese_traditional ] = "uOD`pMzާ@޵oF@ӵLkư~C\nzeקLɮפwgxsC\nbU@Ұʵ{ɫܥi୫s_oɮסC";
    Message[ arabic ] = "    .\n\n      ǡ \n    \n  .";
    Message[ dutch ] = "Er is een niet-corrigeerbare fout opgetreden.\n\nAlle gemodificeerde bestanden werden echter\nopgeslagen en kunnen waarschijnlijk bij de volgende\nprogrammastart opnieuw gemaakt worden.";
    Message[ chinese_simplified ] = "ǷdzǸIJһ޷ųĴ\nղ޸ĹļѾ档\nһʱܿ»ָЩļ";
    Message[ greek ] = "  .\n\n      \n          \n  .";
    Message[ korean ] = " Ұ  ߻߽ϴ.\n\n׷   \nǾǷ Ƹ  \nα׷      Դϴ.";
    Message[ turkish ] = "Dzeltilemeyen bir hata olutu.\n\nDeitirilen tm dosyalar\nkaydedildi ve muhtemelen uygulama yeniden balatldnda\nkurtarlabilecek.";
    Message[ language_user1 ] = " ";
};

WarningBox RID_WARN_POST_MAILTO
{
    BUTTONS = WB_OK_CANCEL ;
    DEFBUTTON = WB_DEF_OK ;
    Message = "Ein Formular soll per E-Mail versendet werden.\nDadurch wird dem Empfnger Ihre E-Mail-Adresse bekannt." ;
    Message [ english ] = "A form is to be posted by email.\nThe receiver will get your email-address." ;
    Message [ portuguese ] = "O formulrio ser enviado por e-mail.\nO seu endereo electrnico ser fornecido ao destinatrio." ;
    Message [ english_us ] = "A form is to be sent by e-mail.\nThis means that the receiver will get to see your e-mail address." ;
    Message [ portuguese_brazilian ] = "Ein Formular soll per E-Mail versendet werden.\nDadurch wird dem Empfnger Ihre E-Mail-Adresse bekannt." ;
    Message [ swedish ] = "Ett formulr skall skickas per e-post.\nDrigenom fr mottagaren reda p Din e-postadress." ;
    Message [ danish ] = "Du vil sende en formular via e-mail.\nBemrk at modtageren herved fr din e-mail-adresse." ;
    Message [ italian ] = "Un formulario deve essere inviato via eMail.\nIn tal modo il destinatario verr a conoscenza dell'indirizzo eMail dell'utente." ;
    Message [ spanish ] = "Se debe enviar un formulario por correo electrnico.\nCon ello se dar a conocer al destinatario su direccin electrnica." ;
    Message [ french ] = "Vous voulez envoyer un formulaire par e-mail.\nVous communiquerez ainsi votre adresse e-mail au destinataire." ;
    Message [ dutch ] = "Een formulier moet per e-mail gestuurd worden.\nDaardoor wordt uw e-mail adres door de ontvanger bekend." ;
    Message[ chinese_simplified ] = "Ӧýʼķ\nĵʼַҲʹݸռˡ";
    Message[ russian ] = "     .\n      . .";
    Message[ polish ] = "Formularz ma zosta wysany jako e-mail.\nPrzez to adresat otrzyma twj adres e-mail.";
    Message[ japanese ] = "pE-mailőM܂B\nʂĎM҂հްE-mailڽm邱ƂɂȂ܂B";
    Message[ chinese_traditional ] = "ӳzLqllHoC\no˱zqlla}]NǻF̡C";
    Message[ arabic ] = "    .\n         .";
    Message[ dutch ] = "Een formulier moet per e-mail gestuurd worden.\nDaardoor wordt uw e-mail adres door de ontvanger bekend.";
    Message[ chinese_simplified ] = "Ӧýʼķ\nĵʼַҲʹݸռˡ";
    Message[ greek ] = "      e-mail.\n           ";
    Message[ korean ] = " ڿ  Դϴ .\n  ޴   ڿ ּҰ   Դϴ.";
    Message[ turkish ] = "E-posta ile form gnderilecek.\nBu ekilde alc e-posta adresinizi de grecektir.";
    Message[ language_user1 ] = " ";
};

String STR_RECOVER_TITLE
{
    Text = "Datei-Wiederherstellung" ;
    Text [ ENGLISH ] = "File Recovery" ;
    Text [ english_us ] = "File Recovery" ;
    Text [ portuguese_brazilian ] = "Datei-Wiederherstellung" ;
    Text [ swedish ] = "Filterstllande" ;
    Text [ danish ] = "Fil-gendannelse" ;
    Text [ italian ] = "Recupero file" ;
    Text [ spanish ] = "Recuperar archivo" ;
    Text [ french ] = "Restauration de fichier" ;
    Text [ dutch ] = "Herstel bestand" ;
    Text [ portuguese ] = "Restaurar ficheiro" ;
    Text[ chinese_simplified ] = "޸ļ";
    Text[ russian ] = " ";
    Text[ polish ] = "Odtwarzanie plikw";
    Text[ japanese ] = "̧ق̕";
    Text[ chinese_traditional ] = "״_ɮ";
    Text[ arabic ] = " ";
    Text[ dutch ] = "Herstel bestand";
    Text[ chinese_simplified ] = "޸ļ";
    Text[ greek ] = " ";
    Text[ korean ] = " ";
    Text[ turkish ] = "Dosya kurtarma";
    Text[ language_user1 ] = " ";
};

String STR_RECOVER_QUERY
{
    Text = "Soll die Datei \"$1\" wiederhergestellt werden?" ;
    Text [ ENGLISH ] = "Recover file $1?" ;
    Text [ portuguese ] = "Deseja restaurar o ficheiro \"$1\"?" ;
    Text [ english_us ] = "Should the file \"$1\" be restored?" ;
    Text [ portuguese_brazilian ] = "Soll die Datei \"$1\" wiederhergestellt werden?" ;
    Text [ swedish ] = "Skall filen \"$1\" terskapas?" ;
    Text [ danish ] = "Skal filen \"$1\" gendannes?" ;
    Text [ italian ] = "Recuperare il file \"$1\"?" ;
    Text [ spanish ] = "Desea restaurar el archivo \"$1\"?" ;
    Text [ french ] = "Le fichier \"$1\" doit-il tre restaur ?" ;
    Text [ dutch ] = "Wilt u dat het bestand \"$1\" hersteld wordt?" ;
    Text[ chinese_simplified ] = "Ҫ޸ļ \"$1\" ";
    Text[ russian ] = "  \"$1\"?";
    Text[ polish ] = "Odtworzy plik \"$1\"?";
    Text[ japanese ] = "̧\"$1\"𕜌܂H";
    Text[ chinese_traditional ] = "zn״_oɮ";
    Text[ arabic ] = "    \"$1\"";
    Text[ dutch ] = "Wilt u dat het bestand \"$1\" hersteld wordt?";
    Text[ chinese_simplified ] = "Ҫ޸ļ \"$1\" ";
    Text[ greek ] = "     \"$1\";";
    Text[ korean ] = " \"$1\" ؾ մϱ?";
    Text[ turkish ] = "\"$1\" dosyas geri getirilsin mi?";
    Text[ language_user1 ] = " ";
};

String GID_INTERN
{
    Text = "Intern" ;
    Text [ ENGLISH ] = "Internal" ;
    Text [ norwegian ] = "Intern" ;
    Text [ italian ] = "Interno" ;
    Text [ portuguese_brazilian ] = "Aplicativo" ;
    Text [ portuguese ] = "Interno" ;
    Text [ finnish ] = "Sisinen" ;
    Text [ danish ] = "Intern" ;
    Text [ french ] = "Interne" ;
    Text [ swedish ] = "Internt" ;
    Text [ dutch ] = "Intern" ;
    Text [ spanish ] = "Interno" ;
    Text [ english_us ] = "Internal" ;
    Text[ chinese_simplified ] = "ڲ";
    Text[ russian ] = "";
    Text[ polish ] = "Wewntrzny";
    Text[ japanese ] = "";
    Text[ chinese_traditional ] = "";
    Text[ arabic ] = "";
    Text[ dutch ] = "Intern";
    Text[ chinese_simplified ] = "ڲ";
    Text[ greek ] = "";
    Text[ korean ] = "";
    Text[ turkish ] = "";
    Text[ language_user1 ] = " ";
};

String GID_APPLICATION
{
    Text = "Applikation" ;
    Text [ ENGLISH ] = "Application" ;
    Text [ norwegian ] = "Applikasjon" ;
    Text [ italian ] = "Applicazione" ;
    Text [ portuguese_brazilian ] = "Interna" ;
    Text [ portuguese ] = "Aplicao" ;
    Text [ finnish ] = "Sovellus" ;
    Text [ danish ] = "Applikation" ;
    Text [ french ] = "Application" ;
    Text [ swedish ] = "Tillmpning" ;
    Text [ dutch ] = "Applicatie" ;
    Text [ spanish ] = "Aplicacin" ;
    Text [ english_us ] = "Application" ;
    Text[ chinese_simplified ] = "Ӧó";
    Text[ russian ] = "";
    Text[ polish ] = "Aplikacja";
    Text[ japanese ] = "ع";
    Text[ chinese_traditional ] = "ε{";
    Text[ arabic ] = "";
    Text[ dutch ] = "Applicatie";
    Text[ chinese_simplified ] = "Ӧó";
    Text[ greek ] = "";
    Text[ korean ] = "α׷";
    Text[ turkish ] = "Uygulama";
    Text[ language_user1 ] = " ";
};

String GID_VIEW
{
    Text = "Ansicht" ;
    Text [ ENGLISH ] = "View" ;
    Text [ norwegian ] = "View" ;
    Text [ italian ] = "Visualizza" ;
    Text [ portuguese_brazilian ] = "Ver" ;
    Text [ portuguese ] = "Visualizar" ;
    Text [ finnish ] = "Nyt" ;
    Text [ danish ] = "Vis" ;
    Text [ french ] = "Affichage" ;
    Text [ swedish ] = "Vy" ;
    Text [ dutch ] = "Beeld" ;
    Text [ spanish ] = "Ver" ;
    Text [ english_us ] = "View" ;
    Text[ chinese_simplified ] = "ͼ";
    Text[ russian ] = "";
    Text[ polish ] = "Widok";
    Text[ japanese ] = "\\";
    Text[ chinese_traditional ] = "˵";
    Text[ arabic ] = "";
    Text[ dutch ] = "Beeld";
    Text[ chinese_simplified ] = "ͼ";
    Text[ greek ] = "";
    Text[ korean ] = "";
    Text[ turkish ] = "Grnm";
    Text[ language_user1 ] = " ";
};

String GID_DOCUMENT
{
    Text = "Dokumente" ;
    Text [ ENGLISH ] = "Documents" ;
    Text [ norwegian ] = "Documents" ;
    Text [ italian ] = "Documenti" ;
    Text [ portuguese_brazilian ] = "Documentos" ;
    Text [ portuguese ] = "Documentos" ;
    Text [ finnish ] = "Asiakirjat" ;
    Text [ danish ] = "Dokumenter" ;
    Text [ french ] = "Documents" ;
    Text [ swedish ] = "Dokument" ;
    Text [ dutch ] = "Documenten" ;
    Text [ spanish ] = "Documentos" ;
    Text [ english_us ] = "Documents" ;
    Text[ chinese_simplified ] = "ĵ";
    Text[ russian ] = "";
    Text[ polish ] = "Dokumenty";
    Text[ japanese ] = "޷";
    Text[ chinese_traditional ] = "";
    Text[ arabic ] = "";
    Text[ dutch ] = "Documenten";
    Text[ chinese_simplified ] = "ĵ";
    Text[ greek ] = "";
    Text[ korean ] = "";
    Text[ turkish ] = "Belge";
    Text[ language_user1 ] = " ";
};

String GID_EDIT
{
    Text = "Bearbeiten" ;
    Text [ ENGLISH ] = "Editing" ;
    Text [ norwegian ] = "Redigering" ;
    Text [ italian ] = "Modifica" ;
    Text [ portuguese_brazilian ] = "Editando" ;
    Text [ portuguese ] = "Editar" ;
    Text [ finnish ] = "Muokkaus" ;
    Text [ danish ] = "Rediger" ;
    Text [ french ] = "Edition" ;
    Text [ swedish ] = "Redigera" ;
    Text [ dutch ] = "Bewerken" ;
    Text [ spanish ] = "Editar" ;
    Text [ english_us ] = "Edit" ;
    Text[ chinese_simplified ] = "༭";
    Text[ russian ] = "";
    Text[ polish ] = "Edytuj";
    Text[ japanese ] = "ҏW";
    Text[ chinese_traditional ] = "s";
    Text[ arabic ] = "";
    Text[ dutch ] = "Bewerken";
    Text[ chinese_simplified ] = "༭";
    Text[ greek ] = "";
    Text[ korean ] = "";
    Text[ turkish ] = "Dzenle";
    Text[ language_user1 ] = " ";
};

String GID_MACRO
{
    Text = "BASIC" ;
    Text [ ENGLISH ] = "BASIC" ;
    Text [ english_us ] = "BASIC" ;
    Text [ italian ] = "BASIC" ;
    Text [ spanish ] = "BASIC" ;
    Text [ french ] = "BASIC" ;
    Text [ dutch ] = "BASIC" ;
    Text [ swedish ] = "BASIC" ;
    Text [ danish ] = "BASIC" ;
    Text [ portuguese ] = "BASIC" ;
    Text [ portuguese_brazilian ] = "BASIC" ;
    Text[ chinese_simplified ] = "BASIC";
    Text[ russian ] = "BASIC";
    Text[ polish ] = "BASIC";
    Text[ japanese ] = "BASIC";
    Text[ chinese_traditional ] = "BASIC";
    Text[ arabic ] = "BASIC";
    Text[ dutch ] = "BASIC";
    Text[ chinese_simplified ] = "BASIC";
    Text[ greek ] = "BASIC";
    Text[ korean ] = "BASIC";
    Text[ turkish ] = "BASIC";
    Text[ language_user1 ] = " ";
};

String GID_OPTIONS
{
    Text = "Extras" ;
    Text [ ENGLISH ] = "Options" ;
    Text [ norwegian ] = "Options" ;
    Text [ italian ] = "Varie" ;
    Text [ portuguese_brazilian ] = "Opes" ;
    Text [ portuguese ] = "Ferramentas" ;
    Text [ finnish ] = "Mritykset" ;
    Text [ danish ] = "Funktioner" ;
    Text [ french ] = "Options" ;
    Text [ swedish ] = "Verktyg" ;
    Text [ dutch ] = "Extra" ;
    Text [ spanish ] = "Opciones" ;
    Text [ english_us ] = "Options" ;
    Text[ chinese_simplified ] = "";
    Text[ russian ] = "";
    Text[ polish ] = "Narzdzia";
    Text[ japanese ] = "ڍאݒ";
    Text[ chinese_traditional ] = "䥦";
    Text[ arabic ] = "";
    Text[ dutch ] = "Extra";
    Text[ chinese_simplified ] = "";
    Text[ greek ] = "";
    Text[ korean ] = "ɼ";
    Text[ turkish ] = "Aralar";
    Text[ language_user1 ] = " ";
};

String GID_MATH
{
    Text = "Math" ;
    Text [ ENGLISH ] = "Formula" ;
    Text [ norwegian ] = "Formel" ;
    Text [ italian ] = "Math" ;
    Text [ portuguese_brazilian ] = "Frmula" ;
    Text [ portuguese ] = "Math" ;
    Text [ finnish ] = "Kaava" ;
    Text [ danish ] = "Math" ;
    Text [ french ] = "Formule" ;
    Text [ swedish ] = "Math" ;
    Text [ dutch ] = "Math" ;
    Text [ spanish ] = "Math" ;
    Text [ english_us ] = "Math" ;
    Text[ chinese_simplified ] = "ѧ";
    Text[ russian ] = "Math";
    Text[ polish ] = "Math";
    Text[ japanese ] = "w";
    Text[ chinese_traditional ] = "ƾ";
    Text[ arabic ] = "Math";
    Text[ dutch ] = "Math";
    Text[ chinese_simplified ] = "ѧ";
    Text[ greek ] = "Math";
    Text[ korean ] = "";
    Text[ turkish ] = "Math";
    Text[ language_user1 ] = " ";
};

String GID_NAVIGATOR
{
    Text = "Navigieren" ;
    Text [ english ] = "Navigator" ;
    Text [ english_us ] = "Navigate" ;
    Text [ italian ] = "Naviga" ;
    Text [ spanish ] = "Navegar" ;
    Text [ french ] = "Navigation" ;
    Text [ dutch ] = "Navigeren" ;
    Text [ swedish ] = "Navigera" ;
    Text [ danish ] = "Naviger" ;
    Text [ portuguese ] = "Navegar" ;
    Text [ portuguese_brazilian ] = "Navigieren" ;
    Text[ chinese_simplified ] = "";
    Text[ russian ] = "";
    Text[ polish ] = "Nawigacja";
    Text[ japanese ] = "޹ް";
    Text[ chinese_traditional ] = "s";
    Text[ arabic ] = "";
    Text[ dutch ] = "Navigeren";
    Text[ chinese_simplified ] = "";
    Text[ greek ] = "";
    Text[ korean ] = "Ž";
    Text[ turkish ] = "Dola";
    Text[ language_user1 ] = " ";
};

String GID_INSERT
{
    Text = "Einfgen" ;
    Text [ english ] = "Insert" ;
    Text [ dutch ] = "Invoegen" ;
    Text [ english_us ] = "Insert" ;
    Text [ italian ] = "Inserisci" ;
    Text [ spanish ] = "Insertar" ;
    Text [ french ] = "Insrer" ;
    Text [ swedish ] = "Infoga" ;
    Text [ danish ] = "Indst" ;
    Text [ portuguese ] = "Inserir" ;
    Text [ portuguese_brazilian ] = "Einfgen" ;
    Text[ chinese_simplified ] = "";
    Text[ russian ] = "";
    Text[ polish ] = "Wstaw";
    Text[ japanese ] = "}";
    Text[ chinese_traditional ] = "J";
    Text[ arabic ] = "";
    Text[ dutch ] = "Invoegen";
    Text[ chinese_simplified ] = "";
    Text[ greek ] = "";
    Text[ korean ] = "";
    Text[ turkish ] = "Ekle";
    Text[ language_user1 ] = " ";
};

String GID_FORMAT
{
    Text = "Format" ;
    Text [ english ] = "Format" ;
    Text [ dutch ] = "Formaat" ;
    Text [ english_us ] = "Format" ;
    Text [ italian ] = "Formato" ;
    Text [ spanish ] = "Formato" ;
    Text [ french ] = "Format" ;
    Text [ swedish ] = "Format" ;
    Text [ danish ] = "Format" ;
    Text [ portuguese ] = "Formato" ;
    Text [ portuguese_brazilian ] = "Format" ;
    Text[ chinese_simplified ] = "ʽ";
    Text[ russian ] = "";
    Text[ polish ] = "Format";
    Text[ japanese ] = "";
    Text[ chinese_traditional ] = "榡";
    Text[ arabic ] = "";
    Text[ dutch ] = "Formaat";
    Text[ chinese_simplified ] = "ʽ";
    Text[ greek ] = "";
    Text[ korean ] = "";
    Text[ turkish ] = "Format";
    Text[ language_user1 ] = " ";
};

String GID_TEMPLATE
{
    Text = "Vorlagen" ;
    Text [ english ] = "Template" ;
    Text [ english_us ] = "Templates" ;
    Text [ italian ] = "Modelli" ;
    Text [ spanish ] = "Plantillas" ;
    Text [ french ] = "Modles" ;
    Text [ dutch ] = "Sjablonen" ;
    Text [ swedish ] = "Mallar" ;
    Text [ danish ] = "Skabeloner" ;
    Text [ portuguese ] = "Modelos" ;
    Text [ portuguese_brazilian ] = "Vorlagen" ;
    Text[ chinese_simplified ] = "ʽ";
    Text[ russian ] = "";
    Text[ polish ] = "Szablony";
    Text[ japanese ] = "ڰ";
    Text[ chinese_traditional ] = "˦";
    Text[ arabic ] = "";
    Text[ dutch ] = "Sjablonen";
    Text[ chinese_simplified ] = "ʽ";
    Text[ greek ] = "";
    Text[ korean ] = "øƮ";
    Text[ turkish ] = "ablon";
    Text[ language_user1 ] = " ";
};

String GID_TEXT
{
    Text = "Text" ;
    Text [ english ] = "Text" ;
    Text [ english_us ] = "Text" ;
    Text [ italian ] = "Testo" ;
    Text [ spanish ] = "Texto" ;
    Text [ french ] = "Texte" ;
    Text [ dutch ] = "Tekst" ;
    Text [ swedish ] = "Text" ;
    Text [ danish ] = "Tekst" ;
    Text [ portuguese ] = "Texto" ;
    Text [ portuguese_brazilian ] = "Text" ;
    Text[ chinese_simplified ] = "";
    Text[ russian ] = "";
    Text[ polish ] = "Tekst";
    Text[ japanese ] = "÷";
    Text[ chinese_traditional ] = "r";
    Text[ arabic ] = "";
    Text[ dutch ] = "Tekst";
    Text[ chinese_simplified ] = "";
    Text[ greek ] = "";
    Text[ korean ] = "ؽƮ";
    Text[ turkish ] = "Metin";
    Text[ language_user1 ] = " ";
};

String GID_FRAME
{
    Text = "Rahmen" ;
    Text [ english ] = "Frame" ;
    Text [ dutch ] = "Kader" ;
    Text [ english_us ] = "Frame" ;
    Text [ italian ] = "Cornice" ;
    Text [ spanish ] = "Marco" ;
    Text [ french ] = "Cadre" ;
    Text [ swedish ] = "Ram" ;
    Text [ danish ] = "Ramme" ;
    Text [ portuguese ] = "Moldura" ;
    Text [ portuguese_brazilian ] = "Rahmen" ;
    Text[ chinese_simplified ] = "";
    Text[ russian ] = "";
    Text[ polish ] = "Ramka";
    Text[ japanese ] = "g";
    Text[ chinese_traditional ] = "T";
    Text[ arabic ] = "";
    Text[ dutch ] = "Kader";
    Text[ chinese_simplified ] = "";
    Text[ greek ] = "";
    Text[ korean ] = "";
    Text[ turkish ] = "ereve";
    Text[ language_user1 ] = " ";
};

String GID_GRAPHIC
{
    Text = "Grafik" ;
    Text [ english ] = "Graphic" ;
    Text [ english_us ] = "Graphic" ;
    Text [ italian ] = "Immagine" ;
    Text [ spanish ] = "Imagen" ;
    Text [ french ] = "Image" ;
    Text [ dutch ] = "Afbeelding" ;
    Text [ swedish ] = "Grafik" ;
    Text [ danish ] = "Grafik" ;
    Text [ portuguese ] = "Imagem" ;
    Text [ portuguese_brazilian ] = "Grafik" ;
    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 GID_TABLE
{
    Text = "Tabelle" ;
    Text [ english ] = "Table" ;
    Text [ english_us ] = "Table" ;
    Text [ italian ] = "Tabella" ;
    Text [ spanish ] = "Tabla" ;
    Text [ french ] = "Table" ;
    Text [ dutch ] = "Tabel" ;
    Text [ swedish ] = "Tabell" ;
    Text [ danish ] = "Tabel" ;
    Text [ portuguese ] = "Tabela" ;
    Text [ portuguese_brazilian ] = "Tabelle" ;
    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 GID_ENUMERATION
{
    Text = "Nummerierung" ;
    Text [ english ] = "Enumeration" ;
    Text [ dutch ] = "Nummering" ;
    Text [ english_us ] = "Numbering" ;
    Text [ italian ] = "Numerazione" ;
    Text [ spanish ] = "Numeracin" ;
    Text [ french ] = "Numrotation" ;
    Text [ swedish ] = "Numrering" ;
    Text [ danish ] = "Nummerering" ;
    Text [ portuguese ] = "Numerao" ;
    Text [ portuguese_brazilian ] = "Numerierung" ;
    Text[ chinese_simplified ] = "";
    Text[ russian ] = "";
    Text[ polish ] = "Numeracja";
    Text[ japanese ] = "ԍt";
    Text[ chinese_traditional ] = "s";
    Text[ arabic ] = "";
    Text[ dutch ] = "Nummering";
    Text[ chinese_simplified ] = "";
    Text[ greek ] = "";
    Text[ korean ] = "ȣ";
    Text[ turkish ] = "Numaralama";
    Text[ language_user1 ] = " ";
};

String GID_DATA
{
    Text = "Daten" ;
    Text [ english ] = "Data" ;
    Text [ dutch ] = "Gegevens" ;
    Text [ english_us ] = "Data" ;
    Text [ italian ] = "Dati" ;
    Text [ spanish ] = "Datos" ;
    Text [ french ] = "Donnes" ;
    Text [ swedish ] = "Data" ;
    Text [ danish ] = "Data" ;
    Text [ portuguese ] = "Dados" ;
    Text [ portuguese_brazilian ] = "Daten" ;
    Text[ chinese_simplified ] = "";
    Text[ russian ] = "";
    Text[ polish ] = "Dane";
    Text[ japanese ] = "ް";
    Text[ chinese_traditional ] = "";
    Text[ arabic ] = "";
    Text[ dutch ] = "Gegevens";
    Text[ chinese_simplified ] = "";
    Text[ greek ] = "";
    Text[ korean ] = "";
    Text[ turkish ] = "Veri";
    Text[ language_user1 ] = " ";
};

String GID_SPECIAL
{
    Text = "Sonderfunktionen" ;
    Text [ english ] = "Special" ;
    Text [ english_us ] = "Special Functions" ;
    Text [ italian ] = "Funzioni speciali" ;
    Text [ spanish ] = "Funciones especiales" ;
    Text [ french ] = "Fonctions spciales" ;
    Text [ dutch ] = "Speciale functies" ;
    Text [ swedish ] = "Specialfunktioner" ;
    Text [ danish ] = "Specialfunktioner" ;
    Text [ portuguese ] = "Funes especiais" ;
    Text [ portuguese_brazilian ] = "Sonderfunktionen" ;
    Text[ chinese_simplified ] = "⹦";
    Text[ russian ] = " ";
    Text[ polish ] = "Funkcje specjalne";
    Text[ japanese ] = "@\\";
    Text[ chinese_traditional ] = "S\\";
    Text[ arabic ] = " ";
    Text[ dutch ] = "Speciale functies";
    Text[ chinese_simplified ] = "⹦";
    Text[ greek ] = " ";
    Text[ korean ] = "Ư Լ";
    Text[ turkish ] = "zel ilevler";
    Text[ language_user1 ] = " ";
};

String GID_IMAGE
{
    Text = "Image" ;
    Text [ english ] = "Image" ;
    Text [ dutch ] = "Image" ;
    Text [ english_us ] = "Image" ;
    Text [ italian ] = "Image" ;
    Text [ spanish ] = "Imagen" ;
    Text [ french ] = "Image" ;
    Text [ swedish ] = "Bild" ;
    Text [ danish ] = "Billede" ;
    Text [ portuguese ] = "Imagem" ;
    Text [ portuguese_brazilian ] = "Image" ;
    Text[ chinese_simplified ] = "ͼ";
    Text[ russian ] = "";
    Text[ polish ] = "Obraz";
    Text[ japanese ] = "Ұ";
    Text[ chinese_traditional ] = "v";
    Text[ arabic ] = "";
    Text[ dutch ] = "Image";
    Text[ chinese_simplified ] = "ͼ";
    Text[ greek ] = "";
    Text[ korean ] = "̹";
    Text[ turkish ] = "Resim";
    Text[ language_user1 ] = " ";
};

String GID_CHART
{
    Text = "Chart" ;
    Text [ english ] = "Chart" ;
    Text [ dutch ] = "Chart" ;
    Text [ english_us ] = "Chart" ;
    Text [ italian ] = "Diagramma" ;
    Text [ spanish ] = "Diagrama" ;
    Text [ french ] = "Diagramme" ;
    Text [ swedish ] = "Chart" ;
    Text [ danish ] = "Diagram" ;
    Text [ portuguese ] = "Chart" ;
    Text [ portuguese_brazilian ] = "Chart" ;
    Text[ chinese_simplified ] = "ͼ";
    Text[ russian ] = "";
    Text[ polish ] = "Wykres";
    Text[ japanese ] = "";
    Text[ chinese_traditional ] = "Ϫ";
    Text[ arabic ] = " ";
    Text[ dutch ] = "Chart";
    Text[ chinese_simplified ] = "ͼ";
    Text[ greek ] = "";
    Text[ korean ] = "Ʈ";
    Text[ turkish ] = "ema";
    Text[ language_user1 ] = " ";
};

String GID_EXPLORER
{
    Text = "Explorer" ;
    Text [ english ] = "Explorer" ;
    Text [ english_us ] = "Explorer" ;
    Text [ italian ] = "Explorer" ;
    Text [ spanish ] = "Explorador" ;
    Text [ french ] = "Explorer" ;
    Text [ dutch ] = "Explorer" ;
    Text [ swedish ] = "Explorer" ;
    Text [ danish ] = "Explorer" ;
    Text [ portuguese ] = "Explorer" ;
    Text [ portuguese_brazilian ] = "Explorer" ;
    Text[ chinese_simplified ] = "Դ";
    Text[ russian ] = "";
    Text[ polish ] = "Eksplorator";
    Text[ japanese ] = "۰";
    Text[ language_user1 ] = " ";
    Text[ chinese_traditional ] = "ɮ`";
    Text[ arabic ] = "";
    Text[ dutch ] = "Explorer";
    Text[ chinese_simplified ] = "Դ";
    Text[ greek ] = "Explorer";
    Text[ korean ] = "ͽ÷η";
    Text[ turkish ] = "Explorer";
};

String GID_CONNECTOR
{
    Text = "Verbinder" ;
    Text [ english ] = "Connector" ;
    Text [ portuguese ] = "Conectores" ;
    Text [ english_us ] = "Connector" ;
    Text [ portuguese_brazilian ] = "Verbinder" ;
    Text [ swedish ] = "Frbindelse" ;
    Text [ danish ] = "Forbindelse" ;
    Text [ italian ] = "Connettore" ;
    Text [ spanish ] = "Conector" ;
    Text [ french ] = "Connecteur" ;
    Text [ dutch ] = "Verbinding" ;
    Text[ chinese_simplified ] = "ӷ";
    Text[ russian ] = "  ";
    Text[ polish ] = "cznik";
    Text[ japanese ] = "ȸ";
    Text[ chinese_traditional ] = "s";
    Text[ arabic ] = "";
    Text[ dutch ] = "Verbinding";
    Text[ chinese_simplified ] = "ӷ";
    Text[ greek ] = "";
    Text[ korean ] = "Ŀ";
    Text[ turkish ] = "Balayc";
    Text[ language_user1 ] = " ";
};

String GID_MODIFY
{
    Text = "ndern" ;
    Text [ english ] = "Modify" ;
    Text [ portuguese ] = "Alterar" ;
    Text [ english_us ] = "Modify" ;
    Text [ portuguese_brazilian ] = "ndern" ;
    Text [ swedish ] = "ndra" ;
    Text [ danish ] = "Modificer" ;
    Text [ italian ] = "Modifica" ;
    Text [ spanish ] = "Modificar" ;
    Text [ french ] = "Modifier" ;
    Text [ dutch ] = "Wijzigen" ;
    Text[ chinese_simplified ] = "";
    Text[ russian ] = "";
    Text[ polish ] = "Modyfikuj";
    Text[ japanese ] = "ύX";
    Text[ chinese_traditional ] = "ק";
    Text[ arabic ] = "";
    Text[ dutch ] = "Wijzigen";
    Text[ chinese_simplified ] = "";
    Text[ greek ] = "";
    Text[ korean ] = "";
    Text[ turkish ] = "Deitir";
    Text[ language_user1 ] = " ";
};

String GID_DRAWING
{
    Text = "Zeichnen" ;
    Text [ english ] = "Drawing" ;
    Text [ portuguese ] = "Desenhar" ;
    Text [ english_us ] = "Drawing" ;
    Text [ portuguese_brazilian ] = "Zeichnen" ;
    Text [ swedish ] = "Rita" ;
    Text [ danish ] = "Tegn" ;
    Text [ italian ] = "Disegna" ;
    Text [ spanish ] = "Dibujar" ;
    Text [ french ] = "Dessiner" ;
    Text [ dutch ] = "Tekenen" ;
    Text[ chinese_simplified ] = "ͼ";
    Text[ russian ] = "";
    Text[ polish ] = "Rysowanie";
    Text[ japanese ] = "`";
    Text[ chinese_traditional ] = "ø";
    Text[ arabic ] = "";
    Text[ dutch ] = "Tekenen";
    Text[ chinese_simplified ] = "ͼ";
    Text[ greek ] = "";
    Text[ korean ] = "׸";
    Text[ turkish ] = "izim";
    Text[ language_user1 ] = " ";
};

String GID_CONTROLS
{
    Text = "Kontrollelemente" ;
    Text [ english ] = "Controls" ;
    Text [ portuguese ] = "Controlos" ;
    Text [ english_us ] = "Controls" ;
    Text [ italian ] = "Elementi di controllo" ;
    Text [ spanish ] = "Elementos de control" ;
    Text [ french ] = "lments de contrle" ;
    Text [ dutch ] = "Controle-elementen" ;
    Text [ portuguese_brazilian ] = "Kontrollelemente" ;
    Text [ swedish ] = "Kontrollelement" ;
    Text [ danish ] = "Kontrolelementer" ;
    Text[ chinese_simplified ] = "ؼ";
    Text[ russian ] = " ";
    Text[ polish ] = "Formanty";
    Text[ japanese ] = "۰";
    Text[ chinese_traditional ] = "";
    Text[ arabic ] = " ";
    Text[ dutch ] = "Controle-elementen";
    Text[ chinese_simplified ] = "ؼ";
    Text[ greek ] = " ";
    Text[ korean ] = "Ʈ";
    Text[ turkish ] = "Kumanda eleri";
    Text[ language_user1 ] = " ";
};

TabDialog SID_OPTIONS
{
    OutputSize = TRUE ;
    SVLook = TRUE ;
    Size = MAP_APPFONT ( 244 , 155 ) ;
    Text = "Optionen" ;
    Text [ English ] = "Options" ;
    Text [ norwegian ] = "Options" ;
    Text [ italian ] = "Opzioni" ;
    Text [ portuguese_brazilian ] = "Opes" ;
    Text [ portuguese ] = "Opes" ;
    Text [ finnish ] = "Mritykset" ;
    Text [ danish ] = "Indstillinger" ;
    Text [ french ] = "Options" ;
    Text [ swedish ] = "Alternativ" ;
    Text [ dutch ] = "Opties" ;
    Text [ spanish ] = "Opciones" ;
    Text [ english_us ] = "Options" ;
    Moveable = TRUE ;
    Closeable = TRUE ;
    TabControl 1
    {
        SVLook = TRUE ;
        Pos = MAP_APPFONT ( 3 , 15 ) ;
        Size = MAP_APPFONT ( 221 , 130 ) ;
        PageList =
        {
            PageItem
            {
                Identifier = RID_SFXPAGE_GENERAL ;
                Text = "Allgemeines" ;
                Text [ English ] = "General" ;
                Text [ norwegian ] = "Generell" ;
                Text [ italian ] = "Generale" ;
                Text [ portuguese_brazilian ] = "Geral" ;
                Text [ portuguese ] = "Geral" ;
                Text [ finnish ] = "Yleiset" ;
                Text [ danish ] = "Generelt" ;
                Text [ french ] = "En gnral" ;
                Text [ swedish ] = "Allmnt" ;
                Text [ dutch ] = "Algemeen" ;
                Text [ spanish ] = "General" ;
                Text [ english_us ] = "General" ;
                PageResID = 256 ;
                Text[ chinese_simplified ] = "";
                Text[ russian ] = "";
                Text[ polish ] = "Oglne";
                Text[ japanese ] = "";
                Text[ chinese_traditional ] = "@";
                Text[ arabic ] = "";
                Text[ dutch ] = "Algemeen";
                Text[ chinese_simplified ] = "";
                Text[ greek ] = "";
                Text[ korean ] = "Ϲ";
                Text[ turkish ] = "Genel";
                Text[ language_user1 ] = " ";
            };
            PageItem
            {
                Identifier = RID_SFXPAGE_SAVE ;
                Text = "Speichern" ;
                Text [ English ] = "Save" ;
                Text [ norwegian ] = "Save" ;
                Text [ italian ] = "Salva" ;
                Text [ portuguese_brazilian ] = "Gravar" ;
                Text [ portuguese ] = "Guardar" ;
                Text [ finnish ] = "Tallennus" ;
                Text [ danish ] = "Gem" ;
                Text [ french ] = "Enregistrer" ;
                Text [ swedish ] = "Spara" ;
                Text [ dutch ] = "Opslaan" ;
                Text [ spanish ] = "Guardar" ;
                Text [ english_us ] = "Save" ;
                PageResID = 257 ;
                Text[ chinese_simplified ] = "";
                Text[ russian ] = "";
                Text[ polish ] = "Zapisz";
                Text[ japanese ] = "ۑ";
                Text[ chinese_traditional ] = "xs";
                Text[ arabic ] = "";
                Text[ dutch ] = "Opslaan";
                Text[ chinese_simplified ] = "";
                Text[ greek ] = "";
                Text[ korean ] = "";
                Text[ turkish ] = "Kaydet";
                Text[ language_user1 ] = " ";
            };
            PageItem
            {
                Identifier = RID_SFXPAGE_PATH ;
                Text = "Pfade" ;
                Text [ English ] = "Path" ;
                Text [ norwegian ] = "Bane" ;
                Text [ italian ] = "Percorsi" ;
                Text [ portuguese_brazilian ] = "Caminho" ;
                Text [ portuguese ] = "Atalhos" ;
                Text [ finnish ] = "Polku" ;
                Text [ danish ] = "Stier" ;
                Text [ french ] = "Chemins" ;
                Text [ swedish ] = "Skvgar" ;
                Text [ dutch ] = "Pad" ;
                Text [ spanish ] = "Rutas" ;
                Text [ english_us ] = "Paths" ;
                PageResID = 258 ;
                Text[ chinese_simplified ] = "·";
                Text[ russian ] = "";
                Text[ polish ] = "cieki";
                Text[ japanese ] = "߽";
                Text[ chinese_traditional ] = "|";
                Text[ arabic ] = "";
                Text[ dutch ] = "Pad";
                Text[ chinese_simplified ] = "·";
                Text[ greek ] = "";
                Text[ korean ] = "";
                Text[ turkish ] = "Veri yolu";
                Text[ language_user1 ] = " ";
            };
            PageItem
            {
                Identifier = RID_SFXPAGE_SPELL ;
                Text = "Rechtschreibprfung" ;
                Text [ English ] = "Spellchecker" ;
                Text [ norwegian ] = "Spellchecker" ;
                Text [ italian ] = "Controllo ortografico" ;
                Text [ portuguese_brazilian ] = "Corretor Ortogrfico" ;
                Text [ portuguese ] = "Verificar ortografia" ;
                Text [ finnish ] = "Korjausluku" ;
                Text [ danish ] = "Stavekontrol" ;
                Text [ french ] = "Vrification orthographique" ;
                Text [ swedish ] = "Rttstavningskontroll" ;
                Text [ dutch ] = "Spellingcontrole" ;
                Text [ spanish ] = "Revisin ortogrfica" ;
                Text [ english_us ] = "Spellcheck" ;
                PageResID = 259 ;
                Text[ chinese_simplified ] = "ַ";
                Text[ russian ] = " ";
                Text[ polish ] = "Sprawdzanie pisowni";
                Text[ japanese ] = "͍Z";
                Text[ chinese_traditional ] = "r";
                Text[ arabic ] = " ";
                Text[ dutch ] = "Spellingcontrole";
                Text[ chinese_simplified ] = "ַ";
                Text[ greek ] = " ";
                Text[ korean ] = "";
                Text[ turkish ] = "Yazm denetimi";
                Text[ language_user1 ] = " ";
            };
        };
    };
    Text[ chinese_simplified ] = "ѡ";
    Text[ russian ] = "";
    Text[ polish ] = "Opcje";
    Text[ japanese ] = "߼";
    Text[ chinese_traditional ] = "ﶵ";
    Text[ arabic ] = "";
    Text[ dutch ] = "Opties";
    Text[ chinese_simplified ] = "ѡ";
    Text[ greek ] = "";
    Text[ korean ] = "ɼ";
    Text[ turkish ] = "Seenekler";
    Text[ language_user1 ] = " ";
};

InfoBox MSG_CANT_QUIT
{
    Message = "Die Anwendung kann zur Zeit nicht beendet werden.\nBitte warten Sie das Ende aller Druckauftrge und/oder\nOLE-Aktivierungen ab und schlieen Sie alle Dialoge." ;
    Message [ English ] = "Can't quit the application at this moment.\nPlease wait until all print jobs and/or\nOLE-activations are terminated and close\nall dialogs." ;
    Message [ norwegian ] = "Kan ikke avslutte applikasjonen for yeblikket.\nPlease wait until all print jobs and/or\nOLE-activations are terminated and close\nall dialogs." ;
    Message [ italian ] = "Impossibile uscire dall'applicazione in questo momento.\nAttendendete la concluisione della stampa e/o\n tutte le attivazioni OLE, quindi chiudete\ntutti i dialoghi." ;
    Message [ portuguese_brazilian ] = "No consigo sair do aplicativo neste momento.\nPlease wait until all print jobs and/or\nOLE-activations are terminated and close\nall dialogs." ;
    Message [ portuguese ] = "De momento  impossvel sair desta aplicao.\nAguarde a impresso de todos os documentos\n e/ou o fim das activaes OLE e feche todos os dilogos." ;
    Message [ french ] = "Impossible de quitter l'application maintenant.\nVeuillez attendre la fin des activits d'impression et/ou des activations OLE\net fermez tous les dialogues." ;
    Message [ dutch ] = "De applicatie kan op dit moment niet worden beindigd.\nWacht tot alle drukopdrachten en/of\nOLE-activiteiten zijn beindigd en \nsluit alle dialogen." ;
    Message [ spanish ] = "La aplicacin no se puede cerrar por el momento. \nPor favor espere hasta que finalice la impresin de\n todos los documentos y/o activaciones OLE\ny cierre todos los dilogos." ;
    Message [ danish ] = "Det er for tiden ikke muligt at afslutte programmet.\nVent venligst til alle udskriftsjob og/eller \nOLE-handlinger er afslutte og luk s alle dialoger." ;
    Message [ swedish ] = "Programmet kan inte avslutas fr tillfllet.\nVnta tills alla utskriftsuppdrag och/eller\nOLE-aktiveringar r utfrda och stng alla dialoger." ;
    Message [ finnish ] = "Can't quit the application at this moment.\nPlease wait until all print jobs and/or\nOLE-activations are terminated and close\nall dialogs." ;
    Message [ english_us ] = "The application cannot be terminated at the moment.\nPlease wait until all print jobs and/or\nOLE actions have finished and close all dialogs." ;
    Message[ chinese_simplified ] = "޷Ӧó\nԵֱдӡOLE״̬\nȻٹرжԻ";
    Message[ russian ] = "    .\n, ,     /\n  OLE    .";
    Message[ polish ] = "Aplikacji nie mona zakoczy.\nProsz zaczeka na koniec zada wydruku i/lub\nakcji OLE i zamkn wszystkie aplikacje.";
    Message[ japanese ] = "۸т܏Ił܂B\nׂĂ̈ޮ /܂ \nOLE  ̏I܂ő҂ ׂĂ޲۸ނ‚ĉB";
    Message[ chinese_traditional ] = "{bLkoε{C\nеԩҦCLȩOLEEAwgM\nMAҦܤC";
    Message[ arabic ] = "    .\n      ɡ /\n OLE      .";
    Message[ dutch ] = "De applicatie kan op dit moment niet worden beindigd.\nWacht tot alle drukopdrachten en/of\nOLE-activiteiten zijn beindigd en \nsluit alle dialogen.";
    Message[ chinese_simplified ] = "޷Ӧó\nԵֱдӡOLE״̬\nȻٹرжԻ";
    Message[ greek ] = "         .\n         /\n   OLE     .";
    Message[ korean ] = " α׷    ϴ.\nμ ۾    ׸/Ǵ \nOLE Ȱȭ  ٷȴٰ  ȭڸ ʽÿ.";
    Message[ turkish ] = "u an uygulamadan klamyor.\nTm yazdrma ilerinin ve/veya\nOLE ilemlerinin bitmesini bekleyip tm diyaloglar kapatnz.";
    Message[ language_user1 ] = " ";
};

QueryBox MSG_IS_SERVER
{
    Buttons = WB_YES_NO ;
    DefButton = WB_DEF_NO ;
    Message = "Die Applikation ist noch als Objekt- oder Druck-Server aktiv.\nSoll sie trotzdem geschlossen werden?" ;
    Message [ English ] = "This application is an active object- or printserver.\nTerminata nevertheless?" ;
    Message [ norwegian ] = "Denne applikasjonen er en aktiv server.\nAvslutt likevel?" ;
    Message [ italian ] = "Questa applicazione  un server attivo.\nTerminare in ogni caso?" ;
    Message [ portuguese_brazilian ] = "Este aplicativo  um ativo no servidor.\nTerminar assim mesmo?" ;
    Message [ portuguese ] = "Esta aplicao est ainda activa como servidor de objecto ou da impressora.\nMesmo assim, finalizar?" ;
    Message [ finnish ] = "Tm sovellus on aktiivinen lhdesovellus.\nLopetetaanko silti?" ;
    Message [ danish ] = "Denne applikation er stadig aktiv som objekt- eller printserver.\nSkal der lukkes alligevel?" ;
    Message [ french ] = "Cette application est encore active en tant que serveur d'objets ou d'imprimante.\nInterrompre malgr tout ?" ;
    Message [ swedish ] = "Tillmpningen r fortfarande aktiv antingen som objekt- eller skrivarserver.\nVill Du trots det stnga den?" ;
    Message [ dutch ] = "Deze toepassing is nog actief als object- of afdrukserver.\nToch afsluiten ?" ;
    Message [ spanish ] = "Esta aplicacin est an activa como servidor de objeto o de impresin.\nDesea finalizarla?" ;
    Message [ english_us ] = "This application is as object or print server active.\nDo you want to terminate anyway?" ;
    Message[ chinese_simplified ] = "ӦóΪӡڼ״̬\nҪر?";
    Message[ russian ] = "       .\n    ?";
    Message[ polish ] = "Aplikacja jest jeszcze aktywna jako obiekt lub serwer wydruku.\nCzy j mimo to zamkn?";
    Message[ japanese ] = "ع݂ ܂޼ުĂ܂ ްƂıèނłB\n‚Ă낵ł?";
    Message[ chinese_traditional ] = "oε{@ΦCLAٳBEAC\nz٬OnH";
    Message[ arabic ] = "         .\n      ߿";
    Message[ dutch ] = "Deze toepassing is nog actief als object- of afdrukserver.\nToch afsluiten ?";
    Message[ chinese_simplified ] = "ӦóΪӡڼ״̬\nҪر?";
    Message[ greek ] = "         .\n  ;";
    Message[ korean ] = "üǴ  μ  α׷ ȰȭǾ ֽϴ.\n Ͻðڽϱ?";
    Message[ turkish ] = "Uygulama u an nesne ya da yazdrma sunucusu olarak alyor.\nYine de kapatlsn m?";
    Message[ language_user1 ] = " ";
};

String STR_NODOUBLE
{
    TEXT = "StarOffice kann nicht mehrfach gestartet werden." ;
    TEXT [ English ] = "StarOffice cannot be started multiply." ;
    Text [ english_us ] = "StarOffice cannot be started more than once." ;
    Text [ portuguese_brazilian ] = "StarOffice Applikationen knnen nicht mehrfach\ngestartet werden." ;
    Text [ swedish ] = "StarOffice kan inte startas flera gnger samtidigt." ;
    Text [ danish ] = "Det er ikke muligt at starte StarOffice flere gange." ;
    Text [ italian ] = "StarOffice non pu essere avviato pi volte" ;
    Text [ spanish ] = "StarOffice no se puede iniciar ms de una vez." ;
    Text [ french ] = "Impossible de lancer plusieurs applications de \nStarOffice  la fois." ;
    Text [ dutch ] = "StarOffice kan maar n keer tegelijk worden gestart." ;
    Text [ portuguese ] = "O StarOffice no pode ser inicializado mais do que uma vez." ;
    Text[ chinese_simplified ] = "޷ͬʱ StarOffice ";
    Text[ russian ] = "  StarOffice .";
    Text[ polish ] = "StarOffice nie mona kilkakrotnie uruchomi.";
    Text[ japanese ] = "StarOffice Ăł܂B";
    Text[ chinese_traditional ] = "LkPɦhҰStarOfficeC";
    Text[ arabic ] = "   StarOffice   .";
    Text[ dutch ] = "StarOffice kan maar n keer tegelijk worden gestart.";
    Text[ chinese_simplified ] = "޷ͬʱ StarOffice ";
    Text[ greek ] = "      StarOffice    .";
    Text[ korean ] = "StarOffice ѹ̻ ۵ մϴ .";
    Text[ turkish ] = "StarOffice iin birden fazla oturum alamaz.";
    Text[ language_user1 ] = " ";
};

String STR_NOPRINTER
{
    TEXT = "Einige StarOffice-Funktionen knnen ohne Druckertreiber nicht korrekt arbeiten.\nBitte installieren Sie einen Druckertreiber." ;
    TEXT [ English ] = "Some StarOffice functions are not available without printer driver.\nPlease install a priter driver." ;
    Text [ english_us ] = "Some StarOffice functions will not work properly without a printer driver.\nPlease install a printer driver." ;
    Text [ swedish ] = "Ngra StarOffice-funktioner kan inte arbeta korrekt utan en skrivardrivrutin.\nVar vnlig och installera en skrivardrivrutin." ;
    Text [ danish ] = "Enkelte StarOffice-funktioner kanl ikke arbejde korrekt uden en printerdriver.\nInstaller venligst en printerdriver." ;
    Text [ italian ] = "Alcune funzioni StarOffice non funzionano correttamente senza il driver stampante.\nInstallatene uno." ;
    Text [ spanish ] = "Algunas funciones de StarOffice no pueden trabajar correctamente sin un controlador para la impresora.\nPor favor instale uno." ;
    Text [ french ] = "Certaines fonctions StarOffice ne peuvent pas travailler correctement sans pilote d'imprimante.\nVeuillez installer un pilote d'imprimante." ;
    Text [ dutch ] = "Enkele StarOffice-functies kunnen zonder printerdriver niet correct werken.\nInstalleer een printerdriver." ;
    Text [ portuguese_brazilian ] = "Einige StarOffice-Funktionen knnen ohne Druckertreiber nicht korrekt arbeiten.\nBitte installieren Sie einen Druckertreiber." ;
    Text [ portuguese ] = "Algumas das funes do StarOffice no podem funcionar correctamente sem um controlador de impressora.\nFaa a respectiva instalao." ;
    Text[ chinese_simplified ] = "ΪûаװӡһЩStarOfficeܿܲת\nװһӡ";
    Text[ russian ] = "     StarOffice   .\n, ,  .";
    Text[ polish ] = "Niektre funkcje w StarOffice nie mog poprawnie pracowa bez sterownika drukarki.\nZainstaluj sterownik drukarki.";
    Text[ japanese ] = "StarOffice ̂‚̋@\\  ײނȂŐN܂B\n ײނݽİقĂB";
    Text[ chinese_traditional ] = "Sw˦CLXʵ{M@StarOffice\\Bण|`C\nбzwˤ@ӦCLXʵ{C";
    Text[ arabic ] = "     StarOffice      .\n     .";
    Text[ dutch ] = "Enkele StarOffice-functies kunnen zonder printerdriver niet correct werken.\nInstalleer een printerdriver.";
    Text[ chinese_simplified ] = "ΪûаװӡһЩStarOfficeܿܲת\nװһӡ";
    Text[ greek ] = "     StarOffice          .\n       .";
    Text[ korean ] = "  StarOffice   ̹ ̴  ۵ ʽϴ.\n ̹ ġ Ͻʽÿ.";
    Text[ turkish ] = "Baz StarOffice ilevleri yazc srcs olmadan doru alamaz.\nBir yazc srcs kurun.";
    Text[ language_user1 ] = " ";
};

String STR_NOMODUL
{
    TEXT = "Applikationsmodule knnen nicht als Applikationen\ngestartet werden, wenn der StarDesktop aktiv ist." ;
    TEXT [ English ] = "Application modules may not be started\nif StarDesktop is active." ;
    Text [ english_us ] = "Application modules may not be started\n when StarOffice Desktop is active." ;
    Text [ italian ] = "Se lo StarOffice Desktop  attivo i moduli applicativi\n non possono essere avviati come apllicazioni." ;
    Text [ spanish ] = "Los mdulos de aplicacin no pueden ser\niniciados como aplicaciones si el escritorio (StarOffice Desktop) est activo." ;
    Text [ french ] = "Impossible de dmarrer les modules d'application comme applications,\n si le StarOffice Desktop est actif." ;
    Text [ dutch ] = "Applicatiemodules kunnen niet als applicaties\nworden gestart als StarDesktop actief is." ;
    Text [ swedish ] = "Tillmpningsmoduler kan inte startas som\ntillmpningar nr StarOffice Desktop r aktiv." ;
    Text [ danish ] = "Det er ikke muligt at starte applikationsmoduler som applikationer,\nr StarOffice Desktop er aktiv." ;
    Text [ portuguese_brazilian ] = "Applikationsmodule knnen nicht als Applikationen\ngestartet werden, wenn der StarOffice Desktop aktiv ist." ;
    Text [ portuguese ] = "Impossvel iniciar os mdulos como aplicaes quando o StarOffice Desktop se encontra activo." ;
    Text[ chinese_simplified ] = "StarOffice Desktopڼ״̬\nӦóģ鲻ܹӦóС";
    Text[ russian ] = "      ,\n  StarDeskto.";
    Text[ polish ] = "Moduy aplikacji nie mog zosta uruchomione jako aplikacje\n, jeli jest wczony pulpit StarOffice Desktop.";
    Text[ japanese ] = "StarOffice Desktop èނ̂Ƃ́Aع݂Ƃıع Ӽޭق\nJnł܂B";
    Text[ chinese_traditional ] = "bStarOffice DesktopB_EA\nMε{ǪҶ@ε{ҰʹBC";
    Text[ arabic ] = "      ʡ\n  StarOffice Desktop .";
    Text[ dutch ] = "Applicatiemodules kunnen niet als applicaties\nworden gestart als StarDesktop actief is.";
    Text[ chinese_simplified ] = "StarOffice Desktopڼ״̬\nӦóģ鲻ܹӦóС";
    Text[ greek ] = "        \n    StarOffice Desktop.";
    Text[ korean ] = "StarOffice ũ ž Ȱȭ Ǿ.\n α׷   ɼ ϴ.";
    Text[ turkish ] = "Uygulama modlleri, StarOffice masast etkinken uygulama olarak\naltrlamaz.";
    Text[ language_user1 ] = " ";
};

String STR_NOOFFICE
{
    TEXT = "Der StarDesktop kann nicht gestartet werden,\nwenn das StarWriter Applikationsmodul als\nApplikation gestartet wurde." ;
    TEXT [ English ] = "StarDesktop  may not be started if StarWriter\napplication module is active in application mode\n" ;
    Text [ english_us ] = "StarOffice Desktop cannot be started if the StarOffice Writer\napplication module has been started\nas an application." ;
    Text [ italian ] = "Se il modulo di applicazione StarOffice Writer  stato avviato\ncome applicazione non  possibile\navviare lo StarOffice Desktop." ;
    Text [ spanish ] = "No se pude iniciar el escritorio\nsi se ha iniciado StarOffice Writer\ncomo aplicacin." ;
    Text [ french ] = "Impossible de lancer le StarOffice Desktop,\nsi le module d'application StarOffice Writer a t lanc\ncomme application." ;
    Text [ dutch ] = "StarOffice Desktop kan niet worden gestart\nals een StarOffice Writer applicatiemodule als\napplicatie werd gestart." ;
    Text [ swedish ] = "StarOffice Desktop kan inte startas\nnr StarOffice Writer-tillmpningsmodulen\nhar startats som tillmpning." ;
    Text [ danish ] = "Det er ikke muligt at starte StarOffice Desktop,\nnr StarOffice Writer applikationsmodulet er blevet startet \nsom applikation." ;
    Text [ portuguese_brazilian ] = "Der StarOffice Desktop kann nicht gestartet werden,\nwenn das StarOffice Writer Applikationsmodul als\nApplikation gestartet wurde." ;
    Text [ portuguese ] = "Impossvel iniciar o StarOffice Desktop quando o mdulo da\naplicao StarOffice Writer  iniciado\ncomo aplicao." ;
    Text[ chinese_simplified ] = "StarOffice WriterӦóģ鱻\nӦóʱ޷StarOffice Desktop ";
    Text[ russian ] = " StarOffice Desktop ,\n   StarOffice Writer   \n.";
    Text[ polish ] = "Pulpitu StarOffice Desktop nie mona uruchomi, \njeli modu aplikacji StarOffice Writer \nzosta uruchomiony jako aplikacja.";
    Text[ japanese ] = "StarOffice Writer ع Ӽޭق\nع݂ƂĊJnĂ鎞́A\nStarOffice Desktop͊Jnł܂B";
    Text[ chinese_traditional ] = "bStarOffice Writerε{ҶQ@\nε{ҰʹBɵLkҰStarOffice DesktopC";
    Text[ arabic ] = "   StarOffice Desktop\n        StarOffice Writer  \n.";
    Text[ dutch ] = "StarOffice Desktop kan niet worden gestart\nals een StarOffice Writer applicatiemodule als\napplicatie werd gestart.";
    Text[ chinese_simplified ] = "StarOffice WriterӦóģ鱻\nӦóʱ޷StarOffice Desktop ";
    Text[ greek ] = "      StarOffice Desktop\n      \n  StarOffice Writer  .";
    Text[ korean ] = "StarOffice Writer α׷ \n α׷μ ۵Ǿٸ,\n StarOffice ũ ž  ɼ ϴ.";
    Text[ turkish ] = "StarOffice masast, StarOffice Writer uygulama modul\nuygulama olarak altrlmsa balatlamaz.";
    Text[ language_user1 ] = " ";
};

String STR_ISMODIFIED
{
    TEXT[ language_user1 ] = "PB: waren frueher zwei String";
    TEXT = "Sollen nderungen in %1 gespeichert werden?" ;
    TEXT [ English ] = "Should the changes to %1 be saved?" ;
    TEXT [ norwegian ] = "Lagre endringer som " ;
    TEXT [ italian ] = "Volete salvare le modifiche apportate a %1?" ;
    TEXT [ portuguese_brazilian ] = "Gravar modificaes como " ;
    TEXT [ portuguese ] = "Guardar modificaes em %1?" ;
    TEXT [ finnish ] = "Tallenetaanko muutokset" ;
    TEXT [ danish ] = "Skal ndringer gemmes i %1?" ;
    TEXT [ french ] = "Souhaitez-vous enregistrer les modifications apportes  %1 ?" ;
    TEXT [ swedish ] = "Skall ndringar sparas i %1?" ;
    TEXT [ dutch ] = "Wijzigingen opslaan in %1?" ;
    TEXT [ spanish ] = "Desea guardar las modificaciones en %1?" ;
    TEXT [ english_us ] = "Do you want to save the changes to %1?" ;
    TEXT[ chinese_simplified ] = "Ҫ̸ %1 ";
    TEXT[ russian ] = "   %1 ?";
    TEXT[ polish ] = "Zapisa modyfikacje w %1 ?";
    TEXT[ japanese ] = "ύX %1 ɕۑ܂H";
    TEXT[ chinese_traditional ] = "xsܧ %1 H";
    TEXT[ arabic ] = "     %1";
    TEXT[ dutch ] = "Wijzigingen opslaan in %1?";
    TEXT[ chinese_simplified ] = "Ҫ̸ %1 ";
    TEXT[ greek ] = "      %1;";
    TEXT[ korean ] = "%1  Ͻðڽϱ?";
    TEXT[ turkish ] = "%1 iinde yaplan deiiklikler kaydedilsin mi?";
};

String STR_AUTOSAVE
{
    TEXT = "Automatisch speichern" ;
    TEXT [ English ] = "Automatic save" ;
    TEXT [ norwegian ] = "Automatisk lagring" ;
    TEXT [ italian ] = "Salva automaticamente" ;
    TEXT [ portuguese_brazilian ] = "Gravao Automtica" ;
    TEXT [ portuguese ] = "Guardar automaticamente" ;
    TEXT [ finnish ] = "Automaattitallennus" ;
    TEXT [ danish ] = "Gem automatisk" ;
    TEXT [ french ] = "Enregistrement automatique" ;
    TEXT [ swedish ] = "Spara automatiskt" ;
    TEXT [ dutch ] = "Automatisch opslaan" ;
    TEXT [ spanish ] = "Guardar automticamente" ;
    TEXT [ english_us ] = "AutoSave" ;
    TEXT[ chinese_simplified ] = "Զ";
    TEXT[ russian ] = " ";
    TEXT[ polish ] = "Zapisz automatycznie";
    TEXT[ japanese ] = "Iɕۑ";
    TEXT[ chinese_traditional ] = "۰xs";
    TEXT[ arabic ] = " ";
    TEXT[ dutch ] = "Automatisch opslaan";
    TEXT[ chinese_simplified ] = "Զ";
    TEXT[ greek ] = " ";
    TEXT[ korean ] = "ڵ ";
    TEXT[ turkish ] = "Otomatik kayt";
    TEXT[ language_user1 ] = " ";
};

String STR_RESWARNING
{
    TEXT = "Die Systemresourcen werden knapp. Bitte beenden Sie andere Applikationen oder schlieen Sie einige Fenster, bevor Sie weiterarbeiten." ;
    TEXT [ English ] = "Not enough resources. Please quit other applications or close some windows before continuing." ;
    TEXT [ norwegian ] = "Ikke nok ressurser. Avslutt andre applikasjoner eller lukk noen vinduer fr du fortsetter." ;
    TEXT [ italian ] = "Risorse insufficienti. Uscire dalle altre applicazioni o chiudere alcune finestre prima di continuare." ;
    TEXT [ portuguese_brazilian ] = "No h recursos suficientes. Sai de outros aplicativos ou feche algumas janelas antes de continuar." ;
    TEXT [ portuguese ] = "Recursos do sistema insuficientes. Por favor, saia dos outros programas ou feche algumas janelas antes de continuar." ;
    TEXT [ finnish ] = "Resurssit eivt riit. Lopeta muita sovelluksia tai sulje ikkunoita ennen kuin jatkat." ;
    TEXT [ danish ] = "Begrnsede systemressourcer. Afslut venligst andre applikationer eller luk nogle vinduer, fr du fortstter." ;
    TEXT [ french ] = "Ressources insuffisantes. Veuillez quitter les autres applications ou fermer certaines fentres avant de continuer." ;
    TEXT [ swedish ] = "Inte tillrckligt med resurser. Stng andra program eller stng ngra fnster innan Du fortstter." ;
    TEXT [ dutch ] = "Onvoldoende systeemgeheugen beschikbaar. Sluit andere toepassingen af.of sluit een aantal vensters voordat u uw werkvoortzet." ;
    TEXT [ spanish ] = "No hay suficientes recursos del sistema. Por favor, elimine otras aplicaciones o cierre algunas ventanas antes de continuar." ;
    TEXT [ english_us ] = "Limited system resources. Please quit other applications or close some windows before continuing." ;
    TEXT[ chinese_simplified ] = "ϵͳԴ㡣رij߹رһЩӴȻ³ִ";
    TEXT[ russian ] = "  .    , , ,       .";
    TEXT[ polish ] = "Zasoby systemu s ograniczone. Przed kontynuacj pracy zakocz kilka aplikacji lub zamknij kilka okien.";
    TEXT[ japanese ] = " ؿ肬łBƂ𑱂Oɤ̱ع݂I邩 ‚̳޳‚ĉB";
    TEXT[ chinese_traditional ] = "tθ귽C䥦{Ϊ@ǵMM᭫sհROC";
    TEXT[ arabic ] = "  .        С   .";
    TEXT[ dutch ] = "Onvoldoende systeemgeheugen beschikbaar. Sluit andere toepassingen af.of sluit een aantal vensters voordat u uw werkvoortzet.";
    TEXT[ chinese_simplified ] = "ϵͳԴ㡣رij߹رһЩӴȻ³ִ";
    TEXT[ greek ] = "     .          .";
    TEXT[ korean ] = "ý ڿ մϴ . Ͻñ ٸ α׷ ϰų ִ â ʽÿ.";
    TEXT[ turkish ] = "Sistem kaynaklar azalyor. almaya devam etmeden nce dier uygulamalar ya da bir ka pencere kapatn.";
    TEXT[ language_user1 ] = " ";
};
String STR_RESEXCEPTION
{
    TEXT = "Wichtige Programmteile nicht gefunden. Bitte berprfen Sie Ihre Installation." ;
    TEXT [ ENGLISH ] = "There are files missing. Please check application setup." ;
    TEXT [ norwegian ] = "Filer mangler. Kontroller applikasjonsoppsett." ;
    TEXT [ italian ] = "Mancano alcuni file. Verificare la configurazione dell'applicazione." ;
    TEXT [ portuguese_brazilian ] = "Faltam arquivos. Verifique a configurao do aplicativo." ;
    TEXT [ portuguese ] = "Faltam alguns ficheiros importantes. Por favor, verifique a configurao do programa." ;
    TEXT [ finnish ] = "Tiedostoja puuttuu. Tarkista sovelluksen asetukset." ;
    TEXT [ danish ] = "Vigtige programdele blev ikke fundet. Kontroller venligst din installation." ;
    TEXT [ french ] = "Certains fichiers sont manquants. Veuillez vrifier le paramtrage de l'application." ;
    TEXT [ swedish ] = "Viktiga programdelar hittades inte. Kontrollera Din installation." ;
    TEXT [ dutch ] = "Er ontbreken belangrijke programmaonderdelen. Controleer of de installatie juist is doorgevoerd." ;
    TEXT [ spanish ] = "No se encuentran archivos importantes del programa. Compruebe la instalacin." ;
    TEXT [ english_us ] = "There are files missing. Please check application setup." ;
    TEXT[ chinese_simplified ] = "ûҵҪij򲿼İװ";
    TEXT[ russian ] = "    . , ,  .";
    TEXT[ polish ] = "Wane czci programu nie zostay znalezione.Sprawd instalacj aplikacji.";
    TEXT[ japanese ] = "dv۸т̈ꕔ‚܂BݽİقĉB";
    TEXT[ chinese_traditional ] = "S쥲n{CˬdzwˡC";
    TEXT[ arabic ] = "      .       .";
    TEXT[ dutch ] = "Er ontbreken belangrijke programmaonderdelen. Controleer of de installatie juist is doorgevoerd.";
    TEXT[ chinese_simplified ] = "ûҵҪij򲿼İװ";
    TEXT[ greek ] = "      .     .";
    TEXT[ korean ] = "  ֽϴ.  ȮϽʽÿ.";
    TEXT[ turkish ] = "nemli program eleri bulunamad. Kurulumunuzu kontrol edin.";
    TEXT[ language_user1 ] = " ";
};

String STR_DOUBLEEXCEPTION
{
    Text = "Whrend der Alarmdatensicherung ist ein weiterer Systemfehler aufgetreten.\nDie Daten sind evtl. unvollstndig gesichert.";
    Text[English] = "Within the emergency save a second system error has occured.\The data may be saved incompletely.";
    TEXT[ italian ] = "Durante il backup di sicurezza si  verificato un altro errore di sistema.\nI dati salvati potrebbero essere incompleti.";
    TEXT[ portuguese_brazilian ] = "Whrend der Alarmdatensicherung ist ein weiterer Systemfehler aufgetreten.\nDie Daten sind evtl. unvollstndig gesichert.";
    TEXT[ portuguese ] = "Surgiu mais um erro no sistema enquanto se executava o backup de segurana.\nProvavelmente, foi impossvel guardar os dados de forma completa.";
    TEXT[ danish ] = "Der opstod en yderligere systemfejl ved alarmdatasikringen.\nAlle data er muligvis ikke gemt fuldstndigt.";
    TEXT[ french ] = "Au cours de la sauvegarde, une nouvelle erreur systme s'est produite.\nIl n'est par certain que toutes les donnes aient pas pu tre enregistres correctement.";
    TEXT[ swedish ] = "Ytterligare ett systemfel uppstod nr alarmdata sparades.\nEventuellt har inte alla data sparats fullstndigt.";
    TEXT[ dutch ] = "Tijdens het opslaan van alarmgegevens is nog een systeemfout opgetreden.\nDe gegevens werden evtl. niet compleet opgeslagen.";
    TEXT[ spanish ] = "Ha ocurrido otro error en el sistema mientras se guardaban los datos.\nEs posible que no se hayan guardado completamente.";
    TEXT[ english_us ] = "Another error occurred during the save recovery.\nPossibly, the data could not be entirely saved.";
    TEXT[ chinese_simplified ] = "޸ʱһ\nݴ̺пܲ";
    TEXT[ russian ] = "         .\n    .";
    TEXT[ polish ] = "Podczas alarmowego zabezpieczenia danych wystpi dalszy bd w systemie.\nDane s event. niekompletnie zabezpieczone.";
    TEXT[ japanese ] = "x̧ٕی̍ۂɑ̼Ѵװ܂B\nް͂炭SɕۑĂ܂B";
    TEXT[ chinese_traditional ] = "b״_xsɵoͤF@ӿ~C\nxsܦiणC";
    TEXT[ arabic ] = "      .\n       .";
    TEXT[ dutch ] = "Tijdens het opslaan van alarmgegevens is nog een systeemfout opgetreden.\nDe gegevens werden evtl. niet compleet opgeslagen.";
    TEXT[ chinese_simplified ] = "޸ʱһ\nݴ̺пܲ";
    TEXT[ greek ] = "          .\n      .";
    TEXT[ korean ] = " ϴ  ٸ  ߻߽ϴ.\nƸ, Ͱ   ʾ Դϴ.";
    TEXT[ turkish ] = "Alarm verileri kayd srasnda baka bir sistem hatas olutu.\nVeriler tam olarak kaydedilmemi olabilir.";
    TEXT[ language_user1 ] = " ";
};

String STR_SYSRESEXCEPTION
{
    TEXT = "Die Systemresourcen sind verbraucht. Bitte starten Sie die Anwendung neu." ;
    TEXT [ English ] = "Not enough system resources. Please restart the application." ;
    Text [ english_us ] = "System resources exhausted. Please restart the application." ;
    Text [ italian ] = "Le risorse del sistema sono esaurite. Riavviare l'applicazione." ;
    Text [ spanish ] = "Los recursos del sistema se han acabado. Por favor reinicie la aplicacin." ;
    Text [ french ] = "Les ressources du systme sont puises. Veuillez relancer l'application ." ;
    Text [ dutch ] = "De systeemresources zijn verbruikt. Start de applicatie opnieuw." ;
    Text [ swedish ] = "Inte tillrckligt med systemresurser. Starta om programmet." ;
    Text [ danish ] = "Systemressourcerne er opbrugt. Genstart venligst denne applikation." ;
    Text [ portuguese_brazilian ] = "Die Systemresourcen sind verbraucht. Bitte starten Sie die Anwendung neu." ;
    Text [ portuguese ] = "Recursos do sistema esgotados. Reinicie a aplicao." ;
    Text[ chinese_simplified ] = "ϵͳԴѾꡣӦó";
    Text[ russian ] = "  .  .";
    Text[ polish ] = "Zasoby systemu s zuyte. Rozpocznij aplikacj ponownie.";
    Text[ japanese ] = " ؿςłB۸тVĂĉB";
    Text[ chinese_traditional ] = "tθ귽wgΧCбzsҰε{C";
    Text[ arabic ] = "    .     .";
    Text[ dutch ] = "De systeemresources zijn verbruikt. Start de applicatie opnieuw.";
    Text[ chinese_simplified ] = "ϵͳԴѾꡣӦó";
    Text[ greek ] = "    .    .";
    Text[ korean ] = "ý ڿ ҸǾϴ. α׷ ٽ  Ͻʽÿ.";
    Text[ turkish ] = "Sistem kaynaklar tkendi. Uygulamay yeniden balatnz.";
    Text[ language_user1 ] = " ";
};

ErrorBox MSG_ERR_SOINIT
{
    Message = "Fehler beim Initialisieren des Objekt-Systems." ;
    Message [ ENGLISH ] = "Error initializing object-system." ;
    Message [ norwegian ] = "Feil ved start av objekt-system." ;
    Message [ italian ] = "Errore durante l'inizializzazione del sistema oggetto." ;
    Message [ portuguese_brazilian ] = "Erro ao inicializar o objeto-systema." ;
    Message [ portuguese ] = "Erro ao inicializar o sistema de objectos." ;
    Message [ finnish ] = "Virhe objektijrjestelm alustettaessa." ;
    Message [ danish ] = "Fejl ved initialisering af objekt-systemet." ;
    Message [ french ] = "Erreur lors de l'initialisation du systme d'objets." ;
    Message [ swedish ] = "Fel vid initiering av objektsystem." ;
    Message [ dutch ] = "Fout bij de initialisatie van het objectsysteem." ;
    Message [ spanish ] = "Error al inicializar el sistema objeto." ;
    Message [ english_us ] = "Error initializing object-system." ;
    Message[ chinese_simplified ] = "ڳʼϵͳʱ";
    Message[ russian ] = "    .";
    Message[ polish ] = "Bd inicjalizacji systemu obiektw.";
    Message[ japanese ] = "޼ު т̏̍ۂ̴װ";
    Message[ chinese_traditional ] = "blƪtήɵoͿ~C";
    Message[ arabic ] = "     .";
    Message[ dutch ] = "Fout bij de initialisatie van het objectsysteem.";
    Message[ chinese_simplified ] = "ڳʼϵͳʱ";
    Message[ greek ] = "      .";
    Message[ korean ] = "ü ý ʱȭ  .";
    Message[ turkish ] = "Nesne sistemi balatlrken hata olutu.";
    Message[ language_user1 ] = " ";
};

String MSG_IOERR_FILE_NOT_FOUND
{
    Text = "Die Datei $(FILE) existiert nicht." ;
    Text [ English ] = "The file $(FILE) doesn't exist." ;
    Text [ norwegian ] = "Filen $(FIL) finnes ikke." ;
    Text [ italian ] = "Il file $(FILE) non esiste." ;
    Text [ portuguese_brazilian ] = "O arquivo $(FILE) no existe." ;
    Text [ portuguese ] = "O ficheiro $(FILE) no existe." ;
    Text [ finnish ] = "Tiedostoa $(FILE) ei ole." ;
    Text [ danish ] = "Filen $(FILE) eksisterer ikke." ;
    Text [ french ] = "Le fichier $(FILE) n'existe pas." ;
    Text [ swedish ] = "Filen $(FILE) finns inte." ;
    Text [ dutch ] = "Bestand $(FILE) bestaat niet." ;
    Text [ spanish ] = "No existe el archivo $(FILE)." ;
    Text [ english_us ] = "The file $(FILE) doesn't exist." ;
    Text[ chinese_simplified ] = "ļ$(FILE)ڡ";
    Text[ russian ] = " $(FILE)  .";
    Text[ polish ] = "Plik $(FILE) nie istnieje.";
    Text[ japanese ] = "̧$(FILE)͂܂B";
    Text[ chinese_traditional ] = "ɮ$(FILE)sbC";
    Text[ arabic ] = " $(FILE)  .";
    Text[ dutch ] = "Bestand $(FILE) bestaat niet.";
    Text[ chinese_simplified ] = "ļ$(FILE)ڡ";
    Text[ greek ] = "  $(FILE)  .";
    Text[ korean ] = " $(FILE)   ʽϴ.";
    Text[ turkish ] = "$(FILE) dosyas mevcut deil.";
    Text[ language_user1 ] = " ";
};

String MSG_IOERR_PATH_NOT_FOUND
{
    Text = "Der Pfad zu der Datei $(FILE) existiert nicht." ;
    Text [ English ] = "The path to file $(FILE) doesn't exist." ;
    Text [ norwegian ] = "Banen til filen $(FIL) finnes ikke." ;
    Text [ italian ] = "Il percorso per il file $(FILE) non esiste." ;
    Text [ portuguese_brazilian ] = "O caminho do arquivo $(FILE) no existe." ;
    Text [ portuguese ] = "O atalho para o ficheiro $(FILE) no existe." ;
    Text [ finnish ] = "Polkua tiedostoon $(FILE) ei ole." ;
    Text [ danish ] = "Stien til filen $(FILE) eksisterer ikke." ;
    Text [ french ] = "Chemin au fichier $(FILE) inexistant." ;
    Text [ swedish ] = "Skvgen till filen $(FILE) existerar inte." ;
    Text [ dutch ] = "Pad naar bestand $(FILE) bestaat niet." ;
    Text [ spanish ] = "No existe la ruta de acceso al archivo $(FILE)." ;
    Text [ english_us ] = "The path to file $(FILE) doesn't exist." ;
    Text[ chinese_simplified ] = "ָļ $(FILE) ·ڡ";
    Text[ russian ] = "   $(FILE)  .";
    Text[ polish ] = "cieka do pliku $(FILE) nie istnieje.";
    Text[ japanese ] = "̧$(FILE)ւ߽͂܂B";
    Text[ chinese_traditional ] = "Vɮ $(FILE) |sbC";
    Text[ arabic ] = "   $(FILE)  .";
    Text[ dutch ] = "Pad naar bestand $(FILE) bestaat niet.";
    Text[ chinese_simplified ] = "ָļ $(FILE) ·ڡ";
    Text[ greek ] = "     $(FILE)  .";
    Text[ korean ] = " $(FILE) ΰ  ʽϴ.";
    Text[ turkish ] = "$(FILE) dosyasnn veri yolu mevcut deil.";
    Text[ language_user1 ] = " ";
};

String MSG_IOERR_TOO_MANY_OPEN_FILES
{
    Text = "Die Datei $(FILE) konnte nicht geffnet werden,\nda zur Zeit zu viele Dateien offen sind.\nSchlieen Sie einige Dateien und versuchen Sie es erneut." ;
    Text [ English ] = "The file $(FILE) could not be opened,\nbecause there are no more file handles available.\nPlease close some files and try again." ;
    Text [ norwegian ] = "Filen $(FILE) kan ikke pnes,\ndet er ikke flere filhndtak tilgjengelig.\nLukk noen filer og prv igjen." ;
    Text [ italian ] = "Impossibile aprire il file $(FILE),\nin quando vi sono troppi file aperti.\nChiudete i file e riprovate." ;
    Text [ portuguese_brazilian ] = "O arquivo $(FILE) no pode ser aberto\npor que no existem mais alas de arquivo disponveis.\nFeche alguns arquivos e tent" ;
    Text [ portuguese ] = "Foi impossvel abrir o ficheiro $(FILE), j que de\nmomento se encontram demasiados ficheiros abertos.\nFeche alguns destes ficheiros e tente novamente." ;
    Text [ finnish ] = "Tiedostoa $(FILE) ei voi avata,\nkoska tiedostokahvoja ei ole vapaana.\nSulje tiedostoja ja yrit uudelleen." ;
    Text [ danish ] = "Det var ikke muligt at bne filen $(FILE),\nda der for tiden er for mange bne filer.\nLuk nogle filer og prv igen." ;
    Text [ french ] = "Impossible d'ouvrir le fichier $(FILE)\n cause d'un trop grand nombre de fichiers ouverts\n.Fermez en quelques-uns avant de ressayer." ;
    Text [ swedish ] = "Filen $(FILE) kunde inte ppnas\np grund av att fr mnga filer r ppna fr tillfllet.\nStng ngra filer och frsk igen." ;
    Text [ dutch ] = "Bestand $(FILE) kon niet worden geopend \nomdat er teveel bestanden gelijktijdig geopend zijn.\nSluit enkele bestanden en probeert u het opnieuw." ;
    Text [ spanish ] = "No se pudo abrir el archivo $(FILE)\nya que hay muchos archivos abiertos.\nCierre algunos archivos e intntelo otra vez." ;
    Text [ english_us ] = "The file $(FILE) could not be opened,\nbecause too many files are open.\nPlease close some files and try again." ;
    Text[ chinese_simplified ] = "޷ļ$(FILE) \nΪѾ̫ļ\nرһЩļȻ³ԡ";
    Text[ russian ] = "  $(FILE)  ,\n..       .\n      .";
    Text[ polish ] = "Plik $(FILE) nie mg zosta otwarty,\nponiewa w tym czasie byo otwarte za duo plikw.\nZamknij kilka plikw i sprbuj je otworzy ponownie.";
    Text[ japanese ] = "\n܂̧قJ߂ŁA̧$(FILE)͊J܂B\n‚̧ق‚ ēx݂ĂB";
    Text[ chinese_traditional ] = "Lk}ɮ$(FILE) M\n]wg}ҤӦhɮסC\n@ɮסMMbsաC";
    Text[ arabic ] = "  $(FILE) \n     .\n   ʡ   .";
    Text[ dutch ] = "Bestand $(FILE) kon niet worden geopend \nomdat er teveel bestanden gelijktijdig geopend zijn.\nSluit enkele bestanden en probeert u het opnieuw.";
    Text[ chinese_simplified ] = "޷ļ$(FILE) \nΪѾ̫ļ\nرһЩļȻ³ԡ";
    Text[ greek ] = "       $(FILE),\n      .\n        .";
    Text[ korean ] = " ʹ    ֱ  \n$(FILE)  ߽ϴ. \n   ݰ  õϽʽÿ.";
    Text[ turkish ] = "$(FILE) dosyas, u an ok fazla dosya ak olduu\niin alamyor.\nBirka dosyay kapatp yeniden deneyin.";
    Text[ language_user1 ] = " ";
};

String MSG_IOERR_ACCESS_DENIED
{
    Text = "Auf die Datei $(FILE) konnte wegen fehlender Zugriffsrechte nicht zugegriffen werden." ;
    Text [ English ] = "The file $(FILE) could not be accessed because of missing access rights." ;
    Text [ norwegian ] = "The file $(FILE) could not be accessed because of missing access rights." ;
    Text [ italian ] = "Non  stato possibile accedere al file $(FILE) per mancanza dei diritti." ;
    Text [ portuguese_brazilian ] = "The file $(FILE) could not be accessed because of missing access rights." ;
    Text [ portuguese ] = "Impossvel o acesso ao ficheiro $(FILE) devido a direitos de acesso inexistentes." ;
    Text [ finnish ] = "Tiedostoa $(FILE) ei voi avata, koska kyttoikeudet puuttuvat." ;
    Text [ danish ] = "Det var ikke muligt at bne filen $(FILE) pga. manglende adgangsrettigheder." ;
    Text [ french ] = "Le fichier $(FILE) n'a pas pu tre ouvert du fait de droits d'accs manquants." ;
    Text [ swedish ] = "Filen $(FILE) kunde inte ppnas eftersom tkomstrttigheter saknas." ;
    Text [ dutch ] = "Bestand $(FILE) kon niet worden geopend omdat toegangsrechten ontbreken." ;
    Text [ spanish ] = "No se pudo se abrir el archivo $(FILE) por falta de derechos." ;
    Text [ english_us ] = "The file $(FILE) could not be opened due to missing access rights." ;
    Text[ chinese_simplified ] = "ΪûжȡȨȡļ$(FILE)";
    Text[ russian ] = "-   ,    $(FILE) .";
    Text[ polish ] = "Brak dostpu do pliku $(FILE) z powodu brakujcych praw dostpu.";
    Text[ japanese ] = "̧ $(FILE)ɂ Ȃ̂űł܂B";
    Text[ chinese_traditional ] = "]SŪvQӵLkŪɮ$(FILE)C";
    Text[ arabic ] = "    $(FILE)     .";
    Text[ dutch ] = "Bestand $(FILE) kon niet worden geopend omdat toegangsrechten ontbreken.";
    Text[ chinese_simplified ] = "ΪûжȡȨȡļ$(FILE)";
    Text[ greek ] = "    $(FILE)   ,    .";
    Text[ korean ] = "    $(FILE)   ʽϴ.";
    Text[ turkish ] = "$(FILE) dosyas, eriim haklarnn olmamas nedeniyle alamad.";
    Text[ language_user1 ] = " ";
};

String MSG_IOERR_INVALID_ACCESS
{
    Text = "Auf Datei $(FILE) konnte nicht zugegriffen werden." ;
    Text [ English ] = "The file $(FILE) could not be accessed." ;
    Text [ norwegian ] = "The file $(FILE) could not be accessed." ;
    Text [ italian ] = "Non  stato possibile accedere al file $(FILE)." ;
    Text [ portuguese_brazilian ] = "The file $(FILE) could not be accessed." ;
    Text [ portuguese ] = "Impossvel o acesso ao ficheiro $(FILE)." ;
    Text [ finnish ] = "Tiedostoa $(FILE) ei voi avata, koska kyttoikeudet eivt kelpaa." ;
    Text [ danish ] = "Det var ikke muligt at f adgang til filen $(FILE)." ;
    Text [ french ] = "Le fichier $(FILE) n'a pas pu tre ouvert du fait de droits d'accs incorrects." ;
    Text [ swedish ] = "Det var inte mjligt att f tkomst till filen $(FILE)." ;
    Text [ dutch ] = "Bestand $(FILE) kon niet worden geopend." ;
    Text [ spanish ] = "No se pudo acceder al archivo $(FILE)." ;
    Text [ english_us ] = "The file $(FILE) could not be accessed." ;
    Text[ chinese_simplified ] = "޷ȡļ $(FILE) ";
    Text[ russian ] = "   $(FILE) .";
    Text[ polish ] = "Brak dostpu do pliku $(FILE).";
    Text[ japanese ] = "̧$(FILE)ɂͱł܂B";
    Text[ chinese_traditional ] = "LkŪɮ $(FILE) C";
    Text[ arabic ] = "    $(FILE).";
    Text[ dutch ] = "Bestand $(FILE) kon niet worden geopend.";
    Text[ chinese_simplified ] = "޷ȡļ $(FILE) ";
    Text[ greek ] = "       $(FILE).";
    Text[ korean ] = " $(FILE)  ٵ ʽϴ.";
    Text[ turkish ] = "$(FILE) dosyasna eriilemedi.";
    Text[ language_user1 ] = " ";
};

String MSG_IOERR_INVALID_HANDLE
{
    Text = "Die Datei $(FILE) konnte wegen einer ungltiger Dateidescriptors nicht geffnet werden." ;
    Text [ English ] = "The file $(FILE) could not be opened because of an invalid file handle." ;
    Text [ norwegian ] = "+++The file $(FILE) could not be opened because of an invalid file handle." ;
    Text [ italian ] = "Impossibile aprire il file $(FILE) in quando l'handle di file non  valido." ;
    Text [ portuguese_brazilian ] = "O arquivo $(FILE) no pode ser aberto devido a uma ala de arquivo invlida." ;
    Text [ portuguese ] = "Foi impossvel abrir o ficheiro $(FILE) devido a uma guia de ficheiro incorrecta." ;
    Text [ finnish ] = "Tiedostoa $(FILE) ei voi avata, koska tiedostokahva on virheellinen." ;
    Text [ danish ] = "Det var ikke muligt at bne filen $(FILE) pga. en ugyldig filhandle." ;
    Text [ french ] = "Le fichier $(FILE) n'a pas pu tre ouvert suite  une erreur de numrisation." ;
    Text [ swedish ] = "Filen $(FILE) kunde inte ppnas p grund av en ogiltig Fildescriptor." ;
    Text [ dutch ] = "Bestand $(FILE) kon niet worden geopend als gevolg van ongeldige filedescriptor." ;
    Text [ spanish ] = "No se pudo abrir el archivo $(FILE) debido a un controlador de archivos no vlido." ;
    Text [ english_us ] = "The file $(FILE) could not be opened due to an invalid file handle." ;
    Text[ chinese_simplified ] = "Чļʶֵ޷ļ $(FILE) ";
    Text[ russian ] = "-   ,  $(FILE)  .";
    Text[ polish ] = "Pliku $(FILE) nie mona byo otworzy z powodu nieprawidowego dojcia.";
    Text[ japanese ] = "̧$(FILE)ً̧͖Lq̂߂ɊJ܂B";
    Text[ chinese_traditional ] = "]LĪɮ׼ѭȦӵLk}ɮ$(FILE) C";
    Text[ arabic ] = "   $(FILE)     .";
    Text[ dutch ] = "Bestand $(FILE) kon niet worden geopend als gevolg van ongeldige filedescriptor.";
    Text[ chinese_simplified ] = "Чļʶֵ޷ļ $(FILE) ";
    Text[ greek ] = "       $(FILE)      .";
    Text[ korean ] = "߸  ڵ  $(FILE)  ʽϴ.";
    Text[ turkish ] = "$(FILE) dosyas geersiz bir dosya tutamac nedeniyle alamad.";
    Text[ language_user1 ] = " ";
};

String MSG_IOERR_CANNOT_MAKE
{
    Text = "Die Datei $(FILE) konnte nicht angelegt werden." ;
    Text [ English ] = "The file $(FILE) could not be created." ;
    Text [ norwegian ] = "+++The file $(FILE) could not be created." ;
    Text [ italian ] = "Impossibile creare il file $(FILE)." ;
    Text [ portuguese_brazilian ] = "O arquivo $(FILE) no pode ser criado." ;
    Text [ portuguese ] = "Foi impossvel criar o  ficheiro $(FILE)." ;
    Text [ finnish ] = "Tiedostoa $(FILE) ei voi luoda." ;
    Text [ danish ] = "Det var ikke muligt at oprette filen $(FILE)." ;
    Text [ french ] = "Le fichier $(FILE) n'a pas pu tre cr." ;
    Text [ swedish ] = "Filen $(FILE) kunde inte skapas." ;
    Text [ dutch ] = "Bestand $(FILE) kon niet worden gemaakt." ;
    Text [ spanish ] = "No se pudo crear el archivo $(FILE)." ;
    Text [ english_us ] = "The file $(FILE) could not be created." ;
    Text[ chinese_simplified ] = "޷ļ $(FILE)";
    Text[ russian ] = "    $(FILE).";
    Text[ polish ] = "Pliku $(FILE) nie mona byo utworzy.";
    Text[ japanese ] = "̧$(FILE)͍쐬ł܂łB";
    Text[ chinese_traditional ] = "Lk}ҷs$(FILE)C";
    Text[ arabic ] = "   $(FILE).";
    Text[ dutch ] = "Bestand $(FILE) kon niet worden gemaakt.";
    Text[ chinese_simplified ] = "޷ļ $(FILE)";
    Text[ greek ] = "       $(FILE).";
    Text[ korean ] = " $(FILE)   ʽϴ.";
    Text[ turkish ] = "$(FILE) dosyas oluturulamad.";
    Text[ language_user1 ] = " ";
};

String MSG_IOERR_SHARING
{
    Text = "Fehler beim gemeinsamen Zugriff auf die Datei $(FILE)." ;
    Text [ English ] = "Sharing violation while accessing $(FILE)." ;
    Text [ norwegian ] = "+++Sharing violation while accessing $(FILE)." ;
    Text [ italian ] = "Violazione di condivisione durante l'accesso al $(FILE)." ;
    Text [ portuguese_brazilian ] = "Violao de compartilhamento durante o acesso do $(FILE)." ;
    Text [ portuguese ] = "Erro durante o acesso compartilhado ao ficheiro $(FILE)." ;
    Text [ finnish ] = "Yhteiskyttvirhe tiedostossa $(FILE)." ;
    Text [ danish ] = "Fejl under flles adgang til filen $(FILE)." ;
    Text [ french ] = "Violation du partage pendant l'accs au $(FILE)." ;
    Text [ swedish ] = "Fel vid gemensam tkomst till filen $(FILE)." ;
    Text [ dutch ] = "Fout bij gelijktijdige toegang tot $(FILE)." ;
    Text [ spanish ] = "Error durante el acceso compartido al archivo $(FILE)." ;
    Text [ english_us ] = "Error by shared access to $(FILE)." ;
    Text[ chinese_simplified ] = "ͬʱȡļ $(FILE) ʱ";
    Text[ russian ] = "      $(FILE).";
    Text[ polish ] = "Brak wsplnego dostpu do pliku $(FILE).";
    Text[ japanese ] = "̧$(FILE)ւ̋L̍ۂ̴װ";
    Text[ chinese_traditional ] = "bPŪɮ$(FILE) ɵoͿ~C";
    Text[ arabic ] = "       $(FILE).";
    Text[ dutch ] = "Fout bij gelijktijdige toegang tot $(FILE).";
    Text[ chinese_simplified ] = "ͬʱȡļ $(FILE) ʱ";
    Text[ greek ] = "       $(FILE).";
    Text[ korean ] = "$(FILE)  ٿ  .";
    Text[ turkish ] = "$(FILE) dosyasna paylalan eriimde hata olutu.";
    Text[ language_user1 ] = " ";
};

String MSG_IOERR_INVALID_PARAMETER
{
    Text = "" ;
    Text [ English ] = "" ;
    Text [ norwegian ] = "" ;
    Text [ italian ] = "" ;
    Text [ portuguese_brazilian ] = "" ;
    Text [ portuguese ] = "" ;
    Text [ finnish ] = "" ;
    Text [ danish ] = "" ;
    Text [ french ] = "" ;
    Text [ swedish ] = "" ;
    Text [ dutch ] = "" ;
    Text [ spanish ] = "" ;
    Text [ english_us ] = "" ;
};

String MSG_IOERR_GENERAL
{
    Text = "Allgemeiner Ein-/Ausgabefehler beim Zugriff auf $(FILE)." ;
    Text [ English ] = "General I/O Error accessing $(FILE)." ;
    Text [ norwegian ] = "" ;
    Text [ italian ] = "Errore generale di I/O nell'accesso a $(FILE)." ;
    Text [ portuguese_brazilian ] = "Allgemeiner Ein-/Ausgabefehler beim Zugriff auf $(FILE)." ;
    Text [ french ] = "Erreur d'entre/sortie gnrale lors de l'accs au fichier $(FILE)." ;
    Text [ swedish ] = "Allmnt input/outputfel vid tkomst av $(FILE)." ;
    Text [ dutch ] = "Algemene in-/uitvoerfout bij toegang op $(FILE)." ;
    Text [ spanish ] = "Error general de entrada/salida al acceder a $(FILE)." ;
    Text [ english_us ] = "General I/O error accessing $(FILE)." ;
    Text [ dutch ] = "Algemene in-/uitvoerfout bij toegang op $(FILE)." ;
    Text [ italian ] = "Errore generale di I/O nell'accesso a $(FILE)." ;
    Text [ french ] = "Erreur d'entre/sortie gnrale lors de l'accs au fichier $(FILE)." ;
    Text [ danish ] = "Generel I/O fejl ved adgang til $(FILE)." ;
    Text [ portuguese ] = "Erro geral de acesso/sada ao tentar entrar em $(FILE)." ;
    Text[ chinese_simplified ] = "ڶȡ$(FILE)ʱһһ/";
    Text[ russian ] = "        $(FILE).";
    Text[ polish ] = "Oglny bd dostpu We/Wy podczas dostpu do $(FILE).";
    Text[ japanese ] = "$(FILE)ւ̱̍ۂ̈ʓII/OװB";
    Text[ chinese_traditional ] = "bŪ$(FILE)ɵoͤ@Ӥ@몺J/X~C";
    Text[ arabic ] = "        $(FILE).";
    Text[ dutch ] = "Algemene in-/uitvoerfout bij toegang op $(FILE).";
    Text[ chinese_simplified ] = "ڶȡ$(FILE)ʱһһ/";
    Text[ greek ] = "  /     $(FILE).";
    Text[ korean ] = " $(FILE)  Ϲ   .";
    Text[ turkish ] = "$(FILE) dosyasna eriimde genel girdi/kt hatas olutu..";
    Text[ language_user1 ] = " ";
};

String RID_FULLSCREENTOOLBOX
{
    Text = "" ;
    /*
    Text = "Gesamtbild";
    Text [ENGLISH] = "Full screen";
    Text [norwegian] = "Fullt skjermbilde";
    Text [italian] = "Schermo intero";
    Text [portuguese_brazilian] = "Tela completa";
    Text [portuguese] = "Ecr inteiro";
    Text [finnish] = "Koko nytt";
    Text [danish] = "Helskrm";
    Text [french] = "Plein cran";
    Text [swedish] = "Helskrm";
    Text [dutch] = "Volledig scherm";
    Text [spanish] = "Pantalla completa";
    Text [english_us] = "Full screen";
*/
};

ToolBox RID_FULLSCREENTOOLBOX
{
    HelpId = HID_FULLSCREENTOOLBOX ;
    ButtonType = BUTTON_SYMBOL ;
    LineSpacing = TRUE ;
    Border = TRUE ;
    Scroll = TRUE ;
    SVLook = TRUE ;
    Moveable = TRUE ;
    Sizeable = TRUE ;
    Closeable = TRUE ;
    Zoomable = TRUE ;
    Customize = TRUE ;
    FloatingMode = TRUE ;
    Hide = TRUE ;
    _FloatingPosMapMode = MAP_APPFONT ;
    _FloatingPosX = -50 ;
    _FloatingPosY = -70 ;
    FloatingLines = 1 ;
    HideWhenDeactivate = TRUE ;
    Align = BOXALIGN_TOP ;
    ItemList =
    {
        ToolBoxItem
        {
            Identifier = SID_WIN_FULLSCREEN ;
        };
    };
};

String RID_RECORDINGTOOLBOX
{
    Text = "" ;
    /*
    Text = "Makro Aufzeichnung";
    Text [ENGLISH] = "Macro Recorder";
    Text [english_us] = "Macro Recorder";
*/
};

ToolBox RID_RECORDINGTOOLBOX
{
    HelpId = HID_RECORDINGTOOLBOX ;
    ButtonType = BUTTON_SYMBOL ;
    LineSpacing = TRUE ;
    Border = TRUE ;
    Scroll = TRUE ;
    SVLook = TRUE ;
    Moveable = TRUE ;
    Sizeable = TRUE ;
    Closeable = FALSE ;
    Zoomable = TRUE ;
    Customize = FALSE ;
    FloatingMode = TRUE ;
    Hide = TRUE ;
    _FloatingPosMapMode = MAP_APPFONT ;
    _FloatingPosX = -50 ;
    _FloatingPosY = -70 ;
    FloatingLines = 1 ;
    HideWhenDeactivate = TRUE ;
    Align = BOXALIGN_TOP ;
    ItemList =
    {
        ToolBoxItem
        {
            Identifier = SID_RECORDMACRO ;
        };
    };
};

String STR_EVENT_NEWMESSAGE
{
    Text = "Nachricht eingetroffen" ;
    Text [ ENGLISH ] = "Message arrived" ;
    Text [ english_us ] = "Message received" ;
    Text [ portuguese_brazilian ] = "Nachricht eingetroffen" ;
    Text [ swedish ] = "Meddelande har kommit" ;
    Text [ danish ] = "Modtaget meddelelse" ;
    Text [ italian ] = "Messaggio arrivato" ;
    Text [ spanish ] = "Mensaje recibido" ;
    Text [ french ] = "Message reu" ;
    Text [ dutch ] = "Bericht ontvangen" ;
    Text [ portuguese ] = "Mensagem recebida" ;
    Text[ chinese_simplified ] = "µĵʼ";
    Text[ russian ] = " ";
    Text[ polish ] = "Nadesza wiadomo";
    Text[ japanese ] = "үނ̎M";
    Text[ chinese_traditional ] = "sqll";
    Text[ arabic ] = " ";
    Text[ dutch ] = "Bericht ontvangen";
    Text[ chinese_simplified ] = "µĵʼ";
    Text[ greek ] = " ";
    Text[ korean ] = "޼ ŵǾϴ.";
    Text[ turkish ] = "leti alnd";
    Text[ language_user1 ] = " ";
};

String STR_EVENT_STARTAPP
{
    Text = "Programmstart" ;
    Text [ ENGLISH ] = "Start Application" ;
    Text [ norwegian ] = "Start Applikasjon" ;
    Text [ italian ] = "Avvia applicazione" ;
    Text [ portuguese_brazilian ] = "Incio Aplicativo" ;
    Text [ portuguese ] = "Iniciar programa" ;
    Text [ finnish ] = "Start Application" ;
    Text [ danish ] = "Programstart" ;
    Text [ french ] = "Lancer l'application" ;
    Text [ swedish ] = "Programstart" ;
    Text [ dutch ] = "Programma starten" ;
    Text [ spanish ] = "Iniciar aplicacin" ;
    Text [ ENGLISH_US ] = "Start Application" ;
    Text[ chinese_simplified ] = "";
    Text[ russian ] = " ";
    Text[ polish ] = "Pocztek programu";
    Text[ japanese ] = "۸т̊Jn";
    Text[ chinese_traditional ] = "Ұʵ{";
    Text[ arabic ] = " ";
    Text[ dutch ] = "Programma starten";
    Text[ chinese_simplified ] = "";
    Text[ greek ] = " ";
    Text[ korean ] = "α׷ ";
    Text[ turkish ] = "Program altr";
    Text[ language_user1 ] = " ";
};

String STR_EVENT_ONERROR
{
    Text = "Javascript-Laufzeitfehler" ;
    Text [ ENGLISH ] = "Javascript runtime error" ;
    Text [ english_us ] = "JavaScript runtime error" ;
    Text [ portuguese_brazilian ] = "Programm- / Ausfhrungsfehler" ;
    Text [ swedish ] = "Javascript runtime error" ;
    Text [ danish ] = "JavaScript-runtimefejl" ;
    Text [ italian ] = "Errore di runtime JavaScript" ;
    Text [ spanish ] = "Error de ejecucin Javascript" ;
    Text [ french ] = "Runtime error JavaScript" ;
    Text [ dutch ] = "Javascript runtime error" ;
    Text [ portuguese ] = "Erro na execuo de JavaScript" ;
    Text[ chinese_simplified ] = "Javascript-ʱ";
    Text[ russian ] = "   Javascript";
    Text[ polish ] = "Bd czasu przeb. w Javascript";
    Text[ japanese ] = "JavaScript runtime װ\\̎";
    Text[ chinese_traditional ] = "Javascript Bɶ~";
    Text[ arabic ] = "   JavaScript ";
    Text[ dutch ] = "Javascript runtime error";
    Text[ chinese_simplified ] = "Javascript-ʱ";
    Text[ greek ] = "  . JavaScript";
    Text[ korean ] = "JavaScript   Ÿ ";
    Text[ turkish ] = "Javascript yrtm sresi hatas";
    Text[ language_user1 ] = " ";
};

String STR_EVENT_CLOSEAPP
{
    Text = "Programmende" ;
    Text [ ENGLISH ] = "Close Application" ;
    Text [ norwegian ] = "Lukk Applikasjon" ;
    Text [ italian ] = "Chiudi applicazione" ;
    Text [ portuguese_brazilian ] = "Fechar Aplicativo" ;
    Text [ portuguese ] = "Sair do programa" ;
    Text [ finnish ] = "Close Application" ;
    Text [ danish ] = "Luk programmet" ;
    Text [ french ] = "Fermer l'application" ;
    Text [ swedish ] = "Programslut" ;
    Text [ dutch ] = "Programma beindigen" ;
    Text [ spanish ] = "Cerrar aplicacin" ;
    Text [ ENGLISH_US ] = "Close Application" ;
    Text[ chinese_simplified ] = "";
    Text[ russian ] = " ";
    Text[ polish ] = "Koniec programu";
    Text[ japanese ] = "۸яI";
    Text[ chinese_traditional ] = "{";
    Text[ arabic ] = " ";
    Text[ dutch ] = "Programma beindigen";
    Text[ chinese_simplified ] = "";
    Text[ greek ] = " ";
    Text[ korean ] = "α׷ ݱ";
    Text[ turkish ] = "Programdan k";
    Text[ language_user1 ] = " ";
};

String STR_EVENT_CREATEDOC
{
    Text = "Dokument erzeugen" ;
    Text [ ENGLISH ] = "Create Document" ;
    Text [ norwegian ] = "Lag Dokument" ;
    Text [ italian ] = "Crea documento" ;
    Text [ portuguese_brazilian ] = "Criar Documento" ;
    Text [ portuguese ] = "Criar documento" ;
    Text [ finnish ] = "Create Document" ;
    Text [ danish ] = "Opret dokument" ;
    Text [ french ] = "Crer le document" ;
    Text [ swedish ] = "Skapa dokument" ;
    Text [ dutch ] = "Document maken" ;
    Text [ spanish ] = "Crear documento" ;
    Text [ ENGLISH_US ] = "Create Document" ;
    Text[ chinese_simplified ] = "ĵ";
    Text[ russian ] = " ";
    Text[ polish ] = "Utwrz dokument";
    Text[ japanese ] = "޷Ă̍쐬";
    Text[ chinese_traditional ] = "إߤ";
    Text[ arabic ] = " ";
    Text[ dutch ] = "Document maken";
    Text[ chinese_simplified ] = "ĵ";
    Text[ greek ] = " ";
    Text[ korean ] = " ";
    Text[ turkish ] = "Belge olutur";
    Text[ language_user1 ] = " ";
};

String STR_EVENT_CLOSEDOC
{
    Text = "Dokument wird geschlossen" ;
    Text [ ENGLISH ] = "Document closes" ;
    Text [ ENGLISH_US ] = "Close Document" ;
    Text [ portuguese_brazilian ] = "Close Document" ;
    Text [ swedish ] = "Dokumentet stngs" ;
    Text [ danish ] = "Programmet lukkes" ;
    Text [ italian ] = "Il documento viene chiuso" ;
    Text [ spanish ] = "El documento se va a cerrar" ;
    Text [ french ] = "Le document va tre ferm" ;
    Text [ dutch ] = "Document sluiten" ;
    Text [ portuguese ] = "Fechar documento" ;
    Text[ chinese_simplified ] = "ڹرĵ";
    Text[ russian ] = "  ";
    Text[ polish ] = "Zamknij dokument";
    Text[ japanese ] = "޷Â鎞";
    Text[ chinese_traditional ] = "{b";
    Text[ arabic ] = "   ";
    Text[ dutch ] = "Document sluiten";
    Text[ chinese_simplified ] = "ڹرĵ";
    Text[ greek ] = " ";
    Text[ korean ] = " ݱ";
    Text[ turkish ] = "Belgeyi kapat";
    Text[ language_user1 ] = " ";
};

String STR_EVENT_PREPARECLOSEDOC
{
    Text = "Dokument schlieen" ;
    Text [ ENGLISH ] = "Close Document" ;
    Text [ norwegian ] = "Close Document" ;
    Text [ italian ] = "Chiudi documento" ;
    Text [ portuguese_brazilian ] = "Close Document" ;
    Text [ portuguese ] = "Fechar documento" ;
    Text [ french ] = "Fermer le document" ;
    Text [ dutch ] = "Document sluiten" ;
    Text [ spanish ] = "Cerrar documento" ;
    Text [ danish ] = "Luk dokument" ;
    Text [ swedish ] = "Stng dokument" ;
    Text [ finnish ] = "Close Document" ;
    Text [ ENGLISH_US ] = "Close Document" ;
    Text[ chinese_simplified ] = "رĵ";
    Text[ russian ] = " ";
    Text[ polish ] = "Zamknij dokument";
    Text[ japanese ] = "޷Â";
    Text[ chinese_traditional ] = "";
    Text[ arabic ] = " ";
    Text[ dutch ] = "Document sluiten";
    Text[ chinese_simplified ] = "رĵ";
    Text[ greek ] = " ";
    Text[ korean ] = " ݱ";
    Text[ turkish ] = "Belgeyi kapat";
    Text[ language_user1 ] = " ";
};

String STR_EVENT_OPENDOC
{
    Text = "Dokument ffnen" ;
    Text [ ENGLISH ] = "Open Document" ;
    Text [ norwegian ] = "pne Dokument" ;
    Text [ italian ] = "Apri documento" ;
    Text [ portuguese_brazilian ] = "Abrir Documento" ;
    Text [ portuguese ] = "Abrir documento" ;
    Text [ finnish ] = "Open Document" ;
    Text [ danish ] = "bn dokument" ;
    Text [ french ] = "Ouvrir un document" ;
    Text [ swedish ] = "ppna dokument" ;
    Text [ dutch ] = "Document openen" ;
    Text [ spanish ] = "Abrir documento" ;
    Text [ ENGLISH_US ] = "Open Document" ;
    Text[ chinese_simplified ] = "ĵ";
    Text[ russian ] = " ";
    Text[ polish ] = "Otwrz dokument";
    Text[ japanese ] = "޷ĂJ";
    Text[ chinese_traditional ] = "}Ҥ";
    Text[ arabic ] = " ";
    Text[ dutch ] = "Document openen";
    Text[ chinese_simplified ] = "ĵ";
    Text[ greek ] = " ";
    Text[ korean ] = " ";
    Text[ turkish ] = "Belge a";
    Text[ language_user1 ] = " ";
};

String STR_EVENT_SAVEDOC
{
    Text = "Dokument sichern" ;
    Text [ ENGLISH ] = "Save Document" ;
    Text [ norwegian ] = "Save Document" ;
    Text [ italian ] = "Salva documento" ;
    Text [ portuguese_brazilian ] = "Save Document" ;
    Text [ portuguese ] = "Guardar documento" ;
    Text [ french ] = "Sauvegarder le document" ;
    Text [ dutch ] = "Document opslaan" ;
    Text [ spanish ] = "Guardar documento" ;
    Text [ danish ] = "Gem dokument" ;
    Text [ swedish ] = "Spara dokument" ;
    Text [ finnish ] = "Save Document" ;
    Text [ ENGLISH_US ] = "Save Document" ;
    Text[ chinese_simplified ] = "ĵ";
    Text[ russian ] = " ";
    Text[ polish ] = "Zapisz dokument";
    Text[ japanese ] = "޷Ă̕ۑ";
    Text[ chinese_traditional ] = "Os";
    Text[ arabic ] = " ";
    Text[ dutch ] = "Document opslaan";
    Text[ chinese_simplified ] = "ĵ";
    Text[ greek ] = " ";
    Text[ korean ] = " ";
    Text[ turkish ] = "Belgeyi kaydet";
    Text[ language_user1 ] = " ";
};

String STR_EVENT_SAVEASDOC
{
    Text = "Dokument sichern als" ;
    Text [ ENGLISH ] = "Save Document As" ;
    Text [ norwegian ] = "Save Document As" ;
    Text [ italian ] = "Salva documento con nome" ;
    Text [ portuguese_brazilian ] = "Save Document As" ;
    Text [ portuguese ] = "Guardar como" ;
    Text [ french ] = "Sauvegarder le document sous" ;
    Text [ dutch ] = "Document opslaan als" ;
    Text [ spanish ] = "Guardar documento como" ;
    Text [ danish ] = "Gem dokument som" ;
    Text [ swedish ] = "Spara dokument som" ;
    Text [ finnish ] = "Save Document As" ;
    Text [ ENGLISH_US ] = "Save Document As" ;
    Text[ chinese_simplified ] = "ĵΪ";
    Text[ russian ] = "  ";
    Text[ polish ] = "Zapisz dokument jako";
    Text[ japanese ] = "޷ĂɖOtĕۑ鎞";
    Text[ chinese_traditional ] = "ts";
    Text[ arabic ] = "  ";
    Text[ dutch ] = "Document opslaan als";
    Text[ chinese_simplified ] = "ĵΪ";
    Text[ greek ] = "  ";
    Text[ korean ] = " ٸ̸ ";
    Text[ turkish ] = "Belgeyi farkl kaydet";
    Text[ language_user1 ] = " ";
};

String STR_EVENT_SAVEDOCDONE
{
    Text = "Dokument wurde gesichert" ;
    Text [ ENGLISH ] = "Document was saved" ;
    Text [ ENGLISH_US ] = "Document has been saved" ;
    Text[ portuguese ] = "O documento foi guardado";
    Text[ russian ] = " ";
    Text[ greek ] = "  ";
    Text[ dutch ] = "Document is opgeslagen";
    Text[ french ] = "Le document a bien t enregistr";
    Text[ spanish ] = "El documento se guard";
    Text[ italian ] = "Il documento  stato salvato";
    Text[ danish ] = "Dokumentet er blevet gemt";
    Text[ swedish ] = "Dokument har sparats";
    Text[ polish ] = "Dokument zapisany";
    Text[ portuguese_brazilian ] = "Document was saved";
    Text[ japanese ] = "޷Ăۑꂽ";
    Text[ korean ] = "  Ǿϴ.";
    Text[ chinese_simplified ] = "ĵѾ";
    Text[ chinese_traditional ] = "wgxs";
    Text[ arabic ] = "  ";
    Text[ turkish ] = "Belge kaydedildi";
    Text[ language_user1 ] = " ";
};

String STR_EVENT_SAVEASDOCDONE
{
    Text = "Dokument wurde gesichert als" ;
    Text [ ENGLISH ] = "Document was saved as" ;
    Text [ ENGLISH_US ] = "Document has been saved as" ;
    Text[ portuguese ] = "O documento foi guardado como";
    Text[ russian ] = "  ";
    Text[ greek ] = "   ";
    Text[ dutch ] = "Document is opgeslagen als";
    Text[ french ] = "Le document a t enregistr en tant que";
    Text[ spanish ] = "El documento se guard como";
    Text[ italian ] = "Il documento  stato salvato con il nome";
    Text[ danish ] = "Dokumentet er blevet gemt som";
    Text[ swedish ] = "Dokument har sparats som";
    Text[ polish ] = "Dokument zapisany jako";
    Text[ portuguese_brazilian ] = "Document was saved as";
    Text[ japanese ] = "޷ĂɖOtĕۑ";
    Text[ korean ] = "  ̸ Ǿϴ";
    Text[ chinese_simplified ] = "ĵѾΪ";
    Text[ chinese_traditional ] = "wgxs";
    Text[ arabic ] = "   ";
    Text[ turkish ] = "Belge farkl kaydedildi";
    Text[ language_user1 ] = " ";
};

String STR_EVENT_ACTIVATEDOC
{
    Text = "Dokument aktivieren" ;
    Text [ ENGLISH ] = "Activate Document" ;
    Text [ norwegian ] = "Activate Document" ;
    Text [ italian ] = "Attiva documento" ;
    Text [ portuguese_brazilian ] = "Activate Document" ;
    Text [ portuguese ] = "Activar documento" ;
    Text [ french ] = "Activer document" ;
    Text [ dutch ] = "Document activeren" ;
    Text [ spanish ] = "Activar documento" ;
    Text [ danish ] = "Aktiver dokument" ;
    Text [ swedish ] = "Aktivera dokument" ;
    Text [ finnish ] = "Activate Document" ;
    Text [ ENGLISH_US ] = "Activate Document" ;
    Text[ chinese_simplified ] = "ĵ";
    Text[ russian ] = " ";
    Text[ polish ] = "Uaktywnij dokument";
    Text[ japanese ] = "޷Ăèނɂ";
    Text[ chinese_traditional ] = "E";
    Text[ arabic ] = " ";
    Text[ dutch ] = "Document activeren";
    Text[ chinese_simplified ] = "ĵ";
    Text[ greek ] = " ";
    Text[ korean ] = " Ȱȭ";
    Text[ turkish ] = "Belgeyi etkinletir";
    Text[ language_user1 ] = " ";
};

String STR_EVENT_DEACTIVATEDOC
{
    Text = "Dokument deaktivieren" ;
    Text [ ENGLISH ] = "Deactivate Document" ;
    Text [ norwegian ] = "Deactivate Document" ;
    Text [ italian ] = "Disattiva documento" ;
    Text [ portuguese_brazilian ] = "Deactivate Document" ;
    Text [ portuguese ] = "Desactivar documento" ;
    Text [ french ] = "Dsactiver le document" ;
    Text [ dutch ] = "Document deactiveren" ;
    Text [ spanish ] = "Desactivar documento" ;
    Text [ danish ] = "Deaktiver dokument" ;
    Text [ swedish ] = "Deaktivera dokument" ;
    Text [ finnish ] = "Deactivate Document" ;
    Text [ ENGLISH_US ] = "Deactivate Document" ;
    Text[ chinese_simplified ] = "ʧĵ";
    Text[ russian ] = " ";
    Text[ polish ] = "Dezaktywuj dokument";
    Text[ japanese ] = "޷Ăèނɂ";
    Text[ chinese_traditional ] = "";
    Text[ arabic ] = "  ";
    Text[ dutch ] = "Document deactiveren";
    Text[ chinese_simplified ] = "ʧĵ";
    Text[ greek ] = " ";
    Text[ korean ] = " Ȱȭ";
    Text[ turkish ] = "Belgeyi  devreden kart";
    Text[ language_user1 ] = " ";
};

String STR_EVENT_PRINTDOC
{
    Text = "Dokument drucken" ;
    Text [ ENGLISH ] = "Print Document" ;
    Text [ english_us ] = "Print Document" ;
    Text [ italian ] = "Stampa documento" ;
    Text [ spanish ] = "Imprimir documento" ;
    Text [ french ] = "Imprimer le document" ;
    Text [ dutch ] = "Document afdrukken" ;
    Text [ swedish ] = "Skriv ut dokument" ;
    Text [ danish ] = "Udskriv dokument" ;
    Text [ portuguese_brazilian ] = "Dokument drucken" ;
    Text [ portuguese ] = "Imprimir documento" ;
    Text[ chinese_simplified ] = "ӡĵ";
    Text[ russian ] = " ";
    Text[ polish ] = "Drukuj dokument";
    Text[ japanese ] = "޷Ă̈";
    Text[ chinese_traditional ] = "CL";
    Text[ arabic ] = " ";
    Text[ dutch ] = "Document afdrukken";
    Text[ chinese_simplified ] = "ӡĵ";
    Text[ greek ] = " ";
    Text[ korean ] = " μ";
    Text[ turkish ] = "Belgeyi yazdr";
    Text[ language_user1 ] = " ";
};


String STR_ERR_NOTEMPLATE
{
    Text = "Die Vorlage hat ein falsches Format" ;
    Text [ ENGLISH ] = "Chosen template has wrong format" ;
    Text [ dutch ] = "De geselecteerde sjabloon heeft een verkeerd formaat" ;
    Text [ english_us ] = "The selected template has an incorrect format" ;
    Text [ italian ] = "Il modello ha un formato errato" ;
    Text [ spanish ] = "La plantilla tiene un formato incorrecto" ;
    Text [ french ] = "Le format du modle est incorrect" ;
    Text [ swedish ] = "Mallen har ett felaktigt format" ;
    Text [ danish ] = "Skabelonen har et forkert format" ;
    Text [ portuguese_brazilian ] = "Die Vorlage hat ein falsches Format" ;
    Text [ portuguese ] = "O modelo seleccionado tem um formato errado" ;
    Text[ chinese_simplified ] = "ʽʽ";
    Text[ russian ] = "    ";
    Text[ polish ] = "Szablon ma nieprawidowy format";
    Text[ japanese ] = "ڰĂ͏܂";
    Text[ chinese_traditional ] = "˦榡~C";
    Text[ arabic ] = "   ";
    Text[ dutch ] = "De geselecteerde sjabloon heeft een verkeerd formaat";
    Text[ chinese_simplified ] = "ʽʽ";
    Text[ greek ] = "    ";
    Text[ korean ] = "õ øƮ ߸   ֽϴ.";
    Text[ turkish ] = "Seilen ablonun format yanl";
    Text[ language_user1 ] = " ";
};

String STR_ERR_NOFILE
{
    Text = "Die Datei $ kann nicht geffnet werden." ;
    Text [ ENGLISH ] = "Can't open file $." ;
    Text [ dutch ] = "Het bestand $ kan niet worden geopend." ;
    Text [ english_us ] = "Can't open file $." ;
    Text [ italian ] = "Non  possibile aprire il file  $." ;
    Text [ spanish ] = "El archivo $ no se puede abrir." ;
    Text [ french ] = "Impossible d'ouvrir le fichier $ ." ;
    Text [ swedish ] = "Filen $ kan inte ppnas." ;
    Text [ danish ] = "Det er ikke muligt at bne filen $." ;
    Text [ portuguese_brazilian ] = "Die Datei $ kann nicht geffnet werden." ;
    Text [ portuguese ] = "Foi impossvel abrir o ficheiro $." ;
    Text[ chinese_simplified ] = "޷ļ $ ";
    Text[ russian ] = " $   .";
    Text[ polish ] = "Plik $ nie moe zosta otworzony.";
    Text[ japanese ] = "̧$͊JƂł܂B";
    Text[ chinese_traditional ] = "Lk}ɮ $ C";
    Text[ arabic ] = "    $.";
    Text[ dutch ] = "Het bestand $ kan niet worden geopend.";
    Text[ chinese_simplified ] = "޷ļ $ ";
    Text[ greek ] = "       $.";
    Text[ korean ] = " $  ϴ.";
    Text[ turkish ] = "$ dosyas alamyor.";
    Text[ language_user1 ] = " ";
};


String STR_QUITAPP
{
    Text = "~Beenden" ;
    Text [ ENGLISH ] = "E~xit" ;
    Text [ english_us ] = "E~xit" ;
    Text [ italian ] = "~Esci" ;
    Text [ spanish ] = "~Terminar" ;
    Text [ french ] = "~Quitter" ;
    Text [ dutch ] = "~Beindigen" ;
    Text [ swedish ] = "A~vsluta" ;
    Text [ danish ] = "Afslut" ;
    Text [ portuguese_brazilian ] = "~Beenden" ;
    Text [ portuguese ] = "~Sair" ;
    Text[ chinese_simplified ] = "(~X)";
    Text[ russian ] = "";
    Text[ polish ] = "Za~kocz";
    Text[ japanese ] = "I(~X)";
    Text[ chinese_traditional ] = "(~X)";
    Text[ arabic ] = "";
    Text[ dutch ] = "~Beindigen";
    Text[ chinese_simplified ] = "(~X)";
    Text[ greek ] = "";
    Text[ korean ] = "(~X)";
    Text[ turkish ] = "~k";
    Text[ language_user1 ] = " ";
};

String STR_EXITANDRETURN
{
    Text = "~Beenden & zurck zu " ;
    Text [ ENGLISH ] = "E~xit & return to " ;
    Text [ dutch ] = "~Beindigen & terug naar  " ;
    Text [ english_us ] = "E~xit & return to " ;
    Text [ italian ] = "~Esci e ritorna a " ;
    Text [ spanish ] = "~Terminar y regresar a  " ;
    Text [ french ] = "~Quitter & retourner  " ;
    Text [ swedish ] = "~Avsluta och tillbaka till " ;
    Text [ danish ] = "Afslut og g tilbage til " ;
    Text [ portuguese_brazilian ] = "~Beenden & zurck zu " ;
    Text [ portuguese ] = "~Sair & Regressar a " ;
    Text[ chinese_simplified ] = "ͷ(~X)";
    Text[ russian ] = " &    ";
    Text[ polish ] = "Zakocz & Powr do  ";
    Text[ japanese ] = "I&߂(~X)";
    Text[ chinese_traditional ] = "M^(~X)";
    Text[ arabic ] = "   ";
    Text[ dutch ] = "~Beindigen & terug naar  ";
    Text[ chinese_simplified ] = "ͷ(~X)";
    Text[ greek ] = "~    ";
    Text[ korean ] = " & ư (~X)";
    Text[ turkish ] = "~k ve dn: ";
    Text[ language_user1 ] = " ";
};

String STR_EXTHELPSTATUS
{
    Text = "Whlen Sie einen Befehl oder klicken Sie, um ein Thema auszuwhlen." ;
    Text [ English ] = "Select a command or click for a overview." ;
    Text [ english_us ] = "Select a command or click to select a theme." ;
    Text [ italian ] = "Scegliete un comando o cliccate per scegliere un argomento." ;
    Text [ spanish ] = "Seleccione un comando o pulse para seleccionar un tema." ;
    Text [ french ] = "Slectionnez une commande ou cliquez pour choisir une rubrique." ;
    Text [ dutch ] = "Kies een optie of klik om een onderwerp te kiezen." ;
    Text [ swedish ] = "Vlj ett kommando eller klicka fr att vlja ett tema." ;
    Text [ danish ] = "Vlg en kommando eller klik for udvlge et emne." ;
    Text [ portuguese_brazilian ] = "Whlen Sie einen Befehl oder klicken Sie, um ein Thema auszuwhlen." ;
    Text [ portuguese ] = "Seleccione um comando ou clique para escolher um tema." ;
    Text[ chinese_simplified ] = "ѡ߰һѡһ⡣";
    Text[ russian ] = "      .";
    Text[ polish ] = "Wybierz polecenie lub kliknij, by wybra temat.";
    Text[ japanese ] = "ނIԂ ܂ðςI邽߂ɸدĉB";
    Text[ chinese_traditional ] = "бzܩΪ̫@өROMܤ@ӥDDC";
    Text[ arabic ] = "  ѡ  ѡ   .";
    Text[ dutch ] = "Kies een optie of klik om een onderwerp te kiezen.";
    Text[ chinese_simplified ] = "ѡ߰һѡһ⡣";
    Text[ greek ] = "          .";
    Text[ korean ] = "ɾ ϰų õ  ŬϽʽÿ.";
    Text[ turkish ] = "Bir komut sein ya da bir konu semek iin tklayn.";
    Text[ language_user1 ] = " ";
};

String STR_MAIL
{
    Text = "Post" ;
    Text [ English ] = "Mail" ;
    Text [ norwegian ] = "Mail" ;
    Text [ italian ] = "Posta" ;
    Text [ portuguese_brazilian ] = "Correio" ;
    Text [ portuguese ] = "Correio" ;
    Text [ finnish ] = "Shkposti" ;
    Text [ danish ] = "Post" ;
    Text [ french ] = "Courrier" ;
    Text [ swedish ] = "Post" ;
    Text [ dutch ] = "Post" ;
    Text [ spanish ] = "Correo" ;
    Text [ english_us ] = "Mail" ;
    Text[ chinese_simplified ] = "ʼ";
    Text[ russian ] = "";
    Text[ polish ] = "Poczta";
    Text[ japanese ] = "Ұ";
    Text[ chinese_traditional ] = "qll";
    Text[ arabic ] = "";
    Text[ dutch ] = "Post";
    Text[ chinese_simplified ] = "ʼ";
    Text[ greek ] = "";
    Text[ korean ] = "ڿ";
    Text[ turkish ] = "Posta";
    Text[ language_user1 ] = " ";
};

String STR_ADDRESS_NAME
{
    TEXT = "Adressen" ;
    Text [ English ] = "Address" ;
    Text [ english_us ] = "Addresses" ;
    Text [ dutch ] = "Adressen" ;
    Text [ italian ] = "Indirizzi" ;
    Text [ spanish ] = "Direcciones" ;
    Text [ french ] = "Adresses" ;
    Text [ swedish ] = "Adresser" ;
    Text [ danish ] = "Adresser" ;
    Text [ portuguese_brazilian ] = "Adressen" ;
    Text [ portuguese ] = "Endereos" ;
    Text[ chinese_simplified ] = "ַ";
    Text[ russian ] = "";
    Text[ polish ] = "Adresy";
    Text[ japanese ] = "ڽ";
    Text[ chinese_traditional ] = "a}";
    Text[ arabic ] = "";
    Text[ dutch ] = "Adressen";
    Text[ chinese_simplified ] = "ַ";
    Text[ greek ] = "";
    Text[ korean ] = "ּ";
    Text[ turkish ] = "Adres";
    Text[ language_user1 ] = " ";
};

String RID_STR_HELP
{
    TEXT = "Hilfe" ;
    TEXT [ english ] = "help" ;
    Text [ portuguese ] = "Ajuda" ;
    Text [ english_us ] = "Help" ;
    Text [ portuguese_brazilian ] = "Hilfe" ;
    Text [ swedish ] = "Hjlp" ;
    Text [ danish ] = "Hjlp" ;
    Text [ italian ] = "Guida" ;
    Text [ spanish ] = "Ayuda" ;
    Text [ french ] = "Aide" ;
    Text [ dutch ] = "Help" ;
    Text[ chinese_simplified ] = "";
    Text[ russian ] = "";
    Text[ polish ] = "Pomoc";
    Text[ japanese ] = "";
    Text[ chinese_traditional ] = "";
    Text[ arabic ] = "";
    Text[ dutch ] = "Help";
    Text[ chinese_simplified ] = "";
    Text[ greek ] = "";
    Text[ korean ] = "";
    Text[ turkish ] = "Yardm";
    Text[ language_user1 ] = " ";
};

String RID_STR_NOAUTOSTARTHELPAGENT
{
    TEXT = "Bei 'XX' nicht automatisch starten" ;
    TEXT [ English ] = "Bei 'XX' nicht automatisch starten" ;
    Text [ english_us ] = "No automatic start at 'XX'" ;
    Text [ portuguese_brazilian ] = "Bei ''XX'' nicht automatisch starten" ;
    Text [ swedish ] = "Ingen automatisk start vid 'XX'" ;
    Text [ danish ] = "Start ikke automatisk ved ''XX''" ;
    Text [ italian ] = "Non avviare automaticamente con  'XX'" ;
    Text [ spanish ] = "No iniciar automticamente con 'XX'" ;
    Text [ french ] = "Ne pas lancer automatiquement pour la fonction 'XX'" ;
    Text [ dutch ] = "Bij 'XX' niet automatisch starten" ;
    Text [ portuguese ] = "No iniciar 'XX' automaticamente." ;
    Text[ chinese_simplified ] = " 'XX' ʱԶС";
    Text[ russian ] = "   'XX'";
    Text[ polish ] = "Przy 'XX' nie startuj automatycznie";
    Text[ japanese ] = "'XX'ŎIɊJnȂB";
    Text[ chinese_traditional ] = "b 'XX' ɤ۰ʹBC";
    Text[ arabic ] = "    'XX'";
    Text[ dutch ] = "Bij 'XX' niet automatisch starten";
    Text[ chinese_simplified ] = " 'XX' ʱԶС";
    Text[ greek ] = "    'XX'";
    Text[ korean ] = "'XX' ڵ  ȵ˴ϴ.";
    Text[ turkish ] = "'XX' olduunda otomatik balatma yaplmasn";
    Text[ language_user1 ] = " ";
};

String RID_STR_NOWELCOMESCREEN
{
    TEXT = "Tipps nicht mehr anzeigen" ;
    TEXT [ English ] = "Tips nicht mehr anzeigen" ;
    Text [ english_us ] = "Don't display tips" ;
    Text [ portuguese_brazilian ] = "Tips nicht mehr anzeigen" ;
    Text [ swedish ] = "Visa inte tips mer" ;
    Text [ danish ] = "Vis ikke flere tip" ;
    Text [ italian ] = "Non mostrare pi i suggerimenti" ;
    Text [ spanish ] = "No mostrar ms las sugerencias" ;
    Text [ french ] = "Ne plus afficher les astuces" ;
    Text [ dutch ] = "Tips niet meer weergeven" ;
    Text [ portuguese ] = "No mostrar sugestes" ;
    Text[ chinese_simplified ] = "ʾʾ";
    Text[ russian ] = "   ";
    Text[ polish ] = "Nie wywietlaj porad";
    Text[ japanese ] = "Ă\\Ȃ";
    Text[ chinese_traditional ] = "nAܴ";
    Text[ arabic ] = "    ";
    Text[ dutch ] = "Tips niet meer weergeven";
    Text[ chinese_simplified ] = "ʾʾ";
    Text[ greek ] = "    ";
    Text[ korean ] = " ǥ ";
    Text[ turkish ] = "neri grntleme";
    Text[ language_user1 ] = " ";
};

String RID_HELPBAR
{
    TEXT = "Hilfe-Leiste" ;
    TEXT [ English ] = "Hilfe-Leiste" ;
    Text [ portuguese ] = "Barra da Ajuda" ;
    Text [ english_us ] = "Help Bar" ;
    Text [ portuguese_brazilian ] = "Hilfe-Leiste" ;
    Text [ swedish ] = "Hjlplist" ;
    Text [ danish ] = "Hjlp-linje" ;
    Text [ italian ] = "Barra della Guida" ;
    Text [ spanish ] = "Barra de ayuda" ;
    Text [ french ] = "Barre de l'aide" ;
    Text [ dutch ] = "Helpbalk" ;
    Text[ chinese_simplified ] = "";
    Text[ russian ] = " ";
    Text[ polish ] = "Pasek pomocy";
    Text[ japanese ] = " ް";
    Text[ chinese_traditional ] = "C";
    Text[ arabic ] = " ";
    Text[ dutch ] = "Helpbalk";
    Text[ chinese_simplified ] = "";
    Text[ greek ] = " ";
    Text[ korean ] = " ";
    Text[ turkish ] = "Yardm ubuu";
    Text[ language_user1 ] = " ";
};

ToolBox RID_HELPBAR
{
    HelpId = HID_HELPBAR ;
    Hide = TRUE ;
    ItemList =
    {
        ToolBoxItem
        {
            Identifier = SID_HELP_INDEX ;
        };
        ToolBoxItem
        {
            Identifier = SID_HELP_HELPFILEBOX ;
        };
        ToolBoxItem
        {
            Type = TOOLBOXITEM_SEPARATOR ;
        };
        ToolBoxItem
        {
            Identifier = SID_HELP_ZOOMOUT;
        };
        ToolBoxItem
        {
            Identifier = SID_HELP_ZOOMIN;
        };
        ToolBoxItem
        {
            Type = TOOLBOXITEM_SEPARATOR ;
        };
        ToolBoxItem
        {
            Identifier = SID_HELP_SEARCH ;
        };
        ToolBoxItem
        {
            Identifier = SID_HELP_BOOKMARK ;
        };
        ToolBoxItem
        {
            Identifier = SID_HELP_ANNOTATE ;
        };
        /*
        ToolBoxItem
        {
            Type = TOOLBOXITEM_SEPARATOR ;
        };
        ToolBoxItem
        {
            Identifier = SID_HELP_DOWNLOAD ;
        };
*/
    };
};

String RID_STR_HLPFILENOTEXIST
{
    TEXT = "Es ist zu diesem Thema keine Hilfe installiert." ;
    TEXT [ english ] = "Es ist zu diesem Thema keine Hilfe installiert." ;
    Text [ english_us ] = "The help file for this topic is not installed." ;
    Text [ portuguese_brazilian ] = "Die Hilfedatei 'XX' existiert nicht" ;
    Text [ swedish ] = "Det finns ingen hjlp installerad fr detta mne." ;
    Text [ danish ] = "Der er ikke installeret Hjlp til dette emne." ;
    Text [ italian ] = "La Guida relativa a questo argomento non  stata installata." ;
    Text [ spanish ] = "El archivo de ayuda para este tema no ha sido instalado." ;
    Text [ french ] = "Vous n'avez pas install l'aide correspondant  ce sujet." ;
    Text [ dutch ] = "Bij dit onderwerp werd geen Help genstalleerd." ;
    Text [ portuguese ] = "O ficheiro de ajuda para este tpico no est instalado." ;
    Text[ chinese_simplified ] = "ûаװйļ";
    Text[ russian ] = "     .";
    Text[ polish ] = "Dla tego tematu nie zainstalowano pliku pomocy.";
    Text[ japanese ] = "ðςɊւ߂ͲݽİقĂ܂B";
    Text[ chinese_traditional ] = "SwoӥDDɮסC";
    Text[ arabic ] = "      .";
    Text[ dutch ] = "Bij dit onderwerp werd geen Help genstalleerd.";
    Text[ chinese_simplified ] = "ûаװйļ";
    Text[ greek ] = "         .";
    Text[ korean ] = "    ġ ʾҽϴ.";
    Text[ turkish ] = "Bu konu ile ilgili yardm kurulmad.";
    Text[ language_user1 ] = " ";
};

String RID_STR_HLPAPPNOTSTARTED
{
    TEXT = "Die Hilfeapplikation konnte nicht gestartet werden" ;
    TEXT [ english ] = "The help application could not be started" ;
    Text [ dutch ] = "De Help-applicatie kon niet worden opgestart" ;
    Text [ english_us ] = "The help system could not be started" ;
    Text [ italian ] = "Non  stato possibile avviare l'applicazione ausiliaria" ;
    Text [ spanish ] = "No se pudo iniciar la aplicacin de ayuda." ;
    Text [ french ] = "Impossible de lancer l'application d'aide" ;
    Text [ swedish ] = "Hjlptillmpningen kunde inte startas" ;
    Text [ danish ] = "Det var ikke muligt at starte Hjlp-applikationen" ;
    Text [ portuguese ] = "Foi impossvel iniciar o sistema de ajuda." ;
    Text [ portuguese_brazilian ] = "Die Hilfeapplikation konnte nicht gestartet werden" ;
    Text[ chinese_simplified ] = "޷Ӧó";
    Text[ russian ] = "    ";
    Text[ polish ] = "Systemu pomocy nie mona byo uruchomi";
    Text[ japanese ] = "߱ع݂Jnł܂ł";
    Text[ chinese_traditional ] = "LkҰʻε{C";
    Text[ arabic ] = "   ";
    Text[ dutch ] = "De Help-applicatie kon niet worden opgestart";
    Text[ chinese_simplified ] = "޷Ӧó";
    Text[ greek ] = "       ";
    Text[ korean ] = " ý ۵ ʾҽϴ.";
    Text[ turkish ] = "Yardm uygulamas balatlamad";
    Text[ language_user1 ] = " ";
};

 //----------------------------------------------------------------------------

String RID_ENVTOOLBOX
{
    TEXT = "Funktionsleiste" ;
    TEXT [ english ] = "Function bar" ;
    Text [ dutch ] = "Werkbalk" ;
    Text [ english_us ] = "Function Bar" ;
    Text [ italian ] = "Barra delle funzioni" ;
    Text [ spanish ] = "Barra de funciones" ;
    Text [ french ] = "Barre de fonctions" ;
    Text [ swedish ] = "Funktionslist" ;
    Text [ danish ] = "Funktionslinje" ;
    Text [ portuguese_brazilian ] = "Funktionsleiste" ;
    Text [ portuguese ] = "Barra de funes" ;
    Text[ chinese_simplified ] = "";
    Text[ russian ] = " ";
    Text[ polish ] = "Pasek funkcji";
    Text[ japanese ] = "̧ݸ ް";
    Text[ chinese_traditional ] = "uC";
    Text[ arabic ] = " ";
    Text[ dutch ] = "Werkbalk";
    Text[ chinese_simplified ] = "";
    Text[ greek ] = " ";
    Text[ korean ] = " ";
    Text[ turkish ] = "lev ubuu";
    Text[ language_user1 ] = " ";
};

ToolBox RID_ENVTOOLBOX
{
    HelpId = RID_ENVTOOLBOX ;
    ButtonType = BUTTON_SYMBOL ;
    LineSpacing = TRUE ;
    Border = TRUE ;
    Scroll = TRUE ;
    SVLook = TRUE ;
    Dockable = TRUE ;
    Moveable = TRUE ;
    Sizeable = TRUE ;
    Closeable = TRUE ;
    Zoomable = TRUE ;
    Customize = TRUE ;
    FloatingMode = FALSE ;
    Hide = TRUE ;
    HideWhenDeactivate = TRUE ;
    Align = BOXALIGN_TOP ;
    ItemList =
    {
        ToolBoxItem
        {
            Identifier = SID_TOPDOC ;
        };
/*      ToolBoxItem
        {
            Identifier = SID_OPENURL ;
        };*/
        ToolBoxItem
        {
            Type = TOOLBOXITEM_SEPARATOR ;
        };
/*      ToolBoxItem
        {
            Identifier = SID_BROWSE_BACKWARD ;
        };
        ToolBoxItem
        {
            Identifier = SID_BROWSE_FORWARD ;
        };*/
        ToolBoxItem
        {
            Identifier = SID_BROWSE_STOP ;
        };
        ToolBoxItem
        {
            Type = TOOLBOXITEM_SEPARATOR ;
        };
/*      ToolBoxItem
        {
            Identifier = SID_RELOAD ;
        };*/
        ToolBoxItem
        {
            Identifier = SID_EDITDOC ;
        };
        ToolBoxItem
        {
            Type = TOOLBOXITEM_SEPARATOR ;
        };
        ToolBoxItem
        {
            Identifier = SID_NEWDOC ;
            Hide = TRUE;
        };
        ToolBoxItem
        {
            Identifier = SID_OPENDOC ;
        };
        ToolBoxItem
        {
            Identifier = SID_SAVEDOC ;
        };
        ToolBoxItem
        {
            Identifier = SID_SAVEASDOC ;
            Hide = TRUE;
        };
/*      ToolBoxItem
        {
            Identifier = SID_MAIL_SEND ;
        };*/
        ToolBoxItem
        {
            Identifier = SID_PRINTDOCDIRECT ;
        };
        ToolBoxItem
        {
            Identifier = FN_FAX ;
            Hide = TRUE;
        };
        ToolBoxItem
        {
            Type = TOOLBOXITEM_SEPARATOR ;
        };
        ToolBoxItem
        {
            Identifier = SID_CUT ;
        };
        ToolBoxItem
        {
            Identifier = SID_COPY ;
        };
        ToolBoxItem
        {
            Identifier = SID_PASTE ;
        };
        ToolBoxItem
        {
            Type = TOOLBOXITEM_SEPARATOR ;
        };
        ToolBoxItem
        {
            Identifier = SID_UNDO ;
        };
        ToolBoxItem
        {
            Identifier = SID_REDO ;
        };
        ToolBoxItem
        {
            Type = TOOLBOXITEM_SEPARATOR ;
        };
        ToolBoxItem
        {
            Identifier = SID_NAVIGATOR ;
        };
        ToolBoxItem
        {
            Identifier = SID_STYLE_DESIGNER ;
        };
        ToolBoxItem
        {
            Identifier = SID_HYPERLINK_DIALOG ;
        };
/*      ToolBoxItem
        {
            Identifier = SID_HELP_PI ;
        };*/
        ToolBoxItem
        {
            Identifier = SID_WIN_FULLSCREEN ;
            Hide = TRUE;
        };
        ToolBoxItem
        {
            Type = TOOLBOXITEM_SEPARATOR ;
        };
/*      ToolBoxItem
        {
            Identifier = SID_INTERNET_ONLINE ;
        };
        ToolBoxItem
        {
            Type = TOOLBOXITEM_SEPARATOR ;
        };*/
        ToolBoxItem
        {
            Identifier = SID_CLOSEDOC;
            Hide = TRUE;
        };
    };
};

 // Image-Listen ----------------------------------------------------------

#define IMAGE_ID_LIST\
    IdList = {\
        SID_OPENURL;\
        SID_BROWSE_BACKWARD;\
        SID_BROWSE_FORWARD;\
        SID_BROWSE_STOP;\
        SID_BROWSE_HOME;\
        SID_RELOAD;\
        SID_EDITDOC;\
        SID_SAVEDOC;\
        SID_SAVEDOCTOBOOKMARK;\
        SID_CREATELINK;\
        SID_MAIL_SEND;\
        SID_PRINTDOCDIRECT;\
        SID_CUT;\
        SID_COPY;\
        SID_UNDO;\
        SID_REDO;\
        SID_EXPLORER;\
        SID_BROWSER;\
        SID_NAVIGATOR;\
        SID_STYLE_DESIGNER;\
        SID_AUTOMAIL;\
        SID_AUTOBROWSE;\
        SID_EXPLORER_CREATEFOLDER;\
        SID_EXPLORER_CREATEBOOKMARK;\
        SID_EXPLORER_CREATEWORKPLACE;\
        SID_EXPLORER_CREATELINK;\
        SID_EXPLORER_CREATEMAILINTRAY;\
        SID_EXPLORER_CREATENEWSSERVER;\
        SID_EXPLORER_CREATEFTPSERVER;\
        SID_EXPLORER_CREATEDATABASE;\
        SID_EXPLORER_CREATEGALLERY;\
        SID_PROPERTIES;\
        SID_EXPLORER_MAKEROOT;\
        SID_EXPLORER_MAKEBMKDIR;\
        SID_EXPLORER_PREVLEVEL;\
        SID_EXPLORER_IMPORTBOOKMARKS;\
        SID_EDIT_FRAMESET;\
        SID_SPLIT_HORIZONTAL;\
        SID_SPLIT_VERTICAL;\
        SID_SPLIT_PARENT_HORIZONTAL;\
        SID_SPLIT_PARENT_VERTICAL;\
        SID_MODIFY_FRAME;\
        SID_EXPLORER_SEARCHORIGINAL;\
        SID_EXPLORER_DETAILS;\
        SID_EXPLORER_ICONS;\
    };\
    IdCount = {\
        45;\
    };

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

ImageList RID_DEFAULTIMAGELIST_SC
{
    ImageBitmap = Bitmap { FILE = "sc_out.bmp" ; };
    MaskColor = IMAGE_STDBTN_COLOR ;
    IMAGE_ID_LIST
};

ImageList RID_DEFAULTIMAGELIST_LC
{
    ImageBitmap = Bitmap { FILE = "lc_out.bmp" ; };
    MaskColor = IMAGE_STDBTN_COLOR ;
    IMAGE_ID_LIST
};

String RID_SPECIALCONFIG_ERROR
{
    Text[ language_user1 ] = " "; \
    Text = "In der Spezialkonfiguration wurde ein Fehler festgestellt.\nBitte wenden Sie sich an Ihren Administrator!" ;
    Text [ English ] = "An error has occurred in the special configuration.\nPlease contact your administrator!" ;
    Text [ portuguese ] = "Foi detectado um erro na configurao especial. Queira contactar o seu Administrador!" ;
    Text [ english_us ] = "An error has occurred in the special configuration.\nPlease contact your administrator." ;
    Text [ portuguese_brazilian ] = "In der Spezialkonfiguration wurde ein Fehler festgestellt. Bitte wenden Sie sich an Ihren Administrator!" ;
    Text [ swedish ] = "Ett fel har upptckts i specialkonfigurationen.\nKontakta Din administratr!" ;
    Text [ danish ] = "Der blev opdaget en fejl i specialkonfigurationen.\nHenvend dig venligst til din administrator!" ;
    Text [ italian ] = "Nella configurazione speciale  stato trovato un errore.\nRivolgetevi al vostro amministratore!" ;
    Text [ spanish ] = "En la configuracin especial se ha detectado un error.\nPngase por favor en contacto con su administrador." ;
    Text [ french ] = "Une erreur a t dtecte dans la configuration spciale.\nVeuillez consulter l'administrateur !" ;
    Text [ dutch ] = "In de speciale configuratie is een fout opgetreden. Wendt u zich s.v.p. aan uw administrator!" ;
    Text[ chinese_simplified ] = "һļڷһ\nĹԱϵ";
    Text[ russian ] = "    .\n,    !";
    Text[ polish ] = "W konfiguracji specjalnej stwierdzono bd.\nZwr si do swojego administratora!";
    Text[ japanese ] = "ȐݒŴװ܂B\nƽڰɘAĂB";
    Text[ chinese_traditional ] = "b@ӯStmɮפo{@ӿ~CЩM޲zpT";
    Text[ arabic ] = "     .\n    !";
    Text[ dutch ] = "In de speciale configuratie is een fout opgetreden. Wendt u zich s.v.p. aan uw administrator!";
    Text[ chinese_simplified ] = "һļڷһ\nĹԱϵ";
    Text[ greek ] = "    .\n     !";
    Text[ korean ] = "Ư  ߻Ǿϴ. ڿ Ͻñ ٶϴ !";
    Text[ turkish ] = "zel konfigrasyonda bir hata bulundu.\nLtfen sistem yneticinize bavurun!";
};


String STR_MEMINFO_HEADER
{
    Text = "In der Applikation existieren derzeit $(TOTAL) Dokumente. Davon sind $(VISIBLE) Dokumente sichtbar. Im Memory Cache befinden sich $(CACHE) Dokumente.<BR><BR><b>Dokumente:</b><BR><table width=100%><tr><td >Sicht.</td><td>Cached</td><td>Exp.</td><td>Dirty</td><td>Exec</td><td>Forb</td><td>Dokumenttyp</td><td>URL</td><td>PreRedirect URL</td><td>Poststring</td></tr>" ;
};

String STR_MEMINFO_FOOTER
{
    Text = "</table>" ;
};

String STR_MEMINFO_OBJINFO
{
    Text = "<tr><td >$(VISIBLE)</td><td>$(CACHED)</td><td>$(EXPIRE)</td><td>$(JSDIRTY)</td><td>$(JSEXEC)</td><td>$(FORBID)</td><td>$(FACTORY)</td><td>$(URL)</td><td>$(ORIGURL)</td><td>$(POSTSTRING)</td></tr>" ;
};

String RID_PLUGIN
{
    Text = "PlugIn Aktivierung" ;
    Text [ English ] = "PlugIn activation" ;
    Text [ portuguese ] = "Activar PlugIn" ;
    Text [ english_us ] = "Enable plug-ins" ;
    Text [ portuguese_brazilian ] = "PlugIn Aktivierung" ;
    Text [ swedish ] = "Aktivera PlugIn" ;
    Text [ danish ] = "Aktiver PlugIns" ;
    Text [ italian ] = "Attivazione PlugIn " ;
    Text [ spanish ] = "Activar Plug-in" ;
    Text [ french ] = "Activer Plug-In" ;
    Text [ dutch ] = "PlugIn-activering" ;
    Text[ chinese_simplified ] = " Plug-In";
    Text[ russian ] = " Plug-In";
    Text[ polish ] = "Wcz PlugIn";
    Text[ japanese ] = "׸޲݂èނɂ";
    Text[ chinese_traditional ] = "E Plug-In";
    Text[ arabic ] = " Plug-In";
    Text[ dutch ] = "PlugIn-activering";
    Text[ chinese_simplified ] = " Plug-In";
    Text[ greek ] = " PlugIn";
    Text[ korean ] = "÷  ";
    Text[ turkish ] = "Plug-In'leri etkinletir";
    Text[ language_user1 ] = " ";
};

String STR_EDITOBJECT
{
    Text = "~Bearbeiten";
    Text [ English ] = "~Edit";
    Text [ English_us ] = "~Edit";
    Text[ portuguese ] = "~Editar";
    Text[ russian ] = "";
    Text[ dutch ] = "~Bewerken";
    Text[ french ] = "~diter";
    Text[ spanish ] = "~Editar";
    Text[ italian ] = "~Modifica";
    Text[ danish ] = "Rediger";
    Text[ swedish ] = "~Redigera";
    Text[ polish ] = "~Edytuj";
    Text[ portuguese_brazilian ] = "~Edit";
    Text[ japanese ] = "ҏW(~E)";
    Text[ chinese_simplified ] = "༭(~E)";
    Text[ chinese_traditional ] = "s(~E)";
    Text[ arabic ] = "";
    Text[ dutch ] = "~Bewerken";
    Text[ chinese_simplified ] = "༭(~E)";
    Text[ greek ] = "~";
    Text[ korean ] = "(~E)";
    Text[ turkish ] = "~Dzenle";
    Text[ language_user1 ] = " ";
};

String STR_OPENOBJECT
{
    Text = "~ffnen";
    Text [ English ] = "~Open";
    Text [ English_us ] = "~Open";
    Text[ portuguese ] = "~Abrir";
    Text[ russian ] = "";
    Text[ dutch ] = "~Openen";
    Text[ french ] = "~Ouvrir";
    Text[ spanish ] = "~Abrir";
    Text[ italian ] = "~Apri";
    Text[ danish ] = "bn";
    Text[ swedish ] = "~ppna";
    Text[ polish ] = "Otwrz";
    Text[ portuguese_brazilian ] = "~Open";
    Text[ japanese ] = "J(~O)";
    Text[ chinese_simplified ] = "(~O)";
    Text[ chinese_traditional ] = "}ҷs(~O)";
    Text[ arabic ] = "";
    Text[ dutch ] = "~Openen";
    Text[ chinese_simplified ] = "(~O)";
    Text[ greek ] = "";
    Text[ korean ] = "(~O)";
    Text[ turkish ] = "~A";
    Text[ language_user1 ] = " ";
};

String STR_CORRUPT_INSTALLATION
{
    Text = "Wichtige Programmteile konnten nicht korrekt initialisiert werden.\nBitte starten sie Setup mit der Option /repair.";
    Text [ English ] = "Important program components could not be initialized correctly. Please start the setup program with the option /repair.";
    Text [ English_us ] = "Important program components could not be initialized correctly.\nPlease start the setup program with the option /Repair.";
    Text[ portuguese ] = "Foi impossvel iniciar a importao dos componentes do programa correctamente.\nInicie o programa de instalao (Setup) com a opo /repair.";
    Text[ greek ] = "           .\n        /repair..";
    Text[ dutch ] = "Belangrijke programmaonderdelen konden niet correct worden genitialiseerd.\nStart het setup programma met de optie /Repareren.";
    Text[ french ] = "Certains composants importants du programme n'ont pas pu tre initialiss. Veuillez activer le programme d'installation (Setup) et y activer l'option de rparation (Repair).";
    Text[ spanish ] = "Algunos componentes importantes del programa no se pudieron instalar.\nInicie por favor el programa de instalacin con la opcin /repair.";
    Text[ swedish ] = "Viktiga programdelar kunde inte initialiseras korrekt.\nVar vnlig och starta setupen med alternativet /repair.";
    Text[ russian ] = "      .\n, ,     /repair.";
    Text[ italian ] = "Impossibile inizializzare importanti componenti del programma.\nAvviate il setup con l'opzione /Riparazione.";
    Text[ danish ] = "Det var ikke muligt at initialisere vigtige programdele korrekt.\nStart venligst installationsprogrammet (Setup) med alternativet / reparation.";
    Text[ polish ] = "Wane czci programu nie mogy zosta prawidowo zainstalowane.\nProsz uruchomi program instalacyjny uywajc opcji / repair";
    Text[ portuguese_brazilian ] = "Important program components could not be initialized correctly. Please start the setup program with the option /repair.";
    Text[ japanese ] = "؂۸т̕ɏ܂łB\nı߂߼/CŊJnĉB";
    Text[ korean ] = "α׷ ߿ κ  ʱȭ ߽ϴ. \nɼ/ Setup Ͻʽÿ.";
    Text[ chinese_simplified ] = "޷ȷʼҪij̲\nװִѡ޲";
    Text[ chinese_traditional ] = "Lk̪lƭn{CбzҰʦw˵{A`ﶵC";
    Text[ arabic ] = "       .\n     /repair.";
    Text[ turkish ] = "nemli program eleri doru bir ekilde balatlamad.\nKurulumu /repair seenei ile balatn.";
};

String IDS_SBERR_STOREREF
{
    Text = "Referenz wird nicht gespeichert: ";
    Text [ italian ] = "Il riferimento non viene salvato: ";
    Text [ portuguese_brazilian ] = "reference will not be saved: ";
    Text [ portuguese ] = "A referncia no ser guardada:  ";
    Text [ danish ] = "Referencen bliver ikke gemt: ";
    Text [ french ] = "Impossible d'enregistrer la rfrence : ";
    Text [ swedish ] = "Referens sparas inte:  ";
    Text [ dutch ] = "Verwijzing wordt niet opgeslagen:  ";
    Text [ spanish ] = "No se guardar la referencia:  ";
    Text [ english_us ] = "Reference will not be saved: ";
    Text[ chinese_simplified ] = "ᱣ ";
    Text[ language_user1 ] = " ";
    Text[ russian ] = "   : ";
    Text[ polish ] = "Odwoanie nie zostao zapisane: ";
    Text[ japanese ] = "QƂ͕ۑ܂: ";
    Text[ chinese_traditional ] = "xsѷӡG ";
    Text[ arabic ] = "   :";
    Text[ dutch ] = "Verwijzing wordt niet opgeslagen:  ";
    Text[ chinese_simplified ] = "ᱣ ";
    Text[ greek ] = "    : ";
    Text[ korean ] = "   Դϴ: ";
    Text[ turkish ] = "Referans kaydedilmeyecek: ";
};

 // ********************************************************************** EOF