summaryrefslogtreecommitdiff
path: root/svtools/source/misc/errtxt.src
blob: 988bd698342102be464ef1e0be0e44ac4ecef91d (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
/*************************************************************************
 *
 *  $RCSfile: errtxt.src,v $
 *
 *  $Revision: 1.41 $
 *
 *  last change: $Author: hr $ $Date: 2003-03-27 14:39:12 $
 *
 *  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): _______________________________________
 *
 *
 ************************************************************************/

#define __RSC
#include "svtools.hrc"
#include "sfxecode.hxx"
 // pragma ----------------------------------------------------------------
Resource RID_ERRCTX
{
    String ERRCTX_ERROR
    {
        Text = "Fehler" ;
        Text [ ENGLISH ] = "Error" ;
        Text [ english_us ] = "Error" ;
        Text [ italian ] = "Errore" ;
        Text [ spanish ] = "Error" ;
        Text [ french ] = "Erreur" ;
        Text [ dutch ] = "Fout" ;
        Text [ swedish ] = "Fel" ;
        Text [ danish ] = "Fejl" ;
        Text [ portuguese_brazilian ] = "Fehler" ;
        Text [ portuguese ] = "Erro" ;
        Text[ chinese_simplified ] = "错误";
        Text[ russian ] = "";
        Text[ polish ] = "Bd";
        Text[ japanese ] = "エラー";
        Text[ chinese_traditional ] = "錯誤";
        Text[ arabic ] = "";
        Text[ dutch ] = "Fout";
        Text[ chinese_simplified ] = "错误";
        Text[ greek ] = "";
        Text[ korean ] = "오류";
        Text[ turkish ] = "Hata";
        Text[ language_user1 ] = " ";
        Text[ catalan ] = "S'ha produt un error";
        Text[ finnish ] = "Virhe";
        Text[ thai ] = "ข้อผิดพลาด";
    };
    String ERRCTX_WARNING
    {
        Text = "Warnung" ;
        Text [ ENGLISH ] = "Warning" ;
        Text [ dutch ] = "Waarschuwing" ;
        Text [ english_us ] = "Warning" ;
        Text [ italian ] = "Avvertenza" ;
        Text [ spanish ] = "Advertencia" ;
        Text [ french ] = "Avertissement" ;
        Text [ swedish ] = "Varning" ;
        Text [ danish ] = "Advarsel" ;
        Text [ portuguese ] = "Advertncia" ;
        Text [ portuguese_brazilian ] = "Warnung" ;
        Text[ chinese_simplified ] = "警告";
        Text[ russian ] = "";
        Text[ polish ] = "Ostrzeenie";
        Text[ japanese ] = "警告";
        Text[ chinese_traditional ] = "警告";
        Text[ arabic ] = "";
        Text[ dutch ] = "Waarschuwing";
        Text[ chinese_simplified ] = "警告";
        Text[ greek ] = "";
        Text[ korean ] = "경고";
        Text[ turkish ] = "Uyar";
        Text[ catalan ] = "Advertncia";
        Text[ finnish ] = "Varoitus";
        Text[ thai ] = "คำเตือน";
    };
    String ERRCTX_SFX_LOADTEMPLATE
    {
        Text = "$(ERR) beim Laden der Vorlage $(ARG1)" ;
        Text [ ENGLISH ] = "$(ERR) while loading template $(ARG1)" ;
        Text [ dutch ] = "$(ERR) bij laden van sjabloon $(ARG1)" ;
        Text [ english_us ] = "$(ERR) loading the template $(ARG1)" ;
        Text [ italian ] = "$(ERR) nel caricare il modello $(ARG1)" ;
        Text [ spanish ] = "$(ERR) al cargar la plantilla $(ARG1)" ;
        Text [ french ] = "$(ERR) lors du chargement du modle $(ARG1)" ;
        Text [ swedish ] = "$(ERR) vid laddning av mallen $(ARG1)" ;
        Text [ danish ] = "$(ERR) under indlsning af skabelonen $(ARG1)" ;
        Text [ portuguese ] = "$(ERR) ao carregar o modelo $(ARG1)" ;
        Text [ portuguese_brazilian ] = "$(ERR) beim Laden der Vorlage $(ARG1)" ;
        Text[ chinese_simplified ] = "$(ERR)发生在装入样式$(ARG1)时";
        Text[ russian ] = "$(ERR)    $(ARG1)";
        Text[ polish ] = "$(ERR) przy adowaniu szablonu $(ARG1)";
        Text[ japanese ] = "テンプレート $(ARG1) を読み込む際の $(ERR)";
        Text[ chinese_traditional ] = "載入樣式 $(ARG1) 時發生 $(ERR)";
        Text[ arabic ] = "$(ERR)    $(ARG1)";
        Text[ dutch ] = "$(ERR) bij laden van sjabloon $(ARG1)";
        Text[ chinese_simplified ] = "$(ERR)发生在装入样式$(ARG1)时";
        Text[ greek ] = "$(ERR)      $(ARG1)";
        Text[ korean ] = "서식 파일 $(ARG1)을(를) 로드하는 중에 $(ERR)";
        Text[ turkish ] = "$(ARG1) ablonu yklenirken $(ERR)";
        Text[ language_user1 ] = " ";
        Text[ catalan ] = "$(ERR) en carregar la plantilla $(ARG1)";
        Text[ finnish ] = "$(ERR) ladattaessa mallia $(ARG1)";
        Text[ thai ] = "$(ERR) กำลังโหลดแม่แบบ $(ARG1)";
    };
    String ERRCTX_SFX_SAVEDOC
    {
        Text = "$(ERR) beim Speichern des Dokumentes $(ARG1)" ;
        Text [ italian ] = "$(ERR) nel salvare il documento $(ARG1)";
        Text [ portuguese_brazilian ] = "$(ERR) beim Speichern des Dokumentes $(ARG1)";
        Text [ portuguese ] = "$(ERR) ao guardar o documento $(ARG1)";
        Text [ danish ] = "$(ERR) under forsg p at gemme dokumentet $(ARG1)";
        Text [ french ] = "$(ERR) lors de l'enregistrement du document $(ARG1)";
        Text [ swedish ] = "$(ERR) nr dokumentet $(ARG1) sparades";
        Text [ dutch ] = "$(ERR) bij opslaan van document $(ARG1)";
        Text [ spanish ] = "$(ERR) al guardar el documento $(ARG1)";
        Text [ english_us ] = "$(ERR) saving the document $(ARG1)";
        Text[ chinese_simplified ] = "存盘文档 $(ARG1) 时发生 $(ERR)";
        Text[ russian ] = "$(ERR)    $(ARG1)";
        Text[ polish ] = "$(ERR) przy zapisywaniu dokumentu $(ARG1)";
        Text[ japanese ] = "$(ERR)ドキュメント$(ARG1)の保存の際";
        Text[ chinese_traditional ] = "儲存文件 $(ARG1) 時發生 $(ERR)";
        Text[ arabic ] = "$(ERR)    $(ARG1)";
        Text[ dutch ] = "$(ERR) bij opslaan van document $(ARG1)";
        Text[ chinese_simplified ] = "存盘文档 $(ARG1) 时发生 $(ERR)";
        Text[ greek ] = "$(ERR)     $(ARG1)";
        Text[ korean ] = "문서$(ARG1)을(를) 저장하는 중에 $(ERR)";
        Text[ turkish ] = "$(ARG1) belgesi kaydedilirken $(ERR)";
        Text[ language_user1 ] = " ";
        Text[ catalan ] = "$(ERR) en desar el document $(ARG1)";
        Text[ finnish ] = "$(ERR) tallennettaessa asiakirjaa $(ARG1)";
        Text[ thai ] = "$(ERR) กำลังบันทึกเอกสาร $(ARG1)";
    };
    String ERRCTX_SFX_SAVEASDOC
    {
        Text = "$(ERR) beim Speichern des Dokumentes $(ARG1)";
        Text [ italian ] = "$(ERR) nel salvare il documento $(ARG1)";
        Text [ portuguese_brazilian ] = "$(ERR) beim Speichern des Dokumentes $(ARG1)";
        Text [ portuguese ] = "$(ERR) ao guardar o documento $(ARG1)";
        Text [ danish ] = "$(ERR) under forsg p at gemme dokumentet $(ARG1)";
        Text [ french ] = "$(ERR) lors de l'enregistrement du document $(ARG1)";
        Text [ swedish ] = "$(ERR) nr dokumentet $(ARG1) sparades";
        Text [ dutch ] = "$(ERR) bij opslaan van document $(ARG1)";
        Text [ spanish ] = "$(ERR) al guardar el documento $(ARG1)";
        Text [ english_us ] = "$(ERR) saving the document $(ARG1)";
        Text[ chinese_simplified ] = "存盘文档 $(ARG1) 时发生 $(ERR)";
        Text[ russian ] = "$(ERR)    $(ARG1)";
        Text[ polish ] = "$(ERR) przy zapisywaniu dokumentu $(ARG1)";
        Text[ japanese ] = "$(ERR)ドキュメント$(ARG1)の保存の際";
        Text[ chinese_traditional ] = "儲存文件 $(ARG1) 時發生 $(ERR)";
        Text[ arabic ] = "$(ERR)    $(ARG1)";
        Text[ dutch ] = "$(ERR) bij opslaan van document $(ARG1)";
        Text[ chinese_simplified ] = "存盘文档 $(ARG1) 时发生 $(ERR)";
        Text[ greek ] = "$(ERR)     $(ARG1)";
        Text[ korean ] = "문서$(ARG1)을(를) 저장하는 중에 $(ERR)";
        Text[ turkish ] = "$(ARG1) belgesi kaydedilirken $(ERR)";
        Text[ language_user1 ] = " ";
        Text[ catalan ] = "$(ERR) en desar el document $(ARG1)";
        Text[ finnish ] = "$(ERR) tallennettaessa asiakirjaa $(ARG1)";
        Text[ thai ] = "$(ERR) กำลังบันทึกเอกสาร $(ARG1)";
    };
    String ERRCTX_SFX_DOCINFO
    {
        Text = "$(ERR) beim Anzeigen der Docinfo des Dokumentes $(ARG1)" ;
        Text [ ENGLISH ] = "$(ERR) while showing docinfo for document $(ARG1)" ;
        Text [ dutch ] = "$(ERR) bij weergeven van documentinfo bij document $(ARG1)" ;
        Text [ english_us ] = "$(ERR) displaying doc. information for document $(ARG1)" ;
        Text [ italian ] = "$(ERR) nel visualizzare le informazioni riguardanti il documento $(ARG1)" ;
        Text [ spanish ] = "$(ERR) al mostrar la informacin del documento $(ARG1)" ;
        Text [ french ] = "$(ERR) lors de l'affichage des informations sur le document $(ARG1)" ;
        Text [ swedish ] = "$(ERR) vid visning av dokumentinfo fr $(ARG1)" ;
        Text [ danish ] = "$(ERR) ved visning af dokumentinfo for dokumentet $(ARG1)" ;
        Text [ portuguese ] = "$(ERR) ao mostrar informaes sobre o documento $(ARG1)" ;
        Text [ portuguese_brazilian ] = "$(ERR) beim Anzeigen der Docinfo des Dokumentes $(ARG1)" ;
        Text[ chinese_simplified ] = "显示文档 $(ARG1) 文档信息时发生 $(ERR)";
        Text[ russian ] = "$(ERR)      $(ARG1)";
        Text[ polish ] = "$(ERR) przy wywietlaniu informacji o dokumencie dla dokumentu $(ARG1)";
        Text[ japanese ] = "$(ERR)ドキュメント$(ARG1)のドキュメント情報の表示の際";
        Text[ chinese_traditional ] = "顯示文件 $(ARG1) 的文件資訊時發生 $(ERR)";
        Text[ arabic ] = "$(ERR)       $(ARG1)";
        Text[ dutch ] = "$(ERR) bij weergeven van documentinfo bij document $(ARG1)";
        Text[ chinese_simplified ] = "显示文档 $(ARG1) 文档信息时发生 $(ERR)";
        Text[ greek ] = "$(ERR)        $(ARG1)";
        Text[ korean ] = "문서$(ARG1)의 문서 정보를 표시하는 중에 $(ERR)";
        Text[ turkish ] = "$(ARG1) belgesinin, belge bilgileri grntlenirken $(ERR)";
        Text[ catalan ] = "$(ERR) en mostrar la informaci del document $(ARG1)";
        Text[ finnish ] = "$(ERR) nytettess asiakirjan $(ARG1) tietoja";
        Text[ thai ] = "$(ERR) กำลังแสดงผลเอกสาร ข้อมูลสำหรับเอกสาร $(ARG1)";
    };
    String ERRCTX_SFX_DOCTEMPLATE
    {
        Text = "$(ERR) beim Schreiben des Dokumentes $(ARG1) als Vorlage" ;
        Text [ ENGLISH ] = "$(ERR) saving document $(ARG1) as template" ;
        Text [ dutch ] = "$(ERR) bij opslaan van document $(ARG1) als sjabloon" ;
        Text [ english_us ] = "$(ERR) writing document $(ARG1) as template" ;
        Text [ italian ] = "$(ERR) nella scrittura del documento $(ARG1) come modello" ;
        Text [ spanish ] = "$(ERR) al escribir el documento $(ARG1) como plantilla" ;
        Text [ french ] = "$(ERR) lors de l'enregistrement du document $(ARG1) en tant que modle" ;
        Text [ swedish ] = "$(ERR) nr dokumentet $(ARG1) skrevs som mall" ;
        Text [ danish ] = "$(ERR) under skrivning af dokumentet $(ARG1) som skabelon" ;
        Text [ portuguese ] = "$(ERR) ao escrever o documento $(ARG1) como modelo" ;
        Text [ portuguese_brazilian ] = "$(ERR) beim Schreiben des Dokumentes $(ARG1) als Vorlage" ;
        Text[ chinese_simplified ] = "在改写样式文档 $(ARG1) 时发生 $(ERR)";
        Text[ russian ] = "$(ERR)    $(ARG1)  ";
        Text[ polish ] = "$(ERR) przy zapisywaniu dokumentu $(ARG1) jako szablonu";
        Text[ japanese ] = "$(ERR)テンプレートとしてドキュメント$(ARG1)を書き込む際";
        Text[ chinese_traditional ] = "寫入樣式文件 $(ARG1) 時發生 $(ERR)";
        Text[ arabic ] = "$(ERR)    $(ARG1) ";
        Text[ dutch ] = "$(ERR) bij opslaan van document $(ARG1) als sjabloon";
        Text[ chinese_simplified ] = "在改写样式文档 $(ARG1) 时发生 $(ERR)";
        Text[ greek ] = "$(ERR)      $(ARG1)  ";
        Text[ korean ] = "문서$(ARG1)을(를) 서식 파일로 기록하는 중에 $(ERR)";
        Text[ turkish ] = "$(ARG1) belgesi ablon olarak yazlrken $(ERR)";
        Text[ language_user1 ] = " ";
        Text[ catalan ] = "$(ERR) en escriure el document $(ARG1) com a plantilla";
        Text[ finnish ] = "$(ERR) kirjoitettaessa asiakirjaa $(ARG1) malliksi";
        Text[ thai ] = "$(ERR) กำลังเขียนเอกสาร $(ARG1) เป็นแม่แบบ";
    };
    String ERRCTX_SFX_MOVEORCOPYCONTENTS
    {
        Text = "$(ERR) beim Kopieren oder Verschieben von Dokumentinhalten" ;
        Text [ ENGLISH ] = "$(ERR) beim Kopieren oder Verschieben von Dokumentinhalten" ;
        Text [ portuguese ] = "$(ERR) ao copiar ou mover contedos do documento" ;
        Text [ english_us ] = "$(ERR) copying or moving document contents" ;
        Text [ portuguese_brazilian ] = "$(ERR) beim Kopieren oder Verschieben von Dokumentinhalten" ;
        Text [ swedish ] = "$(ERR) vid kopiering eller frflyttning av dokumentinnehll" ;
        Text [ danish ] = "$(ERR) under kopiering eller flytning af dokumentindhold" ;
        Text [ italian ] = "$(ERR) nel copiare o spostare i contenuti dei documenti" ;
        Text [ spanish ] = "$(ERR) al copiar o desplazar el contenido del documento." ;
        Text [ french ] = "$(ERR) lors de la copie ou du dplacement du contenu des documents " ;
        Text [ dutch ] = "$(ERR) bij kopiren of verplaatsen van documentinhoud" ;
        Text[ chinese_simplified ] = "复制或移动文档内容时发生 $(ERR)";
        Text[ russian ] = "$(ERR)      ";
        Text[ polish ] = "$(ERR) przy kopiowaniu lub przenoszeniu zawartoci wiadomoci";
        Text[ japanese ] = "$(ERR)ドキュメントの内容をコピーまたは移動する際";
        Text[ chinese_traditional ] = "複製和移動文件內容時發生 $(ERR)";
        Text[ arabic ] = "$(ERR)      ";
        Text[ dutch ] = "$(ERR) bij kopiren of verplaatsen van documentinhoud";
        Text[ chinese_simplified ] = "复制或移动文档内容时发生 $(ERR)";
        Text[ greek ] = "$(ERR)         ";
        Text[ korean ] = "문서 내용을 복사 또는 이동 시에 $(ERR)";
        Text[ turkish ] = "Belge ierii kopyalanrken ya da tanrken $(ERR)";
        Text[ catalan ] = "$(ERR) en copiar o moure el contingut del document";
        Text[ finnish ] = "$(ERR) kopioitaessa tai siirrettess asiakirjan sislt";
        Text[ thai ] = "$(ERR) กำลังคัดลอกหรือย้ายเนื้อหาเอกสาร";
    };
    String ERRCTX_SFX_DOCMANAGER
    {
        Text = "$(ERR) beim Starten des Docmanagers" ;
        Text [ ENGLISH ] = "$(ERR) starting the docmanager" ;
        Text [ english_us ] = "$(ERR) starting the Document Manager" ;
        Text [ italian ] = "$(ERR) nell'avvio del Docmanager" ;
        Text [ spanish ] = "$(ERR) al inicializar el administrador de documentos" ;
        Text [ french ] = "$(ERR) lors du dmarrage du gestionnaire de documents" ;
        Text [ dutch ] = "$(ERR) bij starten van documentbeheer" ;
        Text [ swedish ] = "$(ERR) vid start av dokumenthanteraren" ;
        Text [ danish ] = "$(ERR) ved start af dokumentmanageren" ;
        Text [ portuguese ] = "$(ERR) ao iniciar o Gestor de Documentos" ;
        Text [ portuguese_brazilian ] = "$(ERR) beim Starten des Docmanagers" ;
        Text[ chinese_simplified ] = "启动文档管理程序时发生 $(ERR)";
        Text[ russian ] = "$(ERR)    ";
        Text[ polish ] = "$(ERR) przy wczaniu menedera dokumentw";
        Text[ japanese ] = "$(ERR)ドキュメントマネージャーを開始する際";
        Text[ chinese_traditional ] = "啟動文件總管時發生 $(ERR)";
        Text[ arabic ] = "$(ERR)    ";
        Text[ dutch ] = "$(ERR) bij starten van documentbeheer";
        Text[ chinese_simplified ] = "启动文档管理程序时发生 $(ERR)";
        Text[ greek ] = "$(ERR)       ";
        Text[ korean ] = "문서 관리자를 시작하는 중에 $(ERR)";
        Text[ turkish ] = "Belge yneticisi balatlrken $(ERR)";
        Text[ catalan ] = "$(ERR) en inicialitzar l'administrador de documents";
        Text[ finnish ] = "$(ERR) aloitettaessa asiakirjan hallintaa";
        Text[ thai ] = "$(ERR) กำลังเริ่มตัวจัดการเอกสาร";
    };
    String ERRCTX_SFX_OPENDOC
    {
        Text = "$(ERR) beim Laden des Dokumentes $(ARG1)" ;
        Text [ ENGLISH ] = "$(ERR) opening document $(ARG1)" ;
        Text [ english_us ] = "$(ERR) loading document $(ARG1)" ;
        Text [ italian ] = "$(ERR) nel caricare il documento $(ARG1)" ;
        Text [ spanish ] = "$(ERR) al cargar el documento $(ARG1)" ;
        Text [ french ] = "$(ERR) lors du chargement du document $(ARG1)" ;
        Text [ dutch ] = "$(ERR) bij openen van document $(ARG1)" ;
        Text [ swedish ] = "$(ERR) vid laddning av dokumentet $(ARG1)" ;
        Text [ danish ] = "$(ERR) under indlsning af dokumentet $(ARG1)" ;
        Text [ portuguese ] = "$(ERR) ao carregar o documento $(ARG1)" ;
        Text [ portuguese_brazilian ] = "$(ERR) beim Laden des Dokumentes $(ARG1)" ;
        Text[ chinese_simplified ] = "装入文档 $(ARG1) 时发生 $(ERR)";
        Text[ russian ] = "$(ERR)    $(ARG1)";
        Text[ polish ] = "$(ERR) przy adowaniu dokumentu $(ARG1)";
        Text[ japanese ] = "ドキュメント $(ARG1) を読み込む際の $(ERR)";
        Text[ chinese_traditional ] = "載入文件 $(ARG1) 時發生 $(ERR)";
        Text[ arabic ] = "$(ERR)    $(ARG1)";
        Text[ dutch ] = "$(ERR) bij openen van document $(ARG1)";
        Text[ chinese_simplified ] = "装入文档 $(ARG1) 时发生 $(ERR)";
        Text[ greek ] = "$(ERR)      $(ARG1)";
        Text[ korean ] = "문서$(ARG1)을(를) 로드하는 중에 $(ERR)";
        Text[ turkish ] = "$(ARG1) belgesi yklenirken $(ERR)";
        Text[ language_user1 ] = " ";
        Text[ catalan ] = "$(ERR) en carregar el document $(ARG1)";
        Text[ finnish ] = "$(ERR) ladattaessa asiakirjaa $(ARG1)";
        Text[ thai ] = "$(ERR) กำลังโหลดเอกสาร $(ARG1)";
    };
    String ERRCTX_SFX_NEWDOCDIRECT
    {
        Text = "$(ERR) beim Anlegen eines neuen Dokumentes" ;
        Text [ ENGLISH ] = "$(ERR) creating a new document" ;
        Text [ english_us ] = "$(ERR) creating a new document" ;
        Text [ italian ] = "$(ERR) nella creazione di un nuovo documento" ;
        Text [ spanish ] = "$(ERR) al crear un documento nuevo" ;
        Text [ french ] = "$(ERR) lors de la cration d'un nouveau document" ;
        Text [ dutch ] = "$(ERR) bij maken van nieuw document" ;
        Text [ swedish ] = "$(ERR) nr ett nytt dokument skapades" ;
        Text [ danish ] = "$(ERR) under oprettelsen af et nyt dokument" ;
        Text [ portuguese ] = "$(ERR) ao criar o novo documento" ;
        Text [ portuguese_brazilian ] = "$(ERR) beim Anlegen eines neuen Dokumentes" ;
        Text[ chinese_simplified ] = "新建文档时发生 $(ERR)";
        Text[ russian ] = "$(ERR)    ";
        Text[ polish ] = "$(ERR) przy tworzeniu nowego dokumentu";
        Text[ japanese ] = "$(ERR)ドキュメントの新規作成の際";
        Text[ chinese_traditional ] = "建立一個新文件時發生 $(ERR)";
        Text[ arabic ] = "$(ERR)    ";
        Text[ dutch ] = "$(ERR) bij maken van nieuw document";
        Text[ chinese_simplified ] = "新建文档时发生 $(ERR)";
        Text[ greek ] = "$(ERR)      ";
        Text[ korean ] = "새 문서를 만드는 중 $(ERR)";
        Text[ turkish ] = "Yeni belge oluturulurken $(ERR)";
        Text[ language_user1 ] = " ";
        Text[ catalan ] = "$(ERR) en crear un document nou";
        Text[ finnish ] = "$(ERR) luotaessa uutta asiakirjaa";
        Text[ thai ] = "$(ERR) กำลังสร้างเอกสารใหม่";
    };
    String ERRCTX_SFX_NEWDOC
    {
        Text = "$(ERR) beim Anlegen eines neuen Dokumentes" ;
        Text [ ENGLISH ] = "$(ERR) creating a new document" ;
        Text [ dutch ] = "$(ERR) bij maken van nieuw document" ;
        Text [ english_us ] = "$(ERR) creating a new document" ;
        Text [ italian ] = "$(ERR) nella creazione di un nuovo documento" ;
        Text [ spanish ] = "$(ERR) al crear un documento nuevo" ;
        Text [ french ] = "$(ERR) lors de la cration d'un nouveau document" ;
        Text [ swedish ] = "$(ERR) nr ett nytt dokument skapades" ;
        Text [ danish ] = "$(ERR) under oprettelsen af et nyt dokument" ;
        Text [ portuguese ] = "$(ERR) ao criar o novo documento" ;
        Text [ portuguese_brazilian ] = "$(ERR) beim Anlegen eines neuen Dokumentes" ;
        Text[ chinese_simplified ] = "新建文档时发生 $(ERR)";
        Text[ russian ] = "$(ERR)    ";
        Text[ polish ] = "$(ERR) przy tworzeniu nowego dokumentu";
        Text[ japanese ] = "$(ERR)ドキュメントの新規作成の際";
        Text[ chinese_traditional ] = "建立一個新文件時發生 $(ERR)";
        Text[ arabic ] = "$(ERR)    ";
        Text[ dutch ] = "$(ERR) bij maken van nieuw document";
        Text[ chinese_simplified ] = "新建文档时发生 $(ERR)";
        Text[ greek ] = "$(ERR)      ";
        Text[ korean ] = "새 문서를 만드는 중 $(ERR)";
        Text[ turkish ] = "Yeni belge oluturulurken $(ERR)";
        Text[ language_user1 ] = " ";
        Text[ catalan ] = "$(ERR) en crear un document nou";
        Text[ finnish ] = "$(ERR) luotaessa uutta asiakirjaa";
        Text[ thai ] = "$(ERR) กำลังสร้างเอกสารใหม่";
    };
    String ERRCTX_SFX_CREATEOBJSH
    {
        Text = "$(ERR) beim Aufklappen einer Rubrik" ;
        Text [ ENGLISH ] = "$(ERR) expanding entry" ;
        Text [ dutch ] = "$(ERR) bij openen van een rubriek" ;
        Text [ english_us ] = "$(ERR) expanding entry" ;
        Text [ italian ] = "$(ERR) nell'apertura di una voce" ;
        Text [ spanish ] = "$(ERR) al abrir una rbrica" ;
        Text [ french ] = "$(ERR) lors de l'ouverture d'une rubrique" ;
        Text [ swedish ] = "$(ERR) nr en rubrik ppnades" ;
        Text [ danish ] = "$(ERR) under bning af en rubrik" ;
        Text [ portuguese ] = "$(ERR) ao abrir rubrica" ;
        Text [ portuguese_brazilian ] = "$(ERR) beim Aufklappen einer Rubrik" ;
        Text[ chinese_simplified ] = "扩展分类条目时发生 $(ERR)";
        Text[ russian ] = "$(ERR)   ";
        Text[ polish ] = "$(ERR) przy otwieraniu rubryki";
        Text[ japanese ] = "$(ERR)ツリー表示を開く際";
        Text[ chinese_traditional ] = "擴展顯示一個分欄時發生 $(ERR)";
        Text[ arabic ] = "$(ERR)    ";
        Text[ dutch ] = "$(ERR) bij openen van een rubriek";
        Text[ chinese_simplified ] = "扩展分类条目时发生 $(ERR)";
        Text[ greek ] = "$(ERR)     ";
        Text[ korean ] = "항목 확장 중 $(ERR)";
        Text[ turkish ] = "Girii aarken $(ERR)";
        Text[ catalan ] = "$(ERR) en expandir una rbrica";
        Text[ finnish ] = "$(ERR) laajennettaessa merkint";
        Text[ thai ] = "$(ERR) กำลังขยายรายการ";
    };
    String ERRCTX_SFX_LOADBASIC
    {
        Text = "$(ERR) beim Laden des BASIC des Dokuments $(ARG1)" ;
        Text [ ENGLISH ] = "$(ERR) while loading BASIC of document $(ARG1)" ;
        Text [ dutch ] = "$(ERR) bij laden van BASIC van document $(ARG1)" ;
        Text [ english_us ] = "$(ERR) loading BASIC of document $(ARG1)" ;
        Text [ italian ] = "$(ERR) nel caricare il BASIC del documento $(ARG1)" ;
        Text [ spanish ] = "$(ERR) al cargar el BASIC del documento $(ARG1)" ;
        Text [ french ] = "$(ERR) lors du chargement du BASIC du document $(ARG1)" ;
        Text [ swedish ] = "$(ERR) vid laddning av BASIC i dokumentet $(ARG1)" ;
        Text [ danish ] = "$(ERR) under indlsning af BASIC fra dokumentet $(ARG1)" ;
        Text [ portuguese ] = "$(ERR) ao carregar o BASIC do documento $(ARG1)" ;
        Text [ portuguese_brazilian ] = "$(ERR) beim Laden des BASIC des Dokuments $(ARG1)" ;
        Text[ chinese_simplified ] = "装入文档 $(ARG1) BASIC 时发生 $(ERR)";
        Text[ russian ] = "$(ERR)   BASIC  $(ARG1)";
        Text[ polish ] = "$(ERR) przy adowaniu dokumentu BASIC $(ARG1)";
        Text[ japanese ] = "ドキュメント $(ARG1) の BASIC を読み込む際の $(ERR)";
        Text[ chinese_traditional ] = "載入文件 $(ARG1)  BASIC 時發生 $(ERR)";
        Text[ arabic ] = "$(ERR)   BASIC  $(ARG1)";
        Text[ dutch ] = "$(ERR) bij laden van BASIC van document $(ARG1)";
        Text[ chinese_simplified ] = "装入文档 $(ARG1) BASIC 时发生 $(ERR)";
        Text[ greek ] = "$(ERR)     BASIC   $(ARG1)";
        Text[ korean ] = "문서 $(ARG1)의 BASIC을 로드하던 중 $(ERR)";
        Text[ turkish ] = "$(ARG1) belgesi ile ilgili BASIC yklenirken $(ERR)";
        Text[ catalan ] = "$(ERR) en carregar el BASIC del document $(ARG1)";
        Text[ finnish ] = "$(ERR) ladattaessa asiakirjan $(ARG1) BASIC-tietoja";
        Text[ thai ] = "$(ERR) กำลังโหลด BASIC ของเอกสาร $(ARG1)";
    };
    String ERRCTX_SFX_SEARCHADDRESS
    {
        Text = "$(ERR) bei der Adressensuche" ;
        Text [ ENGLISH ] = "$(ERR) searching for an address" ;
        Text[ english_us ] = "$(ERR) searching for an address";
        Text[ portuguese ] = "$(ERR) ao procurar o endereo";
        Text[ russian ] = "$(ERR)   ";
        Text[ greek ] = "$(ERR)    ";
        Text[ dutch ] = "$(ERR) bij zoeken naar adres";
        Text[ french ] = "$(ERR) lors de la recherche d'adresse";
        Text[ spanish ] = "$(ERR) al buscar una direccin";
        Text[ italian ] = "$(ERR) nella ricerca d'indirizzo";
        Text[ danish ] = "$(ERR) under adressesgningen";
        Text[ swedish ] = "$(ERR) vid adresskning";
        Text[ polish ] = "$(ERR) w trakcie wyszukiwania adresu";
        Text[ portuguese_brazilian ] = "$(ERR) searching for an address";
        Text[ japanese ] = "$(ERR) アドレス検索中に発生しました";
        Text[ korean ] = "주소 검색시에 $(ERR)";
        Text[ chinese_simplified ] = "在搜寻地址时出现$(ERR)";
        Text[ chinese_traditional ] = "在搜尋地址時出現 $(ERR)";
        Text[ turkish ] = "$(ERR) searching for an address";
        Text[ arabic ] = "$(ERR)    ";
        Text[ catalan ] = "$(ERR) en cercar una direcci";
        Text[ finnish ] = "$(ERR) osoitetta etsittess";
        Text[ thai ] = "$(ERR) กำลังค้นหาที่อยู่";
    };
};
Resource RID_ERRHDL
{
    String ERRCODE_CLASS_ABORT
    {
        Text = "Abbruch" ;
        Text = "Abort" ;
    };
    String ERRCODE_CLASS_NOTEXISTS
    {
        Text = "Nichtexistentes Objekt" ;
        Text [ ENGLISH ] = "Nonexistant object" ;
        Text [ dutch ] = "Object bestaat niet" ;
        Text [ english_us ] = "Nonexistent object" ;
        Text [ italian ] = "Oggetto inesistente" ;
        Text [ spanish ] = "Objeto no existente" ;
        Text [ french ] = "Cet objet n'existe pas" ;
        Text [ swedish ] = "Icke-existerande objekt" ;
        Text [ danish ] = "Ikke-eksisterende objekt" ;
        Text [ portuguese ] = "Objecto inexistente" ;
        Text [ portuguese_brazilian ] = "Nichtexistentes Objekt" ;
        Text[ chinese_simplified ] = "不存在的对象";
        Text[ russian ] = " ";
        Text[ polish ] = "Nieistniejcy obiekt";
        Text[ japanese ] = "存在しないオブジェクト";
        Text[ chinese_traditional ] = "不存在的物件";
        Text[ arabic ] = "  ";
        Text[ dutch ] = "Object bestaat niet";
        Text[ chinese_simplified ] = "不存在的对象";
        Text[ greek ] = "  ";
        Text[ korean ] = "없는 개체입니다";
        Text[ turkish ] = "Mevcut olmayan nesne";
        Text[ catalan ] = "Objecte no existent";
        Text[ finnish ] = "Objektia ei ole.";
        Text[ thai ] = "ไม่มีวัตถุอยู่";
    };
    String ERRCODE_CLASS_ALREADYEXISTS
    {
        Text = "Objekt existiert bereits" ;
        Text [ ENGLISH ] = "Object already exists" ;
        Text [ dutch ] = "Object bestaat reeds" ;
        Text [ english_us ] = "Object already exists" ;
        Text [ italian ] = "L'oggetto esiste gi" ;
        Text [ spanish ] = "El objeto ya existe" ;
        Text [ french ] = "Cet objet existe dj" ;
        Text [ swedish ] = "Objekt existerar redan" ;
        Text [ danish ] = "Objektet eksisterer allerede" ;
        Text [ portuguese ] = "Objecto j existe" ;
        Text [ portuguese_brazilian ] = "Objekt existiert bereits" ;
        Text[ chinese_simplified ] = "对象已经存在";
        Text[ russian ] = "  ";
        Text[ polish ] = "Obiekt ju istnieje";
        Text[ japanese ] = "オブジェクトはすでにあります";
        Text[ chinese_traditional ] = "物件已經存在";
        Text[ arabic ] = "  ";
        Text[ dutch ] = "Object bestaat reeds";
        Text[ chinese_simplified ] = "对象已经存在";
        Text[ greek ] = "   ";
        Text[ korean ] = "개체가 이미 있습니다.";
        Text[ turkish ] = "Nesne mevcut";
        Text[ catalan ] = "L'objecte ja existeix";
        Text[ finnish ] = "Objekti on jo olemassa.";
        Text[ thai ] = "มีวัตถุอยู่";
    };
    String ERRCODE_CLASS_ACCESS
    {
        Text = "Kein Zugriff auf Objekt" ;
        Text [ ENGLISH ] = "object could not be accessed" ;
        Text [ dutch ] = "Geen toegang tot object" ;
        Text [ english_us ] = "Object not accessible" ;
        Text [ italian ] = "Accesso all'oggetto non possibile" ;
        Text [ spanish ] = "No hay acceso al objeto" ;
        Text [ french ] = "Impossible d'accder  l'objet" ;
        Text [ swedish ] = "Ingen tkomst till objekt" ;
        Text [ danish ] = "Ingen adgang til objekt" ;
        Text [ portuguese ] = "Objecto inacessvel" ;
        Text [ portuguese_brazilian ] = "Kein Zugriff auf Objekt" ;
        Text[ chinese_simplified ] = "不能够读取对象";
        Text[ russian ] = " ";
        Text[ polish ] = "Obiekt niedostpny";
        Text[ japanese ] = "オブジェクトにアクセスできません";
        Text[ chinese_traditional ] = "無法存取物件";
        Text[ arabic ] = "    ";
        Text[ dutch ] = "Geen toegang tot object";
        Text[ chinese_simplified ] = "不能够读取对象";
        Text[ greek ] = "       .";
        Text[ korean ] = "개체를 액세스할 수 없습니다.";
        Text[ turkish ] = "Nesneye eriim salanamyor";
        Text[ catalan ] = "No hi ha accs a l'objecte";
        Text[ finnish ] = "Objekti ei ole kytettviss.";
        Text[ thai ] = "ไม่สามารถเข้าถึงวัตถุ";
    };
    String ERRCODE_CLASS_PATH
    {
        Text = "Unzulssiger Pfad" ;
        Text [ ENGLISH ] = "Invalid path" ;
        Text [ dutch ] = "Ongeldig pad" ;
        Text [ english_us ] = "Inadmissible path" ;
        Text [ italian ] = "Percorso incorretto" ;
        Text [ spanish ] = "Ruta no autorizada" ;
        Text [ french ] = "Chemin incorrect" ;
        Text [ swedish ] = "Otillten skvg" ;
        Text [ danish ] = "Ugyldig sti" ;
        Text [ portuguese ] = "Atalho no autorizado" ;
        Text [ portuguese_brazilian ] = "Unzul?ssiger Pfad" ;
        Text[ chinese_simplified ] = "路径无效";
        Text[ russian ] = " ";
        Text[ polish ] = "Niedopuszczalna cieka";
        Text[ japanese ] = "不許可のパス";
        Text[ chinese_traditional ] = "路徑無效";
        Text[ arabic ] = " ";
        Text[ dutch ] = "Ongeldig pad";
        Text[ chinese_simplified ] = "路径无效";
        Text[ greek ] = "  ";
        Text[ korean ] = "허용되지 않는 경로";
        Text[ turkish ] = "Geersiz veri yolu";
        Text[ catalan ] = "Cam no autortizat";
        Text[ finnish ] = "Polun kyttminen ei onnistu.";
        Text[ thai ] = "เส้นทางที่ไม่อนุญาต";
    };
    String ERRCODE_CLASS_LOCKING
    {
        Text = "Lockingproblem" ;
        Text [ ENGLISH ] = "Sharing conflict" ;
        Text [ dutch ] = "Vergrendelingsprobleem" ;
        Text [ english_us ] = "Locking problem" ;
        Text [ italian ] = "Problema di locking" ;
        Text [ spanish ] = "Problema de bloqueo" ;
        Text [ french ] = "Problme de verrouillage" ;
        Text [ swedish ] = "Lsproblem" ;
        Text [ danish ] = "Lseproblem" ;
        Text [ portuguese ] = "Problema de bloqueio" ;
        Text [ portuguese_brazilian ] = "Lockingproblem" ;
        Text[ chinese_simplified ] = "锁定冲突";
        Text[ russian ] = " ";
        Text[ polish ] = "Problem blokady";
        Text[ japanese ] = "共有衝突";
        Text[ language_user1 ] = " ";
        Text[ chinese_traditional ] = "檔案鎖定衝突";
        Text[ arabic ] = "  ";
        Text[ dutch ] = "Vergrendelingsprobleem";
        Text[ chinese_simplified ] = "锁定冲突";
        Text[ greek ] = " ";
        Text[ korean ] = "잠금 문제";
        Text[ turkish ] = "Kenetlenme sorunu";
        Text[ catalan ] = "Problema de blocatge";
        Text[ finnish ] = "Lukitusongelma";
        Text[ thai ] = "ปัญหาการล็อค";
    };
    String ERRCODE_CLASS_PARAMETER
    {
        Text = "Falscher Parameter" ;
        Text [ ENGLISH ] = "Wrong parameter" ;
        Text [ english_us ] = "Wrong parameter" ;
        Text [ italian ] = "Parametro errato" ;
        Text [ spanish ] = "Parmetro falso" ;
        Text [ french ] = "Erreur de paramtre" ;
        Text [ dutch ] = "Foutieve parameter" ;
        Text [ swedish ] = "Felaktig parameter" ;
        Text [ danish ] = "Forkert parameter" ;
        Text [ portuguese ] = "Parmetro incorrecto" ;
        Text [ portuguese_brazilian ] = "Falscher Parameter" ;
        Text[ chinese_simplified ] = "无效的参数";
        Text[ russian ] = " ";
        Text[ polish ] = "Nieprawidowy parametr";
        Text[ japanese ] = "正しくないパラメータ";
        Text[ chinese_traditional ] = "助變量無效";
        Text[ arabic ] = " ";
        Text[ dutch ] = "Foutieve parameter";
        Text[ chinese_simplified ] = "无效的参数";
        Text[ greek ] = " ";
        Text[ korean ] = "잘못된 매개 변수";
        Text[ turkish ] = "Yanl parametre";
        Text[ catalan ] = "Parmetre fals";
        Text[ finnish ] = "Vr parametri";
        Text[ thai ] = "พารามิเตอร์ผิด";
    };
    String ERRCODE_CLASS_SPACE
    {
        Text = "Resource erschpft" ;
        Text [ ENGLISH ] = "No space left" ;
        Text [ dutch ] = "Resource uitgeput" ;
        Text [ english_us ] = "Resource exhausted" ;
        Text [ italian ] = "Risorse esaurite" ;
        Text [ spanish ] = "No hay recursos diponibles" ;
        Text [ french ] = "Ressource puise" ;
        Text [ swedish ] = "Inga resurser kvar" ;
        Text [ danish ] = "Ressource opbrugt" ;
        Text [ portuguese ] = "Recursos esgotados" ;
        Text [ portuguese_brazilian ] = "Resource ersch?ft" ;
        Text[ chinese_simplified ] = "资源已经用完";
        Text[ russian ] = " ";
        Text[ polish ] = "Wyczerpany zasb";
        Text[ japanese ] = "リソースが使い尽くされています";
        Text[ chinese_traditional ] = "資源已經用盡";
        Text[ arabic ] = "   ";
        Text[ dutch ] = "Resource uitgeput";
        Text[ chinese_simplified ] = "资源已经用完";
        Text[ greek ] = "  ";
        Text[ korean ] = "자원 고갈";
        Text[ turkish ] = "Kaynak tkendi";
        Text[ catalan ] = "Els recursos s'han exhaurit";
        Text[ finnish ] = "Resurssi kytetty loppuun.";
        Text[ thai ] = "ทรัพยากรหมด";
    };
    String ERRCODE_CLASS_NOTSUPPORTED
    {
        Text = "Aktion nicht untersttzt" ;
        Text [ ENGLISH ] = "Action not supported" ;
        Text [ dutch ] = "Activiteit wordt niet ondersteund" ;
        Text [ english_us ] = "Action not supported" ;
        Text [ italian ] = "Operazione non supportata" ;
        Text [ spanish ] = "Accin no admitida" ;
        Text [ french ] = "Action non supporte" ;
        Text [ swedish ] = "tgrd inte understdd" ;
        Text [ danish ] = "Handlingen understttes ikke" ;
        Text [ portuguese ] = "Aco sem suporte" ;
        Text [ portuguese_brazilian ] = "Aktion nicht unterst?zt" ;
        Text[ chinese_simplified ] = "操作不受支持";
        Text[ russian ] = "  ";
        Text[ polish ] = "Akcja nie jest obsugiwana";
        Text[ japanese ] = "アクションは支援されません";
        Text[ chinese_traditional ] = "動作不受支援";
        Text[ arabic ] = "   ";
        Text[ dutch ] = "Activiteit wordt niet ondersteund";
        Text[ chinese_simplified ] = "操作不受支持";
        Text[ greek ] = "   ";
        Text[ korean ] = "작동을 지원하지 않음";
        Text[ turkish ] = "lem desteklenmiyor";
        Text[ catalan ] = "L'operaci no se suporta";
        Text[ finnish ] = "Toimintoa ei tueta.";
        Text[ thai ] = "ไม่สนับสนุนการกระทำ";
    };
    String ERRCODE_CLASS_READ
    {
        Text = "Leseproblem" ;
        Text [ ENGLISH ] = "Read problem" ;
        Text [ english_us ] = "Read-Error" ;
        Text [ italian ] = "Errore di lettura" ;
        Text [ spanish ] = "Error de lectura" ;
        Text [ french ] = "Erreur de lecture" ;
        Text [ dutch ] = "Probleem bij lezen" ;
        Text [ swedish ] = "Lsproblem" ;
        Text [ danish ] = "Lsefejl" ;
        Text [ portuguese ] = "Erro de leitura" ;
        Text [ portuguese_brazilian ] = "Leseproblem" ;
        Text[ chinese_simplified ] = "读取错误";
        Text[ russian ] = " ";
        Text[ polish ] = "Bd odczytu";
        Text[ japanese ] = "読み取りエラー";
        Text[ chinese_traditional ] = "讀取錯誤";
        Text[ arabic ] = "  ";
        Text[ dutch ] = "Probleem bij lezen";
        Text[ chinese_simplified ] = "读取错误";
        Text[ greek ] = " ";
        Text[ korean ] = "읽기 오류";
        Text[ turkish ] = "Okuma hatas";
        Text[ catalan ] = "Error de lectura";
        Text[ finnish ] = "Lukuvirhe";
        Text[ thai ] = "อ่านผิดพลาด";
    };
    String ERRCODE_CLASS_WRITE
    {
        Text = "Schreibproblem" ;
        Text [ ENGLISH ] = "Write problem" ;
        Text [ dutch ] = "Probleem bij schrijven" ;
        Text [ english_us ] = "Write Error" ;
        Text [ italian ] = "Errore di scrittura" ;
        Text [ spanish ] = "Error de escritura" ;
        Text [ french ] = "Erreur d'criture" ;
        Text [ swedish ] = "Skrivproblem" ;
        Text [ danish ] = "Skrivefejl" ;
        Text [ portuguese ] = "Erro de escrita" ;
        Text [ portuguese_brazilian ] = "Schreibproblem" ;
        Text[ chinese_simplified ] = "写入错误";
        Text[ russian ] = " ";
        Text[ polish ] = "Bd zapisu";
        Text[ japanese ] = "書き込みエラー";
        Text[ chinese_traditional ] = "寫入錯誤";
        Text[ arabic ] = "  ";
        Text[ dutch ] = "Probleem bij schrijven";
        Text[ chinese_simplified ] = "写入错误";
        Text[ greek ] = " ";
        Text[ korean ] = "쓰기 오류";
        Text[ turkish ] = "Yazma hatas";
        Text[ catalan ] = "Error d'escriptura";
        Text[ finnish ] = "Kirjoitusvirhe";
        Text[ thai ] = "เขียนผิดพลาด";
    };
    String ERRCODE_CLASS_UNKNOWN
    {
        Text = "Unbekannt" ;
        Text [ ENGLISH ] = "Error class is unknown" ;
        Text [ dutch ] = "Onbekend" ;
        Text [ english_us ] = "unknown" ;
        Text [ italian ] = "Sconosciuto" ;
        Text [ spanish ] = "Desconocido" ;
        Text [ french ] = "Inconnu" ;
        Text [ swedish ] = "Obekant" ;
        Text [ danish ] = "Ukendt" ;
        Text [ portuguese ] = "Desconhecido" ;
        Text [ portuguese_brazilian ] = "Unbekannt" ;
        Text[ chinese_simplified ] = "不明的";
        Text[ russian ] = "";
        Text[ polish ] = "Nieznany";
        Text[ japanese ] = "不明";
        Text[ chinese_traditional ] = "不明的";
        Text[ arabic ] = " ";
        Text[ dutch ] = "Onbekend";
        Text[ chinese_simplified ] = "不明的";
        Text[ greek ] = "";
        Text[ korean ] = "알 수 없음";
        Text[ turkish ] = "Bilinmiyor";
        Text[ catalan ] = "desconegut";
        Text[ finnish ] = "tuntematon";
        Text[ thai ] = "ไม่รู้จัก";
    };
    String ERRCODE_CLASS_VERSION
    {
        Text = "Versionskonflikt" ;
        Text [ ENGLISH ] = "Incompatible Version" ;
        Text [ english_us ] = "Version Incompatibility" ;
        Text [ italian ] = "Conflitto di versione" ;
        Text [ spanish ] = "Versiones incompatibles" ;
        Text [ french ] = "Incompatibilit entre versions" ;
        Text [ dutch ] = "Incompatibele versie" ;
        Text [ swedish ] = "Versionskonflikt" ;
        Text [ danish ] = "Versionskonflikt" ;
        Text [ portuguese ] = "Incompatibilidade entre verses" ;
        Text [ portuguese_brazilian ] = "Versionskonflikt" ;
        Text[ chinese_simplified ] = "版本冲突";
        Text[ russian ] = " ";
        Text[ polish ] = "Niezgodna wersja";
        Text[ japanese ] = "バージョン違反";
        Text[ chinese_traditional ] = "版本衝突";
        Text[ arabic ] = "  ";
        Text[ dutch ] = "Incompatibele versie";
        Text[ chinese_simplified ] = "版本冲突";
        Text[ greek ] = " ";
        Text[ korean ] = "버전 충돌";
        Text[ turkish ] = "Srm uyumsuzluu";
        Text[ catalan ] = "Incompatibilitat de versions";
        Text[ finnish ] = "Versioiden yhteensopimattomuus";
        Text[ thai ] = "เวอร์ชั่นไม่สามารถเข้ากันได้";
    };
    String ERRCODE_CLASS_GENERAL
    {
        Text = "Allgemeiner Fehler" ;
        Text [ ENGLISH ] = "General Error" ;
        Text [ dutch ] = "Algemene fout" ;
        Text [ english_us ] = "General Error" ;
        Text [ italian ] = "Errore generale" ;
        Text [ spanish ] = "Error general" ;
        Text [ french ] = "Erreur gnrale" ;
        Text [ swedish ] = "Allmnt fel" ;
        Text [ danish ] = "Generel fejl" ;
        Text [ portuguese ] = "Erro geral" ;
        Text [ portuguese_brazilian ] = "Allgemeiner Fehler" ;
        Text[ chinese_simplified ] = "一般错误";
        Text[ russian ] = " ";
        Text[ polish ] = "Bd oglny";
        Text[ japanese ] = "一般的なエラー";
        Text[ chinese_traditional ] = "一般錯誤";
        Text[ arabic ] = " ";
        Text[ dutch ] = "Algemene fout";
        Text[ chinese_simplified ] = "一般错误";
        Text[ greek ] = " ";
        Text[ korean ] = "일반 오류";
        Text[ turkish ] = "Genel hata";
        Text[ language_user1 ] = " ";
        Text[ catalan ] = "Error general";
        Text[ finnish ] = "Yleinen virhe";
        Text[ thai ] = "ข้อผิดพลาดทั่วไป";
    };
    String ERRCODE_CLASS_FORMAT
    {
        Text = "Falsches Format" ;
        Text [ ENGLISH ] = "Wrong format" ;
        Text [ dutch ] = "Foutieve indeling" ;
        Text [ english_us ] = "Incorrect format" ;
        Text [ italian ] = "Formato errato" ;
        Text [ spanish ] = "Formato incorrecto" ;
        Text [ french ] = "Erreur de format" ;
        Text [ swedish ] = "Felaktigt format" ;
        Text [ danish ] = "Forkert format" ;
        Text [ portuguese ] = "Formato incorrecto" ;
        Text [ portuguese_brazilian ] = "Falsches Format" ;
        Text[ chinese_simplified ] = "错误的格式";
        Text[ russian ] = " ";
        Text[ polish ] = "Nieprawidowy format";
        Text[ japanese ] = "正しくない書式";
        Text[ chinese_traditional ] = "格式無效";
        Text[ arabic ] = " ";
        Text[ dutch ] = "Foutieve indeling";
        Text[ chinese_simplified ] = "错误的格式";
        Text[ greek ] = "  ";
        Text[ korean ] = "잘못된 서식";
        Text[ turkish ] = "Yanl format";
        Text[ catalan ] = "Format incorrecte";
        Text[ finnish ] = "Vr muoto";
        Text[ thai ] = "รูปแบบไม่ถูกต้อง";
    };
    String ERRCODE_CLASS_CREATE
    {
        Text = "Fehler beim Anlegen" ;
        Text [ ENGLISH ] = "Create error" ;
        Text [ dutch ] = "Fout bij maken van object" ;
        Text [ english_us ] = "Error creating object" ;
        Text [ italian ] = "Errore durante la creazione" ;
        Text [ spanish ] = "Error durante la creacin del objeto" ;
        Text [ french ] = "Erreur lors de la cration" ;
        Text [ swedish ] = "Fel vid upplggning" ;
        Text [ danish ] = "Fejl under oprettelsen" ;
        Text [ portuguese ] = "Erro ao criar" ;
        Text [ portuguese_brazilian ] = "Fehler beim Anlegen" ;
        Text[ chinese_simplified ] = "建立对象时发生错误";
        Text[ russian ] = "  ";
        Text[ polish ] = "Bd przy tworzeniu obiektu";
        Text[ japanese ] = "作成の際のエラー";
        Text[ chinese_traditional ] = "發生錯誤在建立";
        Text[ arabic ] = "  ";
        Text[ dutch ] = "Fout bij maken van object";
        Text[ chinese_simplified ] = "建立对象时发生错误";
        Text[ greek ] = "   ";
        Text[ korean ] = "개체 만드는 중 오류";
        Text[ turkish ] = "Oluturma hatas";
        Text[ catalan ] = "Error al crear";
        Text[ finnish ] = "Virhe objektia luotaessa";
        Text[ thai ] = "การสร้างวัตถุผิดพลาด";
    };
    String ERRCODE_CLASS_SBX
    {
        Text = "Unzulssiger Wert oder Datentyp" ;
        Text [ ENGLISH ] = "Invalid value or data type" ;
        Text [ english_us ] = "Inadmissible value or data type" ;
        Text [ italian ] = "Valore o tipo di dati non permesso" ;
        Text [ spanish ] = "Valor o tipo de datos inadmisible" ;
        Text [ french ] = "Valeur ou type de donnes incorrect(e)" ;
        Text [ dutch ] = "Niet toegestane waarde of gegevenstype" ;
        Text [ swedish ] = "Otilltet vrde eller datatyp" ;
        Text [ danish ] = "Ikke-tilladt vrdi eller datatype" ;
        Text [ portuguese ] = "Valor ou tipo de dados no autorizados" ;
        Text [ portuguese_brazilian ] = "Unzul?ssiger Wert oder Datentyp" ;
        Text[ chinese_simplified ] = "无效的数值或数据类型";
        Text[ russian ] = "    ";
        Text[ polish ] = "Niedopuszczalna warto lub typ pliku";
        Text[ japanese ] = "不許可の値またはデータタイプ";
        Text[ chinese_traditional ] = "數值或資料類型無效";
        Text[ arabic ] = " ɡ    ";
        Text[ dutch ] = "Niet toegestane waarde of gegevenstype";
        Text[ chinese_simplified ] = "无效的数值或数据类型";
        Text[ greek ] = "     ";
        Text[ korean ] = "허용되지 않는 값 또는 데이터 유형";
        Text[ turkish ] = "Geersiz deer ya da veri tipi";
        Text[ catalan ] = "Valor o tipus de dades inadmissible";
        Text[ finnish ] = "Arvon tai tietotyypin kyttminen ei onnistu.";
        Text[ thai ] = "ชนิดของค่าหรือข้อมูลที่ไม่อนุญาต";
    };
    String ERRCODE_CLASS_RUNTIME
    {
        Text = "BASIC-Laufzeitfehler" ;
        Text [ ENGLISH ] = "BASIC runtime error" ;
        Text [ dutch ] = "BASIC runtime error" ;
        Text [ english_us ] = "BASIC runtime error" ;
        Text [ italian ] = "Errore di runtime basic" ;
        Text [ spanish ] = "Error de ejecucin de BASIC" ;
        Text [ french ] = "Runtime error BASIC" ;
        Text [ swedish ] = "BASIC-runtimefel" ;
        Text [ danish ] = "BASIC-runtimefejl" ;
        Text [ portuguese ] = "Erro de rotina BASIC" ;
        Text [ portuguese_brazilian ] = "Basic-Laufzeitfehler" ;
        Text[ chinese_simplified ] = "BASIC 运行时间错误";
        Text[ russian ] = "   BASIC";
        Text[ polish ] = "Bd czasu przebiegu BASIC";
        Text[ japanese ] = "BASIC ランタイムエラー";
        Text[ chinese_traditional ] = "BASIC 運行時間錯誤";
        Text[ arabic ] = "    BASIC";
        Text[ dutch ] = "BASIC runtime error";
        Text[ chinese_simplified ] = "BASIC 运行时间错误";
        Text[ greek ] = "   BASIC";
        Text[ korean ] = "BASIC 실행시간 오류";
        Text[ turkish ] = "BASIC yrtm sresi hatas";
        Text[ catalan ] = "Error d'execusi de BASIC";
        Text[ finnish ] = "BASIC-suoritusvirhe";
        Text[ thai ] = "การใช้งาน BASIC ผิดพลาด";
    };
    String ERRCODE_CLASS_COMPILER
    {
        Text = "BASIC-Syntaxfehler" ;
        Text [ ENGLISH ] = "BASIC syntax error" ;
        Text [ portuguese ] = "Erro de sintaxe BASIC" ;
        Text [ english_us ] = "BASIC syntax error" ;
        Text [ portuguese_brazilian ] = "Basic-Compilerfehler" ;
        Text [ swedish ] = "BASIC-syntaxfel" ;
        Text [ danish ] = "BASIC-syntaksfejl" ;
        Text [ italian ] = "Errore di sintassi BASIC" ;
        Text [ spanish ] = "Error de sintaxis de BASIC" ;
        Text [ french ] = "Syntax error BASIC" ;
        Text [ dutch ] = "BASIC-syntaxisfout" ;
        Text[ chinese_simplified ] = "BASIC 语法错误";
        Text[ russian ] = "  BASIC";
        Text[ polish ] = "Bd skadni BASIC";
        Text[ japanese ] = "BASICのシンタックスエラー";
        Text[ chinese_traditional ] = "BASIC 語法錯誤";
        Text[ arabic ] = "    BASIC";
        Text[ dutch ] = "BASIC-syntaxisfout";
        Text[ chinese_simplified ] = "BASIC 语法错误";
        Text[ greek ] = "  BASIC";
        Text[ korean ] = "BASIC 구문 오류";
        Text[ turkish ] = "BASIC sz dizimi hatas";
        Text[ catalan ] = "Error de sintaxi del BASIC";
        Text[ finnish ] = "BASIC-syntaksivirhe";
        Text[ thai ] = "ไวยกรณ์ BASIC ผิดพลาด";
    };
    String 1
    {
        Text = "Allgemeiner Fehler" ;
        Text [ ENGLISH ] = "General Error" ;
        Text [ dutch ] = "Algemene fout" ;
        Text [ english_us ] = "General Error" ;
        Text [ italian ] = "Errore generale" ;
        Text [ spanish ] = "Error general" ;
        Text [ french ] = "Erreur gnrale" ;
        Text [ swedish ] = "Allmnt fel" ;
        Text [ danish ] = "Generel fejl" ;
        Text [ portuguese ] = "Erro geral" ;
        Text [ portuguese_brazilian ] = "Allgemeiner Fehler" ;
        Text[ chinese_simplified ] = "一般错误";
        Text[ russian ] = " ";
        Text[ polish ] = "Bd oglny";
        Text[ japanese ] = "一般的なエラー";
        Text[ chinese_traditional ] = "一般的錯誤";
        Text[ arabic ] = " ";
        Text[ dutch ] = "Algemene fout";
        Text[ chinese_simplified ] = "一般错误";
        Text[ greek ] = " ";
        Text[ korean ] = "일반 오류";
        Text[ turkish ] = "Genel hata";
        Text[ language_user1 ] = " ";
        Text[ catalan ] = "Error general";
        Text[ finnish ] = "Yleinen virhe";
        Text[ thai ] = "ข้อผิดพลาดทั่วไป";
    };
    String ERRCODE_IO_GENERAL
    {
        Text = "Allgemeiner Ein-/Ausgabefehler" ;
        Text [ ENGLISH ] = "General input/output error" ;
        Text [ dutch ] = "Algemene input/output-error" ;
        Text [ english_us ] = "General input/output error" ;
        Text [ italian ] = "Errore generale di I/O" ;
        Text [ spanish ] = "Error general de entrada/salida" ;
        Text [ french ] = "Erreur gnrale d'entre/sortie" ;
        Text [ swedish ] = "Allmnt input-/outputfel" ;
        Text [ danish ] = "Generel input-/outputfejl" ;
        Text [ portuguese ] = "Erro geral de entrada/sada." ;
        Text [ portuguese_brazilian ] = "Allgemeiner Ein-/Ausgabefehler" ;
        Text[ chinese_simplified ] = "一般的输入与输出错误";
        Text[ russian ] = "  -";
        Text[ polish ] = "Oglny bd wejcia/wyjcia";
        Text[ japanese ] = "一般的な I/O エラー";
        Text[ chinese_traditional ] = "一般的輸入/輸出錯誤";
        Text[ arabic ] = "  / ";
        Text[ dutch ] = "Algemene input/output-error";
        Text[ chinese_simplified ] = "一般的输入与输出错误";
        Text[ greek ] = "  /";
        Text[ korean ] = "일반 입력/출력 오류";
        Text[ turkish ] = "Genel girdi/kt hatas";
        Text[ catalan ] = "Error general d'entrada/sortida";
        Text[ finnish ] = "Yleinen I/O-virhe";
        Text[ thai ] = "การป้อนข้อมูลและผลลัพธ์ทั่วไปผิดพลาด";
    };
    String ERRCODE_IO_MISPLACEDCHAR
    {
        Text = "Der Name der Datei ist ungltig" ;
        Text [ ENGLISH ] = "Invalid filename" ;
        Text [ dutch ] = "Ongeldige bestandsnaam" ;
        Text [ english_us ] = "Invalid file name" ;
        Text [ italian ] = "Il nome del file non  valido" ;
        Text [ spanish ] = "El nombre del archivo no es vlido." ;
        Text [ french ] = "Nom de fichier incorrect" ;
        Text [ swedish ] = "Namnet p filen r ogiltigt" ;
        Text [ danish ] = "Filnavnet er ugyldigt" ;
        Text [ portuguese ] = "O nome do ficheiro no  vlido." ;
        Text [ portuguese_brazilian ] = "Der Name der Datei ist ung?tig" ;
        Text[ chinese_simplified ] = "无效的文件名";
        Text[ russian ] = "  ";
        Text[ polish ] = "Nazwa pliku jest nieprawidowa";
        Text[ japanese ] = "ファイル名は無効です";
        Text[ chinese_traditional ] = "檔案名無效";
        Text[ arabic ] = "   ";
        Text[ dutch ] = "Ongeldige bestandsnaam";
        Text[ chinese_simplified ] = "无效的文件名";
        Text[ greek ] = "      ";
        Text[ korean ] = "파일 이름이 잘못되었습니다";
        Text[ turkish ] = "Dosyann ad geerli deil";
        Text[ language_user1 ] = " ";
        Text[ catalan ] = "El nom del fitxer no s vlid.";
        Text[ finnish ] = "Virheellinen tiedoston nimi";
        Text[ thai ] = "ชื่อแฟ้มไม่ถูกต้อง";
    };
    String ERRCODE_IO_NOTEXISTS
    {
        Text = "Die Datei existiert nicht" ;
        Text [ ENGLISH ] = "Nonexistant file" ;
        Text [ dutch ] = "Bestand bestaat niet" ;
        Text [ english_us ] = "Nonexistent file" ;
        Text [ italian ] = "Il file non esiste" ;
        Text [ spanish ] = "El archivo no existe" ;
        Text [ french ] = "Fichier inexistant" ;
        Text [ swedish ] = "Filen existerar inte" ;
        Text [ danish ] = "Filen eksisterer ikke" ;
        Text [ portuguese ] = "O ficheiro no existe." ;
        Text [ portuguese_brazilian ] = "Die Datei existiert nicht" ;
        Text[ chinese_simplified ] = "文件不存在";
        Text[ russian ] = "  ";
        Text[ polish ] = "Plik nie istnieje";
        Text[ japanese ] = "ファイルはありません";
        Text[ chinese_traditional ] = "檔案不存在";
        Text[ arabic ] = "  ";
        Text[ dutch ] = "Bestand bestaat niet";
        Text[ chinese_simplified ] = "文件不存在";
        Text[ greek ] = "   ";
        Text[ korean ] = "파일이 없습니다.";
        Text[ turkish ] = "Dosya mevcut deil";
        Text[ catalan ] = "Fitxer inexistent";
        Text[ finnish ] = "Tiedostoa ei ole.";
        Text[ thai ] = "ไม่มีแฟ้มอยู่";
    };
    String ERRCODE_IO_ALREADYEXISTS
    {
        Text = "Die Datei existiert bereits" ;
        Text [ ENGLISH ] = "Nonexistant file" ;
        Text [ dutch ] = "Bestand bestaat reeds" ;
        Text [ english_us ] = "File already exists" ;
        Text [ italian ] = "Il file esiste gi" ;
        Text [ spanish ] = "El archivo ya existe" ;
        Text [ french ] = "Un fichier de ce nom existe dj." ;
        Text [ swedish ] = "Filen existerar redan" ;
        Text [ danish ] = "Filen eksisterer allerede" ;
        Text [ portuguese ] = "O ficheiro j existe." ;
        Text [ portuguese_brazilian ] = "Die Datei existiert bereits" ;
        Text[ chinese_simplified ] = "这个文件已经存在";
        Text[ russian ] = "  ";
        Text[ polish ] = "Plik ju istnieje";
        Text[ japanese ] = "ファイルはすでにあります";
        Text[ chinese_traditional ] = "這個檔案已經存在";
        Text[ arabic ] = "  ";
        Text[ dutch ] = "Bestand bestaat reeds";
        Text[ chinese_simplified ] = "这个文件已经存在";
        Text[ greek ] = "   ";
        Text[ korean ] = "파일이 이미 있음";
        Text[ turkish ] = "Dosya mevcut";
        Text[ language_user1 ] = " ";
        Text[ catalan ] = "El fitxer ja existeix";
        Text[ finnish ] = "Tiedosto on jo olemassa.";
        Text[ thai ] = "มีแฟ้มอยู่";
    };
    String ERRCODE_IO_NOTADIRECTORY
    {
        Text = "Bei dem Objekt handelt es sich nicht um ein Verzeichnis" ;
        Text [ ENGLISH ] = "The object is not a directory" ;
        Text [ english_us ] = "The object is not a directory" ;
        Text [ italian ] = "L'oggetto non  una cartella" ;
        Text [ spanish ] = "El objeto no es un directorio." ;
        Text [ french ] = "L'objet indiqu n'est pas un rpertoire" ;
        Text [ dutch ] = "Object is geen directory" ;
        Text [ swedish ] = "Objektet r ingen katalog" ;
        Text [ danish ] = "Objektet er ikke et bibliotek" ;
        Text [ portuguese ] = "O objecto no  um directrio." ;
        Text [ portuguese_brazilian ] = "Bei dem Objekt handelt es sich nicht um ein Verzeichnis" ;
        Text[ chinese_simplified ] = "对象不是一个目录";
        Text[ russian ] = "   ";
        Text[ polish ] = "Ten obiekt nie jest katalogiem";
        Text[ japanese ] = "オブジェクトはディレクトリではありません";
        Text[ chinese_traditional ] = "物件不是一個目錄";
        Text[ arabic ] = "   ";
        Text[ dutch ] = "Object is geen directory";
        Text[ chinese_simplified ] = "对象不是一个目录";
        Text[ greek ] = "    ";
        Text[ korean ] = "개체는 디렉토리가 아닙니다.";
        Text[ turkish ] = "Nesne, dizin deil";
        Text[ catalan ] = "L'objecte no s un directori.";
        Text[ finnish ] = "Objekti ei ole hakemisto.";
        Text[ thai ] = "วัตถุไม่เป็นสารบบ";
    };
    String ERRCODE_IO_NOTAFILE
    {
        Text = "Bei dem Objekt handelt es sich nicht um eine Datei" ;
        Text [ ENGLISH ] = "The object is not a file" ;
        Text [ english_us ] = "The object is not a file" ;
        Text [ italian ] = "L'oggetto non  un file" ;
        Text [ spanish ] = "El objeto no es ningn archivo." ;
        Text [ french ] = "L'objet indiqu n'est pas un fichier" ;
        Text [ dutch ] = "Object is geen bestand" ;
        Text [ swedish ] = "Objektet r ingen fil" ;
        Text [ danish ] = "Objektet er ikke en fil" ;
        Text [ portuguese ] = "O objecto no  um ficheiro." ;
        Text [ portuguese_brazilian ] = "Bei dem Objekt handelt es sich nicht um eine Datei" ;
        Text[ chinese_simplified ] = "对象不是一个文件";
        Text[ russian ] = "   ";
        Text[ polish ] = "Ten obiekt nie jest plikiem";
        Text[ japanese ] = "オブジェクトはファイルではありません";
        Text[ chinese_traditional ] = "物件不是一個檔案";
        Text[ arabic ] = "   ";
        Text[ dutch ] = "Object is geen bestand";
        Text[ chinese_simplified ] = "对象不是一个文件";
        Text[ greek ] = "     ";
        Text[ korean ] = "개체는 파일이 아닙니다.";
        Text[ turkish ] = "Nesne, dosya deil";
        Text[ catalan ] = "L'objecte no s cap fitxer.";
        Text[ finnish ] = "Objekti ei ole tiedosto.";
        Text[ thai ] = "วัตถุไม่เป็นแฟ้ม";
    };
    String ERRCODE_IO_INVALIDDEVICE
    {
        Text = "Das angegebene Gert ist ungltig" ;
        Text [ ENGLISH ] = "The device is invalid" ;
        Text [ dutch ] = "Het opgegeven apparaat bestaat niet." ;
        Text [ english_us ] = "The specified device is invalid" ;
        Text [ italian ] = "L'apparecchiatura indicata non  valida" ;
        Text [ spanish ] = "El dispositivo especificado no es vlido." ;
        Text [ french ] = "Le priphrique indiqu est incorrect" ;
        Text [ swedish ] = "Den angivna enheten r ogiltig" ;
        Text [ danish ] = "Den angivne enhed er ugyldig" ;
        Text [ portuguese ] = "O perifrico indicado no  vlido." ;
        Text [ portuguese_brazilian ] = "Das angebene Ger?t ist ung?tig" ;
        Text[ chinese_simplified ] = "指定的设备无效";
        Text[ russian ] = "  ";
        Text[ polish ] = "Podane urzdzenie jest nieprawidowe";
        Text[ japanese ] = "指定したデバイスは無効です";
        Text[ chinese_traditional ] = "指定的設備無效";
        Text[ arabic ] = "   ";
        Text[ dutch ] = "Het opgegeven apparaat bestaat niet.";
        Text[ chinese_simplified ] = "指定的设备无效";
        Text[ greek ] = "     ";
        Text[ korean ] = "지정된 장치는 잘못되었습니다.";
        Text[ turkish ] = "Belirtilen cihaz geerli deil";
        Text[ catalan ] = "El dispositiu especificat no s vlid.";
        Text[ finnish ] = "Mritetty laite ei ole kelvollinen.";
        Text[ thai ] = "อุปกรณ์ที่ระบุไม่ถูกต้อง";
    };
    String ERRCODE_IO_ACCESSDENIED
    {
        Text = "Aufgrund fehlender Rechte kann auf das Objekt\nnicht zugegriffen werden" ;
        Text [ ENGLISH ] = "The device cannot be accessed because\nof insufficient user rights" ;
        Text [ dutch ] = "U hebt geen toegangsrecht\n tot object." ;
        Text [ english_us ] = "The object cannot be accessed\ndue to insufficient user rights" ;
        Text [ italian ] = "A causa di diritti mancanti non  possibile\naccedere all'oggetto" ;
        Text [ spanish ] = "No es posible acceder al objeto\npor falta de derechos." ;
        Text [ french ] = "Impossible d'accder  l'objet\ndroits d'accs insuffisants" ;
        Text [ swedish ] = "tkomst till objektet kan inte medges\neftersom rttigheter saknas" ;
        Text [ danish ] = "Det er ikke muligt at f adgang til objektet,\nfordi de krvede adgangsrettigheder mangler" ;
        Text [ portuguese ] = "Impossvel o acesso ao objecto\npor falta de direitos." ;
        Text [ portuguese_brazilian ] = "Aufgrund fehlender Rechte kann auf das Objekt\nnicht zugegriffen werden" ;
        Text[ chinese_simplified ] = "缺少读取权利,\n无法读取这个对象";
        Text[ russian ] = "    \n-   ";
        Text[ polish ] = "Brak dostpu do obiektu \n z powodu brakujcych praw dostpu";
        Text[ japanese ] = "権利がないので\nオブジェクトにアクセスできません";
        Text[ chinese_traditional ] = "缺少相關權利﹐\n無法存取這個物件";
        Text[ arabic ] = "    \n   ";
        Text[ dutch ] = "U hebt geen toegangsrecht\n tot object.";
        Text[ chinese_simplified ] = "缺少读取权利,\n无法读取这个对象";
        Text[ greek ] = "      \n  ";
        Text[ korean ] = "사용자 권한이 없어 개체에\n액세스할 수 없습니다";
        Text[ turkish ] = "Gerekli eriim haklarnn olmamas nedeniyle \nnesneye eriim salanamyor";
        Text[ catalan ] = "No es pot accedir a l'objecte\nper falta de drets.";
        Text[ finnish ] = "Objektin kyttminen ei onnistu,\nkoska kyttjoikeudet eivt riit.";
        Text[ thai ] = "ไม่สามารถเข้าถึงวัตถุได้\nเนื่องจากสิทธิของผู้ใช้ไม่เหมาะสม";
    };
    String ERRCODE_IO_LOCKVIOLATION
    {
        Text = "Fehler beim gemeinsamen Zugriff auf das Objekt" ;
        Text [ ENGLISH ] = "Sharing violation while accessing the object" ;
        Text [ english_us ] = "Sharing violation while accessing the object" ;
        Text [ italian ] = "Errore nell'accesso comune all'oggetto" ;
        Text [ spanish ] = "Error al acceder conjuntamente al objeto." ;
        Text [ french ] = "Erreur de partage d'accs  l'objet." ;
        Text [ dutch ] = "Fout bij gelijktijdige toegang tot object" ;
        Text [ swedish ] = "Fel vid gemensam tkomst till objektet" ;
        Text [ danish ] = "Fejl under flles adgang til objektet" ;
        Text [ portuguese ] = "Erro ao tentar acesso partilhado ao objecto." ;
        Text [ portuguese_brazilian ] = "Fehler beim gemeinsamen Zugriff auf das Objekt" ;
        Text[ chinese_simplified ] = "在同时读取这个对象时发生错误";
        Text[ russian ] = "    ";
        Text[ polish ] = "Nastpio naruszenie zasad wspuytkowania podczas dostpu do obiektu";
        Text[ japanese ] = "オブジェクトへの共有アクセスの際のエラー。";
        Text[ chinese_traditional ] = "在同時存取這個物件時發生錯誤";
        Text[ arabic ] = "       ";
        Text[ dutch ] = "Fout bij gelijktijdige toegang tot object";
        Text[ chinese_simplified ] = "在同时读取这个对象时发生错误";
        Text[ greek ] = "      ";
        Text[ korean ] = "개체에 공동 액세스시에 오류";
        Text[ turkish ] = "Nesneye eriimde bir paylam hatas olutu";
        Text[ catalan ] = "S'ha produt un error en accedir conjuntament a l'objecte.";
        Text[ finnish ] = "Objektin yhteiskyttvirhe";
        Text[ thai ] = "การร่วมฝ่าฝืนขณะเข้าถึงวัตถุ";
    };
    String ERRCODE_IO_OUTOFSPACE
    {
        Text = "Auf dem Gert ist kein Platz mehr verfgbar" ;
        Text [ ENGLISH ] = "No more space on device" ;
        Text [ dutch ] = "Onvoldoende opslagruimte" ;
        Text [ english_us ] = "No more space on device" ;
        Text [ italian ] = "Sul dispositivo non c' pi posto" ;
        Text [ spanish ] = "No hay espacio disponible en el dispositivo." ;
        Text [ french ] = "Les ressources du priphrique sont puises" ;
        Text [ swedish ] = "Det finns ingen plats kvar p enheten" ;
        Text [ danish ] = "Der er ikke mere tilgngelig plads p enheden" ;
        Text [ portuguese ] = "No h mais espao no perifrico." ;
        Text [ portuguese_brazilian ] = "Auf dem Ger?t ist kein Platz mehr verf?bar" ;
        Text[ chinese_simplified ] = "设备上的可用空间已经用完";
        Text[ russian ] = "      ";
        Text[ polish ] = "Nie ma wicej miejsca na tym urzdzeniu";
        Text[ japanese ] = "デバイス上に空き容量がありません";
        Text[ chinese_traditional ] = "設備的可用空間已經用盡";
        Text[ arabic ] = "     ";
        Text[ dutch ] = "Onvoldoende opslagruimte";
        Text[ chinese_simplified ] = "设备上的可用空间已经用完";
        Text[ greek ] = "      ";
        Text[ korean ] = "장치에 더 이상 공간이 없음";
        Text[ turkish ] = "Cihazda yeterli alan kalmad";
        Text[ catalan ] = "Ja no hi ha espai en el dispositiu";
        Text[ finnish ] = "Laitteen tila ei riit.";
        Text[ thai ] = "ไม่มีที่ว่างบนอุปกรณ์มากกว่านี้";
    };
    String ERRCODE_IO_ISWILDCARD
    {
        Text = "Die Operation kann nicht auf Dateien, welche\nWildcards enthalten, ausgefhrt werden" ;
        Text [ ENGLISH ] = "This operation is not permitted on filenames containing wildcards" ;
        Text [ dutch ] = "Deze opdracht kan niet worden uitgevoerd bij bestanden \ndie wildcards bevatten" ;
        Text [ english_us ] = "This operation cannot be run on\nfiles containing wildcards" ;
        Text [ italian ] = "L'operazione non pu essere effettuata su file che \ncontengono wildcards" ;
        Text [ spanish ] = "La operacin no se puede ejecutar en\narchivos que contengan Wildcards." ;
        Text [ french ] = "Cette action ne peut pas tre excute sur des fichiers\ncontenant des caractres gnriques (Wildcards)" ;
        Text [ swedish ] = "Operationen kan inte utfras p filer som\ninnehller jokertecken" ;
        Text [ danish ] = "Det er ikke muligt at udfre processen p filer,\nsom indeholder jokertegn" ;
        Text [ portuguese ] = "A operao no pode ser executada em\nficheiros que contenham caracteres universais." ;
        Text [ portuguese_brazilian ] = "Die Operation kann nicht auf Dateien, welche\nWildcards enthalten, ausgef?rt werden" ;
        Text[ chinese_simplified ] = "无法在含有通配符的\n文件中执行这个操作";
        Text[ russian ] = "    , \n  ";
        Text[ polish ] = "Operacja nie moe by wykonana na plikach, ktre \nzawieraj symbole wieloznaczne (Wildcarts)";
        Text[ japanese ] = "ワイルドカードを含むファイルで\n操作は実行できません";
        Text[ chinese_traditional ] = "這些檔案含有萬用字元﹐\n而無法執行過程";
        Text[ arabic ] = "      \n   .";
        Text[ dutch ] = "Deze opdracht kan niet worden uitgevoerd bij bestanden \ndie wildcards bevatten";
        Text[ chinese_simplified ] = "无法在含有通配符的\n文件中执行这个操作";
        Text[ greek ] = "            \n   ";
        Text[ korean ] = "이 작업은 패턴 일치(와일드카드)가 포함된\\파일에서 실행할 수 없습니다.";
        Text[ turkish ] = "lem, genel arama karakterleri\n ieren dosyalar zerinde gerekletirilemiyor";
        Text[ catalan ] = "L'operaci no es pot executar en\nfitxers que tinguin Wildcards.";
        Text[ finnish ] = "Tt toimintoa ei voi suorittaa,\njos tiedostot sisltvt yleismerkkej.";
        Text[ thai ] = "ไม่สามารถรันการปฏิบัติการนี้บน\nแฟ้มที่มีสัญลักษณ์ตัวแทน";
    };
    String ERRCODE_IO_NOTSUPPORTED
    {
        Text = "Die Operation wird auf dem vorliegenden Betriebssystem nicht untersttzt" ;
        Text [ ENGLISH ] = "This operation is not supported on this operating system" ;
        Text [ english_us ] = "This operation is not supported on this operating system" ;
        Text [ italian ] = "L'operazione non viene supportata sul sistema operativo presente" ;
        Text [ spanish ] = "Este sistema operativo no admite esta operacin." ;
        Text [ french ] = "Cette opration n'est pas supporte sur ce systme d'exploitation." ;
        Text [ dutch ] = "Deze opdracht wordt niet ondersteund door het bestaande besturingssysteem" ;
        Text [ swedish ] = "Operationen stds inte av detta operativsystem" ;
        Text [ danish ] = "Processen understttes ikke af dette operativsystem" ;
        Text [ portuguese ] = "A operao no tem suporte neste sistema operativo." ;
        Text [ portuguese_brazilian ] = "Die Operation wird auf dem vorliegenden Betriebssystem nicht unterst?zt" ;
        Text[ chinese_simplified ] = "当前的操作平台不支持这个操作";
        Text[ russian ] = "    ";
        Text[ polish ] = "Ta operacja nie jest obsugiwana w tym systemie operacyjnym.";
        Text[ japanese ] = "この操作はこのオペレーティングシステムでは支援されません";
        Text[ chinese_traditional ] = "目前使用的作業系統不支援這個動作";
        Text[ arabic ] = "      ";
        Text[ dutch ] = "Deze opdracht wordt niet ondersteund door het bestaande besturingssysteem";
        Text[ chinese_simplified ] = "当前的操作平台不支持这个操作";
        Text[ greek ] = "         ";
        Text[ korean ] = "이 운영체제에서 이 작업을 지원하지 않습니다.";
        Text[ turkish ] = "Bu ilem, iletim sistemi tarafndan desteklenmiyor";
        Text[ catalan ] = "Aquesta operaci no s suportada per aquest sistema operatiu.";
        Text[ finnish ] = "Kyttjrjestelm ei tue toimintoa.";
        Text[ thai ] = "ไม่สนับสนุนปฏิบัติการนี้บนระบบปฏิบัติการ";
    };
    String ERRCODE_IO_TOOMANYOPENFILES
    {
        Text = "Es sind bereits zu viele Dateien geffnet" ;
        Text [ ENGLISH ] = "The are too many open files" ;
        Text [ dutch ] = "Te veel bestanden geopend" ;
        Text [ english_us ] = "There are too many files open" ;
        Text [ italian ] = "Ci sono gi troppi file aperti" ;
        Text [ spanish ] = "Hay demasiados archivos abiertos." ;
        Text [ french ] = "Trop de fichiers ouverts !" ;
        Text [ swedish ] = "Fr mnga filer r redan ppnade" ;
        Text [ danish ] = "Der er for mange bne filer allerede" ;
        Text [ portuguese ] = "Demasiados ficheiros abertos." ;
        Text [ portuguese_brazilian ] = "Es sind bereits zu viele Dateien ge?fnet" ;
        Text[ chinese_simplified ] = "已经打开的文件太多";
        Text[ russian ] = "   ";
        Text[ polish ] = "Jest otworzonych za duo plikw";
        Text[ japanese ] = "すでにファイルをたくさん開きすぎています";
        Text[ chinese_traditional ] = "開啟了太多檔案";
        Text[ arabic ] = "    ";
        Text[ dutch ] = "Te veel bestanden geopend";
        Text[ chinese_simplified ] = "已经打开的文件太多";
        Text[ greek ] = "    ";
        Text[ korean ] = "너무 많은 파일이 열려 있습니다.";
        Text[ turkish ] = "ok fazla dosya ak";
        Text[ catalan ] = "Hi ha massa fitxers oberts";
        Text[ finnish ] = "Avonaisia tiedostoja on liikaa.";
        Text[ thai ] = "มีแฟ้มที่เปิดอยู่มากเกินไป";
    };
    String ERRCODE_IO_CANTREAD
    {
        Text = "Von der Datei konnte nicht gelesen werden" ;
        Text [ ENGLISH ] = "The file could not be read" ;
        Text [ dutch ] = "Bestand kan niet worden gelezen" ;
        Text [ english_us ] = "Data could not be read from the file" ;
        Text [ italian ] = "Non  stato possibile leggere dal file" ;
        Text [ spanish ] = "No se pudo leer del archivo." ;
        Text [ french ] = "Impossible de lire  partir de ce fichier" ;
        Text [ swedish ] = "Det gick inte att lsa frn filen" ;
        Text [ danish ] = "Det var ikke muligt at lse filen" ;
        Text [ portuguese ] = "Foi impossvel ler o ficheiro." ;
        Text [ portuguese_brazilian ] = "Von der Datei konnte nicht gelesen werden" ;
        Text[ chinese_simplified ] = "无法读取这个文件";
        Text[ russian ] = "  ";
        Text[ polish ] = "Ten plik nie mog zosta odczytany";
        Text[ japanese ] = "ファイルから読み取れませんでした";
        Text[ chinese_traditional ] = "無法讀取這個檔案";
        Text[ arabic ] = "  ";
        Text[ dutch ] = "Bestand kan niet worden gelezen";
        Text[ chinese_simplified ] = "无法读取这个文件";
        Text[ greek ] = "       ";
        Text[ korean ] = "파일을 읽을 수 없습니다.";
        Text[ turkish ] = "Dosyadan veri okunamad";
        Text[ catalan ] = "No s'han pogut llegir les dades des del fitxer";
        Text[ finnish ] = "Tietojen lukeminen tiedostosta ei onnistu.";
        Text[ thai ] = "ไม่สามารถอ่านข้อมูลจากแฟ้มได้";
    };
    String ERRCODE_IO_CANTWRITE
    {
        Text = "Die Datei konnte nicht geschrieben werden" ;
        Text [ ENGLISH ] = "The file could not be written" ;
        Text [ english_us ] = "The file could not be written" ;
        Text [ italian ] = "Non  stato possibile scrivere il file" ;
        Text [ spanish ] = "No se pudo guardar el archivo" ;
        Text [ french ] = "Impossible d'crire le fichier" ;
        Text [ dutch ] = "Bestand kan niet worden opgeslagen" ;
        Text [ swedish ] = "Det gick inte att skriva filen" ;
        Text [ danish ] = "Det var ikke muligt at skrive filen" ;
        Text [ portuguese ] = "Foi impossvel escrever o ficheiro." ;
        Text [ portuguese_brazilian ] = "Auf die Datei konnte nicht gespeicherwerden" ;
        Text[ chinese_simplified ] = "无法写入这个文件";
        Text[ russian ] = "  ";
        Text[ polish ] = "Pliku nie mona byo zapisa";
        Text[ japanese ] = "ファイルを書き込みできませんでした";
        Text[ chinese_traditional ] = "無法寫入這個檔案";
        Text[ arabic ] = "  ";
        Text[ dutch ] = "Bestand kan niet worden opgeslagen";
        Text[ chinese_simplified ] = "无法写入这个文件";
        Text[ greek ] = "      ";
        Text[ korean ] = "파일에 쓸 수 없습니다.";
        Text[ turkish ] = "Dosya yazlamad";
        Text[ language_user1 ] = " ";
        Text[ catalan ] = "No s'ha pogut escriure el fitxer";
        Text[ finnish ] = "Tiedoston kirjoittaminen ei onnistunut.";
        Text[ thai ] = "ไม่สามารถเขียนแฟ้มได้";
    };
    String ERRCODE_IO_OUTOFMEMORY
    {
        Text = "Die Operation konnte wegen Speichermangels nicht ausgefhrt werden" ;
        Text [ ENGLISH ] = "The operation could no be completed because there is no memory left" ;
        Text [ english_us ] = "The operation could not be run due to insufficient memory." ;
        Text [ italian ] = "A causa di insufficienza di memoria non  stato possibile completare l'operazione" ;
        Text [ spanish ] = "La operacin no se pudo ejecutar por falta de memoria." ;
        Text [ french ] = "Impossible d'excuter cette action, mmoire insuffisante !" ;
        Text [ dutch ] = "De opdracht kan niet worden uitgevoerd bij gebrek aan vrij geheugen." ;
        Text [ swedish ] = "Operationen kunde inte utfras p grund av fr lite minne." ;
        Text [ danish ] = "Det var ikke muligt at udfre operationen, fordi der ikke er tilstrkkelig hukommelse" ;
        Text [ portuguese ] = "Foi impossvel executar a operao por no existir memria suficiente." ;
        Text [ portuguese_brazilian ] = "Die Operation konnte wegen Speichermangels nicht ausgef?rt werden" ;
        Text[ chinese_simplified ] = "因为内存不足而无法执行这个操作";
        Text[ russian ] = "   -  ";
        Text[ polish ] = "Operacja nie moga zosta wykonana z powodu braku pamici";
        Text[ japanese ] = "この操作はディスク空き容量が足りないため実行できません";
        Text[ chinese_traditional ] = "因為記憶體不足而無法執行這個動作";
        Text[ arabic ] = "  ɡ   ";
        Text[ dutch ] = "De opdracht kan niet worden uitgevoerd bij gebrek aan vrij geheugen.";
        Text[ chinese_simplified ] = "因为内存不足而无法执行这个操作";
        Text[ greek ] = "         ";
        Text[ korean ] = "메모리가 부족하여 작업을 실행하지 못했습니다.";
        Text[ turkish ] = "lem, bellek yetersizlii nedeniyle yrtlemedi";
        Text[ catalan ] = "L'operaci no s'ha pogut executar per falta de memria.";
        Text[ finnish ] = "Toiminnon suorittaminen ei onnistunut muistin loppumisen takia.";
        Text[ thai ] = "ไม่สามารถรันปฏิบัติการได้เนื่องจากหน่วยความจำไม่เพียงพอ";
    };
    String ERRCODE_IO_CANTSEEK
    {
        Text = "Die Seekoperation konnte nicht ausgefhrt werden" ;
        Text [ ENGLISH ] = "The seek operation could not be completed" ;
        Text [ dutch ] = "Zoekopdracht kan niet worden uitgevoerd" ;
        Text [ english_us ] = "The seek operation could not be run" ;
        Text [ italian ] = "Non  stato possibile eseguire l'operazione di seek" ;
        Text [ spanish ] = "No se pudo ejecutar la operacin Seek." ;
        Text [ french ] = "Impossible d'excuter l'opration seek !" ;
        Text [ swedish ] = "Seekoperationen kunde inte utfras" ;
        Text [ danish ] = "Det var ikke muligt at udfre seek-operationen" ;
        Text [ portuguese ] = "Foi impossvel executar a operao de localizao." ;
        Text [ portuguese_brazilian ] = "Die Seekoperation konnte nicht ausgef?rt werden" ;
        Text[ chinese_simplified ] = "无法执行搜寻操作";
        Text[ russian ] = "   seek";
        Text[ polish ] = "Nie mona byo wykona operacji pliku (Seek)";
        Text[ japanese ] = "Seek操作が実行できません";
        Text[ chinese_traditional ] = "無法執行搜尋指令";
        Text[ arabic ] = "   \"Seek\"";
        Text[ dutch ] = "Zoekopdracht kan niet worden uitgevoerd";
        Text[ chinese_simplified ] = "无法执行搜寻操作";
        Text[ greek ] = "       ";
        Text[ korean ] = "자리 찾기 작업을 실행하지 못했습니다.";
        Text[ turkish ] = "Arama ilemi yrtlemedi";
        Text[ catalan ] = "No s'ha pogut executar l'operaci Seek.";
        Text[ finnish ] = "Hakutoimintoa ei voitu suorittaa.";
        Text[ thai ] = "ไม่สามารถใช้งานปฏิบัติการค้นหาได้";
    };
    String ERRCODE_IO_CANTTELL
    {
        Text = "Die Telloperation konnte nicht ausgefhrt werden" ;
        Text [ ENGLISH ] = "The tell operation could not be completed" ;
        Text [ english_us ] = "The tell operation could not be run" ;
        Text [ italian ] = "Non  stato possibile eseguire l'operazione tell" ;
        Text [ spanish ] = "No se pudo ejecutar la operacin Tell" ;
        Text [ french ] = "Impossible d'excuter l'opration tell" ;
        Text [ dutch ] = "Bestandsopdracht TELL kan niet worden uitgevoerd" ;
        Text [ swedish ] = "Telloperationen kunde inte utfras" ;
        Text [ danish ] = "Det var ikke muligt at udfre tell-operationen" ;
        Text [ portuguese ] = "Foi impossvel executar a operao Tell" ;
        Text [ portuguese_brazilian ] = "Die Telloperation konnte nicht ausgef?rt werden" ;
        Text[ chinese_simplified ] = "无法执行 tell 命令";
        Text[ russian ] = "   tell";
        Text[ polish ] = "Nie mona byo wykona operacji pliku (Tell)";
        Text[ japanese ] = "Tell操作が実行できません";
        Text[ chinese_traditional ] = "無法執行 Tell 指令";
        Text[ arabic ] = "   \"Tell\"";
        Text[ dutch ] = "Bestandsopdracht TELL kan niet worden uitgevoerd";
        Text[ chinese_simplified ] = "无法执行 tell 命令";
        Text[ greek ] = "       \"Tell\"";
        Text[ korean ] = "Tell 작업을 실행하지 못했습니다";
        Text[ turkish ] = "Tell ilemi yrtlemedi";
        Text[ catalan ] = "No s'ha pogut executar l'operaci Tell";
        Text[ finnish ] = "Vastaustoimintoa ei voitu suorittaa.";
        Text[ thai ] = "ไม่สามารถใช้งานปฏิบัติการบอกได้";
    };
    String ERRCODE_IO_WRONGVERSION
    {
        Text = "Die Datei liegt in einer falschen Version vor" ;
        Text [ ENGLISH ] = "The file has a wrong version" ;
        Text [ dutch ] = "Bestand heeft foutieve versie" ;
        Text [ english_us ] = "Incorrect file version" ;
        Text [ italian ] = "Il file  presente in una versione errata" ;
        Text [ spanish ] = "Versin incorrecta de archivo." ;
        Text [ french ] = "Version de fichier incorrecte" ;
        Text [ swedish ] = "Filen freligger i en felaktig version" ;
        Text [ danish ] = "Filen foreligger i en forkert version" ;
        Text [ portuguese ] = "Verso incorrecta do ficheiro." ;
        Text [ portuguese_brazilian ] = "Die Datei liegt in einer falschen Version vor" ;
        Text[ chinese_simplified ] = "文件的版本无效";
        Text[ russian ] = "  ";
        Text[ polish ] = "Wersja pliku jest nieprawidowa";
        Text[ japanese ] = "ファイルのバージョンが正しくありません";
        Text[ chinese_traditional ] = "檔案版本無效";
        Text[ arabic ] = "   ";
        Text[ dutch ] = "Bestand heeft foutieve versie";
        Text[ chinese_simplified ] = "文件的版本无效";
        Text[ greek ] = "   ";
        Text[ korean ] = "파일 버전이 올바르지 않습니다.";
        Text[ turkish ] = "Yanl dosya srm";
        Text[ catalan ] = "Versi incorrecta del fitxer.";
        Text[ finnish ] = "Vr tiedostoversio";
        Text[ thai ] = "เวอร์ชั่นแฟ้มไม่ถูกต้อง";
    };
    String ERRCODE_IO_WRONGFORMAT
    {
        Text = "Die Datei liegt in einem falschen Format vor" ;
        Text [ ENGLISH ] = "The file has a wrong format" ;
        Text [ dutch ] = "Bestand heeft foutieve indeling" ;
        Text [ english_us ] = "Incorrect file format" ;
        Text [ italian ] = "Il file ha un formato errato" ;
        Text [ spanish ] = "Formato de archivo incorrecto" ;
        Text [ french ] = "Format de fichier incorrect" ;
        Text [ swedish ] = "Filen freligger i ett felaktigt format" ;
        Text [ danish ] = "Filen foreligger i et forkert format" ;
        Text [ portuguese ] = "Formato de ficheiro incorrecto." ;
        Text [ portuguese_brazilian ] = "Die Datei liegt in einem falschen Format vor" ;
        Text[ chinese_simplified ] = "文件的格式错误";
        Text[ russian ] = "  ";
        Text[ polish ] = "Format pliku jest nieprawidowy";
        Text[ japanese ] = "ファイルの書式が正しくありません";
        Text[ chinese_traditional ] = "檔案格式錯誤";
        Text[ arabic ] = "   ";
        Text[ dutch ] = "Bestand heeft foutieve indeling";
        Text[ chinese_simplified ] = "文件的格式错误";
        Text[ greek ] = "   ";
        Text[ korean ] = "파일 서식이 잘못되었습니다.";
        Text[ turkish ] = "Yanl dosya srm";
        Text[ catalan ] = "Format del fitxer incorrecte";
        Text[ finnish ] = "Vr tiedostomuoto";
        Text[ thai ] = "รูปแบบแฟ้มไม่ถูกต้อง";
    };
    String ERRCODE_IO_INVALIDCHAR
    {
        Text = "Der Dateiname enthlt unzulssige Zeichen" ;
        Text [ ENGLISH ] = "The filename contains invalid characters" ;
        Text [ dutch ] = "De bestandsnaam bevat ongeldige tekens" ;
        Text [ english_us ] = "The file name contains invalid characters" ;
        Text [ italian ] = "Il nome del file contiene caratteri non permessi" ;
        Text [ spanish ] = "El nombre del archivo contiene caracteres inadmisibles." ;
        Text [ french ] = "Le nom du fichier contient des caractres incorrectes" ;
        Text [ swedish ] = "Filnamnet innehller otilltna tecken" ;
        Text [ danish ] = "Filnavnet indeholder ugyldige tegn" ;
        Text [ portuguese ] = "O nome do ficheiro contm caracteres incorrectos." ;
        Text [ portuguese_brazilian ] = "Der Dateiname enth?lt unzul?ssige Zeichen" ;
        Text[ chinese_simplified ] = "文件名中含有无效的字符";
        Text[ russian ] = "    ";
        Text[ polish ] = "Nazwa pliku zawiera nieprawidowe znaki";
        Text[ japanese ] = "ファイル名に不適切な文字が含まれています";
        Text[ chinese_traditional ] = "檔案名含有無效的字元";
        Text[ arabic ] = "       ";
        Text[ dutch ] = "De bestandsnaam bevat ongeldige tekens";
        Text[ chinese_simplified ] = "文件名中含有无效的字符";
        Text[ greek ] = "       ";
        Text[ korean ] = "파일 이름에 잘못된 문자가 포함되어 있습니다.";
        Text[ turkish ] = "Dosya ad geersiz karakterler ieriyor";
        Text[ catalan ] = "El nom del fitxer cont parmetres no permesos.";
        Text[ finnish ] = "Tiedoston nimess on virheellisi merkkej.";
        Text[ thai ] = "ชื่อแฟ้มมีตัวอักขระที่ไม่ถูกต้อง";
    };
    String ERRCODE_IO_UNKNOWN
    {
        Text = "Es trat ein unbekannter Ein-/Ausgabefehler auf" ;
        Text [ ENGLISH ] = "The Operation failed due an unknown I/O Error" ;
        Text [ english_us ] = "An unknown I/O error has occurred" ;
        Text [ italian ] = "Si  verificato un errore di I/O sconosciuto" ;
        Text [ spanish ] = "Ha ocurrido un error desconocido de entrada/salida." ;
        Text [ french ] = "Erreur d'entre/sortie inconnue" ;
        Text [ dutch ] = "Onbekende I/O-fout" ;
        Text [ swedish ] = "Ett oknt input-/outputfel uppstod" ;
        Text [ danish ] = "Der opstod en ukendt input-/outputfejl" ;
        Text [ portuguese ] = "Surgiu um erro de entrada/sada desconhecido." ;
        Text [ portuguese_brazilian ] = "Es trat ein unbekannter Ein-/Ausgabefehler auf" ;
        Text[ chinese_simplified ] = "出现一个不明的输入/输出错误";
        Text[ russian ] = "  -";
        Text[ polish ] = "Wystpi nieznany bd wejcia/wyjcia";
        Text[ japanese ] = "不明なI/O エラーが発生";
        Text[ chinese_traditional ] = "出現一個不明的輸入/輸出錯誤";
        Text[ arabic ] = "  /  ";
        Text[ dutch ] = "Onbekende I/O-fout";
        Text[ chinese_simplified ] = "出现一个不明的输入/输出错误";
        Text[ greek ] = "   /";
        Text[ korean ] = "알 수 없는 입력/출력 오류가 발생했습니다";
        Text[ turkish ] = "Bilinmeyen bir girdi/kt hatas olutu";
        Text[ catalan ] = "S'ha produt un error desconegut d'entrada/sortida.";
        Text[ finnish ] = "On ilmennyt tuntematon I/O-virhe.";
        Text[ thai ] = "เกิดข้อผิดพลาด I/O ที่ไม่รู้จัก";
    };
    String ERRCODE_IO_INVALIDACCESS
    {
        Text = "Es wurde versucht, in ungltiger Weise auf die Datei zuzugreifen" ;
        Text [ ENGLISH ] = "The file accessed invalidly" ;
        Text [ dutch ] = "Ongeldige poging tot openen van bestand" ;
        Text [ english_us ] = "An invalid attempt was made to access the file" ;
        Text [ italian ] = "Si  tentato di accedere al file in modo non valido" ;
        Text [ spanish ] = "Se ha tratado de acceder al archivo de manera no vlida." ;
        Text [ french ] = "La manire dont vous avez essay d'accder au fichier est incorrecte" ;
        Text [ swedish ] = "Ogiltigt frsk att f tkomst till filen" ;
        Text [ danish ] = "Ugyldigt forsg p at f adgang til filen" ;
        Text [ portuguese ] = "Tentativa incorrecta de acesso ao ficheiro." ;
        Text [ portuguese_brazilian ] = "Es wurde versucht, in ung?tiger Weise auf die Datei zuzugreifen" ;
        Text[ chinese_simplified ] = "读取文件的方式无效";
        Text[ russian ] = "     ";
        Text[ polish ] = "Nastpia prba uzyskania nieprawidowego dostpu do pliku";
        Text[ japanese ] = "無効なやり方でのファイルへのアクセスが試みられました";
        Text[ chinese_traditional ] = "存取檔案的方式無效";
        Text[ arabic ] = "       ";
        Text[ dutch ] = "Ongeldige poging tot openen van bestand";
        Text[ chinese_simplified ] = "读取文件的方式无效";
        Text[ greek ] = "      ";
        Text[ korean ] = "잘못된 파일 액세스 시도를 했습니다.";
        Text[ turkish ] = "Dosyaya yetkisiz eriim denendi";
        Text[ catalan ] = "S'ha provat d'accedir al fitxer de manera incorrecta.";
        Text[ finnish ] = "Tiedostoja yritettiin kytt virheellisesti.";
        Text[ thai ] = "ความพยายามเข้าถึงแฟ้มไม่ถูกต้อง";
    };
    String ERRCODE_IO_CANTCREATE
    {
        Text = "Die Datei konnte nicht angelegt werden" ;
        Text [ ENGLISH ] = "The file could not be created" ;
        Text [ dutch ] = "Bestand kan niet worden gemaakt" ;
        Text [ english_us ] = "The file could not be created" ;
        Text [ italian ] = "Non  stato possibile creare il file" ;
        Text [ spanish ] = "No se pudo crear el archivo." ;
        Text [ french ] = "Impossible de crer le fichier" ;
        Text [ swedish ] = "Filen kunde inte skapas" ;
        Text [ danish ] = "Det var ikke muligt at oprette filen" ;
        Text [ portuguese ] = "Foi impossvel criar o ficheiro." ;
        Text [ portuguese_brazilian ] = "Die Datei konnte nicht angelegt werden" ;
        Text[ chinese_simplified ] = "无法建立这个文件";
        Text[ russian ] = "  ";
        Text[ polish ] = "Plik nie mg zosta utworzony";
        Text[ japanese ] = "ファイルは格納できませんでした";
        Text[ chinese_traditional ] = "無法建立這個檔案";
        Text[ arabic ] = "  ";
        Text[ dutch ] = "Bestand kan niet worden gemaakt";
        Text[ chinese_simplified ] = "无法建立这个文件";
        Text[ greek ] = "      ";
        Text[ korean ] = "파일을 만들지 못했습니다.";
        Text[ turkish ] = "Dosya oluturulamad";
        Text[ catalan ] = "No s'ha pogut crear el fitxer";
        Text[ finnish ] = "Tiedoston luominen ei onnistunut.";
        Text[ thai ] = "ไม่สามารถสร้างแฟ้มได้";
    };
    String ERRCODE_IO_INVALIDPARAMETER
    {
        Text = "Die Operation wurde mit einem ungltigen Parameter gestartet" ;
        Text [ ENGLISH ] = "An invalid parameter was passed" ;
        Text [ english_us ] = "The operation was started under an invalid parameter" ;
        Text [ italian ] = "L'operazione  stata avviata con un parametro non valido" ;
        Text [ spanish ] = "La operacin se inici con un parmetro no vlido." ;
        Text [ french ] = "L'action a t lance  l'aide d'un paramtre incorrect" ;
        Text [ dutch ] = "Activiteit uitgevoerd met ongeldige parameter." ;
        Text [ swedish ] = "Operationen startades med en ogiltig parameter" ;
        Text [ danish ] = "Processen blev startet med en ugyldig parameter" ;
        Text [ portuguese ] = "A operao foi iniciada com um parmetro incorrecto." ;
        Text [ portuguese_brazilian ] = "Die Operation wurde mit einem ung?tigen Parameter gestartet" ;
        Text[ chinese_simplified ] = "使用一个无效的参数启动了这个操作";
        Text[ russian ] = "     ";
        Text[ polish ] = "Przy rozpoczciu operacji uyto nieprawidowego parametru";
        Text[ japanese ] = "この操作は無効なパラメータで開始しました";
        Text[ chinese_traditional ] = "使用一個無效的參數來執行這個過程。";
        Text[ arabic ] = "     ";
        Text[ dutch ] = "Activiteit uitgevoerd met ongeldige parameter.";
        Text[ chinese_simplified ] = "使用一个无效的参数启动了这个操作";
        Text[ greek ] = "      ";
        Text[ korean ] = "잘못된 매개 변수로 작동을 시작했습니다";
        Text[ turkish ] = "lem geersiz bir parametre ile balatld.";
        Text[ catalan ] = "L'operaci s'ha iniciat amb un parmetre no vlid.";
        Text[ finnish ] = "Toiminto aloitettiin vrll parametrill.";
        Text[ thai ] = "เริ่มปฏิบัติการภายใต้พารามิเตอร์ที่ไม่ถูกต้อง";
    };
    String ERRCODE_IO_ABORT
    {
        Text = "Die Operation auf der Datei wurde abgebrochen" ;
        Text [ ENGLISH ] = "The operation on the file was aborted" ;
        Text [ dutch ] = "Activiteit is geannuleerd" ;
        Text [ english_us ] = "The operation on the file was aborted" ;
        Text [ italian ] = "L'operazione sul file  stata interrotta" ;
        Text [ spanish ] = "Se ha interrumpido la operacin en el archivo." ;
        Text [ french ] = "L'action tente sur le fichier a t interrompue" ;
        Text [ swedish ] = "Operationen p filen avbrts" ;
        Text [ danish ] = "Processen p filen blev afbrudt" ;
        Text [ portuguese ] = "Cancelada a operao no ficheiro." ;
        Text [ portuguese_brazilian ] = "Die Operation auf der Datei wurde abgebrochen" ;
        Text[ chinese_simplified ] = "这个文件的操作已经中断";
        Text[ russian ] = "   ";
        Text[ polish ] = "Operacja na pliku zostaa przerwana";
        Text[ japanese ] = "ファイル上の操作は中止されました";
        Text[ chinese_traditional ] = "這個檔案的執行過程已經中斷";
        Text[ arabic ] = "    ";
        Text[ dutch ] = "Activiteit is geannuleerd";
        Text[ chinese_simplified ] = "这个文件的操作已经中断";
        Text[ greek ] = "     ";
        Text[ korean ] = "파일 상에서 작동이 중단되었습니다.";
        Text[ turkish ] = "Dosya ile ilgili ilem iptal edildi";
        Text[ catalan ] = "S'ha interromput la operaci en el fitxer.";
        Text[ finnish ] = "Tiedoston toiminto keskeytettiin.";
        Text[ thai ] = "ปฏิบัติการบนแฟ้มถูกเลิก";
    };
    String ERRCODE_IO_NOTEXISTSPATH
    {
        Text = "Der Pfad zu der Datei existiert nicht" ;
        Text [ ENGLISH ] = "Path to file not found" ;
        Text [ english_us ] = "Path to the file does not exist" ;
        Text [ italian ] = "Il percorso del file non esiste" ;
        Text [ spanish ] = "No existe la ruta de acceso al archivo." ;
        Text [ french ] = "Le chemin vers le fichier n'existe pas." ;
        Text [ dutch ] = "Pad naar bestand niet gevonden" ;
        Text [ swedish ] = "Skvgen till filen existerar inte" ;
        Text [ danish ] = "Stien til filen eksisterer ikke" ;
        Text [ portuguese ] = "O atalho para o ficheiro no existe." ;
        Text [ portuguese_brazilian ] = "Der Pfad zu der Datei existiert nicht" ;
        Text[ chinese_simplified ] = "指向文件的路径不存在";
        Text[ russian ] = "    ";
        Text[ polish ] = "cieka do pliku nie istnieje";
        Text[ japanese ] = "ファイルへのパスはありません";
        Text[ chinese_traditional ] = "指向檔案的路徑不存在";
        Text[ arabic ] = "     ";
        Text[ dutch ] = "Pad naar bestand niet gevonden";
        Text[ chinese_simplified ] = "指向文件的路径不存在";
        Text[ greek ] = "      ";
        Text[ korean ] = "파일에 대한 경로가 존재하지 않습니다.";
        Text[ turkish ] = "Dosya veri yolu mevcut deil";
        Text[ catalan ] = "No existeix el cam d'accs al fitxer.";
        Text[ finnish ] = "Tiedostopolkua ei ole.";
        Text[ thai ] = "ไม่มีเส้นทางไปยังแฟ้มอยู่";
    };
    String ERRCODE_IO_RECURSIVE
    {
        Text = "Ein Objekt kann nicht in sich selbst kopiert werden." ;
        Text [ ENGLISH ] = "Cannot copy object into itself." ;
        Text [ portuguese ] = " impossvel copiar um objecto em si prprio." ;
        Text [ english_us ] = "An object cannot be copied into itself." ;
        Text [ portuguese_brazilian ] = "Ein Objekt kann nicht in sich selbt kopiert werden." ;
        Text [ swedish ] = "Ett objekt kan inte kopieras till sig sjlvt." ;
        Text [ danish ] = "Det er ikke muligt at kopiere et objekt over i sig selv." ;
        Text [ italian ] = "Un oggetto non pu essere copiato su se stesso." ;
        Text [ spanish ] = "No es posible copiar un objeto en s mismo." ;
        Text [ french ] = "Copie impossible : la cible est identique  la source." ;
        Text [ dutch ] = "Een object kan niet worden gekopieerd naar zichzelf." ;
        Text[ chinese_simplified ] = "对象无法被复制到自身内。";
        Text[ russian ] = "    .";
        Text[ polish ] = "Obiekt nie moe zosta skopiowany sam w sobie.";
        Text[ japanese ] = "オブジェクトはそのもの自体にコピーできません。";
        Text[ chinese_traditional ] = "物件無法被複製到自身。";
        Text[ arabic ] = "     .";
        Text[ dutch ] = "Een object kan niet worden gekopieerd naar zichzelf.";
        Text[ chinese_simplified ] = "对象无法被复制到自身内。";
        Text[ greek ] = "         .";
        Text[ korean ] = "개체를 그 자체에 복사할 수 없습니다.";
        Text[ turkish ] = "Nesne kendi iine kopyalanamaz.";
        Text[ catalan ] = "No es pot copiar un objecte en ell mateix.";
        Text[ finnish ] = "Objektia ei voi kopioida itseens.";
        Text[ thai ] = "ไม่สามารถคัดลอกวัตถุในตัวมันเองได้";
    };
    String ERRCODE_SFX_NOSTDTEMPLATE
    {
        Text = "Die Standardvorlage konnte nicht geffnet werden" ;
        Text [ ENGLISH ] = "The standard template could not be found" ;
        Text [ dutch ] = "Standaardsjabloon kan niet worden geopend" ;
        Text [ english_us ] = "The default template could not be opened" ;
        Text [ italian ] = "Non  stato possibile aprire il modello standard" ;
        Text [ spanish ] = "No se pudo abrir la plantilla predeterminada." ;
        Text [ french ] = "Impossible d'ouvrir le modle par dfaut" ;
        Text [ swedish ] = "Det gick inte att ppna standardmallen" ;
        Text [ danish ] = "Det var ikke muligt at bne standardskabelonen" ;
        Text [ portuguese ] = "Foi impossvel abrir o modelo padro." ;
        Text [ portuguese_brazilian ] = "Die Standardvorlage konnte nicht ge?fnet werden" ;
        Text[ chinese_simplified ] = "无法打开标准样式";
        Text[ russian ] = "   ";
        Text[ polish ] = "Nie mona otworzy standardowego szablonu";
        Text[ japanese ] = "標準スタイルは開くことができませんでした";
        Text[ chinese_traditional ] = "無法開啟標準樣式";
        Text[ arabic ] = "   ";
        Text[ dutch ] = "Standaardsjabloon kan niet worden geopend";
        Text[ chinese_simplified ] = "无法打开标准样式";
        Text[ greek ] = "       .";
        Text[ korean ] = "기본 서식 파일을 열지 못했습니다.";
        Text[ turkish ] = "Standart ablon alamad";
        Text[ catalan ] = "No s'ha pogut obrir la plantilla per defecte";
        Text[ finnish ] = "Oletusmallin avaaminen ei onnistunut.";
        Text[ thai ] = "ไม่สามารถเปิดแม่แบบเริ่มต้นได้";
    };
    String ERRCODE_SFX_TEMPLATENOTFOUND
    {
        Text = "Die angegebene Vorlage wurde nicht gefunden" ;
        Text [ ENGLISH ] = "The template cannot be found" ;
        Text [ dutch ] = "Opgegeven sjabloon niet gevonden" ;
        Text [ english_us ] = "The specified template could not be found" ;
        Text [ italian ] = "Il modello dato non  stato trovato" ;
        Text [ spanish ] = "No se encontr la plantilla especificada" ;
        Text [ french ] = "Le modle indiqu est introuvable." ;
        Text [ swedish ] = "Den angivna mallen kunde inte hittas" ;
        Text [ danish ] = "Den angivne skabelon blev ikke fundet" ;
        Text [ portuguese ] = "Foi impossvel encontrar o modelo indicado." ;
        Text [ portuguese_brazilian ] = "Die angegebene Vorlage wurde nicht gefunden" ;
        Text[ chinese_simplified ] = "没有找到指定的样式";
        Text[ russian ] = "   ";
        Text[ polish ] = "Podanego szablonu nie znaleziono";
        Text[ japanese ] = "指定したテンプレートは見つかりませんでした";
        Text[ chinese_traditional ] = "沒有找到指定的樣式";
        Text[ arabic ] = "    ";
        Text[ dutch ] = "Opgegeven sjabloon niet gevonden";
        Text[ chinese_simplified ] = "没有找到指定的样式";
        Text[ greek ] = "    ";
        Text[ korean ] = "지정된 서식 파일을 찾지 못했습니다.";
        Text[ turkish ] = "Belirtilen ablon bulunamad";
        Text[ catalan ] = "No s'ha pogut trobar la plantilla especificada";
        Text[ finnish ] = "Mritetty mallia ei lytynyt.";
        Text[ thai ] = "ไม่สามารถหาแม่แบบที่ระบุได้";
    };
    String ERRCODE_SFX_NOTATEMPLATE
    {
        Text = "Die Datei kann nicht als Vorlage verwendet werden" ;
        Text [ ENGLISH ] = "The file cannot be used as template" ;
        Text [ dutch ] = "Bestand kan niet worden gebruikt als sjabloon" ;
        Text [ english_us ] = "The file cannot be used as template" ;
        Text [ italian ] = "Il file non  utilizzabile come modello" ;
        Text [ spanish ] = "No se puede usar el archivo como plantilla" ;
        Text [ french ] = "Impossible d'utiliser ce fichier comme modle" ;
        Text [ swedish ] = "Filen kan inte anvndas som mall" ;
        Text [ danish ] = "Det er ikke muligt at bruge filen som skabelon" ;
        Text [ portuguese ] = "Impossvel utilizar o ficheiro como modelo." ;
        Text [ portuguese_brazilian ] = "Die Datei kann nicht als Vorlage verwendet werden" ;
        Text[ chinese_simplified ] = "这个文件无法当作样式使用";
        Text[ russian ] = "     ";
        Text[ polish ] = "Pliku nie mona uy jako szablonu";
        Text[ japanese ] = "このファイルはテンプレートとして使用できません";
        Text[ chinese_traditional ] = "這個檔案無法被當作樣式使用";
        Text[ arabic ] = "    ";
        Text[ dutch ] = "Bestand kan niet worden gebruikt als sjabloon";
        Text[ chinese_simplified ] = "这个文件无法当作样式使用";
        Text[ greek ] = "        ";
        Text[ korean ] = "이 파일을 서식 파일로 사용할 수 없습니다.";
        Text[ turkish ] = "Dosya, ablon olarak kullanlamyor";
        Text[ catalan ] = "No es pot usar el fitxer com a plantilla";
        Text[ finnish ] = "Tiedostoa ei voi kytt mallina.";
        Text[ thai ] = "ไม่สามารถใช้แฟ้มเป็นแม่แบบได้";
    };
    String ERRCODE_SFX_CANTREADDOCINFO
    {
        Text = "Die Dokumentinformation konnte nicht aus der Datei\ngelesen werden, da das Dokumentinformationsformat\nunbekannt ist oder da keine Dokumentinformation vorhanden\nist" ;
        Text [ ENGLISH ] = "The document info could not be read because\nthe document does not contain document info\nor because the document info ist not known" ;
        Text [ dutch ] = "Lezen van documentinfo niet mogelijk.\nDocumentindeling onbekend of geen documentinfo\nbeschikbaar" ;
        Text [ english_us ] = "Document information could not be read from the file because\nthe document information format is unknown or because document information does not\nexist" ;
        Text [ italian ] = "Non  stato possibile leggere l'informazione sul documento dal file\npoich il formato del file  sconosciuto o perch non c' un'informazione sul\ndocumento" ;
        Text [ spanish ] = "La informacin del documento no se pudo leer del\narchivo ya que su formato es desconocido o no\nexiste ninguna informacin acerca del documento." ;
        Text [ french ] = "Impossible de lire les informations sur le document  partir du fichier :\nsoit le format du fichier d'information est inconnu,\nsoit il n'existe pas d'informations de ce type\n" ;
        Text [ swedish ] = "Det gick inte att lsa dokumentinformationen frn\nfilen eftersom dokumentinformationsformatet r\nobekant eller ingen dokumentinformation existerar" ;
        Text [ danish ] = "Det var ikke muligt at lse dokumentinformationen\nfra filen, fordi dokumentinformationens format er ukendt\neller der ikke er nogen tilgngelig dokumentinformation." ;
        Text [ portuguese ] = "Impossvel ler as informaes sobre o documento no ficheiro\n por terem um formato desconhecido ou \npor no existirem." ;
        Text [ portuguese_brazilian ] = "Die Dokumentinformation konnte nicht aus der Datei\ngelesen werden, da das Dokumentinformationsformat\nunbekannt ist oder da keine Dokumentinformation vorhanden\nist" ;
        Text[ chinese_simplified ] = "无法读出这个文件的文档信息,\n因为这个文档信息的格式不明或文档信息不存在\n";
        Text[ russian ] = "      \n,    \n    \n ";
        Text[ polish ] = "Informacji o dokumencie nie mona byo odczyta z pliku\n, poniewa format informacji o dokumencie \njest nieznany lub nie istniej informacje o dokumencie\n.";
        Text[ japanese ] = "ドキュメント情報の書式が不明か\nドキュメント情報がないかで\nファイルからドキュメント情報は読み取れませんでした";
        Text[ chinese_traditional ] = "無法讀出這個檔案的文件資訊﹐\n因為這個文件資訊不明或文件資訊不存在\n";
        Text[ arabic ] = "     ݡ\n   \n ݡ     \n ";
        Text[ dutch ] = "Lezen van documentinfo niet mogelijk.\nDocumentindeling onbekend of geen documentinfo\nbeschikbaar";
        Text[ chinese_simplified ] = "无法读出这个文件的文档信息,\n因为这个文档信息的格式不明或文档信息不存在\n";
        Text[ greek ] = "            \n        \n";
        Text[ korean ] = "알 수 없는 문서 정보 서식이거나\n문서 정보가 없는 이유로 파일에서 문서 정보를\n읽을 수 없습니다";
        Text[ turkish ] = "Belge bilgileri format, bilinmedii ya da belge\nbilgisi mevcut olmad iin\ndosyadan okunamad\n";
        Text[ catalan ] = "La informaci del document no s'ha pogut llegir del\nfitxer ja que el seu format s desconegut o b no\nexisteix cap informaci sobre el document.";
        Text[ finnish ] = "Tiedoston asiakirjatietojen lukeminen ei onnistunut,\nkoska asiakirjan muoto on tuntematon\ntai koska asiakirjan tietoja ei ole.";
        Text[ thai ] = "ไม่สามารถอ่านข้อมูลเอกสารได้จากแฟ้มเนื่องจาก\nไม่รู้จักรูปแบบข้อมูลเอกสารหรือเนื่องจากไม่มีข้อมูลเอกสารอยู่\n";
    };
    String ERRCODE_SFX_ALREADYOPEN
    {
        Text = "Das Dokument ist bereits zur Bearbeitung geffnet" ;
        Text [ English ] = "This document is already opened" ;
        Text [ dutch ] = "Document reeds geopend" ;
        Text [ english_us ] = "This document has already been opened for editing" ;
        Text [ italian ] = "Il documento  gi aperto per la modifica" ;
        Text [ spanish ] = "El documento ya se ha abierto para editarlo." ;
        Text [ french ] = "Le document est dj ouvert pour l'dition" ;
        Text [ swedish ] = "Dokumentet har redan ppnats fr redigering" ;
        Text [ danish ] = "Dokumentet er allerede bnet til redigering" ;
        Text [ portuguese ] = "O documento j se encontra aberto para edio." ;
        Text [ portuguese_brazilian ] = "Das Dokument ist bereits zur Bearbeitung ge?fnet" ;
        Text[ chinese_simplified ] = "这个文档已经处于编辑状态";
        Text[ russian ] = "    ";
        Text[ polish ] = "Dokument jest otwarty do edycji";
        Text[ japanese ] = "ドキュメントはすでに編集用に開かれています";
        Text[ chinese_traditional ] = "這個文件已經處於編輯狀態";
        Text[ arabic ] = "    .";
        Text[ dutch ] = "Document reeds geopend";
        Text[ chinese_simplified ] = "这个文档已经处于编辑状态";
        Text[ greek ] = "      ";
        Text[ korean ] = "문서가 이미 열려 있습니다.";
        Text[ turkish ] = "Belge zaten dzenlenmek zere ald";
        Text[ catalan ] = "Aquest document ja ha estat obert per editar";
        Text[ finnish ] = "Asiakirja on jo muokattavana.";
        Text[ thai ] = "เอกสารนี้ได้ถูกเปิดเพื่อแก้ไขแล้ว";
    };
    String ERRCODE_SFX_WRONGPASSWORD
    {
        Text = "Es wurde ein falsches Kennwort gesetzt" ;
        Text [ English ] = "A wrong password was specified" ;
        Text [ dutch ] = "Foutief wachtwoord" ;
        Text [ english_us ] = "The wrong password has been entered." ;
        Text [ italian ] = " stata impostata una password errata" ;
        Text [ spanish ] = "Se emple una contrasea errnea." ;
        Text [ french ] = "Le mot de passe spcifi n'est pas correct." ;
        Text [ swedish ] = "Ett felaktigt lsenord har definierats" ;
        Text [ danish ] = "Der blev angivet en forkert adgangskode" ;
        Text [ portuguese ] = "A senha especificada est errada." ;
        Text [ portuguese_brazilian ] = "Es wurde ein falsches Passwort gesetzt" ;
        Text[ chinese_simplified ] = "输入了一个错误的密码";
        Text[ russian ] = "  ";
        Text[ polish ] = "Zostao uyte nieprawidowe haso";
        Text[ japanese ] = "入力したパスワードは間違っています。";
        Text[ chinese_traditional ] = "輸入了一個錯誤的密碼";
        Text[ arabic ] = "     ";
        Text[ dutch ] = "Foutief wachtwoord";
        Text[ chinese_simplified ] = "输入了一个错误的密码";
        Text[ greek ] = "   ";
        Text[ korean ] = "옳지 않은 암호가 입력되었습니다.";
        Text[ turkish ] = "Girilen ifre yanl";
        Text[ language_user1 ] = " ";
        Text[ catalan ] = "La contrasenya no s correcta";
        Text[ finnish ] = "Vr salasana annettiin.";
        Text[ thai ] = "ใส่รหัสผ่านไม่ถูกต้อง";
    };
    String ERRCODE_SFX_DOLOADFAILED
    {
        TEXT = "Fehler beim Lesen der Datei " ;
        TEXT [ English ] = "Error in reading file " ;
        TEXT [ norwegian ] = "Feil ved lesing av fil " ;
        TEXT [ italian ] = "Errore durante la lettura del file " ;
        TEXT [ portuguese_brazilian ] = "Erro na leitura de arquivo" ;
        TEXT [ portuguese ] = "Erro na leitura do ficheiro" ;
        TEXT [ finnish ] = "Virhe luettaessa tiedostoa " ;
        TEXT [ danish ] = "Fejl ved lsning af filen " ;
        TEXT [ french ] = "Erreur de lecture du fichier " ;
        TEXT [ swedish ] = "Fel vid lsning av fil" ;
        TEXT [ dutch ] = "Fout bij lezen van bestand" ;
        TEXT [ spanish ] = "Error al leer el archivo " ;
        TEXT [ english_us ] = "Error reading file " ;
        TEXT[ chinese_simplified ] = "在读文件时发生错误 ";
        TEXT[ russian ] = "  ";
        TEXT[ polish ] = "Bd w odczytywaniu pliku ";
        TEXT[ japanese ] = "ファイルを読み取る際のエラー ";
        TEXT[ chinese_traditional ] = "存取檔案時發生錯誤 ";
        TEXT[ arabic ] = "    ";
        TEXT[ greek ] = "     ";
        TEXT[ korean ] = "파일 읽기 오류";
        TEXT[ turkish ] = "Dosya okuma hatas";
        TEXT[ language_user1 ] = " ";
        TEXT[ catalan ] = "S'ha produt un error en llegir el fitxer";
        TEXT[ thai ] = "เกิดความผิดพลาดระหว่างอ่านแฟ้มข้อมูล ";
    };
    String ERRCODE_SFX_DOCUMENTREADONLY
    {
        Text = "Das Dokument wurde zum Lesen geffnet" ;
        Text [ English ] = "The document was opened readonly" ;
        Text [ dutch ] = "Document geopend als alleen-lezen" ;
        Text [ english_us ] = "The document was opened as read-only" ;
        Text [ italian ] = "Il documento  stato aperto per la lettura" ;
        Text [ spanish ] = "Se ha abierto el documento para lectura." ;
        Text [ french ] = "Le document a t ouvert en mode de lecture seule" ;
        Text [ swedish ] = "Dokumentet ppnades fr lsning" ;
        Text [ danish ] = "Dokumentet er blevet bnet til lsning" ;
        Text [ portuguese ] = "O documento foi aberto para leitura." ;
        Text [ portuguese_brazilian ] = "Das Dokument wurde zum Lesen ge?fnet" ;
        Text[ chinese_simplified ] = "这个打开的文档是防改写的。";
        Text[ russian ] = "    ";
        Text[ polish ] = "Dokument zosta otwarty tylko do odczytu";
        Text[ japanese ] = "ドキュメントは読み取り用に開かれました";
        Text[ chinese_traditional ] = "已經打開讀取這個文件";
        Text[ arabic ] = "    ";
        Text[ dutch ] = "Document geopend als alleen-lezen";
        Text[ chinese_simplified ] = "这个打开的文档是防改写的。";
        Text[ greek ] = "     ";
        Text[ korean ] = "문서기 읽기 전용으로 열려 있습니다.";
        Text[ turkish ] = "Belge, salt okunur olarak ald";
        Text[ catalan ] = "S'ha obert el document en mode de lectura.";
        Text[ finnish ] = "Asiakirja avattiin vain luku -tilassa.";
        Text[ thai ] = "เปิดเอกสารเป็นแบบอ่านอย่างเดียว";
    };
    String ERRCODE_SFX_OLEGENERAL
    {
        Text = "Allgemeiner OLE Fehler" ;
        Text [ ENGLISH ] = "General OLE Error" ;
        Text [ english_us ] = "General OLE Error" ;
        Text [ italian ] = "Errore generale OLE" ;
        Text [ spanish ] = "Error OLE general" ;
        Text [ french ] = "Erreur gnrale OLE" ;
        Text [ dutch ] = "Algemene OLE-fout" ;
        Text [ swedish ] = "Allmnt OLE-fel" ;
        Text [ danish ] = "Generel OLE-fejl" ;
        Text [ portuguese ] = "Erro OLE geral" ;
        Text [ portuguese_brazilian ] = "Allgemeiner OLE Fehler" ;
        Text[ chinese_simplified ] = "一般的 OLE 错误";
        Text[ russian ] = "  OLE";
        Text[ polish ] = "Bd oglny OLE";
        Text[ japanese ] = "一般的な OLE エラー";
        Text[ chinese_traditional ] = "一般 OLE 錯誤";
        Text[ arabic ] = " OLE ";
        Text[ dutch ] = "Algemene OLE-fout";
        Text[ chinese_simplified ] = "一般的 OLE 错误";
        Text[ greek ] = "   OLE";
        Text[ korean ] = "일반 OLE 오류";
        Text[ turkish ] = "Genel OLE hatas";
        Text[ language_user1 ] = " ";
        Text[ catalan ] = "Error general d'OLE";
        Text[ finnish ] = "Yleinen OLE-virhe";
        Text[ thai ] = "ข้อผิดพลาด OLE ทั่วไป";
    };
    String ERRCODE_INET_NAME_RESOLVE
    {
        Text = "Der Rechnername $(ARG1) konnte nicht aufgelst werden" ;
        Text [ ENGLISH ] = "Could not resolve hostname $(ARG1)" ;
        Text [ dutch ] = "Computernaam $(ARG1) kan niet worden herleid" ;
        Text [ english_us ] = "The host name $(ARG1) could not be resolved" ;
        Text [ italian ] = "Non  stato possibile risolvere il nome dell'host $(ARG1)" ;
        Text [ spanish ] = "No se pudo resolver el nombre del ordenador $(ARG1)" ;
        Text [ french ] = "Impossible de rsoudre le nom $(ARG1) de l'ordinateur" ;
        Text [ swedish ] = "Det gick inte att lsa upp datornamnet $(ARG1)" ;
        Text [ danish ] = "Det var ikke muligt at fortolke computernavnet $(ARG1)" ;
        Text [ portuguese ] = "Impossvel resolver o nome do computador $(ARG1)" ;
        Text [ portuguese_brazilian ] = "Der Rechnername $(ARG1) konnte nicht aufgel?t werden" ;
        Text[ chinese_simplified ] = "无法找到计算机地址 $(ARG1)";
        Text[ russian ] = "    $(ARG1)";
        Text[ polish ] = "Nazwa komputera $(ARG1) nie moga zosta przetworzona";
        Text[ japanese ] = "ホスト名$(ARG1)は見つかりませんでした";
        Text[ chinese_traditional ] = "無法找到主機地址 $(ARG1)";
        Text[ arabic ] = "    $(ARG1)";
        Text[ dutch ] = "Computernaam $(ARG1) kan niet worden herleid";
        Text[ chinese_simplified ] = "无法找到计算机地址 $(ARG1)";
        Text[ greek ] = "         $(ARG1)";
        Text[ korean ] = "호스트 이름 $(ARG1)을 취소하지 못했습니다.";
        Text[ turkish ] = "$(ARG1) sunucu ad zlemedi";
        Text[ catalan ] = "No s'ha pogut determinar el nom del servidor $(ARG1)";
        Text[ finnish ] = "Pkoneen $(ARG1) nimen selvittminen ei onnistunut.";
        Text[ thai ] = "ไม่สามารถแก้ชื่อโฮสต์ $(ARG1) ได้";
    };
    String ERRCODE_INET_CONNECT
    {
        Text = "Die Internetverbindung zu $(ARG1) konnte nicht hergestellt werden" ;
        Text [ ENGLISH ] = "The Internetconnection to $(ARG1) could not be established" ;
        Text [ dutch ] = "Er kan geen internetverbinding met $(ARG1) tot stand worden gebracht." ;
        Text [ english_us ] = "Could not establish Internet connection to $(ARG1)" ;
        Text [ italian ] = "Non  stato possibile stabilire la connessione a Internet a $(ARG1)" ;
        Text [ spanish ] = "No se pudo establecer la conexin de Internet a $(ARG1)" ;
        Text [ french ] = "Impossible d'tablir la connexion Internet avec $(ARG1)" ;
        Text [ swedish ] = "Det gick inte att upprtta Internetfrbindelsen till $(ARG1)" ;
        Text [ danish ] = "Det var ikke muligt at oprette en Internetforbindelse til $(ARG1)" ;
        Text [ portuguese ] = "Foi impossvel estabelecer a ligao  Internet com $(ARG1)." ;
        Text [ portuguese_brazilian ] = "Die Internetverbindung zu $(ARG1) konnte nicht hergestellt werden" ;
        Text[ chinese_simplified ] = "无法和 $(ARG1) 建立国际互联网连接";
        Text[ russian ] = "  -  $(ARG1)";
        Text[ polish ] = "Ustanowienie poczenia internetowego z $(ARG1) byo niemoliwe";
        Text[ japanese ] = "$(ARG1)へのインターネット接続ができませんでした。";
        Text[ chinese_traditional ] = "無法連線到 $(ARG1)";
        Text[ arabic ] = "     $(ARG1)";
        Text[ dutch ] = "Er kan geen internetverbinding met $(ARG1) tot stand worden gebracht.";
        Text[ chinese_simplified ] = "无法和 $(ARG1) 建立国际互联网连接";
        Text[ greek ] = "       Internet   $(ARG1).";
        Text[ korean ] = "$(ARG1)으로 인터넷 접속을 하지 못했습니다.";
        Text[ turkish ] = "$(ARG1) Internet balants oluturulamad";
        Text[ catalan ] = "No s'ha pogut establir la connexi a Internet a $(ARG1)";
        Text[ finnish ] = "Internet-yhteyden muodostaminen kohteeseen $(ARG1) ei onnistunut.";
        Text[ thai ] = "ไม่สามารถสร้างการเชื่อมต่ออินเตอร์เน็ตไปยัง $(ARG1) ได้";
    };
    String ERRCODE_INET_READ
    {
        Text = "Daten konnten nicht ber das Internet gelesen werden.\nServerfehlermeldung: $(ARG1)" ;
        Text [ ENGLISH ] = "Error reading from the internet.\nServer error message: $(ARG1)" ;
        Text [ english_us ] = "Error reading data from the Internet\n.Server error message: $(ARG1)" ;
        Text [ italian ] = "Non  stato possibile leggere i dati da Internet.\nMessaggio di errore del server: $(ARG1)" ;
        Text [ spanish ] = "Los datos no se pudieron leer a travs de Internet.\nMensaje de error del servidor: $(ARG1)" ;
        Text [ french ] = "Erreur de lecture des donnes  partir de l'Internet.\nMessage d'erreur du serveur : $(ARG1)" ;
        Text [ dutch ] = "Fout bij lezen van gegevens op het internet\n.Foutmelding server: $(ARG1)" ;
        Text [ swedish ] = "Det gick inte att lsa data via Internet.\nServerfelmeddelande: $(ARG1)" ;
        Text [ danish ] = "Det var ikke muligt at lses dataene over Internettet\nServerfejlmelding: $(ARG1)" ;
        Text [ portuguese ] = "Foi impossvel ler os dados via Internet.\nMensagem de erro do servidor: $(ARG1)" ;
        Text [ portuguese_brazilian ] = "Daten konnten nicht ?er das Internet gelesen werden.\nServerfehlermeldung: $(ARG1)" ;
        Text[ chinese_simplified ] = "无法通过国际互联网读取数据。\n服务器报告错误:$(ARG1)";
        Text[ russian ] = "  -.\n  : $(ARG1)";
        Text[ polish ] = "Bd odczytu plikw z Internetu.\nKomunikat o bdzie serwera: $(ARG1)";
        Text[ japanese ] = "データはインターネットで読み取れませんでした。\nサーバー エラー メッセージ: $(ARG1)";
        Text[ chinese_traditional ] = "無法透過 Internet 讀取資料。\n伺服器報告:$(ARG1)";
        Text[ arabic ] = "    .\n   : $(ARG1)";
        Text[ dutch ] = "Fout bij lezen van gegevens op het internet\n.Foutmelding server: $(ARG1)";
        Text[ chinese_simplified ] = "无法通过国际互联网读取数据。\n服务器报告错误:$(ARG1)";
        Text[ greek ] = "       Internet.\n   : $(ARG1)";
        Text[ korean ] = "데이터를 인터넷에서 읽지 못했습니다.\n서버 오류 메시지: $(ARG1)";
        Text[ turkish ] = "Internet zerinden veri okunamad.\nSunucu hata iletisi: $(ARG1)";
        Text[ language_user1 ] = " ";
        Text[ catalan ] = "Error en llegir les dades d'Internet\n.Missatge d'error del servidor: $(ARG1)";
        Text[ finnish ] = "On ilmennyt virhe luettaessa tietoja Internetist.\nPalvelimen virhesanoma: $(ARG1)";
        Text[ thai ] = "การอ่านข้อมูลผิดพลาดจากอินเตอร์เน็ต\n.เซิร์ฟเวอร์มีข้อความผิดพลาด: $(ARG1)";
    };
    String ERRCODE_INET_WRITE
    {
        Text = "Daten konnten nicht ins Internet bertragen werden.\nServerfehlermeldung: $(ARG1)" ;
        Text [ ENGLISH ] = "Error writing to the internet.\nServer error message: $(ARG1)" ;
        Text [ english_us ] = "Error transferring data to the Internet.\nServer error message: $(ARG1)" ;
        Text [ italian ] = "Non  stato possibile trasferire i dati in Internet.\nMessaggio di errore del server: $(ARG1)" ;
        Text [ spanish ] = "No se pudieron transferir los datos a Internet.\nMensaje de error del servidor: $(ARG1)" ;
        Text [ french ] = "Erreur de transfert des donnes sur Internet.\nMessage d'erreur du serveur : $(ARG1)" ;
        Text [ dutch ] = "Fout bij gegevensoverdracht naar het internet.\nFoutmelding server: $(ARG1)" ;
        Text [ swedish ] = "Det gick inte att verfra data till Internet.\nServerfelmeddelande: $(ARG1)" ;
        Text [ danish ] = "Det var ikke muligt at overfre dataene til Internettet.\nServerfejlmelding: $(ARG1)" ;
        Text [ portuguese ] = "Foi impossvel transferir dados para a Internet.\nMensagem de erro do servidor: $(ARG1)" ;
        Text [ portuguese_brazilian ] = "Daten konnten nicht ins Internet ?ertragen werden.\nServerfehlermeldung: $(ARG1)" ;
        Text[ chinese_simplified ] = "无法向国际互联网传递数据。\n服务器报告错误:$(ARG1)";
        Text[ russian ] = "  -.\n  : $(ARG1)";
        Text[ polish ] = "Danych nie mona przenie do sieci Internetu.\nKomunikat o bdzie z serwera: $(ARG1)";
        Text[ japanese ] = "データはインターネットに転送できませんでした。\nサーバー エラー メッセージ: $(ARG1)";
        Text[ chinese_traditional ] = "無法向 Internet 發送資料。\n伺服器報告:$(ARG1)";
        Text[ arabic ] = "    .\n   : $(ARG1)";
        Text[ dutch ] = "Fout bij gegevensoverdracht naar het internet.\nFoutmelding server: $(ARG1)";
        Text[ chinese_simplified ] = "无法向国际互联网传递数据。\n服务器报告错误:$(ARG1)";
        Text[ greek ] = "       Internet.\n   : $(ARG1)";
        Text[ korean ] = "데이터를 인터넷으로 보내지 못했습니다.\n서버 오류 메시지: $(ARG1)";
        Text[ turkish ] = "Internet zerinden veri aktarlamad.\nSunucu hata iletisi: $(ARG1)";
        Text[ language_user1 ] = " ";
        Text[ catalan ] = "Error en transferir les dades a Internet.\nMissatge d'error del servidor: $(ARG1)";
        Text[ finnish ] = "On ilmennyt virhe siirrettess tietoja Internetiin.\nPalvelimen virhesanoma: $(ARG1)";
        Text[ thai ] = "ถ่ายโอนข้อมูลจากอินเตอร์เน็ตผิดพลาด\nเซิร์ฟเวอร์มีข้อความผิดพลาด: $(ARG1)";
    };
    String ERRCODE_INET_GENERAL
    {
        Text = "Ein allgemeiner Fehler im Internetbereich trat auf" ;
        Text [ ENGLISH ] = "Gereral Internet Error" ;
        Text [ dutch ] = "Algemene internetfout" ;
        Text [ english_us ] = "Gereral Internet error has occurred" ;
        Text [ italian ] = "Si  verificato un errore generale nell'area Internet" ;
        Text [ spanish ] = "Error general en Internet" ;
        Text [ french ] = "Erreur gnrale Internet" ;
        Text [ swedish ] = "Ett allmnt Internet-fel uppstod" ;
        Text [ danish ] = "Der opstod en generel Internetfejl" ;
        Text [ portuguese ] = "Erro geral na Internet" ;
        Text [ portuguese_brazilian ] = "Ein allgemeiner Fehler im Internetbereich trat auf" ;
        Text[ chinese_simplified ] = "在国际互联网内发生了一个一般错误";
        Text[ russian ] = "  ";
        Text[ polish ] = "Wystpi oglny bd w Internecie";
        Text[ japanese ] = "インターネット領域に一般的なエラーが発生";
        Text[ chinese_traditional ] = "Internet 內發生一個一般錯誤";
        Text[ arabic ] = "     ";
        Text[ dutch ] = "Algemene internetfout";
        Text[ chinese_simplified ] = "在国际互联网内发生了一个一般错误";
        Text[ greek ] = "    Internet";
        Text[ korean ] = "인터넷 영역에 일반 오류가 발생했습니다.";
        Text[ turkish ] = "Genel Internet hatas";
        Text[ catalan ] = "Error general d'Internet";
        Text[ finnish ] = "On ilmennyt yleinen Internet-virhe.";
        Text[ thai ] = "เกิดข้อผิดพลาดของอินเตอร์เน็ตทั่วไป";
    };
    String ERRCODE_INET_OFFLINE
    {
        Text = "Die angeforderten Internetdaten liegen nicht im Cache und knnen nicht bertragen werden, da der Onlinemodus nicht aktiv ist" ;
        Text [ ENGLISH ] = "The requestet internet data is not available in the cache and cannot be transfered since the online mode is not active" ;
        Text [ portuguese ] = "Os dados da Internet necessrios no se encontram em Cache e no podem ser carregados porque o modo online no est activo." ;
        Text [ english_us ] = "The requested Internet data is not available in the cache and cannot be transmitted as the Online mode has not be activated" ;
        Text [ portuguese_brazilian ] = "Die angeforderten Internetdaten liegen nicht im Cache und k?nen nicht ?ertragen werden, da der Onlinemodus nicht aktiv ist" ;
        Text [ swedish ] = "De begrda Internetdata ligger inte i cachen och kan drfr inte verfras eftersom onlinelget inte r aktivt" ;
        Text [ danish ] = "De anmodede Internetdata er ikke tilgngelige i cachen og kan ikke overfres, fordi onlinetilstanden ikke er aktiveret" ;
        Text [ italian ] = "I dati di Internet richiesti non si trovano nella cache e non possono essere trasmessi poich il modo online non  attivo" ;
        Text [ spanish ] = "Los datos de Internet solicitados no se encuentran en la antememoria y no se pueden transmitir porque el modo en lnea no est activado." ;
        Text [ french ] = "Impossible de transmettre les donnes provenant d'Internet : vous n'tes pas en mode en ligne et les donnes ne se trouvent pas dans le cache." ;
        Text [ dutch ] = "De opgevraagde internetgegevens zijn niet beschikbaar in het cachegeheugen en kunnen niet worden overgedragen omdat de onlinemodus niet actief is" ;
        Text[ chinese_simplified ] = "因为您的计算机和还没有和国际互联网连接,而且计算机缓冲区也没有您请求的国际互联网的资料,因此无法传递任何数据。";
        Text[ russian ] = " -        ,      .";
        Text[ polish ] = "Wymaganych danych z sieci Internet nie ma w pamici podrcznej i nie mona ich zaadowa, poniewa tryb online nie jest uaktywniony.";
        Text[ japanese ] = "指定したインターネットのデータはキャッシュになくて、オンライン モードがアクティブではないために転送できません";
        Text[ chinese_traditional ] = "還沒有連線到 Internet ﹐而且緩衝區也沒有暫存請求的 Internet 資料而無法傳遞資料";
        Text[ arabic ] = "        ɡ   ǡ      ";
        Text[ dutch ] = "De opgevraagde internetgegevens zijn niet beschikbaar in het cachegeheugen en kunnen niet worden overgedragen omdat de onlinemodus niet actief is";
        Text[ chinese_simplified ] = "因为您的计算机和还没有和国际互联网连接,而且计算机缓冲区也没有您请求的国际互联网的资料,因此无法传递任何数据。";
        Text[ greek ] = "    Internet           ,     '  ";
        Text[ korean ] = "요청된 인터넷 데이터가 캐시에 없으며 온라인 모드가 활성화되어 있지 않아 데이터를 보낼 수 없습니다.";
        Text[ turkish ] = "stenen Internet verileri nbellekte bulunmuyor ve evrimii kipi etkin olmad iin aktarlamyor";
        Text[ catalan ] = "Les dades d'Internet que heu demanat no es troben a la memria cau i no poden ser transmeses ja que el mode en lnia est desactivat.";
        Text[ finnish ] = "Pyydettyj Internet-tietoja ei ole kytettviss vlimuistissa eik niit voi siirt, koska online-tila ei ole kytss.";
        Text[ thai ] = "ข้อมูลอินเตอร์เน็ตที่ต้องการใช้ไม่ได้ในแคชและไม่สามารถถูกถ่ายทอดเป็นโหมดแบบออนไลน์ที่ไม่ถูกใช้งาน";
    };
    String ERRCODE_SFXMSG_STYLEREPLACE
    {
        Text = "Soll der Style $(ARG1) ersetzt werden?" ;
        Text [ ENGLISH ] = "Should style $(ARG1) be overwritten?" ;
        ExtraData = ERRCODE_MSG_ERROR | ERRCODE_BUTTON_OK_CANCEL ;
        Text [ english_us ] = "Should the $(ARG1) Style be replaced?" ;
        Text [ italian ] = "Sostituire lo stile $(ARG1) ?" ;
        Text [ spanish ] = "Desea sustituir el estilo $(ARG1)?" ;
        Text [ french ] = "Souhaitez-vous que le style $(ARG1) soit remplac ?" ;
        Text [ dutch ] = "Opmaakprofiel $(ARG1) vervangen?" ;
        Text [ swedish ] = "Ska formatet $(ARG1) ersttas?" ;
        Text [ danish ] = "Skal typografien $(ARG1) erstattes?" ;
        Text [ portuguese ] = "Substituir o estilo $(ARG1)?" ;
        Text [ portuguese_brazilian ] = "Soll der Style $(ARG1) ersetzt werden?" ;
        Text[ chinese_simplified ] = "要替换样式 $(ARG1) ?";
        Text[ russian ] = "  $(ARG1)?";
        Text[ polish ] = "Zamieni styl $(ARG1)?";
        Text[ japanese ] = "スタイル $(ARG1) を置換しますか";
        Text[ chinese_traditional ] = "要更替這個樣式 $(ARG1)?";
        Text[ arabic ] = "    $(ARG1)";
        Text[ dutch ] = "Opmaakprofiel $(ARG1) vervangen?";
        Text[ chinese_simplified ] = "要替换样式 $(ARG1) ?";
        Text[ greek ] = "    $(ARG1);";
        Text[ korean ] = "스타일 $(ARG1)을(를) 바꾸시겠습니까?";
        Text[ turkish ] = "$(ARG1) biimi deitirilsin mi?";
        Text[ language_user1 ] = "\"Vorlagen\" Styles are always capitalized no matter where they show up. EM15.5.00 - - - -";
        Text[ catalan ] = "S'ha de substituir l'estil de $(ARG1)?";
        Text[ finnish ] = "Korvataanko tyyli $(ARG1)?";
        Text[ thai ] = "ต้องการแทนที่ลักษณะ $(ARG1) หรือไม่?";
    };
    String ERRCODE_SFX_NOFILTER
    {
        Text = "Ein Filter wurde nicht gefunden" ;
        Text [ ENGLISH ] = "Filter not ound " ;
        Text [ english_us ] = "A filter has not been found" ;
        Text [ italian ] = "Non  stato trovato un filtro" ;
        Text [ spanish ] = "No se ha encontrado un filtro" ;
        Text [ french ] = "Filtre introuvable" ;
        Text [ dutch ] = "Geen filter gevonden" ;
        Text [ swedish ] = "Inget filter kunde hittas" ;
        Text [ danish ] = "Der blev ikke fundet et filter" ;
        Text [ portuguese ] = "O filtro no foi encontrado." ;
        Text [ portuguese_brazilian ] = "Ein Filter wurde nicht gefunden" ;
        Text[ chinese_simplified ] = "没有找到转换器";
        Text[ russian ] = "  ";
        Text[ polish ] = "Filtru nie znaleziono";
        Text[ japanese ] = "フィルタは見つかりません";
        Text[ chinese_traditional ] = "沒有找到轉換器";
        Text[ arabic ] = "   ";
        Text[ dutch ] = "Geen filter gevonden";
        Text[ chinese_simplified ] = "没有找到转换器";
        Text[ greek ] = "   ";
        Text[ korean ] = "필터를 찾지 못했습니다.";
        Text[ turkish ] = "Bir filtre bulunamad";
        Text[ language_user1 ] = " ";
        Text[ catalan ] = "No s'ha trobat un filtre";
        Text[ finnish ] = "Suodatinta ei lytynyt.";
        Text[ thai ] = "ไม่พบตัวกรอง";
    };
    String ERRCODE_SFX_NODOCRELOAD
    {
        Text = "Dokument kann nicht bearbeitet werden" ;
    };
    String ERRCODE_SFX_CANTFINDORIGINAL
    {
        Text = "Das Original konnte nicht bestimmt werden" ;
        Text [ English ] = "The original could not be detected" ;
        Text [ dutch ] = "Het origineel kan niet als zodanig worden herkend." ;
        Text [ english_us ] = "The original could not be determined." ;
        Text [ swedish ] = "Det gick inte att bestmma originalet." ;
        Text [ danish ] = "Det var ikke muligt at bestemme originalen" ;
        Text [ italian ] = "Impossibile determinare l'originale" ;
        Text [ spanish ] = "No se pudo determinar el original." ;
        Text [ french ] = "Impossible de dterminer l'original" ;
        Text [ portuguese ] = "Foi impossvel determinar o original." ;
        Text [ portuguese_brazilian ] = "Das Original konnte nicht bestimmt werden" ;
        Text[ chinese_simplified ] = "无法确定原件";
        Text[ russian ] = "  .";
        Text[ polish ] = "Oryginau nie mona byo okreli.";
        Text[ japanese ] = "オリジナルは決定できませんでした";
        Text[ chinese_traditional ] = "無法確定原件";
        Text[ arabic ] = "  ";
        Text[ dutch ] = "Het origineel kan niet als zodanig worden herkend.";
        Text[ chinese_simplified ] = "无法确定原件";
        Text[ greek ] = "      .";
        Text[ korean ] = "원본이 지정되지 않았습니다.";
        Text[ turkish ] = "Asl belirlenemedi";
        Text[ catalan ] = "No s'ha pogut determinar l'original.";
        Text[ finnish ] = "Alkupern selvittminen ei onnistunut.";
        Text[ thai ] = "ไม่สามารถกำหนดต้นฉบับได้";
    };
    String ERRCODE_SFX_CANTCREATECONTENT
    {
        Text = "Der Inhalt konnte nicht erzeugt werden" ;
        Text [ English ] = "The content could not be created" ;
        Text [ dutch ] = "Er kan geen inhoud worden gemaakt." ;
        Text [ english_us ] = "The contents could not be created." ;
        Text [ swedish ] = "Det gick inte att skapa innehllet" ;
        Text [ danish ] = "Det var ikke muligt at oprette indholdet" ;
        Text [ italian ] = "Impossibile creare il contenuto" ;
        Text [ spanish ] = "No se pudo crear el contenido." ;
        Text [ french ] = "Impossible de crer le contenu" ;
        Text [ portuguese ] = "Foi impossvel criar o contedo." ;
        Text [ portuguese_brazilian ] = "Der Inhalt konnte nicht erzeugt werden" ;
        Text[ chinese_simplified ] = "无法生成内容";
        Text[ russian ] = "  .";
        Text[ polish ] = "Zawarto nie moga zosta utworzona";
        Text[ japanese ] = "内容は作成できませんでした";
        Text[ chinese_traditional ] = "無法產生這個內容";
        Text[ arabic ] = "  ";
        Text[ dutch ] = "Er kan geen inhoud worden gemaakt.";
        Text[ chinese_simplified ] = "无法生成内容";
        Text[ greek ] = "      .";
        Text[ korean ] = "내용이 만들어지지 않았습니다.";
        Text[ turkish ] = "erik oluturulamad";
        Text[ catalan ] = "No s'ha pogut crear el contingut.";
        Text[ finnish ] = "Sislln luominen ei onnistunut.";
        Text[ thai ] = "ไม่สามารถสร้างเนื้อหาได้";
    };
    String ERRCODE_SFX_CANTCREATELINK
    {
        Text = "Die Verknpfung konnte nicht erzeugt werden" ;
        Text [ English ] = "The link could not be created" ;
        Text [ dutch ] = "Er kan geen koppeling worden gemaakt." ;
        Text [ english_us ] = "The link could not be created." ;
        Text [ swedish ] = "Det gick inte att skapa lnken" ;
        Text [ danish ] = "Det var ikke muligt at oprette kden" ;
        Text [ italian ] = "Impossibile creare il collegamento" ;
        Text [ spanish ] = "No se pudo crear el vnculo." ;
        Text [ french ] = "Impossible de crer le lien !" ;
        Text [ portuguese ] = "Foi impossvel criar a ligao." ;
        Text [ portuguese_brazilian ] = "Die Verkn?fung konnte nicht erzeugt werden" ;
        Text[ chinese_simplified ] = "无法生成链接";
        Text[ russian ] = "  .";
        Text[ polish ] = "cze nie mogo zosta utworzone";
        Text[ japanese ] = "リンクは作成できませんでした";
        Text[ chinese_traditional ] = "無法建立捷徑";
        Text[ arabic ] = "  ";
        Text[ dutch ] = "Er kan geen koppeling worden gemaakt.";
        Text[ chinese_simplified ] = "无法生成链接";
        Text[ greek ] = "      ";
        Text[ korean ] = "링크를 만들지 못했습니다.";
        Text[ turkish ] = "Balant oluturulamad";
        Text[ catalan ] = "No s'ha pogut crear l'enlla.";
        Text[ finnish ] = "Linkin luominen ei onnistunut.";
        Text[ thai ] = "ไม่สามารถสร้างการเชื่อมโยงได้";
    };
    String ERRCODE_SFX_WRONGBMKFORMAT
    {
        Text = "Das Format der Verknpfung ist ungltig" ;
        Text [ English ] = "The format of the link ist invalid" ;
        Text [ dutch ] = "Ongeldige koppelingsindeling" ;
        Text [ english_us ] = "The link format is invalid." ;
        Text [ swedish ] = "Lnkens format r ogiltigt" ;
        Text [ danish ] = "Kdeformatet er ugyldigt" ;
        Text [ italian ] = "Formato del collegamento non valido" ;
        Text [ spanish ] = "El formato del vnculo no es vlido" ;
        Text [ french ] = "Le format du lien est incorrect" ;
        Text [ portuguese ] = "O formato da ligao no  vlido." ;
        Text [ portuguese_brazilian ] = "Das Format der Verkn?fung ist ung?tig" ;
        Text[ chinese_simplified ] = "无效的链接格式";
        Text[ russian ] = "  .";
        Text[ polish ] = "Format cza jest nieprawidowy";
        Text[ japanese ] = "リンクの書式は無効です";
        Text[ chinese_traditional ] = "捷徑格式無效";
        Text[ arabic ] = "   ";
        Text[ dutch ] = "Ongeldige koppelingsindeling";
        Text[ chinese_simplified ] = "无效的链接格式";
        Text[ greek ] = "      .";
        Text[ korean ] = "링크의 형식이 잘못되었습니다.";
        Text[ turkish ] = "Balantnn format geerli deil";
        Text[ catalan ] = "El format de l'enlla no s vlid";
        Text[ finnish ] = "Linkkimuoto on virheellinen.";
        Text[ thai ] = "รูปแบบการเชื่อมโยงไม่ถูกต้อง";
    };
    String ERRCODE_SFX_WRONGICONFILE
    {
        Text = "Die Konfiguration der Symbolanzeige ist ungltig" ;
        Text [ English ] = "The configuration of the symbolview is invalid" ;
        Text [ dutch ] = "Ongeldige configuratie van pictogramweergave" ;
        Text [ english_us ] = "The configuration of the icon display is invalid." ;
        Text [ swedish ] = "Konfigurationen fr symbolvisningen r ogiltig." ;
        Text [ danish ] = "Ikonvisningens konfiguration er ugyldig" ;
        Text [ italian ] = "Configurazione della visualizzazione dei simboli non valida" ;
        Text [ spanish ] = "La configuracin del panel de smbolos no es vlida" ;
        Text [ french ] = "La configuration de l'affichage des icnes est incorrecte" ;
        Text [ portuguese ] = "A configurao do painel de cones no  vlida." ;
        Text [ portuguese_brazilian ] = "Die Konfiguration der Symbolanzeige ist ung?tig" ;
        Text[ chinese_simplified ] = "图标显示的配置文件无效";
        Text[ russian ] = "   .";
        Text[ polish ] = "Konfiguracja wywietlania symboli jest nieprawidowa.";
        Text[ japanese ] = "シンボル表示の設定が無効です";
        Text[ chinese_traditional ] = "用於圖示顯示的配置檔案無效";
        Text[ arabic ] = "    ";
        Text[ dutch ] = "Ongeldige configuratie van pictogramweergave";
        Text[ chinese_simplified ] = "图标显示的配置文件无效";
        Text[ greek ] = "        ";
        Text[ korean ] = "아이콘 보기 설정이 잘못되었습니다.";
        Text[ turkish ] = "Simge grntleme konfigrasyonu geerli deil";
        Text[ catalan ] = "La configuraci del quadre de smbols no s vlida";
        Text[ finnish ] = "Kuvakenytn kokoonpano on virheellinen.";
        Text[ thai ] = "การแสดงผลโครงแบบไอคอนไม่ถูกต้อง";
    };
    String ERRCODE_SFX_CANTWRITEICONFILE
    {
        Text = "Die Konfiguration der Symbolanzeige kann nicht gespeichert werden" ;
        Text [ English ] = "The configuration of the symbolview could not be written" ;
        Text [ dutch ] = "De configuratie van het pictogram kan niet worden opgeslagen" ;
        Text [ english_us ] = "The configuration of the icon display can not be saved." ;
        Text [ swedish ] = "Konfigurationen fr symbolvisningen kan inte sparas." ;
        Text [ danish ] = "Det er ikke muligt at gemme ikonvisningens konfiguration" ;
        Text [ italian ] = "Impossibile salvare la configurazione della rappresentazione dei simboli" ;
        Text [ spanish ] = "No se puede guardar la configuracin del panel de smbolos" ;
        Text [ french ] = "Impossible d'enregistrer les paramtres d'affichage de l'icne" ;
        Text [ portuguese ] = " impossvel guardar a configurao do painel de cones." ;
        Text [ portuguese_brazilian ] = "Die Konfiguration der Symbolanzeige kann nicht gespeichert werden" ;
        Text[ chinese_simplified ] = "无法存盘图标显示的配置文件";
        Text[ russian ] = "    .";
        Text[ polish ] = "Konfiguracji wywietlania symboli nie mona byo zapisa.";
        Text[ japanese ] = "シンボル表示の設定は保存できません";
        Text[ chinese_traditional ] = "無法儲存圖示顯示的配置檔案";
        Text[ arabic ] = "   ";
        Text[ dutch ] = "De configuratie van het pictogram kan niet worden opgeslagen";
        Text[ chinese_simplified ] = "无法存盘图标显示的配置文件";
        Text[ greek ] = "          ";
        Text[ korean ] = "아이콘 보기 설정을 저장할 수 없습니다.";
        Text[ turkish ] = "Simge grntleme konfigrasyonu kaydedilemiyor";
        Text[ catalan ] = "No es pot desar la configuraci del quadre de smbols.";
        Text[ finnish ] = "Kuvakenytn kokoonpanon tallentaminen ei onnistunut.";
        Text[ thai ] = "ไม่สามารถบันทึกการแสดงผลโครงแบบไอคอนได้";
    };
    String ERRCODE_SFX_CANTDELICONFILE
    {
        Text = "Die Konfiguration der Symbolanzeige konnte nicht gelscht werden" ;
        Text [ English ] = "The configuration of the symbolview could not be removed" ;
        Text [ dutch ] = "Configuratie van pictogram kan niet worden gewist." ;
        Text [ english_us ] = "The configuration of the icon display could not be deleted." ;
        Text [ swedish ] = "Konfigurationen fr symbolvisningen kunde inte raderas." ;
        Text [ danish ] = "Det var ikke muligt at slette ikonvisningens konfiguration" ;
        Text [ italian ] = "Impossibile cancellare la configurazione della rappresentazione dei simbol" ;
        Text [ spanish ] = "No se pudo borrar la configuracin del panel de smbolos." ;
        Text [ french ] = "Impossible de supprimer les paramtres d'affichage de l'icne" ;
        Text [ portuguese ] = "Foi impossvel eliminar a configurao do painel de cones." ;
        Text [ portuguese_brazilian ] = "Die Konfiguration der Symbolanzeige konnte nicht gel?cht werden" ;
        Text[ chinese_simplified ] = "无法删除图标显示的配置文件";
        Text[ russian ] = "    .";
        Text[ polish ] = "Konfiguracja wywietlania symboli nie moe zosta usunita.";
        Text[ japanese ] = "シンボル表示の設定は削除できませんでした";
        Text[ chinese_traditional ] = "無法刪除圖示顯示的配置檔案";
        Text[ arabic ] = "    .";
        Text[ dutch ] = "Configuratie van pictogram kan niet worden gewist.";
        Text[ chinese_simplified ] = "无法删除图标显示的配置文件";
        Text[ greek ] = "          ";
        Text[ korean ] = "아이콘 보기 설정을 삭제하지 못했습니다.";
        Text[ turkish ] = "Simge grntleme konfigrasyonu silinemedi.";
        Text[ catalan ] = "No es pot eliminar la configuraci del qaudre de smbols.";
        Text[ finnish ] = "Kuvakenytn kokoonpanon poistaminen ei onnistunut.";
        Text[ thai ] = "ไม่สามารถลบการแสดงผลโครงแบบไอคอนได้";
    };
    String ERRCODE_SFX_CANTRENAMECONTENT
    {
        Text = "Der Inhalt konnte nicht umbenannt werden" ;
        Text [ English ] = "The content could not be renamed" ;
        Text [ dutch ] = "De naam van de inhoud kan niet worden gewijzigd." ;
        Text [ english_us ] = "Contents cannot be renamed" ;
        Text [ swedish ] = "Innehllet kunde inte dpas om" ;
        Text [ danish ] = "Det var ikke muligt at omdbe indholdet" ;
        Text [ italian ] = "Impossibile rinominare il contenuto" ;
        Text [ spanish ] = "No se puede cambiar el nombre al contenido." ;
        Text [ french ] = "Impossible de renommer le contenu" ;
        Text [ portuguese ] = "Foi impossvel mudar o nome do contedo." ;
        Text [ portuguese_brazilian ] = "Der Inhalt konnte nicht umbenannt werden" ;
        Text[ chinese_simplified ] = "无法重命名内容";
        Text[ russian ] = "  ";
        Text[ polish ] = "Nazwa zawartoci nie moga zosta zmieniona.";
        Text[ japanese ] = "内容の名前の変更はできませんでした";
        Text[ chinese_traditional ] = "無法重新命名內容";
        Text[ arabic ] = "    ";
        Text[ dutch ] = "De naam van de inhoud kan niet worden gewijzigd.";
        Text[ chinese_simplified ] = "无法重命名内容";
        Text[ greek ] = "      .";
        Text[ korean ] = "내용 이름을 변경하지 못했습니다.";
        Text[ turkish ] = "erik yeniden adlandrlamad";
        Text[ catalan ] = "No es pot reanomenar el contingut";
        Text[ finnish ] = "Sislt ei voi nimet uudelleen.";
        Text[ thai ] = "ไม่สามารถเปลี่ยนชื่อเนื้อหาได้";
    };
    String ERRCODE_SFX_INVALIDBMKPATH
    {
        Text = "Der Bookmarkordner ist ungltig" ;
        Text [ English ] = "The bookmarkfolder is invalid" ;
        Text [ dutch ] = "De Bookmark-map is ongeldig" ;
        Text [ english_us ] = "The bookmark folder is invalid." ;
        Text [ swedish ] = "Bokmrkesmappen r ogiltig" ;
        Text [ danish ] = "Bogmrkemappen er ugyldig" ;
        Text [ italian ] = "Cartella bookmark non valida" ;
        Text [ spanish ] = "Carpeta de marcadores no vlida" ;
        Text [ french ] = "Le dossier de Bookmarks indiqu est incorrect" ;
        Text [ portuguese ] = "A pasta de bookmarks no  vlida." ;
        Text [ portuguese_brazilian ] = "Der Bookmarkordner ist ung?tig" ;
        Text[ chinese_simplified ] = "书签文件夹无效";
        Text[ russian ] = "  ";
        Text[ polish ] = "Folder z zakadkami jest nieprawidowy";
        Text[ japanese ] = "ブックマークフォルダは無効です";
        Text[ chinese_traditional ] = "書籤資料夾無效";
        Text[ arabic ] = "    ";
        Text[ dutch ] = "De Bookmark-map is ongeldig";
        Text[ chinese_simplified ] = "书签文件夹无效";
        Text[ greek ] = "     ";
        Text[ korean ] = "책갈피 폴더가 잘못되었습니다.";
        Text[ turkish ] = "Yer iareti klasr geersizdir";
        Text[ catalan ] = "La carpeta de marcadors no s vlida.";
        Text[ finnish ] = "Kirjanmerkkikansio on virheellinen.";
        Text[ thai ] = "โฟลเดอร์ที่คั่นไม่ถูกต้อง";
    };
    String ERRCODE_SFX_CANTWRITEURLCFGFILE
    {
        Text = "Die Konfiguration der lokal zu speichernden URLs konnte nicht gespeichert werden" ;
        Text [ English ] = "The configuration of the URLs to save local could not be saved" ;
        Text [ dutch ] = "De configuratie van de URL's kan niet lokaal worden opgeslagen" ;
        Text [ english_us ] = "The configuration of the URLs to be saved locally could not be saved" ;
        Text [ swedish ] = "Konfigurationen fr de URL som skall sparas lokalt kunde inte sparas" ;
        Text [ danish ] = "Det var ikke muligt at gemme konfigurationen p de URLs, som skulle gemmes lokalt" ;
        Text [ italian ] = "Non  stato possibile salvare la configurazione delle URL da salvare localmente" ;
        Text [ spanish ] = "No se pudo guardar la configuracin de las URLs a guardar localmente." ;
        Text [ french ] = "Impossible d'enregistrer la configuration des URL  enregistrer localement !" ;
        Text [ portuguese ] = "Foi impossvel guardar a configurao dos URLs a serem guardados localmente." ;
        Text [ portuguese_brazilian ] = "Die Konfiguration der lokal zu speichernden URLs konnte nicht gespeichert werden" ;
        Text[ chinese_simplified ] = "无法存盘这个本机储存 URL 地址的配置文件";
        Text[ russian ] = "     URL";
        Text[ polish ] = "Nie mona byo zapisa konfiguracji adresu URL, ktry mia zosta lokalnie zapisany.";
        Text[ japanese ] = "ローカルで保存するURLの設定は保存できませんでした";
        Text[ chinese_traditional ] = "無法保存本機儲存的 URL 配置檔案";
        Text[ arabic ] = "    (URLs)   ";
        Text[ dutch ] = "De configuratie van de URL's kan niet lokaal worden opgeslagen";
        Text[ chinese_simplified ] = "无法存盘这个本机储存 URL 地址的配置文件";
        Text[ greek ] = "        URL     ";
        Text[ korean ] = "로컬로 저장할 URL 설정을 저장하지 못했습니다.";
        Text[ turkish ] = "Yerel olarak kaydedilecek URL'Lerin konfigrasyonu kaydedilemedi";
        Text[ catalan ] = "No es pot desar la configuraci de les URLs que es volen desar localment.";
        Text[ finnish ] = "Paikallisiksi tallennettavien URL-osoitteiden kokoonpanon tallentaminen ei onnistunut.";
        Text[ thai ] = "บันทึกโครงแบบ URL  ไม่สามารถบันทึกเฉพาะแห่งได้";
    };
    String ERRCODE_SFX_WRONGURLCFGFORMAT
    {
        Text = "Das Format der Konfiguration der lokal zu speichernden URLs ist ungltig" ;
        Text [ English ] = "The format of the configuration of the URLs to save local is invalid" ;
        Text [ dutch ] = "De configuratie van de URL's kan niet lokaal worden opgeslagen omdat de indeling ongeldig is." ;
        Text [ english_us ] = "The configuration format of the URLs to be saved locally is invalid" ;
        Text [ swedish ] = "Formatet fr konfigurationen fr de URL som skall sparas lokalt r ogiltigt" ;
        Text [ danish ] = "Konfigurationsformatet p de URLs, som skulle gemmes lokalt, er ugyldigt" ;
        Text [ italian ] = "Il formato della configurazione delle URL da salvare localmente non  valido" ;
        Text [ spanish ] = "No es vlido el formato de la configuracin de las URLs a guardar localmente." ;
        Text [ french ] = "Le format de la configuration des URL  enregistrer localement est incorrect." ;
        Text [ portuguese ] = "O formato da configurao dos URLs a serem guardados localmente no  vlido." ;
        Text [ portuguese_brazilian ] = "Das Format der Konfiguration der lokal zu speichernden URLs ist ung?tig" ;
        Text[ chinese_simplified ] = "本机储存 URL 地址的配置文件格式无效";
        Text[ russian ] = "     URL";
        Text[ polish ] = "Format konfiguracji adresu URL, ktry ma zosta lokalnie zapisany, jest nieprawidowy.";
        Text[ japanese ] = "ローカルで保存するURLを設定する書式が無効です";
        Text[ chinese_traditional ] = "本機儲存 URL 配置檔案格式無效";
        Text[ arabic ] = "   (URLs)     ";
        Text[ dutch ] = "De configuratie van de URL's kan niet lokaal worden opgeslagen omdat de indeling ongeldig is.";
        Text[ chinese_simplified ] = "本机储存 URL 地址的配置文件格式无效";
        Text[ greek ] = "     URL,      ,   .";
        Text[ korean ] = "로컬로 저장할 URL 설정 형식이 잘못되었습니다.";
        Text[ turkish ] = "Yerel olarak kaydedilecek URL'lerin konfigrasyon format geerli deil";
        Text[ catalan ] = "El format de la configuraci de les URLs que es volen desar localment no s vlid.";
        Text[ finnish ] = "Paikallisiksi tallennettavien URL-osoitteiden kokoonpanomuoto on virheellinen.";
        Text[ thai ] = "บันทึกรูปแบบการกำหนดค่า URL เฉพาะแห่งไม่ถูกต้อง";
    };
    String ERRCODE_SFX_NODOCUMENT
    {
        Text = "Es existiert kein Dokument, auf das die Aktion angewendet werden kann" ;
        Text [ English ] = "There exists no document to act on" ;
        Text [ dutch ] = "Er bestaat geen document waarop deze activiteit kan worden toegepast." ;
        Text [ english_us ] = "This action cannot be applied to a document that does not exist" ;
        Text [ swedish ] = "Det finns inget dokument som tgrden kan anvndas p." ;
        Text [ danish ] = "Der findes intet dokument, som handlingen kan anvendes p" ;
        Text [ italian ] = "Non esiste un documento sul quale eseguire tale operazione" ;
        Text [ spanish ] = "No existe ningn documento al que se le pueda aplicar la accin" ;
        Text [ french ] = "Il n'existe aucun document auquel l'action peut tre applique" ;
        Text [ portuguese ] = "No existe nenhum documento ao qual possa ser aplicada a aco." ;
        Text [ portuguese_brazilian ] = "Es existiert kein Dokument, auf das die Aktion angewendet werden kann" ;
        Text[ chinese_simplified ] = "执行操作所需的文档不存在";
        Text[ russian ] = "  ,       ";
        Text[ polish ] = "Nie istnieje aden dokument, do ktrego mona by zastosowa t akcj.";
        Text[ japanese ] = "アクションの適用できるドキュメントはありません";
        Text[ chinese_traditional ] = "用於執行的文件不存在";
        Text[ arabic ] = "      ";
        Text[ dutch ] = "Er bestaat geen document waarop deze activiteit kan worden toegepast.";
        Text[ chinese_simplified ] = "执行操作所需的文档不存在";
        Text[ greek ] = "        ";
        Text[ korean ] = "이 작동을 적용할 문서가 없음";
        Text[ turkish ] = "lemin uygulanabilecei bir belge mevcut deil";
        Text[ language_user1 ] = " ";
        Text[ catalan ] = "No existeix cap document al qual es pugui aplicar l'acci.";
        Text[ finnish ] = "Tt toimintoa ei voi suorittaa asiakirjalle, jota ei ole olemassa.";
        Text[ thai ] = "ไม่สามารถประยุกต์การกระทำนี้กับเอกสารที่ไม่มีอยู่";
    };
    String ERRCODE_SFX_INVALIDLINK
    {
        Text = "Die Verknpfung verweist auf ein ungltiges Ziel" ;
        Text [ English ] = "Invalid Link Target" ;
        Text [ dutch ] = "De koppeling verwijst naar een ongeldig doel" ;
        Text [ english_us ] = "The link refers to an invalid target" ;
        Text [ swedish ] = "Lnken refererar till ett ogiltigt ml" ;
        Text [ danish ] = "Kden referer til et ugyldigt ml" ;
        Text [ italian ] = "Il collegamento si riferisce ad una destinazione non valida" ;
        Text [ spanish ] = "El vnculo se refiere a un destino no vlido" ;
        Text [ french ] = "Le lien renvoit  une cible incorrecte" ;
        Text [ portuguese ] = "A ligao remete a um destino no vlido." ;
        Text [ portuguese_brazilian ] = "Die Verkn?fung verweist auf ein ung?tiges Ziel" ;
        Text[ chinese_simplified ] = "链接指向一个无效的目标";
        Text[ russian ] = "   ";
        Text[ polish ] = "cze odnosi si do nieprawidowego celu.";
        Text[ japanese ] = "リンクは無効なターゲットを参照しています";
        Text[ chinese_traditional ] = "捷徑指向一個無效的目標";
        Text[ arabic ] = "     ";
        Text[ dutch ] = "De koppeling verwijst naar een ongeldig doel";
        Text[ chinese_simplified ] = "链接指向一个无效的目标";
        Text[ greek ] = "       ";
        Text[ korean ] = "링크에서 잘못된 대상을 지정하고 있습니다.";
        Text[ turkish ] = "Balant geersiz bir hedef gsteriyor";
        Text[ catalan ] = "L'enlla es refereix a un dest no vlid";
        Text[ finnish ] = "Linkki viittaa virheelliseen kohteeseen.";
        Text[ thai ] = "การเชื่อมโยงอ้างถึงเป้าหมายที่ไม่ถูกต้อง";
    };
    String ERRCODE_SFX_INVALIDTRASHPATH
    {
        Text = "Der Pfad fr den Papierkorb ist ungltig" ;
        Text [ English ] = "The path of the trash is invalid" ;
        Text [ portuguese ] = "O atalho para Reciclagem no  vlido" ;
        Text [ english_us ] = "The Recycle Bin path is invalid" ;
        Text [ portuguese_brazilian ] = "Der Pfad f? den Papierkorb ist ung?tig" ;
        Text [ swedish ] = "Skvgen till papperskorgen r ogiltig" ;
        Text [ danish ] = "Stien til papirkurven er ugyldig" ;
        Text [ italian ] = "Il percorso per il cestino non  valido" ;
        Text [ spanish ] = "La ruta para la papelera no es vlida." ;
        Text [ french ] = "Le chemin spcifi pour la corbeille est incorrect" ;
        Text [ dutch ] = "Het pad naar de prullenbak is ongeldig" ;
        Text[ chinese_simplified ] = "回收站路径无效";
        Text[ russian ] = "   ";
        Text[ polish ] = "cieka dla kosza jest nieprawidowa.";
        Text[ japanese ] = "ごみ箱のパスが無効です";
        Text[ chinese_traditional ] = "資源回收筒的路徑無效";
        Text[ arabic ] = "    ";
        Text[ dutch ] = "Het pad naar de prullenbak is ongeldig";
        Text[ chinese_simplified ] = "回收站路径无效";
        Text[ greek ] = "       ";
        Text[ korean ] = "휴지통 경로가 잘못되었습니다.";
        Text[ turkish ] = "p kutusu veri yolu geerli deil";
        Text[ catalan ] = "El cam cap a la paperera no s vlid.";
        Text[ finnish ] = "Roskakorin polku on virheellinen.";
        Text[ thai ] = "เส้นทางถังขยะรีไซเคิลไม่ถูกต้อง";
    };
    String ERRCODE_SFX_NOTRESTORABLE
    {
        Text = "Der Eintrag konnte nicht wiederhergestellt werden" ;
        Text [ English ] = "The entry could not be restored" ;
        Text [ portuguese ] = "Foi impossvel restaurar a entrada." ;
        Text [ english_us ] = "The entry could not be restored" ;
        Text [ portuguese_brazilian ] = "Der Eintrag konnte nicht wiederhergestellt werden" ;
        Text [ swedish ] = "Posten kunde inte terstllas" ;
        Text [ danish ] = "Det var ikke muligt at gendanne elementet" ;
        Text [ italian ] = "Non  stato possibile ripristinare la voce" ;
        Text [ spanish ] = "No se pudo restaurar la entrada." ;
        Text [ french ] = "Impossible de restaurer l'entre" ;
        Text [ dutch ] = "Item kan niet worden hersteld" ;
        Text[ chinese_simplified ] = "无法修复这个条目";
        Text[ russian ] = "  ";
        Text[ polish ] = "Wpis nie mg zosta przywrcony";
        Text[ japanese ] = "項目は復元できませんでした";
        Text[ chinese_traditional ] = "無法修復這個條目";
        Text[ arabic ] = "   ";
        Text[ dutch ] = "Item kan niet worden hersteld";
        Text[ chinese_simplified ] = "无法修复这个条目";
        Text[ greek ] = "        ";
        Text[ korean ] = "입력을 복구하지 못했습니다";
        Text[ turkish ] = "Giri geri yklenemedi";
        Text[ catalan ] = "No s'ha pogut restaurar l'entrada";
        Text[ finnish ] = "Merkinnn palauttaminen ei onnistunut.";
        Text[ thai ] = "ไม่สามารถคืนสภาพรายการได้";
    };
    String ERRCODE_IO_NAMETOOLONG
    {
        Text = "Der Dateiname ist fr das Ziel-Dateisystem zu lang." ;
        Text [ ENGLISH ] = "Filename too long for target filesystem." ;
        Text [ portuguese ] = "O nome do ficheiro  demasiado extenso para o sistema de ficheiros pretendido." ;
        Text [ english_us ] = "The file name is too long for the target file system." ;
        Text [ portuguese_brazilian ] = "Der Dateiname ist f? das Ziel-Dateisystem zu lang." ;
        Text [ swedish ] = "Filnamnet r fr lngt fr ml-filsystemet." ;
        Text [ danish ] = "Filnavnet er for langt til ml-filsystemet." ;
        Text [ italian ] = "Il nome del file  troppo lungo per il file system di destinazione." ;
        Text [ spanish ] = "El nombre del archivo es demasiado largo para el sistema de archivos destino." ;
        Text [ french ] = "Le nom de fichier est trop long pour le systme de fichiers cible." ;
        Text [ dutch ] = "Bestandsnaam te lang voor het doelbestandssysteem." ;
        Text[ chinese_simplified ] = "这个文件名的长度不适于目标文件系统。";
        Text[ russian ] = "       .";
        Text[ polish ] = "Nazwa pliku jest za duga dla docelowego systemu plikw.";
        Text[ japanese ] = "ターゲットのファイル システムのファイル名が長すぎます";
        Text[ chinese_traditional ] = "這個檔案名的長度不適用於目標檔案系統。";
        Text[ arabic ] = "       .";
        Text[ dutch ] = "Bestandsnaam te lang voor het doelbestandssysteem.";
        Text[ chinese_simplified ] = "这个文件名的长度不适于目标文件系统。";
        Text[ greek ] = "         .";
        Text[ korean ] = "파일 이름이 대상 파일 시스템에 대해 너무 깁니다.";
        Text[ turkish ] = "Dosya ad, hedef dosya sistemi iin fazla uzun.";
        Text[ catalan ] = "El nom del fitxer s massa llarg pel sistema de fitxers de destinaci.";
        Text[ finnish ] = "Tiedoston nimi on liian pitk kohdejrjestelmn tiedostojrjestelmlle.";
        Text[ thai ] = "ชื่อแฟ้มยาวเกินไปสำหรับระบบแฟ้มเป้าหมาย";
    };
    String ERRCODE_SFX_CONSULTUSER
    {
        Text = "Die Angaben zum Ausfhren der Funktion sind unvollstndig." ;
        Text [ ENGLISH ] = "Can't execute function due to incomplete arguments." ;
        Text [ english_us ] = "The details for running the function are incomplete." ;
        Text [ portuguese ] = "Os dados para a execuo da funo esto incompletos." ;
        Text [ portuguese_brazilian ] = "Zum Angaben zum Ausf?ren der Funktion sind unvollst?ndig." ;
        Text [ swedish ] = "Funktionen kan inte utfras p grund av ofullstndiga uppgifter." ;
        Text [ danish ] = "Angivelserne til udfrelse af funktionen er ufuldstndige." ;
        Text [ italian ] = "I dati sono insufficienti per l'esecuzione della funzione." ;
        Text [ spanish ] = "La funcin no se puede ejecutar por falta de argumentos." ;
        Text [ french ] = "Les donnes indiques pour l'excution de la fonction sont incompltes." ;
        Text [ dutch ] = "De gegevens voor het uitvoeren van de functie zijn niet compleet." ;
        Text[ chinese_simplified ] = "执行功能的命令不完整。";
        Text[ russian ] = "     .";
        Text[ polish ] = "Dane do wykonania funkcji s nie kompletne.";
        Text[ japanese ] = "機能を実行させるための指示が未完了です。";
        Text[ chinese_traditional ] = "指定執行功能的指令不完整。";
        Text[ arabic ] = "     .";
        Text[ dutch ] = "De gegevens voor het uitvoeren van de functie zijn niet compleet.";
        Text[ chinese_simplified ] = "执行功能的命令不完整。";
        Text[ greek ] = "         .";
        Text[ korean ] = "기능 실행을 위한 지정 사항이 불완전합니다.";
        Text[ turkish ] = "lemin yrtlmesi iin gereken bilgiler tam deil.";
        Text[ catalan ] = "No es pot executar la funci per falta d'arguments.";
        Text[ finnish ] = "Tiedot eivt riit toiminnon toteuttamiseen.";
        Text[ thai ] = "รายละเอียดสำหรับการรันฟังก์ชั่นไม่สมบูรณ์";
    };
    String ERRCODE_SFX_INVALIDSYNTAX
    {
        Text = "Die Syntax der Eingabe ist ungltig." ;
        Text [ English ] = "The syntax of the input is invalid." ;
        Text [ portuguese ] = "A sintaxe da entrada est incorrecta." ;
        Text [ english_us ] = "The input syntax is invalid." ;
        Text [ portuguese_brazilian ] = "Die Syntax der Eingabe ist ung?tig." ;
        Text [ swedish ] = "Inmatningens syntax r ogiltig." ;
        Text [ danish ] = "Inputsyntaksen er ugyldig." ;
        Text [ italian ] = "La sintassi della digitazione  errata." ;
        Text [ spanish ] = "La sintaxis de la entrada no es vlida" ;
        Text [ french ] = "La syntaxe de la saisie est incorrecte." ;
        Text [ dutch ] = "Onjuiste schrijfwijze." ;
        Text[ chinese_simplified ] = "输入的语法无效。";
        Text[ russian ] = "  .";
        Text[ polish ] = "Skadnia wpisu jest niepoprawna.";
        Text[ japanese ] = "この入力のシンタックスは無効です。";
        Text[ chinese_traditional ] = "輸入內容語法無效。";
        Text[ arabic ] = "    .";
        Text[ dutch ] = "Onjuiste schrijfwijze.";
        Text[ chinese_simplified ] = "输入的语法无效。";
        Text[ greek ] = "  .";
        Text[ korean ] = "입력 구문이 잘못되었습니다.";
        Text[ turkish ] = "Giri sz dizimi geerli deil.";
        Text[ catalan ] = "La sintaxi de l'entrada no s vlida";
        Text[ finnish ] = "Syttsyntaksi on virheellinen.";
        Text[ thai ] = "ไวยกรณ์ที่ป้อนเข้าไม่ถูกต้อง";
    };
    String ERRCODE_SFX_CANTCREATEFOLDER
    {
        Text = "Die Syntax der Eingabe ist falsch." ;
        Text [ English ] = "The syntax of the input is invalid." ;
        Text [ portuguese ] = "A sintaxe da entrada est incorrecta." ;
        Text [ english_us ] = "The input syntax is invalid." ;
        Text [ portuguese_brazilian ] = "Die Syntax der Eingabe ist falsch." ;
        Text [ swedish ] = "Inmatningens syntax r felaktig." ;
        Text [ danish ] = "Inputsyntaksen er forkert" ;
        Text [ italian ] = "La sintassi della digitazione  errata." ;
        Text [ spanish ] = "La sintaxis de la entrada es incorrecta." ;
        Text [ french ] = "La syntaxe de la saisie est incorrecte." ;
        Text [ dutch ] = "Onjuiste schrijfwijze." ;
        Text[ chinese_simplified ] = "输入的语法错误。";
        Text[ russian ] = "  .";
        Text[ polish ] = "Skadnia wpisu jest niepoprawna.";
        Text[ japanese ] = "項目のシンタックスが正しくありません。";
        Text[ chinese_traditional ] = "輸入內容語法錯誤。";
        Text[ arabic ] = "    .";
        Text[ dutch ] = "Onjuiste schrijfwijze.";
        Text[ chinese_simplified ] = "输入的语法错误。";
        Text[ greek ] = "  .";
        Text[ korean ] = "입력 구문이 잘못되었습니다.";
        Text[ turkish ] = "Giri sz dizimi yanl.";
        Text[ catalan ] = "La sintaxi de l'entrada s incorrecta.";
        Text[ finnish ] = "Syttsyntaksi on virheellinen.";
        Text[ thai ] = "ไวยกรณ์ที่ป้อนเข้าไม่ถูกต้อง";
    };
    String ERRCODE_SFX_CANTRENAMEFOLDER
    {
        Text = "Die Syntax der Eingabe ist falsch." ;
        Text [ English ] = "The syntax of the input is invalid." ;
        Text [ portuguese ] = "A sintaxe da entrada est incorrecta." ;
        Text [ english_us ] = "The input syntax is invalid." ;
        Text [ portuguese_brazilian ] = "Die Syntax der Eingabe ist falsch." ;
        Text [ swedish ] = "Inmatningens syntax r felaktig." ;
        Text [ danish ] = "Inputsyntaksen er forkert." ;
        Text [ italian ] = "La sintassi della digitazione  errata." ;
        Text [ spanish ] = "La sintaxis de entrada es incorrecta." ;
        Text [ french ] = "La syntaxe de la saisie est incorrecte." ;
        Text [ dutch ] = "Onjuiste schrijfwijze." ;
        Text[ chinese_simplified ] = "输入的语法错误。";
        Text[ russian ] = "  .";
        Text[ polish ] = "Skadnia wpisu jest niepoprawna.";
        Text[ japanese ] = "項目のシンタックスが正しくありません。";
        Text[ chinese_traditional ] = "輸入的語法錯誤。";
        Text[ arabic ] = "    .";
        Text[ dutch ] = "Onjuiste schrijfwijze.";
        Text[ chinese_simplified ] = "输入的语法错误。";
        Text[ greek ] = "  .";
        Text[ korean ] = "입력 구문이 잘못되었습니다.";
        Text[ turkish ] = "Giri sz dizimi yanl.";
        Text[ language_user1 ] = " ";
        Text[ catalan ] = "La sintaxi d'entrada s incorrecta.";
        Text[ finnish ] = "Syttsyntaksi on virheellinen.";
        Text[ thai ] = "ไวยกรณ์ที่ป้อนเข้าไม่ถูกต้อง";
    };
    String ERRCODE_SFX_WRONG_CDF_FORMAT
    {
        Text = "Das Channeldokument hat kein gltiges Format." ;
        Text [ ENGLISH ] = "Das Channeldokument hat kein gltiges Format." ;
        Text [ portuguese ] = "O formato do documento do canal no  vlido." ;
        Text [ english_us ] = "The channel document has an invalid format." ;
        Text [ portuguese_brazilian ] = "Das Channeldokument hat kein g?tiges Format." ;
        Text [ swedish ] = "Channeldokumentet har inget giltigt format." ;
        Text [ danish ] = "Channel-dokumentet har ikke et gyldigt format." ;
        Text [ italian ] = "Il documento di canale non ha un formato valido." ;
        Text [ spanish ] = "El formato del documento del canal no es vlido." ;
        Text [ french ] = "Le format du document Channel est incorrect." ;
        Text [ dutch ] = "Het channel-document heeft een foutieve indeling." ;
        Text[ chinese_simplified ] = "频道文档的格式无效。";
        Text[ russian ] = "   .";
        Text[ polish ] = "Dokument kanau nie posiada prawidowego formatu.";
        Text[ japanese ] = "チャンネル ドキュメントの書式は無効です。";
        Text[ chinese_traditional ] = "頻道文件格式無效";
        Text[ arabic ] = "    .";
        Text[ dutch ] = "Het channel-document heeft een foutieve indeling.";
        Text[ chinese_simplified ] = "频道文档的格式无效。";
        Text[ greek ] = "       .";
        Text[ korean ] = "채널 문서의 서식이 잘못되었습니다.";
        Text[ turkish ] = "Kanal belgesinin format geersiz.";
        Text[ catalan ] = "El format del document del canal no s vlid.";
        Text[ finnish ] = "Kanava-asiakirjan muoto on virheellinen.";
        Text[ thai ] = "ช่องเอกสารมีรูปแบบไม่ถูกต้อง";
    };
    String ERRCODE_SFX_EMPTY_SERVER
    {
        Text = "Der Server darf nicht leer sein" ;
        Text [ English ] = "The server may not be empty" ;
        Text [ portuguese ] = "O servidor no pode estar vazio." ;
        Text [ english_us ] = "The server must not be empty" ;
        Text [ portuguese_brazilian ] = "Der Server darf nicht leer sein" ;
        Text [ swedish ] = "Servern fr ej vara tom" ;
        Text [ danish ] = "Serveren m ikke vre tom" ;
        Text [ italian ] = "Il server non pu essere vuoto" ;
        Text [ spanish ] = "El servidor no debe estar vaco." ;
        Text [ french ] = "Le serveur ne doit pas tre vide" ;
        Text [ dutch ] = "De server mag niet leeg zijn." ;
        Text[ chinese_simplified ] = "服务器不可以空缺";
        Text[ russian ] = "    ";
        Text[ polish ] = "Serwer nie moe by pusty";
        Text[ japanese ] = "サーバーは空白ではいけません";
        Text[ chinese_traditional ] = "伺服器不可以空缺";
        Text[ arabic ] = "    ";
        Text[ dutch ] = "De server mag niet leeg zijn.";
        Text[ chinese_simplified ] = "服务器不可以空缺";
        Text[ greek ] = "      ";
        Text[ korean ] = "서버가 비어 있으면 안됩니다.";
        Text[ turkish ] = "Sunucu bo olmamaldr";
        Text[ catalan ] = "El servidor no ha d'estar buit";
        Text[ finnish ] = "Palvelin ei saa olla tyhj.";
        Text[ thai ] = "เซิร์ฟเวอร์ต้องไม่ว่าง";
    };
    String ERRCODE_SFX_NO_ABOBOX
    {
        Text = "Sie bentigen einen Abonnements Ordner, wenn Sie einen Channel installieren wollen." ;
        Text [ english_us ] = "A subscription folder is required to install a Channel." ;
            Text [ italian ] = " necessaria una cartella di sottoscrizione se volete installare un channel.";
        Text [ portuguese_brazilian ] = "Sie ben?igen einen Abonnements Ordner, wenn Sie einen Channel installieren wollen.";
        Text [ portuguese ] = "Para poder instalar um Channel, necessita de uma pasta para subscries.";
        Text [ danish ] = "Du har brug for en abonnement-mappe, hvis du vil installere en channel.";
        Text [ french ] = "Vous avez besoin d'un dossier d'abonnements pour installer un Channel.";
        Text [ swedish ] = "Du behver en prenumerationsmapp om du vill installera en channel.";
        Text [ dutch ] = "Om een channel te installeren, heeft u een abonnementenmap nodig.";
        Text [ spanish ] = "Para instalar un canal necesita una carpeta de suscripciones.";
    Text[ chinese_simplified ] = "如果要安装频道,您就需要先创建一个订阅文件夹。";
        Text[ russian ] = "     .";
        Text[ polish ] = "Instalacja kanau wymaga utworzenia folderu subkrypcji.";
        Text[ japanese ] = "チャンネルをインストールするには購読フォルダが必要です。";
        Text[ chinese_traditional ] = "如果要安裝頻道﹐您就需要建立一個訂閱資料夾";
        Text[ arabic ] = "         .";
        Text[ dutch ] = "Om een channel te installeren, heeft u een abonnementenmap nodig.";
        Text[ chinese_simplified ] = "如果要安装频道,您就需要先创建一个订阅文件夹。";
        Text[ greek ] = "          .";
        Text[ korean ] = "채널을 설치하려면 알림 요청 폴더가 필요합니다.";
        Text[ turkish ] = "Kanal kurmak iin bir yelik klasrnz olmal.";
        Text[ catalan ] = "Per instal.lar un canal es necessita una carpeta de subscripcions.";
        Text[ finnish ] = "Kanavan asentaminen edellytt tilauskansiota.";
        Text[ thai ] = "ต้องการโฟลเดอร์การสมัครสมาชิกเพื่อติดตั้งช่อง";
    };
    String ERRCODE_IO_NOTSTORABLEINBINARYFORMAT
    {
        Text = "Dieses Dokument enthlt Attribute die nicht im gewhlten Format gespeichert werden knnen.\nBitte speichern Sie das Dokument in einem %PRODUCTNAME 6.0 Dateiformat.";
        Text [ english ] = "This document contains attributes that cannot be saved in the selected format.\nPlease save the document in a %PRODUCTNAME 6.0 file format.";
        Text[ english_us ] = "This document contains attributes that cannot be saved in the selected format.\nPlease save the document in a %PRODUCTNAME 6.0 file format.";
        Text[ french ] = "This document contains attributes that cannot be saved in the selected format.\nPlease save the document in a %PRODUCTNAME 6.0 file format.";
        Text[ spanish ] = "This document contains attributes that cannot be saved in the selected format.\nPlease save the document in a %PRODUCTNAME 6.0 file format.";
        Text[ italian ] = "This document contains attributes that cannot be saved in the selected format.\nPlease save the document in a %PRODUCTNAME 6.0 file format.";
        Text[ swedish ] = "This document contains attributes that cannot be saved in the selected format.\nPlease save the document in a %PRODUCTNAME 6.0 file format.";
        Text[ japanese ] = "This document contains attributes that cannot be saved in the selected format.\nPlease save the document in a %PRODUCTNAME 6.0 file format.";
        Text[ korean ] = "This document contains attributes that cannot be saved in the selected format.\nPlease save the document in a %PRODUCTNAME 6.0 file format.";
        Text[ chinese_simplified ] = "This document contains attributes that cannot be saved in the selected format.\nPlease save the document in a %PRODUCTNAME 6.0 file format.";
        Text[ chinese_traditional ] = "This document contains attributes that cannot be saved in the selected format.\nPlease save the document in a %PRODUCTNAME 6.0 file format.";
    };
#ifdef ERRCODE_IO_INVALIDLENGTH
    String ERRCODE_IO_INVALIDLENGTH
    {
        Text = "Ungltige Datenlnge." ;
        Text [ english ] = "Invalid data length." ;
        Text [ portuguese ] = "Extenso de dados incorrecta." ;
        Text [ english_us ] = "Invalid data length." ;
        Text [ portuguese_brazilian ] = "Ung?tige Datenl?nge." ;
        Text [ swedish ] = "Ogiltig datalngd." ;
        Text [ danish ] = "Ugyldig datalngde." ;
        Text [ italian ] = "Lunghezza dati non valida." ;
        Text [ spanish ] = "Longitud de datos no vlida." ;
        Text [ french ] = "Longueur des donnes incorrecte." ;
        Text [ dutch ] = "Onjuiste gegevenslengte" ;
        Text[ chinese_simplified ] = "无效的数据长度。";
        Text[ russian ] = "  .";
        Text[ polish ] = "Nieprawidowa dugo danych.";
        Text[ japanese ] = "無効なデータの長さ。";
        Text[ chinese_traditional ] = "資料長度無效。";
        Text[ arabic ] = "   .";
        Text[ dutch ] = "Onjuiste gegevenslengte";
        Text[ chinese_simplified ] = "无效的数据长度。";
        Text[ greek ] = "   .";
        Text[ korean ] = "데이터 길이가 잘못되었습니다.";
        Text[ turkish ] = "Geersiz veri uzunluu.";
        Text[ catalan ] = "La llargada de les dades no s vlida.";
        Text[ finnish ] = "Virheellinen tietojen pituus";
        Text[ thai ] = "ความยาวข้อมูลไม่ถูกต้อง";
    };
    String ERRCODE_IO_CURRENTDIR
    {
        Text = "Funktion unmglich: Pfad enthlt aktuelles Verzeichnis" ;
        Text [ english ] = "Funcion impossible: path contains current directory." ;
        Text [ portuguese ] = "Funo impossvel: o atalho contm o directrio activo." ;
        Text [ english_us ] = "Function not possible: path contains current directory." ;
        Text [ portuguese_brazilian ] = "Funktion unm?lich: Pfad enth?lt aktuelles Verzeichnis" ;
        Text [ swedish ] = "Funktion omjlig: Skvg innehller aktuell katalog" ;
        Text [ danish ] = "Funktion ikke mulig: stien indeholder aktuelt bibliotek" ;
        Text [ italian ] = "Funzione impossibile: il percorso contiene la cartella corrente" ;
        Text [ spanish ] = "Funcin imposible: La ruta contiene el directorio actual." ;
        Text [ french ] = "Impossible d'excuter la fonction : le chemin indiqu inclut le rpertoire actif" ;
        Text [ dutch ] = "Functie niet mogelijk. Pad bevat huidige directory" ;
        Text[ chinese_simplified ] = "无法执行功能:路径含有当前的目录";
        Text[ russian ] = " :    ";
        Text[ polish ] = "Funkcja niemoliwa:cieka zawiera aktualny katalog";
        Text[ japanese ] = "機能不可能:パスが現在のディレクトリを含んでいます";
        Text[ chinese_traditional ] = "無法執行功能:路徑含有目前的目錄";
        Text[ arabic ] = "   :     .";
        Text[ dutch ] = "Functie niet mogelijk. Pad bevat huidige directory";
        Text[ chinese_simplified ] = "无法执行功能:路径含有当前的目录";
        Text[ greek ] = "      :      ";
        Text[ korean ] = "기능 사용 불가능: 경로에 현재 디렉토리가 포함되어 있습니다.";
        Text[ turkish ] = "lev olanakl deil: Veri yolu yrrlkteki dizini ieriyor";
        Text[ catalan ] = "Funci impossible: El cam cont el directori actual.";
        Text[ finnish ] = "Toiminnon toteutus ei ole mahdollista: polku sislt nykyisen hakemiston.";
        Text[ thai ] = "ฟังก์ชั่นที่เป็นไปไม่ได้: เส้นทางมีสารบบปัจจุบัน";
    };
    String ERRCODE_IO_NOTSAMEDEVICE
    {
        Text = "Funktion unmglich: Nicht dasselbe Gert (Laufwerk)." ;
        Text [ english ] = "Function impossible: not same device (drive)." ;
        Text [ portuguese ] = "Funo impossvel: perifrico no  o mesmo (unidade)." ;
        Text [ english_us ] = "Function not possible: device (drive) not identical." ;
        Text [ portuguese_brazilian ] = "Funktion unm?lich: Nicht dasselbe Ger?t (Laufwerk)." ;
        Text [ swedish ] = "Funktion omjlig: Inte samma enhet." ;
        Text [ danish ] = "Funktion ikke mulig: ikke samme enhed (drev)." ;
        Text [ italian ] = "Funzione impossibile: apparecchio (drive) diverso." ;
        Text [ spanish ] = "Funcin imposible: No es el mismo dispositivo (unidad)." ;
        Text [ french ] = "Impossible d'excuter la fonction : il ne s'agit pas du mme volume." ;
        Text [ dutch ] = "Functie niet mogelijk: niet hetzelfde apparaat (station)." ;
        Text[ chinese_simplified ] = "无法执行功能:不是同一个设备(驱动盘)。";
        Text[ russian ] = " :   ().";
        Text[ polish ] = "Funkcja niemoliwa: nie to samo urzdzenie (napd).";
        Text[ japanese ] = "機能不可能:同じデバイス(ドライブ)ではありません。";
        Text[ chinese_traditional ] = "無法執行功能:不是同一個設備(驅動盤)。";
        Text[ arabic ] = "   :  ( (  .";
        Text[ dutch ] = "Functie niet mogelijk: niet hetzelfde apparaat (station).";
        Text[ chinese_simplified ] = "无法执行功能:不是同一个设备(驱动盘)。";
        Text[ greek ] = "      :       ().";
        Text[ korean ] = "기능 사용 불가능: 장치(드라이브)가 동일하지 않음.";
        Text[ turkish ] = "lev olanakl deil: Chiza (src) ayn deil.";
        Text[ catalan ] = "Funci impossible: No s el mateix dispositiu (unitat).";
        Text[ finnish ] = "Toiminnon toteutus ei ole mahdollista: laite (asema) ei ole identtinen.";
        Text[ thai ] = "ฟังก์ชั่นเป็นไปไม่ได้: อุปกรณ์ (ไดร้ฟ์) ไม่เหมือนกัน";
    };
    String ERRCODE_IO_DEVICENOTREADY
    {
        Text = "Gert (Laufwerk) nicht bereit." ;
        Text [ english ] = "Device (drive) not ready." ;
        Text [ portuguese ] = "Perifrico (unidade) no est pronto." ;
        Text [ english_us ] = "Device (drive) not ready." ;
        Text [ portuguese_brazilian ] = "Ger?t (Laufwerk) nicht bereit." ;
        Text [ swedish ] = "Enhet ej redo." ;
        Text [ danish ] = "Enheden (drevet) er ikke klar." ;
        Text [ italian ] = "Apparecchio (drive) non pronto." ;
        Text [ spanish ] = "Dispositivo (unidad) no listo." ;
        Text [ french ] = "Le priphrique (unit) n'est pas prt." ;
        Text [ dutch ] = "Apparaat (station) niet gereed." ;
        Text[ chinese_simplified ] = "设备(驱动盘)还没有准备就绪。";
        Text[ russian ] = " ()  .";
        Text[ polish ] = "Urzdzenie (napd) nie gotowe.";
        Text[ japanese ] = "デバイス(ドライブ)の準備ができていません。";
        Text[ chinese_traditional ] = "設備(驅動盤)還沒有準備就緒";
        Text[ arabic ] = " ( )  .";
        Text[ dutch ] = "Apparaat (station) niet gereed.";
        Text[ chinese_simplified ] = "设备(驱动盘)还没有准备就绪。";
        Text[ greek ] = "  ( )   .";
        Text[ korean ] = "장치(드라이브)가 준비되어 있지 않습니다.";
        Text[ turkish ] = "Cihaz (src) hazr deil.";
        Text[ catalan ] = "El dispositiu (unitat) no est disponible.";
        Text[ finnish ] = "Laite (asema) ei ole valmis.";
        Text[ thai ] = "อุปกรณ์ (ไดร้ฟ์) ไม่พร้อม";
    };
    String ERRCODE_IO_BADCRC
    {
        Text = "Falsche Prfsumme." ;
        Text [ english ] = "Bad checksum" ;
        Text [ portuguese ] = "Soma de reviso errada." ;
        Text [ english_us ] = "Wrong check amount." ;
        Text [ portuguese_brazilian ] = "Falsche Pr?summe." ;
        Text [ swedish ] = "Fel kontrollsumma." ;
        Text [ danish ] = "Forkert kontrolsum" ;
        Text [ italian ] = "Somma da esaminare errata." ;
        Text [ spanish ] = "Suma errnea de revisin." ;
        Text [ french ] = "Somme de rvision errone." ;
        Text [ dutch ] = "Controlegetal niet juist." ;
        Text[ chinese_simplified ] = "错误的检查数目。";
        Text[ russian ] = "  .";
        Text[ polish ] = "Nieprawidowa suma kontrolna.";
        Text[ japanese ] = "正しくないチェックサム。";
        Text[ chinese_traditional ] = "檢查數目有誤";
        Text[ arabic ] = "  ";
        Text[ dutch ] = "Controlegetal niet juist.";
        Text[ chinese_simplified ] = "错误的检查数目。";
        Text[ greek ] = "  ";
        Text[ korean ] = "틀린 검사 합계";
        Text[ turkish ] = "Yanl salama toplam.";
        Text[ catalan ] = "Suma de revisi incorrecta.";
        Text[ finnish ] = "Vr tarkistussumma";
        Text[ thai ] = "ตรวจสอบจำนวนผิด";
    };
    String ERRCODE_IO_WRITEPROTECTED
    {
        Text = "Funktion unmglich: Schreibgeschtzt." ;
        Text [ english ] = "Function impossible: write protected." ;
        Text [ portuguese ] = "Funo impossvel: s de leitura." ;
        Text [ english_us ] = "Function not possible: write protected." ;
        Text [ portuguese_brazilian ] = "Funktion unm?lich: Schreibgesch?zt." ;
        Text [ swedish ] = "Funktion omjlig: Skrivskyddad." ;
        Text [ danish ] = "Funktion ikke mulig: skrivebeskyttet" ;
        Text [ italian ] = "Funzione impossibile: solo lettura." ;
        Text [ spanish ] = "Funcin imposible: Solo lectura." ;
        Text [ french ] = "Impossible d'excuter la fonction : en lecture seule" ;
        Text [ dutch ] = "Functie niet mogelijk: alleen-lezen." ;
        Text[ chinese_simplified ] = "无法执行功能:防改写";
        Text[ russian ] = "  :   .";
        Text[ polish ] = "Wykonanie funkcji niemoliwe: Tylko do odczytu.";
        Text[ japanese ] = "機能不可能:書き込み保護。";
        Text[ chinese_traditional ] = "無法執行功能:唯讀";
        Text[ arabic ] = "   :   .";
        Text[ dutch ] = "Functie niet mogelijk: alleen-lezen.";
        Text[ chinese_simplified ] = "无法执行功能:防改写";
        Text[ greek ] = "      :   ";
        Text[ korean ] = "기능 사용 불가능: 쓰기 보호됨";
        Text[ turkish ] = "lev olanakl deil: Yazma korumal.";
        Text[ catalan ] = "Funci impossible: Noms lectura.";
        Text[ finnish ] = "Toiminnon toteutus ei ole mahdollista: objekti on kirjoitussuojattu.";
        Text[ thai ] = "ฟังก์ชั่นเป็นไปไม่ได้: เขียนป้องกัน";
    };
#endif
};

// eof ------------------------------------------------------------------------