summaryrefslogtreecommitdiff
path: root/sc/source/ui/src/scstring.src
blob: 7e94b43820544e35d78984766dfedb0b9aa58f75 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
2264
2265
2266
2267
2268
2269
2270
2271
2272
2273
2274
2275
2276
2277
2278
2279
2280
2281
2282
2283
2284
2285
2286
2287
2288
2289
2290
2291
2292
2293
2294
2295
2296
2297
2298
2299
2300
2301
2302
2303
2304
2305
2306
2307
2308
2309
2310
2311
2312
2313
2314
2315
2316
2317
2318
2319
2320
2321
2322
2323
2324
2325
2326
2327
2328
2329
2330
2331
2332
2333
2334
2335
2336
2337
2338
2339
2340
2341
2342
2343
2344
2345
2346
2347
2348
2349
2350
2351
2352
2353
2354
2355
2356
2357
2358
2359
2360
2361
2362
2363
2364
2365
2366
2367
2368
2369
2370
2371
2372
2373
2374
2375
2376
2377
2378
2379
2380
2381
2382
2383
2384
2385
2386
2387
2388
2389
2390
2391
2392
2393
2394
2395
2396
2397
2398
2399
2400
2401
2402
2403
2404
2405
2406
2407
2408
2409
2410
2411
2412
2413
2414
2415
2416
2417
2418
2419
2420
2421
2422
2423
2424
2425
2426
2427
2428
2429
2430
2431
2432
2433
2434
2435
2436
2437
2438
2439
2440
2441
2442
2443
2444
2445
2446
2447
2448
2449
2450
2451
2452
2453
2454
2455
2456
2457
2458
2459
2460
2461
2462
2463
2464
2465
2466
2467
2468
2469
2470
2471
2472
2473
2474
2475
2476
2477
2478
2479
2480
2481
2482
2483
2484
2485
2486
2487
2488
2489
2490
2491
2492
2493
2494
2495
2496
2497
2498
2499
2500
2501
2502
2503
2504
2505
2506
2507
2508
2509
2510
2511
2512
2513
2514
2515
2516
2517
2518
2519
2520
2521
2522
2523
2524
2525
2526
2527
2528
2529
2530
2531
2532
2533
2534
2535
2536
2537
2538
2539
2540
2541
2542
2543
2544
2545
2546
2547
2548
2549
2550
2551
2552
2553
2554
2555
2556
2557
2558
2559
2560
2561
2562
2563
2564
2565
2566
2567
2568
2569
2570
2571
2572
2573
2574
2575
2576
2577
2578
2579
2580
2581
2582
2583
2584
2585
2586
2587
2588
2589
2590
2591
2592
2593
2594
2595
2596
2597
2598
2599
2600
2601
2602
2603
2604
2605
2606
2607
2608
2609
2610
2611
2612
2613
2614
2615
2616
2617
2618
2619
2620
2621
2622
2623
2624
2625
2626
2627
2628
2629
2630
2631
2632
2633
2634
2635
2636
2637
2638
2639
2640
2641
2642
2643
2644
2645
2646
2647
2648
2649
2650
2651
2652
2653
2654
2655
2656
2657
2658
2659
2660
2661
2662
2663
2664
2665
2666
2667
2668
2669
2670
2671
2672
2673
2674
2675
2676
2677
2678
2679
2680
2681
2682
2683
2684
2685
2686
2687
2688
2689
2690
2691
2692
2693
2694
2695
2696
2697
2698
2699
2700
2701
2702
2703
2704
2705
2706
2707
2708
2709
2710
2711
2712
2713
2714
2715
2716
2717
2718
2719
2720
2721
2722
2723
2724
2725
2726
2727
2728
2729
2730
2731
2732
2733
2734
2735
2736
2737
2738
2739
2740
2741
2742
2743
2744
2745
2746
2747
2748
2749
2750
2751
2752
2753
2754
2755
2756
2757
2758
2759
2760
2761
2762
2763
2764
2765
2766
2767
2768
2769
2770
2771
2772
2773
2774
2775
2776
2777
2778
2779
2780
2781
2782
2783
2784
2785
2786
2787
2788
2789
2790
2791
2792
2793
2794
2795
2796
2797
2798
2799
2800
2801
2802
2803
2804
2805
2806
2807
2808
2809
2810
2811
2812
2813
2814
2815
2816
2817
2818
2819
2820
2821
2822
2823
2824
2825
2826
2827
2828
2829
2830
2831
2832
2833
2834
2835
2836
2837
2838
2839
2840
2841
2842
2843
2844
2845
2846
2847
2848
2849
2850
2851
2852
2853
2854
2855
2856
2857
2858
2859
2860
2861
2862
2863
2864
2865
2866
2867
2868
2869
2870
2871
2872
2873
2874
2875
2876
2877
2878
2879
2880
2881
2882
2883
2884
2885
2886
2887
2888
2889
2890
2891
2892
2893
2894
2895
2896
2897
2898
2899
2900
2901
2902
2903
2904
2905
2906
2907
2908
2909
2910
2911
2912
2913
2914
2915
2916
2917
2918
2919
2920
2921
2922
2923
2924
2925
2926
2927
2928
2929
2930
2931
2932
2933
2934
2935
2936
2937
2938
2939
2940
2941
2942
2943
2944
2945
2946
2947
2948
2949
2950
2951
2952
2953
2954
2955
2956
2957
2958
2959
2960
2961
2962
2963
2964
2965
2966
2967
2968
2969
2970
2971
2972
2973
2974
2975
2976
2977
2978
2979
2980
2981
2982
2983
2984
2985
2986
2987
2988
2989
2990
2991
2992
2993
2994
2995
2996
2997
2998
2999
3000
3001
3002
3003
3004
3005
3006
3007
3008
3009
3010
3011
3012
3013
3014
3015
3016
3017
3018
3019
3020
3021
3022
3023
3024
3025
3026
3027
3028
3029
3030
3031
3032
3033
3034
3035
3036
3037
3038
3039
3040
3041
3042
3043
3044
3045
3046
3047
3048
3049
3050
3051
3052
3053
3054
3055
3056
3057
3058
3059
3060
3061
3062
3063
3064
3065
3066
3067
3068
3069
3070
3071
3072
3073
3074
3075
3076
3077
3078
3079
3080
3081
3082
3083
3084
3085
3086
3087
3088
3089
3090
3091
3092
3093
3094
3095
3096
3097
3098
3099
3100
3101
3102
3103
3104
3105
3106
3107
3108
3109
3110
3111
3112
3113
3114
3115
3116
3117
3118
3119
3120
3121
3122
3123
3124
3125
3126
3127
3128
3129
3130
3131
3132
3133
3134
3135
3136
3137
3138
3139
3140
3141
3142
3143
3144
3145
3146
3147
3148
3149
3150
3151
3152
3153
3154
3155
3156
3157
3158
3159
3160
3161
3162
3163
3164
3165
3166
3167
3168
3169
3170
3171
3172
3173
3174
3175
3176
3177
3178
3179
3180
3181
3182
3183
3184
3185
3186
3187
3188
3189
3190
3191
3192
3193
3194
3195
3196
3197
3198
3199
3200
3201
3202
3203
3204
3205
3206
3207
3208
3209
3210
3211
3212
3213
3214
3215
3216
3217
3218
3219
3220
3221
3222
3223
3224
3225
3226
3227
3228
3229
3230
3231
3232
3233
3234
3235
3236
3237
3238
3239
3240
3241
3242
3243
3244
3245
3246
3247
3248
3249
3250
3251
3252
3253
3254
3255
3256
3257
3258
3259
3260
3261
3262
3263
3264
3265
3266
3267
3268
3269
3270
3271
3272
3273
3274
3275
3276
3277
3278
3279
3280
3281
3282
3283
3284
3285
3286
3287
3288
3289
3290
3291
3292
3293
3294
3295
3296
3297
3298
3299
3300
3301
3302
3303
3304
3305
3306
3307
3308
3309
3310
3311
3312
3313
3314
3315
3316
3317
3318
3319
3320
3321
3322
3323
3324
3325
3326
3327
3328
3329
3330
3331
3332
3333
3334
3335
3336
3337
3338
3339
3340
3341
3342
3343
3344
3345
3346
3347
3348
3349
3350
3351
3352
3353
3354
3355
3356
3357
3358
3359
3360
3361
3362
3363
3364
3365
3366
3367
3368
3369
3370
3371
3372
3373
3374
3375
3376
3377
3378
3379
3380
3381
3382
3383
3384
3385
3386
3387
3388
3389
3390
3391
3392
3393
3394
3395
3396
3397
3398
3399
3400
3401
3402
3403
3404
3405
3406
3407
3408
3409
3410
3411
3412
3413
3414
3415
3416
3417
3418
3419
3420
3421
3422
3423
3424
3425
3426
3427
3428
3429
3430
3431
3432
3433
3434
3435
3436
3437
3438
3439
3440
3441
3442
3443
3444
3445
3446
3447
3448
3449
3450
3451
3452
3453
3454
3455
3456
3457
3458
3459
3460
3461
3462
3463
3464
3465
3466
3467
3468
3469
3470
3471
3472
3473
3474
3475
3476
3477
3478
3479
3480
3481
3482
3483
3484
3485
3486
3487
3488
3489
3490
3491
3492
3493
3494
3495
3496
3497
3498
3499
3500
3501
3502
3503
3504
3505
3506
3507
3508
3509
3510
3511
3512
3513
3514
3515
3516
3517
3518
3519
3520
3521
3522
3523
3524
3525
3526
3527
3528
3529
3530
3531
3532
3533
3534
3535
3536
3537
3538
3539
3540
3541
3542
3543
3544
3545
3546
3547
3548
3549
3550
3551
3552
3553
3554
3555
3556
3557
3558
3559
3560
3561
3562
3563
3564
3565
3566
3567
3568
3569
3570
3571
3572
3573
3574
3575
3576
3577
3578
3579
3580
3581
3582
3583
3584
3585
3586
3587
3588
3589
3590
3591
3592
3593
3594
3595
3596
3597
3598
3599
3600
3601
3602
3603
3604
3605
3606
3607
3608
3609
3610
3611
3612
3613
3614
3615
3616
3617
3618
3619
3620
3621
3622
3623
3624
3625
3626
3627
3628
3629
3630
3631
3632
3633
3634
3635
3636
3637
3638
3639
3640
3641
3642
3643
3644
3645
3646
3647
3648
3649
3650
3651
3652
3653
3654
3655
3656
3657
3658
3659
3660
3661
3662
3663
3664
3665
3666
3667
3668
3669
3670
3671
3672
3673
3674
3675
3676
3677
3678
3679
3680
3681
3682
3683
3684
3685
3686
3687
3688
3689
3690
3691
3692
3693
3694
3695
3696
3697
3698
3699
3700
3701
3702
3703
3704
3705
3706
3707
3708
3709
3710
3711
3712
3713
3714
3715
3716
3717
3718
3719
3720
3721
3722
3723
3724
3725
3726
3727
3728
3729
3730
3731
3732
3733
3734
3735
3736
3737
3738
3739
3740
3741
3742
3743
3744
3745
3746
3747
3748
3749
3750
3751
3752
3753
3754
3755
3756
3757
3758
3759
3760
3761
3762
3763
3764
3765
3766
3767
3768
3769
3770
3771
3772
3773
3774
3775
3776
3777
3778
3779
3780
3781
3782
3783
3784
3785
3786
3787
3788
3789
3790
3791
3792
3793
3794
3795
3796
3797
3798
3799
3800
3801
3802
3803
3804
3805
3806
3807
3808
3809
3810
3811
3812
3813
3814
3815
3816
3817
3818
3819
3820
3821
3822
3823
3824
3825
3826
3827
3828
3829
3830
3831
3832
3833
3834
3835
3836
3837
3838
3839
3840
3841
3842
3843
3844
3845
3846
3847
3848
3849
/*************************************************************************
 *
 *  $RCSfile: scstring.src,v $
 *
 *  $Revision: 1.70 $
 *
 *  last change: $Author: hr $ $Date: 2003-03-26 18:06:31 $
 *
 *  The Contents of this file are made available subject to the terms of
 *  either of the following licenses
 *
 *         - GNU Lesser General Public License Version 2.1
 *         - Sun Industry Standards Source License Version 1.1
 *
 *  Sun Microsystems Inc., October, 2000
 *
 *  GNU Lesser General Public License Version 2.1
 *  =============================================
 *  Copyright 2000 by Sun Microsystems, Inc.
 *  901 San Antonio Road, Palo Alto, CA 94303, USA
 *
 *  This library is free software; you can redistribute it and/or
 *  modify it under the terms of the GNU Lesser General Public
 *  License version 2.1, as published by the Free Software Foundation.
 *
 *  This library is distributed in the hope that it will be useful,
 *  but WITHOUT ANY WARRANTY; without even the implied warranty of
 *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
 *  Lesser General Public License for more details.
 *
 *  You should have received a copy of the GNU Lesser General Public
 *  License along with this library; if not, write to the Free Software
 *  Foundation, Inc., 59 Temple Place, Suite 330, Boston,
 *  MA  02111-1307  USA
 *
 *
 *  Sun Industry Standards Source License Version 1.1
 *  =================================================
 *  The contents of this file are subject to the Sun Industry Standards
 *  Source License Version 1.1 (the "License"); You may not use this file
 *  except in compliance with the License. You may obtain a copy of the
 *  License at http://www.openoffice.org/license.html.
 *
 *  Software provided under this License is provided on an "AS IS" basis,
 *  WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING,
 *  WITHOUT LIMITATION, WARRANTIES THAT THE SOFTWARE IS FREE OF DEFECTS,
 *  MERCHANTABLE, FIT FOR A PARTICULAR PURPOSE, OR NON-INFRINGING.
 *  See the License for the specific provisions governing your rights and
 *  obligations concerning the Software.
 *
 *  The Initial Developer of the Original Code is: Sun Microsystems, Inc.
 *
 *  Copyright: 2000 by Sun Microsystems, Inc.
 *
 *  All Rights Reserved.
 *
 *  Contributor(s): _______________________________________
 *
 *
 ************************************************************************/

#include "sc.hrc" // -> #include <sfx.hrc>

 // Strings fuer Interface-Namen ------------------------------------------

String SCSTR_APPLICATION
{
    Text = "%PRODUCTNAME Calc 6.0" ;
    Text [ ENGLISH ] = "%PRODUCTNAME Calc 6.0" ;
    Text[ english_us ] = "%PRODUCTNAME Calc 6.0";
    Text[ portuguese ] = "%PRODUCTNAME Calc 6.0";
    Text[ russian ] = "%PRODUCTNAME Calc 6.0";
    Text[ greek ] = "%PRODUCTNAME Calc 6.0";
    Text[ dutch ] = "%PRODUCTNAME Calc 6.0";
    Text[ french ] = "%PRODUCTNAME Calc 6.0";
    Text[ spanish ] = "%PRODUCTNAME Calc 6.0";
    Text[ italian ] = "%PRODUCTNAME Calc 6.0";
    Text[ danish ] = "%PRODUCTNAME Calc 6.0";
    Text[ swedish ] = "%PRODUCTNAME Calc 6.0";
    Text[ polish ] = "%PRODUCTNAME Calc 6.0";
    Text[ portuguese_brazilian ] = "%PRODUCTNAME Calc 4.0";
    Text[ japanese ] = "%PRODUCTNAME Calc 6.0";
    Text[ korean ] = "%PRODUCTNAME Calc 6.0";
    Text[ chinese_simplified ] = "%PRODUCTNAME Calc 6.0";
    Text[ chinese_traditional ] = "%PRODUCTNAME Calc 6.0";
    Text[ turkish ] = "StarCalc 5.0";
    Text[ arabic ] = "%PRODUCTNAME Calc 6.0";
    Text[ catalan ] = "%PRODUCTNAME Calc 6.0";
    Text[ finnish ] = "%PRODUCTNAME Calc 6.0";
    Text[ language_user1 ] = " ";
    Text[ thai ] = "%PRODUCTNAME Calc 6.0";
};
String SCSTR_50_APPLICATION
{
    Text = "StarCalc 5.0" ;
    Text [ ENGLISH ] = "StarCalc 5.0" ;
    Text [ norwegian ] = "StarCalc 5.0" ;
    Text [ italian ] = "StarCalc 5.0" ;
    Text [ portuguese_brazilian ] = "%PRODUCTNAME Calc 4.0" ;
    Text [ portuguese ] = "StarCalc 5.0" ;
    Text [ finnish ] = "StarCalc 5.0" ;
    Text [ danish ] = "StarCalc 5.0" ;
    Text [ french ] = "StarCalc 5.0" ;
    Text [ swedish ] = "StarCalc 5.0" ;
    Text [ dutch ] = "StarCalc 5.0" ;
    Text [ spanish ] = "StarCalc 5.0" ;
    Text [ english_us ] = "StarCalc  5.0" ;
    Text[ chinese_simplified ] = "StarCalc 5.0";
    Text[ russian ] = "StarCalc 5.0";
    Text[ polish ] = "StarCalc 5.0";
    Text[ japanese ] = "StarCalc 5.0";
    Text[ chinese_traditional ] = "StarCalc 5.0";
    Text[ arabic ] = "StarCalc 5.0";
    Text[ greek ] = "StarCalc 5.0";
    Text[ korean ] = "StarCalc 5.0";
    Text[ turkish ] = "StarCalc 5.0";
    Text[ language_user1 ] = " ";
    Text[ catalan ] = "StarCalc 5.0";
    Text[ thai ] = "StarCalc  5.0";
};
String SCSTR_40_APPLICATION
{
    Text = "StarCalc 4.0" ;
    Text [ ENGLISH ] = "StarCalc 4.0" ;
    Text [ norwegian ] = "StarCalc 4.0" ;
    Text [ italian ] = "StarCalc 4.0" ;
    Text [ portuguese_brazilian ] = "%PRODUCTNAME Calc 4.0" ;
    Text [ portuguese ] = "StarCalc 4.0" ;
    Text [ finnish ] = "StarCalc 4.0" ;
    Text [ danish ] = "StarCalc 4.0" ;
    Text [ french ] = "StarCalc 4.0" ;
    Text [ swedish ] = "StarCalc 4.0" ;
    Text [ dutch ] = "Star Calc 4.0" ;
    Text [ spanish ] = "StarCalc 4.0" ;
    Text [ english_us ] = "StarCalc 4.0" ;
    Text[ chinese_simplified ] = "StarCalc 4.0";
    Text[ russian ] = "StarCalc 4.0";
    Text[ polish ] = "StarCalc 4.0";
    Text[ japanese ] = "StarCalc 4.0";
    Text[ chinese_traditional ] = "StarCalc 4.0";
    Text[ arabic ] = "Star Calc 4.0";
    Text[ greek ] = "StarCalc 4.0";
    Text[ korean ] = "StarCalc 4.0";
    Text[ turkish ] = "StarCalc 4.0";
    Text[ language_user1 ] = " ";
    Text[ catalan ] = "StarCalc 4.0";
    Text[ thai ] = "StarCalc 4.0";
};
String SCSTR_30_APPLICATION
{
    Text = "StarCalc 3.0" ;
    Text [ ENGLISH ] = "StarCalc 3.0" ;
    Text [ norwegian ] = "StarCalc 3.0" ;
    Text [ italian ] = "StarCalc 3.0" ;
    Text [ portuguese_brazilian ] = "%PRODUCTNAME Calc 3.0" ;
    Text [ portuguese ] = "StarCalc 3.0" ;
    Text [ finnish ] = "StarCalc 3.0" ;
    Text [ danish ] = "StarCalc 3.0" ;
    Text [ french ] = "StarCalc 3.0" ;
    Text [ swedish ] = "StarCalc 3.0" ;
    Text [ dutch ] = "StarCalc 3.0" ;
    Text [ spanish ] = "StarCalc 3.0" ;
    Text [ english_us ] = "StarCalc 3.0" ;
    Text[ chinese_simplified ] = "StarCalc 3.0";
    Text[ russian ] = "StarCalc 3.0";
    Text[ polish ] = "StarCalc 3.0";
    Text[ japanese ] = "StarCalc 3.0";
    Text[ chinese_traditional ] = "StarCalc 3.0";
    Text[ arabic ] = "Star Calc 3.0";
    Text[ greek ] = "Star Calc 3.0";
    Text[ korean ] = "StarCalc 3.0";
    Text[ turkish ] = "StarCalc 3.0";
    Text[ language_user1 ] = " ";
    Text[ catalan ] = "StarCalc 3.0";
    Text[ thai ] = "StarCalc 3.0";
};
String SCSTR_LONG_SCDOC_NAME
{
    Text = "%PRODUCTNAME 6.0 Tabelle" ;
    Text [ ENGLISH ] = "%PRODUCTNAME 6.0 Spreadsheet" ;
    Text[ english_us ] = "%PRODUCTNAME 6.0 Spreadsheet";
    Text[ portuguese ] = "%PRODUCTNAME 6.0 Folha de clculo";
    Text[ russian ] = "  %PRODUCTNAME 6.0";
    Text[ greek ] = "%PRODUCTNAME 6.0 ";
    Text[ dutch ] = "%PRODUCTNAME 6.0 werkblad";
    Text[ french ] = "%PRODUCTNAME 6.0 Classeur";
    Text[ spanish ] = "%PRODUCTNAME 6.0 - Hoja de clculo";
    Text[ italian ] = "Tabella %PRODUCTNAME 6.0";
    Text[ danish ] = "%PRODUCTNAME 6.0-tabel";
    Text[ swedish ] = "%PRODUCTNAME 6.0 tabell";
    Text[ polish ] = "%PRODUCTNAME 6.0 - Arkusz kalkulacyjny";
    Text[ portuguese_brazilian ] = "%PRODUCTNAME 4.0 Tabelle";
    Text[ japanese ] = "%PRODUCTNAME 6.0 表計算";
    Text[ korean ] = "%PRODUCTNAME 6.0 스프레드시트";
    Text[ chinese_simplified ] = "%PRODUCTNAME 6.0 工作表";
    Text[ chinese_traditional ] = "%PRODUCTNAME 6.0 工作表";
    Text[ turkish ] = "%PRODUCTNAME 5.0 tablosu";
    Text[ arabic ] = " %PRODUCTNAME 6.0";
    Text[ catalan ] = "%PRODUCTNAME 6.0 Full de clcul";
    Text[ finnish ] = "%PRODUCTNAME 6.0 -laskentataulukko";
    Text[ language_user1 ] = " ";
    Text[ thai ] = "กระดาษคำนวณ %PRODUCTNAME 6.0 ";
};
String SCSTR_50_LONG_DOCNAME
{
    Text = "%PRODUCTNAME 5.0 Tabelle" ;
    Text [ ENGLISH ] = "StarOffice 5.0 Table" ;
    Text [ dutch ] = "%PRODUCTNAME 5.0 werkblad" ;
    Text [ english_us ] = "%PRODUCTNAME 5.0 Spreadsheet" ;
    Text [ swedish ] = "%PRODUCTNAME 5.0 tabell" ;
    Text [ danish ] = "%PRODUCTNAME 5.0-tabel" ;
    Text [ italian ] = "Tabella %PRODUCTNAME 5.0" ;
    Text [ spanish ] = "%PRODUCTNAME 5.0 - Hoja de clculo" ;
    Text [ french ] = "%PRODUCTNAME 5.0 Classeur" ;
    Text [ portuguese ] = "%PRODUCTNAME 5.0 Folha de clculo" ;
    Text [ portuguese_brazilian ] = "%PRODUCTNAME 4.0 Tabelle" ;
    Text[ chinese_simplified ] = "%PRODUCTNAME 5.0 工作表";
    Text[ russian ] = "  %PRODUCTNAME 5.0";
    Text[ polish ] = "%PRODUCTNAME 5.0 - Arkusz kalkulacyjny";
    Text[ japanese ] = "%PRODUCTNAME 5.0 表計算";
    Text[ chinese_traditional ] = "%PRODUCTNAME 5.0 工作表";
    Text[ arabic ] = " %PRODUCTNAME 5.0";
    Text[ greek ] = "%PRODUCTNAME 5.0 - ";
    Text[ korean ] = "%PRODUCTNAME Calc 5.0 스프레드시트";
    Text[ turkish ] = "%PRODUCTNAME 5.0 tablosu";
    Text[ language_user1 ] = " ";
    Text[ catalan ] = "%PRODUCTNAME 5.0 Full de clcul";
    Text[ finnish ] = "%PRODUCTNAME 5.0 -laskentataulukko";
    Text[ thai ] = "กระดาษคำนวณ %PRODUCTNAME 5.0 ";
};
String SCSTR_40_LONG_DOCNAME
{
    Text = "%PRODUCTNAME 4.0 Tabelle" ;
    Text [ ENGLISH ] = "StarOffice 4.0 Table" ;
    Text [ dutch ] = "%PRODUCTNAME 4.0 Werkblad" ;
    Text [ english_us ] = "%PRODUCTNAME 4.0 Spreadsheet" ;
    Text [ swedish ] = "%PRODUCTNAME 4.0 tabell" ;
    Text [ danish ] = "StarCalc 4.0 regneark" ;
    Text [ italian ] = "Foglio elettronico %PRODUCTNAME 4.0" ;
    Text [ spanish ] = "%PRODUCTNAME 4.0 - Hoja de clculo" ;
    Text [ french ] = "%PRODUCTNAME 4.0 Classeur" ;
    Text [ portuguese ] = "%PRODUCTNAME 4.0 Folha de clculo" ;
    Text [ portuguese_brazilian ] = "%PRODUCTNAME 4.0 Tabelle" ;
    Text[ chinese_simplified ] = "%PRODUCTNAME 4.0 工作表";
    Text[ russian ] = "  %PRODUCTNAME 4.0";
    Text[ polish ] = "%PRODUCTNAME 4.0 - Arkusz kalkulacyjny";
    Text[ japanese ] = "%PRODUCTNAME 4.0 表計算";
    Text[ chinese_traditional ] = "%PRODUCTNAME 4.0 工作表";
    Text[ arabic ] = " %PRODUCTNAME 4.0";
    Text[ greek ] = "%PRODUCTNAME 4.0 - ";
    Text[ korean ] = "%PRODUCTNAME 4.0 스프레드시트";
    Text[ turkish ] = "StarCalc 4.0 tablosu";
    Text[ language_user1 ] = " ";
    Text[ catalan ] = "%PRODUCTNAME 4.0 Full de clcul";
    Text[ finnish ] = "%PRODUCTNAME 4.0 -laskentataulukko";
    Text[ thai ] = "กระดาษคำนวณ %PRODUCTNAME 4.0 ";
};
String SCSTR_30_LONG_DOCNAME
{
    Text = "StarCalc 3.0 Tabelle" ;
    Text [ ENGLISH ] = "StarCalc 3.0 Table" ;
    Text [ dutch ] = "StarCalc 3.0 werkblad" ;
    Text [ english_us ] = "StarCalc 3.0 Spreadsheet" ;
    Text [ swedish ] = "StarCalc 3.0 tabell" ;
    Text [ danish ] = "StarCalc 3.0 regneark" ;
    Text [ italian ] = "Foglio elettronico StarCalc 3.0" ;
    Text [ spanish ] = "Hoja de clculo de StarCalc 3.0" ;
    Text [ french ] = "StarCalc 3.0 Classeur" ;
    Text [ portuguese ] = "StarCalc 3.0 - Folha de clculo" ;
    Text [ portuguese_brazilian ] = "%PRODUCTNAME Calc 3.0 Tabelle" ;
    Text[ chinese_simplified ] = "StaCalc 3.0 工作表";
    Text[ russian ] = "  StarCalc 3.0";
    Text[ polish ] = "Arkusz kalkulacyjny StarCalc 3.0";
    Text[ japanese ] = "StarCalc 3.0 表計算";
    Text[ chinese_traditional ] = "StarCalc 3.0 工作表";
    Text[ arabic ] = " Star Calc 3.0";
    Text[ greek ] = "StarCalc 3.0 - ";
    Text[ korean ] = "StarCalc 3.0 스프레드시트";
    Text[ turkish ] = "StarCalc 3.0 tablosu";
    Text[ language_user1 ] = " ";
    Text[ catalan ] = "Full de clcul StarCalc 3.0";
    Text[ finnish ] = "StarCalc 3.0 -laskentataulukko";
    Text[ thai ] = "กระดาษคำนวณ StarCalc 3.0 ";
};
String SCSTR_SHORT_SCDOC_NAME
{
    Text = "Tabelle" ;
    Text [ ENGLISH ] = "Tabelle" ;
    Text [ norwegian ] = "Table" ;
    Text [ italian ] = "Foglio di calcolo" ;
    Text [ portuguese_brazilian ] = "Tabela" ;
    Text [ portuguese ] = "Folha de clculo" ;
    Text [ finnish ] = "Laskentataulukko" ;
    Text [ danish ] = "Regneark" ;
    Text [ french ] = "Feuille de calcul" ;
    Text [ swedish ] = "Tabell" ;
    Text [ dutch ] = "Werkblad" ;
    Text [ spanish ] = "Hoja de clculo" ;
    Text [ english_us ] = "Spreadsheet" ;
    Text[ chinese_simplified ] = "工作表";
    Text[ russian ] = " ";
    Text[ polish ] = "Arkusz kalkulacyjny";
    Text[ japanese ] = "表";
    Text[ chinese_traditional ] = "工作表";
    Text[ arabic ] = "";
    Text[ greek ] = "";
    Text[ korean ] = "스프레드시트";
    Text[ turkish ] = "Tablo";
    Text[ language_user1 ] = " ";
    Text[ catalan ] = "Full de clcul";
    Text[ thai ] = "กระดาษคำนวณ";
};
String SCSTR_HUMAN_SCDOC_NAME
{
    Text = "Tabelle" ;
    Text [ ENGLISH ] = "Tabelle" ;
    Text [ norwegian ] = "Table" ;
    Text [ italian ] = "Foglio di calcolo" ;
    Text [ portuguese_brazilian ] = "Tabela" ;
    Text [ portuguese ] = "Folha de clculo" ;
    Text [ finnish ] = "Laskentataulukko" ;
    Text [ danish ] = "Regneark" ;
    Text [ french ] = "Feuille de calcul" ;
    Text [ swedish ] = "Tabell" ;
    Text [ dutch ] = "Werkblad" ;
    Text [ spanish ] = "Hoja de clculo" ;
    Text [ english_us ] = "Spreadsheet" ;
    Text[ chinese_simplified ] = "工作表";
    Text[ russian ] = " ";
    Text[ polish ] = "Arkusz kalkulacyjny";
    Text[ japanese ] = "表";
    Text[ chinese_traditional ] = "工作表";
    Text[ arabic ] = "";
    Text[ greek ] = "";
    Text[ korean ] = "스프레드시트";
    Text[ turkish ] = "Tablo";
    Text[ language_user1 ] = " ";
    Text[ catalan ] = "Full de clcul";
    Text[ thai ] = "กระดาษคำนวณ";
};

String SCSTR_DOCSHELL
{
    Text = "Tabelle" ;
    Text [ ENGLISH ] = "Table" ;
    Text [ norwegian ] = "Table" ;
    Text [ italian ] = "Tabella" ;
    Text [ portuguese_brazilian ] = "Tabela" ;
    Text [ portuguese ] = "Folha" ;
    Text [ finnish ] = "Taulukko" ;
    Text [ danish ] = "Ark" ;
    Text [ french ] = "Feuille" ;
    Text [ swedish ] = "Tabell" ;
    Text [ dutch ] = "Werkblad" ;
    Text [ spanish ] = "Hoja" ;
    Text [ english_us ] = "Sheet" ;
    Text[ chinese_simplified ] = "工作表";
    Text[ russian ] = "";
    Text[ polish ] = "Arkusz";
    Text[ japanese ] = "表";
    Text[ chinese_traditional ] = "工作表";
    Text[ arabic ] = "";
    Text[ greek ] = "";
    Text[ korean ] = "시트";
    Text[ turkish ] = "Tablo";
    Text[ language_user1 ] = " ";
    Text[ catalan ] = "Full";
    Text[ thai ] = "แผ่นงาน";
};

String SCSTR_TABVIEWSHELL
{
    Text = "Zellen" ;
    Text [ ENGLISH ] = "Cells" ;
    Text [ norwegian ] = "Celler" ;
    Text [ italian ] = "Celle" ;
    Text [ portuguese_brazilian ] = "C?lulas" ;
    Text [ portuguese ] = "Clulas" ;
    Text [ finnish ] = "Solut" ;
    Text [ danish ] = "Celler" ;
    Text [ french ] = "Cellules" ;
    Text [ swedish ] = "Celler" ;
    Text [ dutch ] = "Cellen" ;
    Text [ spanish ] = "Celdas" ;
    Text [ english_us ] = "Cells" ;
    Text[ chinese_simplified ] = "单元格";
    Text[ russian ] = "";
    Text[ polish ] = "Komrki";
    Text[ japanese ] = "セル";
    Text[ chinese_traditional ] = "儲存格";
    Text[ arabic ] = "";
    Text[ greek ] = "";
    Text[ korean ] = "셀";
    Text[ turkish ] = "Hcre";
    Text[ language_user1 ] = " ";
    Text[ catalan ] = "Cel.les";
    Text[ thai ] = "เซลล์";
};

String SCSTR_CELLSHELL
{
    Text = "Zellfunktionen" ;
    Text [ ENGLISH ] = "Functions for Cells" ;
    Text[ english_us ] = "Functions for Cells";
    Text[ portuguese ] = "Funes de clulas";
    Text[ russian ] = " ";
    Text[ greek ] = " ";
    Text[ dutch ] = "Celfuncties";
    Text[ french ] = "Fonctions de cellule";
    Text[ spanish ] = "Funciones de celda";
    Text[ italian ] = "Funzione delle celle";
    Text[ danish ] = "Cellefunktioner";
    Text[ swedish ] = "Cellfunktioner";
    Text[ polish ] = "Funkcje komrek";
    Text[ portuguese_brazilian ] = "Functions for Cells";
    Text[ japanese ] = "セルの関数";
    Text[ korean ] = "셀 기능";
    Text[ chinese_simplified ] = "单元格函数";
    Text[ chinese_traditional ] = "儲存格功能";
    Text[ arabic ] = " ";
    Text[ turkish ] = "Hcre ilevi";
    Text[ language_user1 ] = " ";
    Text[ catalan ] = "Funcions de cel.la";
    Text[ finnish ] = "Solujen funktiot";
    Text[ thai ] = "ฟังก์ชั่นสำหรับเซลล์";
};

String SCSTR_FORMATSHELL
{
    Text = "Zellformate" ;
    Text [ ENGLISH ] = "Formats for Cells" ;
    Text[ english_us ] = "Formats for Cells";
    Text[ portuguese ] = "Formatos de clulas";
    Text[ russian ] = " ";
    Text[ greek ] = " ";
    Text[ dutch ] = "Celformaten";
    Text[ french ] = "Formats de cellule";
    Text[ spanish ] = "Formatos de celda";
    Text[ italian ] = "Formato delle celle";
    Text[ danish ] = "Celleformater";
    Text[ swedish ] = "Cellformat";
    Text[ polish ] = "Formaty komrek";
    Text[ portuguese_brazilian ] = "Formats for Cells";
    Text[ japanese ] = "セルの書式";
    Text[ korean ] = "셀 서식";
    Text[ chinese_simplified ] = "单元格格式";
    Text[ chinese_traditional ] = "儲存格格式";
    Text[ arabic ] = " ";
    Text[ turkish ] = "Hcre format";
    Text[ language_user1 ] = " ";
    Text[ catalan ] = "Formats de les cel.les";
    Text[ finnish ] = "Solujen muodot";
    Text[ thai ] = "รูปแบบสำหรับเซลล์";
};


String SCSTR_DRAWSHELL
{
    Text = "Grafikobjekte" ;
    Text [ ENGLISH ] = "Grafical objects" ;
    Text [ norwegian ] = "Grafiske objekter " ;
    Text [ italian ] = "Oggetti grafici" ;
    Text [ portuguese_brazilian ] = "Objetos gr?ficos" ;
    Text [ portuguese ] = "Objectos grficos" ;
    Text [ finnish ] = "Grafiikkaobjektit" ;
    Text [ danish ] = "Grafiske objekter" ;
    Text [ french ] = "Objets graphiques" ;
    Text [ swedish ] = "Grafikobjekt" ;
    Text [ dutch ] = "Grafische objecten" ;
    Text [ spanish ] = "Objetos grficos" ;
    Text [ english_us ] = "Graphics objects" ;
    Text[ chinese_simplified ] = "图形对象";
    Text[ russian ] = " ";
    Text[ polish ] = "Obiekty graficzne";
    Text[ japanese ] = "図形描画オブジェクト";
    Text[ chinese_traditional ] = "圖形物件";
    Text[ arabic ] = " ";
    Text[ greek ] = " ";
    Text[ korean ] = "그림 개체";
    Text[ turkish ] = "Grafik nesnesi";
    Text[ language_user1 ] = " ";
    Text[ catalan ] = "Objectes grfics";
    Text[ thai ] = "วัตถุกราฟิค";
};

String SCSTR_DRAWTEXTSHELL
{
    Text = "Textobjekte" ;
    Text [ ENGLISH ] = "Text objects" ;
    Text [ norwegian ] = "Tekst objekter" ;
    Text [ italian ] = "Oggetti di testo" ;
    Text [ portuguese_brazilian ] = "Objetos de texto" ;
    Text [ portuguese ] = "Objectos de texto" ;
    Text [ finnish ] = "Tekstiobjektit" ;
    Text [ danish ] = "Tekstobjekter" ;
    Text [ french ] = "Objets de texte" ;
    Text [ swedish ] = "Textobjekt" ;
    Text [ dutch ] = "Tekstobjecten" ;
    Text [ spanish ] = "Objetos de texto" ;
    Text [ english_us ] = "Text objects" ;
    Text[ chinese_simplified ] = "文字对象";
    Text[ russian ] = " ";
    Text[ polish ] = "Obiekty tekstowe";
    Text[ japanese ] = "テキストオブジェクト";
    Text[ chinese_traditional ] = "文字物件";
    Text[ arabic ] = " ";
    Text[ greek ] = " ";
    Text[ korean ] = "텍스트 개체";
    Text[ turkish ] = "Metin nesnesi";
    Text[ language_user1 ] = " ";
    Text[ catalan ] = "Objectes de text";
    Text[ thai ] = "วัตถุข้อความ";
};

String SCSTR_DRAWFORMSHELL
{
    Text = "Formularobjekte" ;
    Text [ ENGLISH ] = "Form objects" ;
    Text[ english_us ] = "Form objects";
    Text[ portuguese ] = "Objectos de formulrio";
    Text[ russian ] = " ";
    Text[ dutch ] = "Formulierobjecten";
    Text[ french ] = "Objets de formulaire";
    Text[ spanish ] = "Objetos de formulario";
    Text[ italian ] = "Oggetti per formulario";
    Text[ danish ] = "Formularobjekter";
    Text[ swedish ] = "Formulrobjekt";
    Text[ polish ] = "Obiekty formularzy";
    Text[ portuguese_brazilian ] = "Form objects";
    Text[ japanese ] = "フォームオブジェクト";
    Text[ chinese_simplified ] = "表单对象";
    Text[ chinese_traditional ] = "表單物件";
    Text[ arabic ] = " ";
    Text[ greek ] = " ";
    Text[ korean ] = "양식 개체";
    Text[ turkish ] = "Form nesnesi";
    Text[ language_user1 ] = " ";
    Text[ catalan ] = "Objectes del formulari";
    Text[ finnish ] = "Lomakeobjektit";
    Text[ thai ] = "จากวัตถุ";
};

String SCSTR_CHARTSHELL
{
    Text = "Chart-Objekte" ;
    Text [ ENGLISH ] = "Chart-objects" ;
    Text[ english_us ] = "Chart objects";
    Text[ portuguese ] = "Objectos de grficos";
    Text[ russian ] = " ";
    Text[ greek ] = " ";
    Text[ dutch ] = "Chart-objecten";
    Text[ french ] = "Objets de diagramme";
    Text[ spanish ] = "Objetos de diagrama";
    Text[ italian ] = "Diagrammi";
    Text[ danish ] = "Diagram-objekter";
    Text[ swedish ] = "Chart-objekt";
    Text[ polish ] = "Obiekty wykresu";
    Text[ portuguese_brazilian ] = "Chart-objects";
    Text[ japanese ] = "グラフオブジェクト";
    Text[ korean ] = "차트 개체";
    Text[ chinese_simplified ] = "图表对象";
    Text[ chinese_traditional ] = "圖表物件";
    Text[ arabic ] = "  ";
    Text[ turkish ] = "ema nesnesi";
    Text[ catalan ] = "Objectes del diagrama";
    Text[ finnish ] = "Kaavio-objektit";
    Text[ thai ] = "วัตถุแผนภูมิ";
};

String SCSTR_OLEOBJECTSHELL
{
    Text = "OLE-Objekte" ;
    Text [ ENGLISH ] = "OLE-objects" ;
    Text[ english_us ] = "OLE objects";
    Text[ portuguese ] = "Objectos OLE";
    Text[ russian ] = "OLE ";
    Text[ greek ] = " OLE";
    Text[ dutch ] = "OLE-objecten";
    Text[ french ] = "Objets OLE";
    Text[ spanish ] = "Objetos OLE";
    Text[ italian ] = "Oggetti OLE";
    Text[ danish ] = "OLE-objekter";
    Text[ swedish ] = "OLE-objekt";
    Text[ polish ] = "Obiekty OLE";
    Text[ portuguese_brazilian ] = "OLE-objects";
    Text[ japanese ] = "OLE オブジェクト";
    Text[ korean ] = "OLE 개체";
    Text[ chinese_simplified ] = "OLE 对象";
    Text[ chinese_traditional ] = "OLE 物价";
    Text[ arabic ] = " OLE";
    Text[ turkish ] = "OLE nesnesi";
    Text[ language_user1 ] = " ";
    Text[ catalan ] = "Objectes OLE";
    Text[ finnish ] = "OLE-objektit";
    Text[ thai ] = "วัตถุ OLE ";
};

String SCSTR_GRAPHICSHELL
{
    Text = "Grafik" ;
    Text [ ENGLISH ] = "Graphic" ;
    Text[ english_us ] = "Graphics";
    Text[ portuguese ] = "Imagem";
    Text[ russian ] = " ";
    Text[ greek ] = "";
    Text[ dutch ] = "Afbeeldingen";
    Text[ french ] = "Image";
    Text[ spanish ] = "Imagen";
    Text[ italian ] = "Immagine";
    Text[ danish ] = "Grafik";
    Text[ swedish ] = "Grafik";
    Text[ polish ] = "Grafika";
    Text[ portuguese_brazilian ] = "Graphic";
    Text[ japanese ] = "図";
    Text[ korean ] = "그림";
    Text[ chinese_simplified ] = "图形";
    Text[ chinese_traditional ] = "圖形";
    Text[ arabic ] = "";
    Text[ turkish ] = "Grafik";
    Text[ catalan ] = "Grfics";
    Text[ finnish ] = "Grafiikka";
    Text[ thai ] = "กราฟิค";
};
String SCSTR_PAGEBREAKSHELL
{
    Text = "Seitenumbruch" ;
    Text [ ENGLISH ] = "Pagebreak" ;
    Text[ english_us ] = "Pagebreak";
    Text[ portuguese ] = "Quebra de pgina";
    Text[ russian ] = " ";
    Text[ greek ] = " ";
    Text[ dutch ] = "Pagina-einde";
    Text[ french ] = "Saut de page";
    Text[ spanish ] = "Salto de pgina";
    Text[ italian ] = "Interruzione di pagina";
    Text[ danish ] = "Sideskift";
    Text[ swedish ] = "Sidbrytning";
    Text[ polish ] = "Podzia strony";
    Text[ portuguese_brazilian ] = "Pagebreak";
    Text[ japanese ] = "改ページ";
    Text[ korean ] = "페이지 나누기";
    Text[ chinese_simplified ] = "换页";
    Text[ chinese_traditional ] = "換頁";
    Text[ arabic ] = " ";
    Text[ turkish ] = "Sayfa sonu";
    Text[ language_user1 ] = " ";
    Text[ catalan ] = "Salt de pgina";
    Text[ finnish ] = "Sivunvaihto";
    Text[ thai ] = "ตัวแบ่งหน้า";
};

String SCSTR_EDITSHELL
{
    Text = "Textbearbeitung" ;
    Text [ ENGLISH ] = "Text editing" ;
    Text [ norwegian ] = "Tekst redigering" ;
    Text [ italian ] = "Modifica testo" ;
    Text [ portuguese_brazilian ] = "Edi??o de texto" ;
    Text [ portuguese ] = "Edio de texto" ;
    Text [ finnish ] = "Tekstin muokkaus" ;
    Text [ danish ] = "Tekstredigering" ;
    Text [ french ] = "dition de texte" ;
    Text [ swedish ] = "Textredigering" ;
    Text [ dutch ] = "Tekstbewerking" ;
    Text [ spanish ] = "Edicin de texto" ;
    Text [ english_us ] = "Text editing" ;
    Text[ chinese_simplified ] = "文字编辑";
    Text[ russian ] = " ";
    Text[ polish ] = "Edycja tekstu";
    Text[ japanese ] = "テキストの編集";
    Text[ chinese_traditional ] = "文字編輯";
    Text[ arabic ] = " ";
    Text[ greek ] = " ";
    Text[ korean ] = "텍스트 편집";
    Text[ turkish ] = "Metin dzenleme";
    Text[ language_user1 ] = " ";
    Text[ catalan ] = "Edici del text";
    Text[ thai ] = "แก้ไขข้อความ";
};

String SCSTR_PREVIEWSHELL
{
    Text = "Druckvorschau" ;
    Text [ ENGLISH ] = "Print preview" ;
    Text [ norwegian ] = "Skriv ut forhndsvisning" ;
    Text [ italian ] = "Anteprima stampa" ;
    Text [ portuguese_brazilian ] = "Examinar impress?o" ;
    Text [ portuguese ] = "Visualizar impresso" ;
    Text [ finnish ] = "Tulostuksen esikatselu" ;
    Text [ danish ] = "Udskriftsvisning" ;
    Text [ french ] = "Aperu" ;
    Text [ swedish ] = "Skrmutskrift" ;
    Text [ dutch ] = "Afdrukvoorbeeld" ;
    Text [ spanish ] = "Presentacin preliminar" ;
    Text [ english_us ] = "Print Preview" ;
    Text[ chinese_simplified ] = "打印预览";
    Text[ russian ] = "  ";
    Text[ polish ] = "Podgld wydruku";
    Text[ japanese ] = "印刷プレビュー";
    Text[ chinese_traditional ] = "列印檢視";
    Text[ arabic ] = "  ";
    Text[ greek ] = " ";
    Text[ korean ] = "인쇄 미리보기";
    Text[ turkish ] = "Bask nizleme";
    Text[ language_user1 ] = " ";
    Text[ catalan ] = "Exemple d'impressi";
    Text[ thai ] = "แสดงตัวอย่างก่อนพิมพ์";
};

String SCSTR_PIVOTSHELL
{
    Text = "Datenpilot-Tabellen" ;
    Text [ ENGLISH ] = "Data Pilot Tables" ;
    Text [ norwegian ] = "Data Pilot Tables" ;
    Text [ italian ] = "Tabelle DataPilot" ;
    Text [ portuguese_brazilian ] = "Data Pilot Tables" ;
    Text [ portuguese ] = "Tabelas do Piloto de Dados" ;
    Text [ finnish ] = "Tietotaulukoiden ohjaus" ;
    Text [ danish ] = "DataPilot-tabeller" ;
    Text [ french ] = "Tables du pilote de donnes" ;
    Text [ swedish ] = "Datapilottabeller" ;
    Text [ dutch ] = "DataPiloot-tabellen" ;
    Text [ spanish ] = "Tablas del piloto de datos" ;
    Text [ english_us ] = "Data Pilot Tables" ;
    Text[ chinese_simplified ] = "数据助理工作表";
    Text[ russian ] = "  ";
    Text[ polish ] = "Tabele Pilota danych";
    Text[ japanese ] = "データパイロットの表";
    Text[ chinese_traditional ] = "資料助理工作表";
    Text[ arabic ] = "  ";
    Text[ greek ] = "  ";
    Text[ korean ] = "데이터 파일럿 표";
    Text[ turkish ] = "Veri pilotu tablosu";
    Text[ language_user1 ] = " ";
    Text[ catalan ] = "Taules del DataPilot";
    Text[ thai ] = "ตาราง Data Pilot";
};

String SCSTR_AUDITSHELL
{
    /* ### ACHTUNG: Neuer Text in Resource? Detektiv-Fll-Modus : Detektiv-Fll-Modus */
    Text = "Detektiv-Fll-Modus" ;
    Text [ ENGLISH ] = "Auditing Fill Mode" ;
    Text [ dutch ] = "Detective opvulmodus" ;
    Text [ english_us ] = "Detective Fill Mode" ;
    Text [ italian ] = "Modo di riempimento detective" ;
    Text [ spanish ] = "Modo Detective de relleno" ;
    Text [ french ] = "Mode Remplissage d'audit" ;
    Text [ swedish ] = "Detektiv-fyllningslge" ;
    Text [ danish ] = "Detektiv-fyldmodus" ;
    Text [ portuguese ] = "Modo preenchimento de auditoria" ;
    Text [ portuguese_brazilian ] = "Detektiv-F?l-Modus" ;
    Text[ chinese_simplified ] = "侦探-充填模式";
    Text[ russian ] = "  ";
    Text[ polish ] = "Tryb wypeniania detektywa";
    Text[ japanese ] = "トレース実行モード";
    Text[ chinese_traditional ] = "偵探-填入模式";
    Text[ arabic ] = "  ";
    Text[ greek ] = "  ";
    Text[ korean ] = "추적 채우기 모드";
    Text[ turkish ] = "Dedektif doldurma kipi";
    Text[ language_user1 ] = " ";
    Text[ catalan ] = "Mode d'emplenament Detective";
    Text[ finnish ] = "Jljityksen tytttila";
    Text[ thai ] = "โหมดเติมแบบตรวจหา";
};

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

String STR_ROWHEIGHT
{
    /* ### ACHTUNG: Neuer Text in Resource? Hhe : Hhe */
    Text = "Hhe" ;
    Text [ ENGLISH ] = "Height" ;
    Text [ norwegian ] = "Hyde " ;
    Text [ italian ] = "Altezza" ;
    Text [ portuguese_brazilian ] = "Altura" ;
    Text [ portuguese ] = "Altura" ;
    Text [ finnish ] = "Korkeus" ;
    Text [ danish ] = "Hjde" ;
    Text [ french ] = "Hauteur" ;
    Text [ swedish ] = "Hjd" ;
    Text [ dutch ] = "Hoogte" ;
    Text [ spanish ] = "Altura" ;
    Text [ english_us ] = "Height" ;
    Text[ chinese_simplified ] = "高";
    Text[ russian ] = "";
    Text[ polish ] = "Wysoko";
    Text[ japanese ] = "高さ";
    Text[ chinese_traditional ] = "高度";
    Text[ arabic ] = "";
    Text[ greek ] = "";
    Text[ korean ] = "높이";
    Text[ turkish ] = "Ykseklik";
    Text[ language_user1 ] = " ";
    Text[ catalan ] = "Alada";
    Text[ thai ] = "ความสูง";
};
String STR_OPT_ROWHEIGHT
{
    Text = "Extra" ;
    Text [ ENGLISH ] = "Extra" ;
    Text [ norwegian ] = "Ekstra " ;
    Text [ italian ] = "Extra" ;
    Text [ portuguese_brazilian ] = "Extra" ;
    Text [ portuguese ] = "Adicionar" ;
    Text [ finnish ] = "Lis" ;
    Text [ danish ] = "Tilfj" ;
    Text [ french ] = "Extra" ;
    Text [ swedish ] = "Extra" ;
    Text [ dutch ] = "Extra" ;
    Text [ spanish ] = "Aadir" ;
    Text [ english_us ] = "Add" ;
    Text[ chinese_simplified ] = "附加";
    Text[ russian ] = "";
    Text[ polish ] = "Dodaj";
    Text[ japanese ] = "詳細設定";
    Text[ chinese_traditional ] = "附加";
    Text[ arabic ] = "";
    Text[ greek ] = "";
    Text[ korean ] = "추가";
    Text[ turkish ] = "Ekle";
    Text[ language_user1 ] = " ";
    Text[ catalan ] = "Afegeix";
    Text[ thai ] = "เพิ่ม";
};
String STR_ROWHEIGHT_TITLE
{
    /* ### ACHTUNG: Neuer Text in Resource? Zeilenhhe : Zeilenhhe */
    Text = "Zeilenhhe" ;
    Text [ ENGLISH ] = "Row height" ;
    Text [ norwegian ] = "Hyde p rad " ;
    Text [ italian ] = "Altezza riga" ;
    Text [ portuguese_brazilian ] = "Altura da fileira" ;
    Text [ portuguese ] = "Altura da linha" ;
    Text [ finnish ] = "Rivin korkeus" ;
    Text [ danish ] = "Rkkehjde" ;
    Text [ french ] = "Hauteur de ligne" ;
    Text [ swedish ] = "Radhjd" ;
    Text [ dutch ] = "Rijhoogte" ;
    Text [ spanish ] = "Altura de fila" ;
    Text [ english_us ] = "Row Height" ;
    Text[ chinese_simplified ] = "行高";
    Text[ russian ] = " ";
    Text[ polish ] = "Wysoko wierszy";
    Text[ japanese ] = "行の高さ";
    Text[ chinese_traditional ] = "列高";
    Text[ arabic ] = " ";
    Text[ greek ] = " ";
    Text[ korean ] = "행 높이";
    Text[ turkish ] = "Satr ykseklii";
    Text[ language_user1 ] = " ";
    Text[ catalan ] = "Alada de la fila";
    Text[ thai ] = "ความยาวแถว";
};
String STR_OPT_ROWHEIGHT_TITLE
{
    /* ### ACHTUNG: Neuer Text in Resource? Optimale Zeilenhhe : Optimale Zeilenhhe */
    Text = "Optimale Zeilenhhe" ;
    Text [ ENGLISH ] = "Optimal row height" ;
    Text [ norwegian ] = "Optimal hyde p rad " ;
    Text [ italian ] = "Altezza riga ottimale" ;
    Text [ portuguese_brazilian ] = "Altura ?ima da fileira" ;
    Text [ portuguese ] = "Optimizar altura da linha" ;
    Text [ finnish ] = "Optimaalinen rivikorkeus" ;
    Text [ danish ] = "Optimal rkkehjde" ;
    Text [ french ] = "Hauteur de ligne optimale" ;
    Text [ swedish ] = "Optimal radhjd" ;
    Text [ dutch ] = "Optimale rijhoogte" ;
    Text [ spanish ] = "Altura ptima de fila" ;
    Text [ english_us ] = "Optimal Row Height" ;
    Text[ chinese_simplified ] = "最佳行高";
    Text[ russian ] = "  ";
    Text[ polish ] = "Optymalna wysoko wierszy";
    Text[ japanese ] = "最適な行の高さ";
    Text[ chinese_traditional ] = "最適列高";
    Text[ arabic ] = "  ";
    Text[ greek ] = "  ";
    Text[ korean ] = "최적의 행 높이";
    Text[ turkish ] = "Optimum satr ykseklii";
    Text[ language_user1 ] = " ";
    Text[ catalan ] = "Alada ptima de la fila";
    Text[ thai ] = "ความยาวแถวที่เหมาะที่สุด";
};
String STR_COLWIDTH
{
    Text = "Breite" ;
    Text [ ENGLISH ] = "Width" ;
    Text [ norwegian ] = "Bredde " ;
    Text [ italian ] = "Larghezza" ;
    Text [ portuguese_brazilian ] = "Largura" ;
    Text [ portuguese ] = "Largura" ;
    Text [ finnish ] = "Leveys" ;
    Text [ danish ] = "Bredde" ;
    Text [ french ] = "Largeur" ;
    Text [ swedish ] = "Bredd" ;
    Text [ dutch ] = "Breedte" ;
    Text [ spanish ] = "Ancho" ;
    Text [ english_us ] = "Width" ;
    Text[ chinese_simplified ] = "宽度";
    Text[ russian ] = "";
    Text[ polish ] = "Szeroko";
    Text[ japanese ] = "幅";
    Text[ chinese_traditional ] = "寬度";
    Text[ arabic ] = "";
    Text[ greek ] = "";
    Text[ korean ] = "너비";
    Text[ turkish ] = "Genilik";
    Text[ language_user1 ] = " ";
    Text[ catalan ] = "Amplada";
    Text[ thai ] = "ความกว้าง";
};
String STR_OPT_COLWIDTH
{
    Text = "Extra" ;
    Text [ ENGLISH ] = "Extra" ;
    Text [ norwegian ] = "Ekstra " ;
    Text [ italian ] = "Extra" ;
    Text [ portuguese_brazilian ] = "Extra" ;
    Text [ portuguese ] = "Adicionar" ;
    Text [ finnish ] = "Lis" ;
    Text [ danish ] = "Tilfj" ;
    Text [ french ] = "Extra" ;
    Text [ swedish ] = "Extra" ;
    Text [ dutch ] = "Extra" ;
    Text [ spanish ] = "Aadir" ;
    Text [ english_us ] = "Add" ;
    Text[ chinese_simplified ] = "附加";
    Text[ russian ] = "";
    Text[ polish ] = "Dodaj";
    Text[ japanese ] = "詳細設定";
    Text[ chinese_traditional ] = "附加";
    Text[ arabic ] = "";
    Text[ greek ] = "";
    Text[ korean ] = "추가";
    Text[ turkish ] = "Ekle";
    Text[ language_user1 ] = " ";
    Text[ catalan ] = "Afegeix";
    Text[ thai ] = "เพิ่ม";
};
String STR_COLWIDTH_TITLE
{
    Text = "Spaltenbreite" ;
    Text [ ENGLISH ] = "Column width" ;
    Text [ norwegian ] = "Bredde p kolonne " ;
    Text [ italian ] = "Larghezza colonna" ;
    Text [ portuguese_brazilian ] = "Largura da coluna" ;
    Text [ portuguese ] = "Largura da coluna" ;
    Text [ finnish ] = "Sarakkeen leveys" ;
    Text [ danish ] = "Kolonnebredde" ;
    Text [ french ] = "Largeur de colonne" ;
    Text [ swedish ] = "Kolumnbredd" ;
    Text [ dutch ] = "Kolombreedte" ;
    Text [ spanish ] = "Ancho de columna" ;
    Text [ english_us ] = "Column Width" ;
    Text[ chinese_simplified ] = "列宽";
    Text[ russian ] = " ";
    Text[ polish ] = "Szeroko kolumn";
    Text[ japanese ] = "列幅";
    Text[ chinese_traditional ] = "欄寬";
    Text[ arabic ] = " ";
    Text[ greek ] = " ";
    Text[ korean ] = "열 너비";
    Text[ turkish ] = "Stun genilii";
    Text[ language_user1 ] = " ";
    Text[ catalan ] = "Amplada de la columna";
    Text[ thai ] = "ความกว้างคอลัมน์";
};
String STR_OPT_COLWIDTH_TITLE
{
    Text = "Optimale Spaltenbreite" ;
    Text [ ENGLISH ] = "Optimal column width" ;
    Text [ norwegian ] = "Optimal bredde p kolonne " ;
    Text [ italian ] = "Larghezza colonna ottimale" ;
    Text [ portuguese_brazilian ] = "Largura ?ima da coluna" ;
    Text [ portuguese ] = "Optimizar largura da coluna" ;
    Text [ finnish ] = "Optimaalinen palstaleveys" ;
    Text [ danish ] = "Optimal kolonnebredde" ;
    Text [ french ] = "Largeur de colonne optimale" ;
    Text [ swedish ] = "Optimal kolumnbredd" ;
    Text [ dutch ] = "Optimale kolombreedte" ;
    Text [ spanish ] = "Ancho de columna ptimo" ;
    Text [ english_us ] = "Optimal Column Width" ;
    Text[ chinese_simplified ] = "最佳列宽";
    Text[ russian ] = "  ";
    Text[ polish ] = "Optymalna szeroko kolumn";
    Text[ japanese ] = "最適な列幅";
    Text[ chinese_traditional ] = "最適欄寬";
    Text[ arabic ] = "  ";
    Text[ greek ] = "  ";
    Text[ korean ] = "최적의 열 너비";
    Text[ turkish ] = "Optimum stun genilii";
    Text[ language_user1 ] = " ";
    Text[ catalan ] = "Amplada ptima de la columna";
    Text[ thai ] = "ความกว้างคอลัมน์ที่เหมาะที่สุด";
};
String SCSTR_UNDEFINED
{
    Text = "- undefiniert -" ;
    Text [ ENGLISH ] = "- undefined -" ;
    Text [ norwegian ] = "- ubestemt -" ;
    Text [ italian ] = "- non definito -" ;
    Text [ portuguese_brazilian ] = "- n?o definido -" ;
    Text [ portuguese ] = "- indefinido -" ;
    Text [ finnish ] = "- mrittmtn -" ;
    Text [ danish ] = "- udefineret -" ;
    Text [ french ] = "- indfini -" ;
    Text [ swedish ] = "- odefinierad -" ;
    Text [ dutch ] = "- niet gedefinieerd -" ;
    Text [ spanish ] = "- no definido -" ;
    Text [ english_us ] = "- undefined -" ;
    Text[ chinese_simplified ] = "- 未定义 -";
    Text[ russian ] = "-   -";
    Text[ polish ] = "- niezdefiniowany -";
    Text[ japanese ] = "- 指定なし -";
    Text[ chinese_traditional ] = "- 未定義的 -";
    Text[ arabic ] = "-   -";
    Text[ greek ] = "-   -";
    Text[ korean ] = "- 지정되지 않음 -";
    Text[ turkish ] = "- tanmlanmam -";
    Text[ language_user1 ] = " ";
    Text[ catalan ] = "- no definit -";
    Text[ thai ] = "- ไม่กำหนด -";
};
String SCSTR_NONE
{
    Text = "- keiner -" ;
    Text [ ENGLISH ] = "- none -" ;
    Text [ norwegian ] = "- none -" ;
    Text [ italian ] = "- senza -" ;
    Text [ portuguese_brazilian ] = "- nenhum -" ;
    Text [ portuguese ] = "- nenhuma -" ;
    Text [ finnish ] = "- ei mitn -" ;
    Text [ danish ] = "- ingen -" ;
    Text [ french ] = "- aucun -" ;
    Text [ swedish ] = "- ingen -" ;
    Text [ dutch ] = "- geen -" ;
    Text [ spanish ] = "- ninguno -" ;
    Text [ english_us ] = "- none -" ;
    Text[ chinese_simplified ] = "- 无 -";
    Text[ russian ] = "-  -";
    Text[ polish ] = "-brak -";
    Text[ japanese ] = "- なし -";
    Text[ chinese_traditional ] = "- 無 -";
    Text[ arabic ] = "-  -";
    Text[ greek ] = "-  -";
    Text[ korean ] = "- 없음  -";
    Text[ turkish ] = "- yok -";
    Text[ language_user1 ] = " ";
    Text[ catalan ] = "- cap -";
    Text[ thai ] = "- ไม่มี -";
};
String SCSTR_EMPTY
{
    Text = "- leer -" ;
    Text [ ENGLISH ] = "- empty -" ;
    Text [ norwegian ] = "- tom -" ;
    Text [ italian ] = "- vuoto -" ;
    Text [ portuguese_brazilian ] = "- vazio -" ;
    Text [ portuguese ] = "- vazio -" ;
    Text [ finnish ] = "- tyhj -" ;
    Text [ danish ] = "- tom -" ;
    Text [ french ] = "- vide -" ;
    Text [ swedish ] = "- tom -" ;
    Text [ dutch ] = "- leeg -" ;
    Text [ spanish ] = "- vaco -" ;
    Text [ english_us ] = "- empty -" ;
    Text[ chinese_simplified ] = "- 空缺 -";
    Text[ russian ] = "- -";
    Text[ polish ] = "- pusty -";
    Text[ japanese ] = "- 空白 -";
    Text[ chinese_traditional ] = "- 空缺 -";
    Text[ arabic ] = "-  -";
    Text[ greek ] = "-  -";
    Text[ korean ] = "- 빈 -";
    Text[ turkish ] = "- bo -";
    Text[ language_user1 ] = " ";
    Text[ catalan ] = "- buit -";
    Text[ thai ] = "- ว่าง -";
};
String SCSTR_NOTEMPTY
{
    Text = "- nicht leer -" ;
    Text [ ENGLISH ] = "- not empty -" ;
    Text [ norwegian ] = "- ikke tom -" ;
    Text [ italian ] = "- non vuoto -" ;
    Text [ portuguese_brazilian ] = "- n?o vazio -" ;
    Text [ portuguese ] = "- no vazio -" ;
    Text [ finnish ] = "- ei tyhj -" ;
    Text [ danish ] = "- ikke tom -" ;
    Text [ french ] = "- non vide -" ;
    Text [ swedish ] = "- inte tom -" ;
    Text [ dutch ] = "- niet leeg -" ;
    Text [ spanish ] = "- no vaco -" ;
    Text [ english_us ] = "- not empty -" ;
    Text[ chinese_simplified ] = "- 不空缺 -";
    Text[ russian ] = "-   -";
    Text[ polish ] = "-nie pusty -";
    Text[ japanese ] = "- 空白でない -";
    Text[ chinese_traditional ] = "- 不空缺 -";
    Text[ arabic ] = "-   -";
    Text[ greek ] = "-   -";
    Text[ korean ] = "- 비어있지 않음 -";
    Text[ turkish ] = "- bo deil -";
    Text[ language_user1 ] = " ";
    Text[ catalan ] = "- no buit -";
    Text[ thai ] = "- ไม่ว่าง -";
};
String SCSTR_NEWTABLE
{
    Text = "- neue Tabelle -" ;
    Text [ ENGLISH ] = "- new table -" ;
    Text [ norwegian ] = "- ny tabell -" ;
    Text [ italian ] = "- nuova tabella -" ;
    Text [ portuguese_brazilian ] = "- nova tabela -" ;
    Text [ portuguese ] = "- nova folha -" ;
    Text [ finnish ] = "- uusi taulukko -" ;
    Text [ danish ] = "- nyt ark -" ;
    Text [ french ] = "- nouvelle feuille -" ;
    Text [ swedish ] = "- ny tabell -" ;
    Text [ dutch ] = "- nieuw werkblad -" ;
    Text [ spanish ] = "- hoja nueva -" ;
    Text [ english_us ] = "- new sheet -" ;
    Text[ chinese_simplified ] = "- 新建工作表 -";
    Text[ russian ] = "-   -";
    Text[ polish ] = "- nowy arkusz -";
    Text[ japanese ] = "- 新しい表 -";
    Text[ chinese_traditional ] = "- 新建工作表 -";
    Text[ arabic ] = "-   -";
    Text[ greek ] = "-   -";
    Text[ korean ] = "- 새 시트 -";
    Text[ turkish ] = "- yeni tablo -";
    Text[ language_user1 ] = " ";
    Text[ catalan ] = "- full nou -";
    Text[ thai ] = "- แผ่นงานใหม่ -";
};
String SCSTR_ALL
{
    Text = "- alle -" ;
    Text [ ENGLISH ] = "- all -" ;
    Text [ norwegian ] = "- all -" ;
    Text [ italian ] = "- tutto -" ;
    Text [ portuguese_brazilian ] = "- all -" ;
    Text [ portuguese ] = "- tudo -" ;
    Text [ french ] = "- tout -" ;
    Text [ dutch ] = "- alle-" ;
    Text [ spanish ] = "- todo -" ;
    Text [ danish ] = "- alle -" ;
    Text [ swedish ] = "- alla -" ;
    Text [ finnish ] = "- kaikki -" ;
    Text [ english_us ] = "- all -" ;
    Text[ chinese_simplified ] = "- 全部 -";
    Text[ russian ] = "-  -";
    Text[ polish ] = "- wszystkie -";
    Text[ japanese ] = "- すべて -";
    Text[ chinese_traditional ] = "- 全部 -";
    Text[ arabic ] = "-  -";
    Text[ greek ] = "-  -";
    Text[ korean ] = "- 모두 -";
    Text[ turkish ] = "- tm -";
    Text[ language_user1 ] = " ";
    Text[ catalan ] = "- tot -";
    Text[ thai ] = "- ทั้งหมด -";
};
String SCSTR_STDFILTER
{
    Text = "- Standard -" ;
    Text [ ENGLISH ] = "- Standard -" ;
    Text [ english_us ] = "- Standard -" ;
    Text [ italian ] = "- Standard -" ;
    Text [ spanish ] = "- Predeterminado -" ;
    Text [ french ] = "- Standard -" ;
    Text [ dutch ] = "- Standaard -" ;
    Text [ swedish ] = "- Standard -" ;
    Text [ danish ] = "- Standard -" ;
    Text [ portuguese ] = "- Padro -" ;
    Text [ portuguese_brazilian ] = "- Standard -" ;
    Text[ chinese_simplified ] = "- 标准 -";
    Text[ russian ] = "-  -";
    Text[ polish ] = "- Domylnie-";
    Text[ japanese ] = "- 標準 -";
    Text[ chinese_traditional ] = "- 標準 -";
    Text[ arabic ] = "-  -";
    Text[ greek ] = "-  -";
    Text[ korean ] = "- 표준 -";
    Text[ turkish ] = "- Standart -";
    Text[ language_user1 ] = " ";
    Text[ catalan ] = "- Estndard -";
    Text[ finnish ] = "- Vakio -";
    Text[ thai ] = "- มาตรฐาน -";
};
String SCSTR_TOP10FILTER
{
    Text = "- Top 10 -" ;
    Text [ ENGLISH ] = "- Top 10 -" ;
    Text [ portuguese ] = "- Top 10 -" ;
    Text [ english_us ] = "- Top 10 -" ;
    Text [ portuguese_brazilian ] = "- Top 10 -" ;
    Text [ swedish ] = "- Top 10 -" ;
    Text [ danish ] = "- Top 10 -" ;
    Text [ italian ] = "- Top 10 -" ;
    Text [ spanish ] = "- Los 10 primeros -" ;
    Text [ french ] = "- Top 10 -" ;
    Text [ dutch ] = "- Top 10 -" ;
    Text[ chinese_simplified ] = "- 前 10 个 -";
    Text[ russian ] = "- 10  -";
    Text[ polish ] = "- 10 pierwszych -";
    Text[ japanese ] = "- トップ10 -";
    Text[ chinese_traditional ] = "- 前 10 個 -";
    Text[ arabic ] = "- Top 10 -";
    Text[ greek ] = "-  10 -";
    Text[ korean ] = "- 상위 10 -";
    Text[ turkish ] = "- Top 10 -";
    Text[ language_user1 ] = " ";
    Text[ catalan ] = "- Top 10 -";
    Text[ finnish ] = "- Top 10 -";
    Text[ thai ] = "- ท็อปเท็น -";
};
String SCSTR_NONAME
{
    Text = "unbenannt" ;
    Text [ ENGLISH ] = "unknown" ;
    Text [ norwegian ] = "ukjent" ;
    Text [ italian ] = "Senza nome" ;
    Text [ portuguese_brazilian ] = "desconhecido" ;
    Text [ portuguese ] = "sem nome" ;
    Text [ finnish ] = "nimetn" ;
    Text [ danish ] = "ikke-navngivet" ;
    Text [ french ] = "Sans nom" ;
    Text [ swedish ] = "namnls" ;
    Text [ dutch ] = "naamloos" ;
    Text [ spanish ] = "Sin nombre" ;
    Text [ english_us ] = "unnamed" ;
    Text[ chinese_simplified ] = "未命名";
    Text[ russian ] = " ";
    Text[ polish ] = "bez nazwy";
    Text[ japanese ] = "無題";
    Text[ chinese_traditional ] = "未命名";
    Text[ arabic ] = " ";
    Text[ greek ] = " ";
    Text[ korean ] = "이름 없음";
    Text[ turkish ] = "bilinmeyen";
    Text[ language_user1 ] = " ";
    Text[ catalan ] = "sense nom";
    Text[ thai ] = "ไม่มีชื่อ";
};
String SCSTR_COLUMN
{
    Text = "Spalte" ;
    Text [ ENGLISH ] = "Column" ;
    Text [ norwegian ] = "Column" ;
    Text [ italian ] = "Colonna" ;
    Text [ portuguese_brazilian ] = "Coluna" ;
    Text [ portuguese ] = "Coluna" ;
    Text [ finnish ] = "Sarake" ;
    Text [ danish ] = "Kolonne" ;
    Text [ french ] = "Colonne" ;
    Text [ swedish ] = "Kolumn" ;
    Text [ dutch ] = "Kolom" ;
    Text [ spanish ] = "Columna" ;
    Text [ english_us ] = "Column" ;
    Text[ chinese_simplified ] = "列";
    Text[ russian ] = "";
    Text[ polish ] = "Kolumna";
    Text[ japanese ] = "列";
    Text[ chinese_traditional ] = "欄";
    Text[ arabic ] = "";
    Text[ greek ] = "";
    Text[ korean ] = "단";
    Text[ turkish ] = "Stun";
    Text[ language_user1 ] = " ";
    Text[ catalan ] = "Columna";
    Text[ thai ] = "คอลัมน์";
};
String SCSTR_ROW
{
    Text = "Zeile" ;
    Text [ ENGLISH ] = "Row" ;
    Text [ norwegian ] = "Row" ;
    Text [ italian ] = "Riga" ;
    Text [ portuguese_brazilian ] = "Fileira" ;
    Text [ portuguese ] = "Linha" ;
    Text [ finnish ] = "Rivi" ;
    Text [ danish ] = "Rkke" ;
    Text [ french ] = "Ligne" ;
    Text [ swedish ] = "Rad" ;
    Text [ dutch ] = "Rij" ;
    Text [ spanish ] = "Fila" ;
    Text [ english_us ] = "Row" ;
    Text[ chinese_simplified ] = "行";
    Text[ russian ] = "";
    Text[ polish ] = "Wiersz";
    Text[ japanese ] = "列";
    Text[ chinese_traditional ] = "列";
    Text[ arabic ] = "";
    Text[ greek ] = "";
    Text[ korean ] = "행";
    Text[ turkish ] = "Satr";
    Text[ language_user1 ] = " ";
    Text[ catalan ] = "fila";
    Text[ thai ] = "แถว";
};
String SCSTR_NEW
{
    Text = "~Neu" ;
    Text [ ENGLISH ] = "~New" ;
    Text [ norwegian ] = "~New" ;
    Text [ italian ] = "~Nuovo" ;
    Text [ portuguese_brazilian ] = "~Novo" ;
    Text [ portuguese ] = "~Novo" ;
    Text [ finnish ] = "~Uusi" ;
    Text [ danish ] = "Ny" ;
    Text [ french ] = "Nou~veau" ;
    Text [ swedish ] = "~Nytt" ;
    Text [ dutch ] = "~Nieuw" ;
    Text [ spanish ] = "~Nuevo" ;
    Text [ english_us ] = "~New" ;
    Text[ chinese_simplified ] = "新建(~N)";
    Text[ russian ] = "";
    Text[ polish ] = "Nowy";
    Text[ japanese ] = "新規作成(~N)";
    Text[ chinese_traditional ] = "開啟新檔(~N)";
    Text[ arabic ] = "";
    Text[ greek ] = "";
    Text[ korean ] = "새로 만들기(~N)";
    Text[ turkish ] = "~Yeni";
    Text[ language_user1 ] = " ";
    Text[ catalan ] = "~Nou";
    Text[ thai ] = "ใ~หม่";
};
String SCSTR_ADD
{
    /* ### ACHTUNG: Neuer Text in Resource? ~Hinzufgen : ~Hinzufgen */
    Text = "~Hinzufgen" ;
    Text [ ENGLISH ] = "~Add" ;
    Text [ norwegian ] = "Leg~g til" ;
    Text [ italian ] = "A~ggiungi" ;
    Text [ portuguese_brazilian ] = "~Acrescentar" ;
    Text [ portuguese ] = "~Adicionar" ;
    Text [ finnish ] = "~Lis" ;
    Text [ danish ] = "Tilfj" ;
    Text [ french ] = "Ajouter" ;
    Text [ swedish ] = "~Lgg till" ;
    Text [ dutch ] = "To~evoegen" ;
    Text [ spanish ] = "~Aadir" ;
    Text [ english_us ] = "~Add" ;
    Text[ chinese_simplified ] = "新增(~A)";
    Text[ russian ] = "";
    Text[ polish ] = "Dodaj";
    Text[ japanese ] = "追加(~A)";
    Text[ chinese_traditional ] = "新增(~A)";
    Text[ arabic ] = "";
    Text[ greek ] = "";
    Text[ korean ] = "추가(~A)";
    Text[ turkish ] = "~Ekle";
    Text[ language_user1 ] = " ";
    Text[ catalan ] = "~Afegeix";
    Text[ thai ] = "เ~พิ่ม";
};
String SCSTR_REMOVE
{
    /* ### ACHTUNG: Neuer Text in Resource? ~Lschen : ~Lschen */
    Text = "~Lschen" ;
    Text [ ENGLISH ] = "~Remove" ;
    Text [ norwegian ] = "~Fjern" ;
    Text [ italian ] = "Elimina" ;
    Text [ portuguese_brazilian ] = "~Remover" ;
    Text [ portuguese ] = "~Eliminar" ;
    Text [ finnish ] = "~Poista" ;
    Text [ danish ] = "Slet" ;
    Text [ french ] = "Supprimer" ;
    Text [ swedish ] = "~Radera" ;
    Text [ dutch ] = "~Wissen" ;
    Text [ spanish ] = "~Borrar" ;
    Text [ english_us ] = "~Delete" ;
    Text[ chinese_simplified ] = "删除(~D)";
    Text[ russian ] = "";
    Text[ polish ] = "Usu";
    Text[ japanese ] = "削除(~D)";
    Text[ chinese_traditional ] = "刪除(~D)";
    Text[ arabic ] = "";
    Text[ greek ] = "";
    Text[ korean ] = "삭제(~D)";
    Text[ turkish ] = "~Sil";
    Text[ language_user1 ] = " ";
    Text[ catalan ] = "~Suprimeix";
    Text[ thai ] = "~ลบ";
};
String SCSTR_CANCEL
{
    Text = "Ab~brechen" ;
    Text [ ENGLISH ] = "Cance~l" ;
    Text [ norwegian ] = "Avbry~t" ;
    Text [ italian ] = "Annulla" ;
    Text [ portuguese_brazilian ] = "Cancela~r" ;
    Text [ portuguese ] = "Cancela~r" ;
    Text [ finnish ] = "Peruu~ta" ;
    Text [ danish ] = "Annuller" ;
    Text [ french ] = "Annuler" ;
    Text [ swedish ] = "Av~bryt" ;
    Text [ dutch ] = "~Annuleren" ;
    Text [ spanish ] = "Can~celar" ;
    Text [ english_us ] = "Cance~l" ;
    Text[ chinese_simplified ] = "取消(~L)";
    Text[ russian ] = "";
    Text[ polish ] = "Anuluj";
    Text[ japanese ] = "キャンセル(~L)";
    Text[ chinese_traditional ] = "取消(~L)";
    Text[ arabic ] = " ";
    Text[ greek ] = "";
    Text[ korean ] = "취소(~L)";
    Text[ turkish ] = "~ptal";
    Text[ language_user1 ] = " ";
    Text[ catalan ] = "cance~l.la";
    Text[ thai ] = "ยกเลิ~ก";
};
String SCSTR_MODIFY
{
    /* ### ACHTUNG: Neuer Text in Resource? ~ndern : ~ndern */
    Text = "~ndern" ;
    Text [ ENGLISH ] = "Modif~y" ;
    Text [ norwegian ] = "Modif~y" ;
    Text [ italian ] = "~Cambia" ;
    Text [ portuguese_brazilian ] = "Modif~icar" ;
    Text [ portuguese ] = "Modif~icar" ;
    Text [ finnish ] = "~Muuta" ;
    Text [ danish ] = "Modificer" ;
    Text [ french ] = "Modifier" ;
    Text [ swedish ] = "~ndra" ;
    Text [ dutch ] = "Wij~zigen" ;
    Text [ spanish ] = "~Modificar" ;
    Text [ english_us ] = "Modif~y" ;
    Text[ chinese_simplified ] = "更改(~Y)";
    Text[ russian ] = "";
    Text[ polish ] = "Modyfikuj";
    Text[ japanese ] = "変更(~Y)";
    Text[ chinese_traditional ] = "修改(~Y)";
    Text[ arabic ] = "";
    Text[ greek ] = "";
    Text[ korean ] = "변경(~Y)";
    Text[ turkish ] = "~Deitir";
    Text[ language_user1 ] = " ";
    Text[ catalan ] = "Modif~ica";
    Text[ thai ] = "ดัดแปล~ง";
};


String SCSTR_SHOWTABLE
{
    Text = "Tabelle einblenden" ;
    Text [ ENGLISH ] = "Show table" ;
    Text [ norwegian ] = "Vis tabell" ;
    Text [ italian ] = "Mostra tabella" ;
    Text [ portuguese_brazilian ] = "Mostrar tabela" ;
    Text [ portuguese ] = "Mostrar folha" ;
    Text [ finnish ] = "Nyt taulukko" ;
    Text [ danish ] = "Vis ark" ;
    Text [ french ] = "Afficher la feuille" ;
    Text [ swedish ] = "Visa tabell" ;
    Text [ dutch ] = "Werkblad weergeven" ;
    Text [ spanish ] = "Mostrar hoja" ;
    Text [ english_us ] = "Show Sheet" ;
    Text[ chinese_simplified ] = "显示工作表";
    Text[ russian ] = " ";
    Text[ polish ] = "Poka tabel";
    Text[ japanese ] = "表の表示";
    Text[ chinese_traditional ] = "顯示工作表";
    Text[ arabic ] = " ";
    Text[ greek ] = " ";
    Text[ korean ] = "시트 표시";
    Text[ turkish ] = "Tabloyu grntle";
    Text[ language_user1 ] = " ";
    Text[ catalan ] = "Mostra el full";
    Text[ thai ] = "แสดงแผ่นงาน";
};
String SCSTR_HIDDENTABLES
{
    Text = "Ausgeblendete Tabellen" ;
    Text [ ENGLISH ] = "Hidden tables" ;
    Text [ norwegian ] = "Skjulte tabeller" ;
    Text [ italian ] = "Tabelle nascoste" ;
    Text [ portuguese_brazilian ] = "Ocultar tabelas" ;
    Text [ portuguese ] = "Folhas de clculo ocultas" ;
    Text [ finnish ] = "Piilotetut taulukot" ;
    Text [ danish ] = "Skjulte ark" ;
    Text [ french ] = "Feuilles masques" ;
    Text [ swedish ] = "Dolda tabeller" ;
    Text [ dutch ] = "Verborgen werkbladen" ;
    Text [ spanish ] = "Hojas ocultas" ;
    Text [ english_us ] = "Hidden Sheets" ;
    Text[ chinese_simplified ] = "隐入的工作表";
    Text[ russian ] = " ";
    Text[ polish ] = "Ukryte arkusze";
    Text[ japanese ] = "非表示の表";
    Text[ chinese_traditional ] = "隱入的工作表";
    Text[ arabic ] = " ";
    Text[ greek ] = " ";
    Text[ korean ] = "숨겨진 시트";
    Text[ turkish ] = "Gizlenmi tablolar";
    Text[ language_user1 ] = " ";
    Text[ catalan ] = "Fulls ocults";
    Text[ thai ] = "ซ่อนแผ่นงาน";
};
String SCSTR_SELECTDB
{
    /* ### ACHTUNG: Neuer Text in Resource? Datenbankbereich whlen : Datenbankbereich whlen */
    Text = "Datenbankbereich whlen" ;
    Text [ ENGLISH ] = "Select Database" ;
    Text [ norwegian ] = "Velg database" ;
    Text [ italian ] = "Seleziona area database" ;
    Text [ portuguese_brazilian ] = "Selecionar Base de Dados" ;
    Text [ portuguese ] = "Seleccionar rea da base de dados" ;
    Text [ finnish ] = "Valitse tietokanta-alue" ;
    Text [ danish ] = "Vlg databaseomrde" ;
    Text [ french ] = "Slectionner une plage de base de donnes" ;
    Text [ swedish ] = "Vlj databasomrde" ;
    Text [ dutch ] = "Databasebereik selecteren" ;
    Text [ spanish ] = "Seleccionar rea de base de datos" ;
    Text [ english_us ] = "Select Database Range" ;
    Text[ chinese_simplified ] = "选择数据库区域";
    Text[ russian ] = "  ";
    Text[ polish ] = "Zaznacz obszar bazy danych";
    Text[ japanese ] = "データベース範囲の選択";
    Text[ chinese_traditional ] = "選擇資料庫區域";
    Text[ arabic ] = "   ";
    Text[ greek ] = "   ";
    Text[ korean ] = "데이터베이스 범위 선택";
    Text[ turkish ] = "Veritaban araln se";
    Text[ language_user1 ] = " ";
    Text[ catalan ] = "Seleccioneu l'rea de la base de dades";
    Text[ thai ] = "เลือกช่วงฐานข้อมูล";
};
String SCSTR_AREAS
{
    Text = "~Bereiche" ;
    Text [ ENGLISH ] = "Table ~areas" ;
    Text [ norwegian ] = "Tabellomrde" ;
    Text [ italian ] = "Aree" ;
    Text [ portuguese_brazilian ] = "?reas da tabela" ;
    Text [ portuguese ] = "~reas" ;
    Text [ finnish ] = "Alueet" ;
    Text [ danish ] = "~Omrder" ;
    Text [ french ] = "~Plages" ;
    Text [ swedish ] = "~Omrden" ;
    Text [ dutch ] = "~Bereiken" ;
    Text [ spanish ] = "reas" ;
    Text [ english_us ] = "Ranges" ;
    Text[ chinese_simplified ] = "区域";
    Text[ russian ] = "";
    Text[ polish ] = "Obszary";
    Text[ japanese ] = "範囲";
    Text[ chinese_traditional ] = "區域";
    Text[ arabic ] = "";
    Text[ greek ] = "~";
    Text[ korean ] = "범위";
    Text[ turkish ] = "Aralklar";
    Text[ language_user1 ] = " ";
    Text[ catalan ] = "rees";
    Text[ thai ] = "ช่วง";
};
String SCSTR_TABLE
{
    Text = "Tabelle" ;
    Text [ ENGLISH ] = "Table" ;
    Text [ norwegian ] = "Table" ;
    Text [ italian ] = "Tabella" ;
    Text [ portuguese_brazilian ] = "Tabela" ;
    Text [ portuguese ] = "Folha" ;
    Text [ finnish ] = "Taulukko" ;
    Text [ danish ] = "Ark" ;
    Text [ french ] = "Feuille" ;
    Text [ swedish ] = "Tabell" ;
    Text [ dutch ] = "Werkblad" ;
    Text [ spanish ] = "Hoja" ;
    Text [ english_us ] = "Sheet" ;
    Text[ chinese_simplified ] = "工作表";
    Text[ russian ] = "";
    Text[ polish ] = "Arkusz";
    Text[ japanese ] = "表";
    Text[ chinese_traditional ] = "工作表";
    Text[ arabic ] = "";
    Text[ greek ] = "";
    Text[ korean ] = "시트";
    Text[ turkish ] = "Tablo";
    Text[ language_user1 ] = " ";
    Text[ catalan ] = "Full";
    Text[ thai ] = "แผ่นงาน";
};
String SCSTR_NAME
{
    Text = "Name" ;
    Text [ ENGLISH ] = "Name" ;
    Text [ norwegian ] = "Navn" ;
    Text [ italian ] = "Nome" ;
    Text [ portuguese_brazilian ] = "Nomear" ;
    Text [ portuguese ] = "Nome" ;
    Text [ finnish ] = "Nimi" ;
    Text [ danish ] = "Navn" ;
    Text [ french ] = "Nom" ;
    Text [ swedish ] = "Namn" ;
    Text [ dutch ] = "Naam" ;
    Text [ spanish ] = "Nombre" ;
    Text [ english_us ] = "Name" ;
    Text[ chinese_simplified ] = "名称";
    Text[ russian ] = "";
    Text[ polish ] = "Nazwa";
    Text[ japanese ] = "名前";
    Text[ chinese_traditional ] = "名稱";
    Text[ arabic ] = "";
    Text[ greek ] = "";
    Text[ korean ] = "이름";
    Text[ turkish ] = "Ad";
    Text[ language_user1 ] = " ";
    Text[ catalan ] = "Nom";
    Text[ thai ] = "ชื่อ";
};
String SCSTR_INSTABLE
{
    /* ### ACHTUNG: Neuer Text in Resource? Tabelle einfgen : Tabelle einfgen */
    Text = "Tabelle einfgen" ;
    Text [ ENGLISH ] = "Insert Table" ;
    Text [ norwegian ] = "Sett inn tabell" ;
    Text [ italian ] = "Inserisci tabella" ;
    Text [ portuguese_brazilian ] = "Insere Tabela" ;
    Text [ portuguese ] = "Inserir folha" ;
    Text [ finnish ] = "Lis taulukko" ;
    Text [ danish ] = "Indst ark" ;
    Text [ french ] = "Insrer des feuilles" ;
    Text [ swedish ] = "Infoga tabell" ;
    Text [ dutch ] = "Werkblad invoegen" ;
    Text [ spanish ] = "Insertar hoja" ;
    Text [ english_us ] = "Insert Sheet" ;
    Text[ chinese_simplified ] = "插入工作表";
    Text[ russian ] = " ";
    Text[ polish ] = "Wstaw arkusz";
    Text[ japanese ] = "表の挿入";
    Text[ chinese_traditional ] = "插入工作表";
    Text[ arabic ] = " ";
    Text[ greek ] = " ";
    Text[ korean ] = "시트 삽입";
    Text[ turkish ] = "Tablo ekle";
    Text[ language_user1 ] = " ";
    Text[ catalan ] = "Insereix un full";
    Text[ thai ] = "แทรกแผ่นงาน";
};
String SCSTR_APDTABLE
{
    /* ### ACHTUNG: Neuer Text in Resource? Tabelle anhngen : Tabelle anhngen */
    Text = "Tabelle anhngen" ;
    Text [ ENGLISH ] = "Append Table" ;
    Text [ norwegian ] = "Fy til tabell" ;
    Text [ italian ] = "Allega tabella" ;
    Text [ portuguese_brazilian ] = "Anexar Tabela" ;
    Text [ portuguese ] = "Anexar folha" ;
    Text [ finnish ] = "Liit taulukko" ;
    Text [ danish ] = "Vedhft ark" ;
    Text [ french ] = "Annexer la feuille" ;
    Text [ swedish ] = "Tillfoga tabell" ;
    Text [ dutch ] = "Werkblad toevoegen" ;
    Text [ spanish ] = "Adjuntar hoja" ;
    Text [ english_us ] = "Append Sheet" ;
    Text[ chinese_simplified ] = "附加工作表";
    Text[ russian ] = " ";
    Text[ polish ] = "Docz arkusz";
    Text[ japanese ] = "表を添付する";
    Text[ chinese_traditional ] = "附加工作表";
    Text[ arabic ] = " ";
    Text[ greek ] = " ";
    Text[ korean ] = "시트 추가";
    Text[ turkish ] = "Tablo ekle";
    Text[ language_user1 ] = " ";
    Text[ catalan ] = "Afegeix un full";
    Text[ thai ] = "ผนวกแผ่นงาน";
};
String SCSTR_RENAMETAB
{
    Text = "Tabelle umbenennen" ;
    Text [ ENGLISH ] = "Rename Table" ;
    Text [ english_us ] = "Rename Sheet" ;
    Text [ italian ] = "Rinomina tabella" ;
    Text [ spanish ] = "Cambiar nombre de hoja" ;
    Text [ french ] = "Renommer la feuille" ;
    Text [ dutch ] = "Werkbladnaam wijzigen" ;
    Text [ swedish ] = "Byt namn p tabell" ;
    Text [ danish ] = "Omdb ark" ;
    Text [ portuguese ] = "Mudar nome da folha" ;
    Text [ portuguese_brazilian ] = "Tabelle umbenennen" ;
    Text[ chinese_simplified ] = "重命名工作表";
    Text[ russian ] = " ";
    Text[ polish ] = "Zmie nazw arkusza";
    Text[ japanese ] = "表の名前変更";
    Text[ chinese_traditional ] = "重新命名工作表";
    Text[ arabic ] = "  ";
    Text[ greek ] = " ";
    Text[ korean ] = "시트 이름 바꾸기";
    Text[ turkish ] = "Tabloyu yeniden adlandr";
    Text[ language_user1 ] = " ";
    Text[ catalan ] = "Reanomena el full";
    Text[ finnish ] = "Nime taulukko uudelleen";
    Text[ thai ] = "เปลี่ยนชื่อแผ่นงาน";
};
String SCSTR_RENAMEOBJECT
{
    Text = "Objekt benennen" ;
    Text [ ENGLISH ] = "Name Object" ;
    Text[ english_us ] = "Name object";
    Text[ portuguese ] = "Name Object";
    Text[ russian ] = " ";
    Text[ greek ] = "Name Object";
    Text[ dutch ] = "Naam geven aan object";
    Text[ french ] = "Nommer l'objet";
    Text[ spanish ] = "Nombrar objeto";
    Text[ finnish ] = "Nime objekti";
    Text[ italian ] = "Nome oggetto";
    Text[ danish ] = "Navngiv objekt";
    Text[ swedish ] = "Namnge objekt";
    Text[ polish ] = "Name Object";
    Text[ portuguese_brazilian ] = "Name Object";
    Text[ japanese ] = "オブジェクトに名前を付ける";
    Text[ korean ] = "개체 이름 지정";
    Text[ chinese_simplified ] = "命名对象";
    Text[ chinese_traditional ] = "命名物件";
    Text[ turkish ] = "Name Object";
    Text[ arabic ] = "Name Object";
    Text[ catalan ] = "Name Object";
    Text[ thai ] = "วัตถุชื่อ";
};
String STR_INSERTGRAPHIC
{
    /* ### ACHTUNG: Neuer Text in Resource? Grafik einfgen : Grafik einfgen */
    Text = "Grafik einfgen" ;
    Text [ ENGLISH ] = "Insert image" ;
    Text [ norwegian ] = "Sett inn bilde" ;
    Text [ italian ] = "Inserisci immagine" ;
    Text [ portuguese_brazilian ] = "Insere imagem" ;
    Text [ portuguese ] = "Inserir imagem" ;
    Text [ finnish ] = "Lis grafiikkaa" ;
    Text [ danish ] = "Indst grafik" ;
    Text [ french ] = "Insrer une image" ;
    Text [ swedish ] = "Infoga grafik" ;
    Text [ dutch ] = "Afbeelding invoegen" ;
    Text [ spanish ] = "Insertar imagen" ;
    Text [ english_us ] = "Insert Graphics" ;
    Text[ chinese_simplified ] = "插入图形";
    Text[ russian ] = "  ";
    Text[ polish ] = "Wstaw obraz";
    Text[ japanese ] = "図の挿入";
    Text[ chinese_traditional ] = "插入圖形";
    Text[ arabic ] = " ";
    Text[ greek ] = " ";
    Text[ korean ] = "그림 삽입";
    Text[ turkish ] = "Grafik ekle";
    Text[ language_user1 ] = " ";
    Text[ catalan ] = "Insereix grfics";
    Text[ thai ] = "แทรกกราฟิค";
};

 //      Attribute

String SCSTR_HOR_JUSTIFY_LEFT
{
    Text = "Ausrichtung nach links" ;
    Text [ ENGLISH ] = "Adjust left" ;
    Text [ norwegian ] = "Juster til venstre" ;
    Text [ italian ] = "Allinea a sinistra" ;
    Text [ portuguese_brazilian ] = "Ajustar o esquerda" ;
    Text [ portuguese ] = "Ajustar  esquerda" ;
    Text [ finnish ] = "Tasaa vasemmalle" ;
    Text [ danish ] = "Venstrejusteret" ;
    Text [ french ] = "Alignement  gauche" ;
    Text [ swedish ] = "Vnsterjustera" ;
    Text [ dutch ] = "Linkslijnend" ;
    Text [ spanish ] = "Alinear a la izquierda" ;
    Text [ english_us ] = "Align left" ;
    Text[ chinese_simplified ] = "向左对齐";
    Text[ russian ] = "   ";
    Text[ polish ] = "Wyrwnaj do lewej";
    Text[ japanese ] = "左揃え";
    Text[ chinese_traditional ] = "向左對齊";
    Text[ arabic ] = "  ";
    Text[ greek ] = " ";
    Text[ korean ] = "왼쪽 맞춤";
    Text[ turkish ] = "Sola hizala";
    Text[ language_user1 ] = " ";
    Text[ catalan ] = "Alinea a l'esquerra";
    Text[ thai ] = "จัดตำแหน่งซ้าย";
};
String SCSTR_HOR_JUSTIFY_CENTER
{
    Text = "Horizontal zentriert" ;
    Text [ ENGLISH ] = "Center horizontally" ;
    Text [ norwegian ] = "Midtstill horisontal " ;
    Text [ italian ] = "Centra in senso orizzontale" ;
    Text [ portuguese_brazilian ] = "Centrar horizontalmente" ;
    Text [ portuguese ] = "Centrado na horizontal" ;
    Text [ finnish ] = "Keskitetty vaakataso" ;
    Text [ danish ] = "Vandret centreret" ;
    Text [ french ] = "Centr horizontalement" ;
    Text [ swedish ] = "Horisontellt centrerad" ;
    Text [ dutch ] = "Horizontaal gecentreerd" ;
    Text [ spanish ] = "Centrado horizontalmente" ;
    Text [ english_us ] = "Centered horizontally" ;
    Text[ chinese_simplified ] = "水平居中";
    Text[ russian ] = "  ";
    Text[ polish ] = "Poziomo do rodka";
    Text[ japanese ] = "横位置に中央揃え";
    Text[ chinese_traditional ] = "水平置中";
    Text[ arabic ] = " ";
    Text[ greek ] = " ";
    Text[ korean ] = "수평으로 가운데";
    Text[ turkish ] = "Yatay ortala";
    Text[ language_user1 ] = " ";
    Text[ catalan ] = "Centrat horitzontalment";
    Text[ thai ] = "แนวนอนตรงกลาง";
};
String SCSTR_HOR_JUSTIFY_RIGHT
{
    Text = "Ausrichtung nach rechts" ;
    Text [ ENGLISH ] = "Adjust right" ;
    Text [ norwegian ] = "Juster til hyre " ;
    Text [ italian ] = "Allinea a destra" ;
    Text [ portuguese_brazilian ] = "Ajustar o direita" ;
    Text [ portuguese ] = "Ajustar  direita" ;
    Text [ finnish ] = "Tasaa oikealle" ;
    Text [ danish ] = "Hjrejusteret" ;
    Text [ french ] = "Aligner  droite" ;
    Text [ swedish ] = "Hgerjustera" ;
    Text [ dutch ] = "Rechtslijnend" ;
    Text [ spanish ] = "Alinear a la derecha" ;
    Text [ english_us ] = "Align right" ;
    Text[ chinese_simplified ] = "向右对齐";
    Text[ russian ] = "   ";
    Text[ polish ] = "Wyrwnaj do prawej";
    Text[ japanese ] = "右揃え";
    Text[ chinese_traditional ] = "向右對齊";
    Text[ arabic ] = "  ";
    Text[ greek ] = " ";
    Text[ korean ] = "오른쪽 맞춤";
    Text[ turkish ] = "Saa hizala";
    Text[ language_user1 ] = " ";
    Text[ catalan ] = "Alinea a la dreta";
    Text[ thai ] = "จัดตำแหน่งขวา";
};
String SCSTR_HOR_JUSTIFY_BLOCK
{
    Text = "Blockausrichtung" ;
    Text [ ENGLISH ] = "Block" ;
    Text [ norwegian ] = "Datablokk " ;
    Text [ italian ] = "Giustificato" ;
    Text [ portuguese_brazilian ] = "Bloco" ;
    Text [ portuguese ] = "Justificar" ;
    Text [ finnish ] = "Tasaa" ;
    Text [ danish ] = "Lige margener" ;
    Text [ french ] = "Alignement bloc" ;
    Text [ swedish ] = "Blockjustering" ;
    Text [ dutch ] = "Uitgevuld" ;
    Text [ spanish ] = "Justificado" ;
    Text [ english_us ] = "Justify" ;
    Text[ chinese_simplified ] = "左右对齐";
    Text[ russian ] = " ";
    Text[ polish ] = "Wyjustowany";
    Text[ japanese ] = "両端揃え";
    Text[ chinese_traditional ] = "左右對齊";
    Text[ arabic ] = "";
    Text[ greek ] = " ";
    Text[ korean ] = "양쪽 맞춤";
    Text[ turkish ] = "ki yana yasla";
    Text[ language_user1 ] = " ";
    Text[ catalan ] = "Justifica";
    Text[ thai ] = "ชิดขอบ";
};
String SCSTR_HOR_JUSTIFY_REPEAT
{
    Text = "Ausrichtung wiederholen" ;
    Text [ ENGLISH ] = "Adjust repeat" ;
    Text [ norwegian ] = "Juster gjenta+++Adjust repeat" ;
    Text [ italian ] = "Ripeti allineamento" ;
    Text [ portuguese_brazilian ] = "Ajuste repetido" ;
    Text [ portuguese ] = "Repetir alinhamento" ;
    Text [ finnish ] = "Toista tasaus" ;
    Text [ danish ] = "Gentag justeringen" ;
    Text [ french ] = "Rpter l'alignement" ;
    Text [ swedish ] = "Upprepa justering" ;
    Text [ dutch ] = "Uitlijnen herhalen" ;
    Text [ spanish ] = "Repetir alineacin" ;
    Text [ english_us ] = "Repeat alignment" ;
    Text[ chinese_simplified ] = "重新对齐";
    Text[ russian ] = " ";
    Text[ polish ] = "Powtrz wyrwnanie";
    Text[ japanese ] = "配置のリピート";
    Text[ chinese_traditional ] = "重新對齊";
    Text[ arabic ] = " ";
    Text[ greek ] = " ";
    Text[ korean ] = "맞춤 반복";
    Text[ turkish ] = "Hizalamay yinele";
    Text[ language_user1 ] = " ";
    Text[ catalan ] = "Repeteix l'alineaci";
    Text[ thai ] = "จัดตำแหน่งซ้ำ";
};
String SCSTR_HOR_JUSTIFY_STANDARD
{
    Text = "Horizontale Ausrichtung Standard" ;
    Text [ ENGLISH ] = "Adjust standard" ;
    Text [ norwegian ] = "Tilpass Standard " ;
    Text [ italian ] = "Allineamento standard orizzontale" ;
    Text [ portuguese_brazilian ] = "Ajuste padr?o" ;
    Text [ portuguese ] = "Ajuste padro na horizontal" ;
    Text [ finnish ] = "Vaakatasaus oletuksena" ;
    Text [ danish ] = "Standard vandret justering" ;
    Text [ french ] = "Alignement horizontal par dfaut" ;
    Text [ swedish ] = "Horisontell justering standard" ;
    Text [ dutch ] = "Standaard horizontaal uitlijnen" ;
    Text [ spanish ] = "Alineacin horizontal preterminada" ;
    Text [ english_us ] = "Horizontal alignment default" ;
    Text[ chinese_simplified ] = "水平对齐 标准";
    Text[ russian ] = "  ()";
    Text[ polish ] = "Domylne wyrwnanie w poziomie";
    Text[ japanese ] = "標準横位置";
    Text[ chinese_traditional ] = "水平對齊 標準";
    Text[ arabic ] = "  ";
    Text[ language_user1 ] = " ";
    Text[ greek ] = ":  ";
    Text[ korean ] = "기본 수평 맞춤";
    Text[ turkish ] = "Standart yatay hizalama";
    Text[ catalan ] = "Alineament horitzontal per defecte";
    Text[ thai ] = "ค่าเริ่มต้นการจัดตำแหน่งแนวนอน";
};
String SCSTR_VER_JUSTIFY_TOP
{
    Text = "Ausrichtung nach oben" ;
    Text [ ENGLISH ] = "Adjust top" ;
    Text [ norwegian ] = "Tilpass Topp " ;
    Text [ italian ] = "Allinea in alto" ;
    Text [ portuguese_brazilian ] = "Ajustar topo" ;
    Text [ portuguese ] = "Ajustar para cima" ;
    Text [ finnish ] = "Tasaa yls" ;
    Text [ danish ] = "Juster opad" ;
    Text [ french ] = "Alignement au bord suprieur" ;
    Text [ swedish ] = "Justera uppt" ;
    Text [ dutch ] = "Op bovenkant uitlijnen" ;
    Text [ spanish ] = "Alinear arriba" ;
    Text [ english_us ] = "Align to top" ;
    Text[ chinese_simplified ] = "向上对齐";
    Text[ russian ] = "   ";
    Text[ polish ] = "Wyrwnanie do gry";
    Text[ japanese ] = "上揃え";
    Text[ chinese_traditional ] = "向上對齊";
    Text[ arabic ] = "  ";
    Text[ greek ] = " ";
    Text[ korean ] = "위에 맞춤";
    Text[ turkish ] = "Yukar hizala";
    Text[ language_user1 ] = " ";
    Text[ catalan ] = "Alinea a la part superior";
    Text[ thai ] = "จัดตำแหน่งชิดด้านบน";
};
String SCSTR_VER_JUSTIFY_CENTER
{
    Text = "Vertikal zentriert" ;
    Text [ ENGLISH ] = "Center vertically" ;
    Text [ norwegian ] = "Midtstill vertikal " ;
    Text [ italian ] = "Centra in verticale" ;
    Text [ portuguese_brazilian ] = "Centrar verticalmente" ;
    Text [ portuguese ] = "Centrado na vertical" ;
    Text [ finnish ] = "Keskitetty pystytasossa" ;
    Text [ danish ] = "Lodret centreret" ;
    Text [ french ] = "Centr verticalement" ;
    Text [ swedish ] = "Vertikalt centrerad" ;
    Text [ dutch ] = "Verticaal gecentreerd" ;
    Text [ spanish ] = "Centrado verticalmente" ;
    Text [ english_us ] = "Centered vertically" ;
    Text[ chinese_simplified ] = "垂直居中";
    Text[ russian ] = "  ";
    Text[ polish ] = "Wyrodkowany w pionie";
    Text[ japanese ] = "上下に中央揃え";
    Text[ chinese_traditional ] = "垂直置中";
    Text[ arabic ] = " ";
    Text[ greek ] = " ";
    Text[ korean ] = "수직으로 가운데";
    Text[ turkish ] = "Dikey ortala";
    Text[ language_user1 ] = " ";
    Text[ catalan ] = "Centrat verticalment";
    Text[ thai ] = "แนวตั้งตรงกลาง";
};
String SCSTR_VER_JUSTIFY_BOTTOM
{
    Text = "Ausrichtung nach unten" ;
    Text [ ENGLISH ] = "Adjust bottom" ;
    Text [ norwegian ] = "Tilpass Bunn" ;
    Text [ italian ] = "Allinea in basso" ;
    Text [ portuguese_brazilian ] = "Ajuste na base" ;
    Text [ portuguese ] = "Ajustar para baixo" ;
    Text [ finnish ] = "Tasaa alareunaan" ;
    Text [ danish ] = "Juster nedad" ;
    Text [ french ] = "Alignement en bas" ;
    Text [ swedish ] = "Justera nedt" ;
    Text [ dutch ] = "Op onderkant uitlijnen" ;
    Text [ spanish ] = "Alinear abajo" ;
    Text [ english_us ] = "Align to bottom" ;
    Text[ chinese_simplified ] = "向下对齐";
    Text[ russian ] = "   ";
    Text[ polish ] = "Wyrwanie do dou";
    Text[ japanese ] = "下揃え";
    Text[ chinese_traditional ] = "向下對齊";
    Text[ arabic ] = "  ";
    Text[ greek ] = "   ";
    Text[ korean ] = "아래 맞춤";
    Text[ turkish ] = "Aa hizala";
    Text[ language_user1 ] = " ";
    Text[ catalan ] = "Alinea a la part inferior";
    Text[ thai ] = "จัดตำแหน่งชิดด้านล่าง";
};
String SCSTR_VER_JUSTIFY_STANDARD
{
    Text = "Vertikale Ausrichtung Standard" ;
    Text [ ENGLISH ] = "Adjust Standard" ;
    Text [ norwegian ] = "Tilpass Standard" ;
    Text [ italian ] = "Allineamento verticale standard" ;
    Text [ portuguese_brazilian ] = "Ajustar Padr?o" ;
    Text [ portuguese ] = "Ajustar padro na vertical" ;
    Text [ finnish ] = "Pystytasaus oletuksena" ;
    Text [ danish ] = "Standard lodret justering" ;
    Text [ french ] = "Alignement vertical par dfaut" ;
    Text [ swedish ] = "Vertikal justering standard" ;
    Text [ dutch ] = "Standaard verticaal uitlijnen" ;
    Text [ spanish ] = "Alineacin vertical predeterminada" ;
    Text [ english_us ] = "Vertical alignment default" ;
    Text[ chinese_simplified ] = "垂直对齐 标准";
    Text[ russian ] = "   ()";
    Text[ polish ] = "Domylne wyrwnanie w pionie";
    Text[ japanese ] = "標準上下揃え";
    Text[ chinese_traditional ] = "垂直對齊 標準";
    Text[ arabic ] = "  ";
    Text[ greek ] = ":  ";
    Text[ korean ] = "기본 수직 맞춤";
    Text[ turkish ] = "Standart dikey hizalama";
    Text[ language_user1 ] = " ";
    Text[ catalan ] = "Alineament vertical per defecte";
    Text[ thai ] = "ค่าเริ่มต้นการจัดตำแหน่งแนวตั้ง";
};
String SCSTR_ORIENTATION_TOPBOTTOM
{
    Text = "Von oben nach unten" ;
    Text [ ENGLISH ] = "Top to bottom" ;
    Text [ norwegian ] = "Topp til bunn " ;
    Text [ italian ] = "Dall'alto in basso" ;
    Text [ portuguese_brazilian ] = "Topo para a base" ;
    Text [ portuguese ] = "De cima para baixo" ;
    Text [ finnish ] = "Ylhlt alas" ;
    Text [ danish ] = "Fra verst til nederst" ;
    Text [ french ] = "De haut en bas" ;
    Text [ swedish ] = "Uppifrn och ned" ;
    Text [ dutch ] = "Van boven naar beneden" ;
    Text [ spanish ] = "De arriba hacia abajo" ;
    Text [ english_us ] = "Top to bottom" ;
    Text[ chinese_simplified ] = "从上向下";
    Text[ russian ] = " ";
    Text[ polish ] = "Z gry do dou";
    Text[ japanese ] = "上から下へ";
    Text[ chinese_traditional ] = "從上向下";
    Text[ arabic ] = "  ";
    Text[ greek ] = "    ";
    Text[ korean ] = "위에서 아래로";
    Text[ turkish ] = "Yukardan aa";
    Text[ language_user1 ] = " ";
    Text[ catalan ] = "De dalt a baix";
    Text[ thai ] = "บนลงล่าง";
};
String SCSTR_ORIENTATION_BOTTOMTOP
{
    Text = "Von unten nach oben" ;
    Text [ ENGLISH ] = "Bottom to Top" ;
    Text [ norwegian ] = "Bunn til topp " ;
    Text [ italian ] = "Dal basso in alto" ;
    Text [ portuguese_brazilian ] = "Base para o topo" ;
    Text [ portuguese ] = "De baixo para cima" ;
    Text [ finnish ] = "Alhaalta yls" ;
    Text [ danish ] = "Fra nederst til verst" ;
    Text [ french ] = "De bas en haut" ;
    Text [ swedish ] = "Nedifrn och upp" ;
    Text [ dutch ] = "Van beneden naar boven" ;
    Text [ spanish ] = "Desde abajo hacia arriba" ;
    Text [ english_us ] = "Bottom to Top" ;
    Text[ chinese_simplified ] = "从下向上";
    Text[ russian ] = " ";
    Text[ polish ] = "Z dou do gry";
    Text[ japanese ] = "下から上へ";
    Text[ chinese_traditional ] = "從下向上";
    Text[ arabic ] = "   ";
    Text[ greek ] = "    ";
    Text[ korean ] = "아래서 위로";
    Text[ turkish ] = "Aadan yukarya";
    Text[ language_user1 ] = " ";
    Text[ catalan ] = "De baix a dalt";
    Text[ thai ] = "ล่างขึ้นบน";
};
String SCSTR_ORIENTATION_STANDARD
{
    Text = "Schreibrichtung Standard" ;
    Text [ ENGLISH ] = "Orientation standard" ;
    Text [ norwegian ] = "Retningsstandard" ;
    Text [ italian ] = "Orientamento standard" ;
    Text [ portuguese_brazilian ] = "Orienta??o padr?o" ;
    Text [ portuguese ] = "Orientao padro" ;
    Text [ finnish ] = "Oletussuunta" ;
    Text [ danish ] = "Standard skriveretning" ;
    Text [ french ] = "Orientation par dfaut" ;
    Text [ swedish ] = "Standardorientering" ;
    Text [ dutch ] = "Standaardafdrukrichting" ;
    Text [ spanish ] = "Orientacin predeterminada" ;
    Text [ english_us ] = "Default orientation" ;
    Text[ chinese_simplified ] = "文字方向 标准";
    Text[ russian ] = " ";
    Text[ polish ] = "Orientacja domylna";
    Text[ japanese ] = "記入方向 標準";
    Text[ chinese_traditional ] = "文字方向 標準";
    Text[ arabic ] = "  ";
    Text[ greek ] = "  ";
    Text[ korean ] = "기본 방향";
    Text[ turkish ] = "Standart metin yn";
    Text[ language_user1 ] = " ";
    Text[ catalan ] = "Orientaci per defecte";
    Text[ thai ] = "ค่าเริ่มต้นการวางตำแหน่ง";
};

String SCSTR_PROTECTDOC
{
    /* ### ACHTUNG: Neuer Text in Resource? Dokument schtzen : Dokument schtzen */
    Text = "Dokument schtzen" ;
    Text [ ENGLISH ] = "Protect document" ;
    Text [ norwegian ] = "Protect document" ;
    Text [ italian ] = "Proteggi documento" ;
    Text [ portuguese_brazilian ] = "Prod?gio um documento" ;
    Text [ portuguese ] = "Proteger documento" ;
    Text [ finnish ] = "Suojaa asiakirja" ;
    Text [ danish ] = "Beskyt dokument" ;
    Text [ french ] = "Protger le document" ;
    Text [ swedish ] = "Skydda dokument" ;
    Text [ dutch ] = "Document beveiligen" ;
    Text [ spanish ] = "Proteger documento" ;
    Text [ english_us ] = "Protect Document" ;
    Text[ chinese_simplified ] = "保护文档";
    Text[ russian ] = " ";
    Text[ polish ] = "Chro dokument";
    Text[ japanese ] = "ドキュメントの保護";
    Text[ chinese_traditional ] = "保護文件";
    Text[ arabic ] = " ";
    Text[ greek ] = " ";
    Text[ korean ] = "문서 보호";
    Text[ turkish ] = "Belgeyi koru";
    Text[ language_user1 ] = " ";
    Text[ catalan ] = "Protegeix el document";
    Text[ thai ] = "ป้องกันเอกสาร";
};
String SCSTR_UNPROTECTDOC
{
    Text = "Dokumentschutz aufheben" ;
    Text [ ENGLISH ] = "Unprotect document" ;
    Text [ norwegian ] = "Fjern dokumentbeskyttelse" ;
    Text [ italian ] = "Disattiva protezione documento" ;
    Text [ portuguese_brazilian ] = "Documento desprotegido" ;
    Text [ portuguese ] = "Desproteger documento" ;
    Text [ finnish ] = "Poista asiakirjan suojaus" ;
    Text [ danish ] = "Ophv dokumentbeskyttelse" ;
    Text [ french ] = "Annuler la protection de document" ;
    Text [ swedish ] = "Upphv dokumentskydd" ;
    Text [ dutch ] = "Documentbeveiliging opheffen" ;
    Text [ spanish ] = "Desproteger documento" ;
    Text [ english_us ] = "Unprotect document" ;
    Text[ chinese_simplified ] = "取消文档保护";
    Text[ russian ] = "   ";
    Text[ polish ] = "Nie chro dokumentu";
    Text[ japanese ] = "ドキュメントの保護を解除";
    Text[ chinese_traditional ] = "取消物件保護";
    Text[ arabic ] = "  ";
    Text[ greek ] = "  ";
    Text[ korean ] = "문서 보호 해제";
    Text[ turkish ] = "Belge korumasn kaldr";
    Text[ language_user1 ] = " ";
    Text[ catalan ] = "Desprotegeix el document";
    Text[ thai ] = "ไม่ป้องกันเอกสาร";
};
String SCSTR_PROTECTTAB
{
    /* ### ACHTUNG: Neuer Text in Resource? Tabelle schtzen : Tabelle schtzen */
    Text = "Tabelle schtzen" ;
    Text [ ENGLISH ] = "Protect table" ;
    Text [ english_us ] = "Protect Sheet" ;
    Text [ dutch ] = "Werkblad beveiligen" ;
    Text [ italian ] = "Proteggi tabella" ;
    Text [ spanish ] = "Proteger hoja" ;
    Text [ french ] = "Protger la feuille" ;
    Text [ swedish ] = "Skydda tabell" ;
    Text [ danish ] = "Beskyt ark" ;
    Text [ portuguese ] = "Proteger folha" ;
    Text [ portuguese_brazilian ] = "Tabelle sch?zen" ;
    Text[ chinese_simplified ] = "保护工作表";
    Text[ russian ] = " ";
    Text[ polish ] = "Chro tabel";
    Text[ japanese ] = "表の保護";
    Text[ chinese_traditional ] = "保護工作表";
    Text[ arabic ] = " ";
    Text[ greek ] = " ";
    Text[ korean ] = "시트 보호";
    Text[ turkish ] = "Tabloyu koru";
    Text[ language_user1 ] = " ";
    Text[ catalan ] = "Protegeix el full";
    Text[ finnish ] = "Suojaa taulukko";
    Text[ thai ] = "ป้องกันแผ่นงาน";
};
String SCSTR_UNPROTECTTAB
{
    Text = "Tabellenschutz aufheben" ;
    Text [ ENGLISH ] = "Unprotect table" ;
    Text [ english_us ] = "Unprotect sheet" ;
    Text [ italian ] = "Disattiva protezione tabella" ;
    Text [ spanish ] = "Desproteger hoja" ;
    Text [ french ] = "Annuler la protection de la feuille" ;
    Text [ dutch ] = "Werkbladbeveiliging opheffen" ;
    Text [ swedish ] = "Upphv tabellskydd" ;
    Text [ danish ] = "Ophv arkbeskyttelse" ;
    Text [ portuguese ] = "Desproteger folha" ;
    Text [ portuguese_brazilian ] = "Tabellenschutz aufheben" ;
    Text[ chinese_simplified ] = "取消工作表保护";
    Text[ russian ] = "   ";
    Text[ polish ] = "Nie chro arkusza";
    Text[ japanese ] = "表の保護を解除";
    Text[ chinese_traditional ] = "取消工作表保護";
    Text[ arabic ] = "  ";
    Text[ greek ] = "  ";
    Text[ korean ] = "시트 보호 해제";
    Text[ turkish ] = "Tablo korumasn kaldr";
    Text[ language_user1 ] = " ";
    Text[ catalan ] = "Desprotegeix el full";
    Text[ finnish ] = "Poista taulukon suojaus";
    Text[ thai ] = "ไม่ป้องกันแผ่นงาน";
};
String SCSTR_CHG_PROTECT
{
    Text = "Aufzeichnung schtzen" ;
    Text [ ENGLISH ] = "Protect trace" ;
    Text [ english_us ] = "Protect Records" ;
    Text [ dutch ] = "Registratie beveiligen" ;
    Text [ italian ] = "Proteggi registrazione" ;
    Text [ spanish ] = "Proteger grabacin" ;
    Text [ french ] = "Protger l'historique" ;
    Text [ swedish ] = "Skydda registrering" ;
    Text [ danish ] = "Beskyt registrering" ;
    Text [ portuguese ] = "Proteger histrico" ;
    Text [ portuguese_brazilian ] = "Protect trace" ;
    Text[ chinese_simplified ] = "保护记录";
    Text[ russian ] = " ";
    Text[ polish ] = "Chro zapis";
    Text[ japanese ] = "記録の保護";
    Text[ chinese_traditional ] = "保護記錄";
    Text[ arabic ] = "Protect trace";
    Text[ greek ] = " ";
    Text[ korean ] = "기록 보호";
    Text[ turkish ] = "Protect trace";
    Text[ language_user1 ] = " ";
    Text[ catalan ] = "Protegeix el rastre";
    Text[ finnish ] = "Suojaa tietueet";
    Text[ thai ] = "ป้องกันการติดตาม";
};
String SCSTR_CHG_UNPROTECT
{
    Text = "Aufzeichnungsschutz aufheben" ;
    Text [ ENGLISH ] = "Unprotect trace" ;
    Text [ english_us ] = "Unprotect Records" ;
    Text [ dutch ] = "Beveiliging van registratie opheffen" ;
    Text [ italian ] = "Elimina protezione registrazione" ;
    Text [ spanish ] = "Desactivar proteccin de la grabacin" ;
    Text [ french ] = "Dsactiver la protection de l'historique" ;
    Text [ swedish ] = "Upphv registreringsskydd" ;
    Text [ danish ] = "Ophv registreringsbeskyttelse" ;
    Text [ portuguese ] = "Desactivar proteco do histrico" ;
    Text [ portuguese_brazilian ] = "Unprotect trace" ;
    Text[ chinese_simplified ] = "取消保护记录";
    Text[ russian ] = "   ";
    Text[ polish ] = "Anuluj ochron historii";
    Text[ japanese ] = "記録の保護を解除";
    Text[ chinese_traditional ] = "取消保護記錄";
    Text[ arabic ] = "Unprotect trace";
    Text[ greek ] = "  ";
    Text[ korean ] = "레코드 보호 해제";
    Text[ turkish ] = "Unprotect trace";
    Text[ language_user1 ] = " ";
    Text[ catalan ] = "Desprotegeix el rastre";
    Text[ finnish ] = "Poista tietueiden suojaus";
    Text[ thai ] = "ไม่ป้องกันการติดตาม";
};
String SCSTR_PASSWORD
{
    Text = "Kennwort:" ;
    Text [ ENGLISH ] = "Password:" ;
    Text [ norwegian ] = "Passord:" ;
    Text [ italian ] = "Password:" ;
    Text [ portuguese_brazilian ] = "Senha:" ;
    Text [ portuguese ] = "Senha:" ;
    Text [ finnish ] = "Salasana:" ;
    Text [ danish ] = "Adgangskode:" ;
    Text [ french ] = "Mot de passe :" ;
    Text [ swedish ] = "Lsenord:" ;
    Text [ dutch ] = "Wachtwoord:" ;
    Text [ spanish ] = "Contrasea:" ;
    Text [ english_us ] = "Password:" ;
    Text[ chinese_simplified ] = "密码:";
    Text[ russian ] = ":";
    Text[ polish ] = "Haso:";
    Text[ japanese ] = "パスワード:";
    Text[ chinese_traditional ] = "密碼:";
    Text[ arabic ] = " :";
    Text[ greek ] = " :";
    Text[ korean ] = "암호:";
    Text[ turkish ] = "ifre:";
    Text[ language_user1 ] = " ";
    Text[ catalan ] = "Contrasenya:";
    Text[ thai ] = "รหัสผ่าน:";
};
String SCSTR_PASSWORDOPT
{
    Text = "Kennwort (optional):" ;
    Text [ ENGLISH ] = "Password (optional):" ;
    Text [ norwegian ] = "Passord (valgfri):" ;
    Text [ italian ] = "Password (facoltativa):" ;
    Text [ portuguese_brazilian ] = "Senha (opcional):" ;
    Text [ portuguese ] = "Senha (opcional):" ;
    Text [ finnish ] = "Salasana (valinnainen):" ;
    Text [ danish ] = "Adgangskode (valgfri):" ;
    Text [ french ] = "Mot de passe (facultatif) :" ;
    Text [ swedish ] = "Lsenord (valfritt):" ;
    Text [ dutch ] = "Wachtwoord (optioneel):" ;
    Text [ spanish ] = "Contrasea (opcional):" ;
    Text [ english_us ] = "Password (optional):" ;
    Text[ chinese_simplified ] = "密码(可省略):";
    Text[ russian ] = " ( ):";
    Text[ polish ] = "Haso (opcjonalne):";
    Text[ japanese ] = "パスワード(オプション):";
    Text[ chinese_traditional ] = "密碼(可省略):";
    Text[ arabic ] = "  ():";
    Text[ greek ] = "  ():";
    Text[ korean ] = "암호 (옵션):";
    Text[ turkish ] = "ifre (istee bal):";
    Text[ language_user1 ] = " ";
    Text[ catalan ] = "Contrasenya (opcional):";
    Text[ thai ] = "รหัสผ่าน (เลือกได้):";
};

String SCSTR_WRONGPASSWORD
{
    Text = "Falsches Kennwort" ;
    Text [ ENGLISH ] = "Wrong password" ;
    Text [ norwegian ] = "Feil passord" ;
    Text [ italian ] = "Password errata" ;
    Text [ portuguese_brazilian ] = "Senha incorreta" ;
    Text [ portuguese ] = "Senha incorrecta" ;
    Text [ finnish ] = "Vr salasana" ;
    Text [ danish ] = "Forkert adgangskode" ;
    Text [ french ] = "Mot de passe incorrect" ;
    Text [ swedish ] = "Felaktigt lsenord" ;
    Text [ dutch ] = "Dit wachtwoord is niet correct." ;
    Text [ spanish ] = "Contrasea incorrecta" ;
    Text [ english_us ] = "Incorrect Password" ;
    Text[ chinese_simplified ] = "密码无效";
    Text[ russian ] = " ";
    Text[ polish ] = "Niepoprawne haso";
    Text[ japanese ] = "正しくないパスワード";
    Text[ chinese_traditional ] = "密碼無效";
    Text[ arabic ] = "   ";
    Text[ greek ] = "  ";
    Text[ korean ] = "옳지 않은 암호";
    Text[ turkish ] = "ifre yanl";
    Text[ language_user1 ] = " ";
    Text[ catalan ] = "Contrasenya incorrecta";
    Text[ thai ] = "รหัสผ่านไม่ภูกต้อง";
};

String SCSTR_END
{
    Text = "~Ende" ;
    Text [ ENGLISH ] = "~End" ;
    Text [ norwegian ] = "~End" ;
    Text [ italian ] = "~Fine" ;
    Text [ portuguese_brazilian ] = "~Fim" ;
    Text [ portuguese ] = "~Fim" ;
    Text [ finnish ] = "~Loppu" ;
    Text [ danish ] = "Slutning" ;
    Text [ french ] = "~Fin" ;
    Text [ swedish ] = "~Slut" ;
    Text [ dutch ] = "~Einde" ;
    Text [ spanish ] = "~Fin" ;
    Text [ english_us ] = "~End" ;
    Text[ chinese_simplified ] = "结束(~E)";
    Text[ russian ] = "";
    Text[ polish ] = "Koniec";
    Text[ japanese ] = "終了(~E)";
    Text[ chinese_traditional ] = "結束(~E)";
    Text[ arabic ] = "";
    Text[ greek ] = "";
    Text[ korean ] = "종료(~E)";
    Text[ turkish ] = "~Son";
    Text[ language_user1 ] = " ";
    Text[ catalan ] = "~Fi";
    Text[ thai ] = "~สิ้นสุด";
};

String SCSTR_STAT_PRINT
{
    Text = "Drucke..." ;
    Text [ English ] = "Printing..." ;
    Text [ norwegian ] = "Skriver ut..." ;
    Text [ italian ] = "Stampa..." ;
    Text [ portuguese_brazilian ] = "Imprimindo..." ;
    Text [ portuguese ] = "A imprimir..." ;
    Text [ finnish ] = "Tulostetaan..." ;
    Text [ danish ] = "Udskriver..." ;
    Text [ french ] = "Impression..." ;
    Text [ swedish ] = "Skriver ut..." ;
    Text [ dutch ] = "Bezig met afdrukken..." ;
    Text [ spanish ] = "Imprimiendo..." ;
    Text [ english_us ] = "Printing..." ;
    Text[ chinese_simplified ] = "打印...";
    Text[ russian ] = "...";
    Text[ polish ] = "Drukowanie..";
    Text[ japanese ] = "印刷...";
    Text[ chinese_traditional ] = "列印...";
    Text[ arabic ] = "...";
    Text[ greek ] = "...";
    Text[ korean ] = "인쇄...";
    Text[ turkish ] = "Yazdr...";
    Text[ language_user1 ] = " ";
    Text[ catalan ] = "S'est imprimint...";
    Text[ thai ] = "กำลังพิมพ์...";
};

String SCSTR_UNKNOWN
{
    Text = "Unbekannt" ;
    Text [ English ] = "Unknown" ;
    Text [ norwegian ] = "Unknown" ;
    Text [ italian ] = "Senza nome" ;
    Text [ portuguese_brazilian ] = "Desconhecido" ;
    Text [ portuguese ] = "Desconhecido" ;
    Text [ french ] = "Inconnu" ;
    Text [ dutch ] = "Onbekend" ;
    Text [ spanish ] = "Desconocido" ;
    Text [ danish ] = "Ukendt" ;
    Text [ swedish ] = "Oknd" ;
    Text [ finnish ] = "Tuntematon" ;
    Text [ english_us ] = "Unknown" ;
    Text[ chinese_simplified ] = "未命名";
    Text[ russian ] = "";
    Text[ polish ] = "Nieznany";
    Text[ japanese ] = "不明";
    Text[ chinese_traditional ] = "未命名";
    Text[ arabic ] = " ";
    Text[ greek ] = "";
    Text[ korean ] = "알 수 없음";
    Text[ turkish ] = "Bilinmiyor";
    Text[ language_user1 ] = " ";
    Text[ catalan ] = "Desconegut";
    Text[ thai ] = "ไม่รู้จัก";
};

String SCSTR_CHAR_ATTRS
{
    Text = "Zeichenattribute" ;
    Text [ ENGLISH ] = "Character Attributes" ;
    Text [ norwegian ] = "Character Attributes" ;
    Text [ italian ] = "Attributi carattere" ;
    Text [ portuguese_brazilian ] = "Character Attributes" ;
    Text [ portuguese ] = "Atributos de caracteres" ;
    Text [ french ] = "Attributs de caractres" ;
    Text [ dutch ] = "Schriftteken-attributen" ;
    Text [ spanish ] = "Atributos de caracteres" ;
    Text [ danish ] = "Tegnattributter" ;
    Text [ swedish ] = "Teckenattribut" ;
    Text [ finnish ] = "Fonttimritteet" ;
    Text [ english_us ] = "Font Attributes" ;
    Text[ chinese_simplified ] = "字符属性";
    Text[ russian ] = " ";
    Text[ polish ] = "Atrybuty czcionek";
    Text[ japanese ] = "文字の属性";
    Text[ chinese_traditional ] = "字元屬性";
    Text[ arabic ] = " ";
    Text[ greek ] = " ";
    Text[ korean ] = "글꼴 속성";
    Text[ turkish ] = "Yaztipi znitelikleri";
    Text[ language_user1 ] = " ";
    Text[ catalan ] = "Atributs de la lletra";
    Text[ thai ] = "คุณลักษณะตัวอักษร";
};


String SCSTR_CLPBRD_CLEAR
{
    /* ### ACHTUNG: Neuer Text in Resource? Sie haben grere Datenmengen in die Zwischenablage gestellt.\nSoll der Inhalt der Zwischenablage anderen Applikationen zur Verfgung gestellt werden? : Sie haben grere Datenmengen in die Zwischenablage gestellt.\nSoll der Inhalt der Zwischenablage anderen Applikationen zur Verfgung gestellt werden? */
    Text = "Sie haben grere Datenmengen in die Zwischenablage gestellt.\nSoll der Inhalt der Zwischenablage anderen Applikationen zur Verfgung gestellt werden?" ;
    Text [ English ] = "Shall the Clipboard Content be available for other Applications?" ;
    Text [ norwegian ] = "Vil du at Innholdet p Utklippstavlen skal vre tilgjengelig til andre applikasjoner?" ;
    Text [ italian ] = "Negli appunti ci sono molti dati.\nRenderli disponibili per altre applicazioni?" ;
    Text [ portuguese_brazilian ] = "O Conte?o do Clipboard deve estar dispon?vel para outros Aplicativos?" ;
    Text [ portuguese ] = "Na rea de transferncia encontram-se grandes quantidades de dados.\nColocar o contedo da rea de transferncia  disposio de outras aplicaes?" ;
    Text [ english_us ] = "You have a large amount of data saved in the clipboard.\nDo you want the clipboard contents to be available in other applications?" ;
    Text [ finnish ] = "Leikepydll on paljon tietoja.\nHaluatko silytt leikepydn sislln muita sovelluksia varten?" ;
    Text [ danish ] = "Du har placeret en stor mngde data i udklipsholderen.\nSkal udklipholderens indhold vre tilgngeligt for andre applikationer?" ;
    Text [ french ] = "Vous avez dpos un grand nombre de donnes dans le presse-papiers. \nSouhaitez-vous en conserver le contenu pour une utilisation sous une autre application ?" ;
    Text [ swedish ] = "Du har stora datamngder i urklippet. \nSkall innehllet i urklippet vara tillgngligt fr andra tillmpningar?" ;
    Text [ dutch ] = "U hebt een groot aantal gegevens op het Klembord geplaatst.\nWilt u dat de inhoud van het Klembord beschikbaar blijft voor andere toepassingen?" ;
    Text [ spanish ] = "Ha copiado una gran cantidad de datos en el portapapeles.\nDesea que el contenido del portapapeles est disponible para otras aplicaciones?" ;
    Text[ chinese_simplified ] = "在剪贴板内留存大量数据。\n您要让其他的应用程序也使用这些数据吗?";
    Text[ russian ] = "     .\n       ?";
    Text[ polish ] = "Wprowadzie wiksze iloci danych do schowka.\nCzy zawarto schowka ma zosta udostpniona innym aplikacjom?";
    Text[ japanese ] = "かなりのデータ量がクリップボードに保管されています。\nクリップボードの内容をほかのアプリケーションに使いますか。";
    Text[ chinese_traditional ] = "在剪貼簿內留存大量資料。\n您要讓其他的應用程序也使用這些資料?";
    Text[ arabic ] = "        .\n        ";
    Text[ greek ] = "      .\n          ;";
    Text[ korean ] = "사용자는 클립보드에 많은 양의 데이터를 저장하였습니다.\n클립보드의 내용을 다른 응용 프로그램에서도 사용가능하게 하겠습니까?";
    Text[ turkish ] = "Panoya byk miktarda veri aktardnz.\nPano ieriini baka uygulamalarda kullanmak istiyor musunuz?";
    Text[ language_user1 ] = " ";
    Text[ catalan ] = "Heu desat una gran quantitat de dades al porta-retalls.\nVoleu que el contingut del porta-retalls quedi disponible per a altres aplicacions?";
    Text[ thai ] = "คุณมีข้อมูลจำนวนมากบันทึกในคลิปบอร์ด\nคุณต้องการให้เนื้อหาของคลิปบอร์ดใช้ได้ในโปรแกรมประยุกต์อื่นหรือไม่?";
};

String SCSTR_CFG_APP
{
    Text = "Systemoptionen" ;
    Text [ ENGLISH ] = "System Options" ;
    Text [ dutch ] = "Systeemopties" ;
    Text [ english_us ] = "System Options" ;
    Text [ italian ] = "Opzioni di sistema" ;
    Text [ spanish ] = "Opciones del sistema" ;
    Text [ french ] = "Options de systme" ;
    Text [ swedish ] = "Systemalternativ" ;
    Text [ danish ] = "Systemindstillinger" ;
    Text [ portuguese ] = "Opes do sistema" ;
    Text [ portuguese_brazilian ] = "Systemoptionen" ;
    Text[ chinese_simplified ] = "系统选项";
    Text[ russian ] = " ";
    Text[ polish ] = "Opcje systemu";
    Text[ japanese ] = "システムオプション";
    Text[ chinese_traditional ] = "系統選項";
    Text[ arabic ] = " ";
    Text[ greek ] = " ";
    Text[ korean ] = "시스템 옵션";
    Text[ turkish ] = "Sistem seenekleri";
    Text[ language_user1 ] = " ";
    Text[ catalan ] = "Opcions del sistema";
    Text[ finnish ] = "Jrjestelmasetukset";
    Text[ thai ] = "ตัวเลือกระบบ";
};

String SCSTR_CFG_DOC
{
    Text = "Dokumentoptionen" ;
    Text [ ENGLISH ] = "Document Options" ;
    Text [ english_us ] = "Document Options" ;
    Text [ italian ] = "Opzioni di documento" ;
    Text [ spanish ] = "Opciones del documento" ;
    Text [ french ] = "Options de document" ;
    Text [ dutch ] = "Documentopties" ;
    Text [ swedish ] = "Dokumentalternativ" ;
    Text [ danish ] = "Dokumentindstillinger" ;
    Text [ portuguese ] = "Opes do documento" ;
    Text [ portuguese_brazilian ] = "Dokumentoptionen" ;
    Text[ chinese_simplified ] = "文档选项";
    Text[ russian ] = " ";
    Text[ polish ] = "Opcje dokumentu";
    Text[ japanese ] = "ドキュメントオプション";
    Text[ chinese_traditional ] = "文件選項";
    Text[ arabic ] = " ";
    Text[ greek ] = " ";
    Text[ korean ] = "문서 옵션";
    Text[ turkish ] = "Belge seenekleri";
    Text[ language_user1 ] = " ";
    Text[ catalan ] = "Opcions del document";
    Text[ finnish ] = "Asiakirja-asetukset";
    Text[ thai ] = "ตัวเลือกเอกสาร";
};

String SCSTR_CFG_VIEW
{
    Text = "Ansichtoptionen" ;
    Text [ ENGLISH ] = "View Options" ;
    Text [ english_us ] = "View Options" ;
    Text [ italian ] = "Opzioni vista" ;
    Text [ spanish ] = "Opciones de visualizacin" ;
    Text [ french ] = "Options d'affichage" ;
    Text [ dutch ] = "Beeldschermopties" ;
    Text [ swedish ] = "Vyalternativ" ;
    Text [ danish ] = "Visningsindstillinger" ;
    Text [ portuguese ] = "Opes de visualizao" ;
    Text [ portuguese_brazilian ] = "Ansichtoptionen" ;
    Text[ chinese_simplified ] = "视图选项";
    Text[ russian ] = " ";
    Text[ polish ] = "Opcje widoku";
    Text[ japanese ] = "表示オプション";
    Text[ chinese_traditional ] = "檢視選項";
    Text[ arabic ] = " ";
    Text[ greek ] = " ";
    Text[ korean ] = "보기 옵션";
    Text[ turkish ] = "Grnm seenekleri";
    Text[ language_user1 ] = " ";
    Text[ catalan ] = "Opcions de visualitzaci";
    Text[ finnish ] = "Nyttasetukset";
    Text[ thai ] = "ตัวเลือกมุมมอง";
};

String SCSTR_CFG_INPUT
{
    Text = "Eingabeoptionen" ;
    Text [ ENGLISH ] = "Input Options" ;
    Text [ dutch ] = "Invoeropties" ;
    Text [ english_us ] = "Input Options" ;
    Text [ swedish ] = "Inmatningsalternativ" ;
    Text [ danish ] = "Inputindstillinger" ;
    Text [ italian ] = "Opzioni di digitazione" ;
    Text [ spanish ] = "Opciones de entrada" ;
    Text [ french ] = "Options de saisie" ;
    Text [ portuguese ] = "Opes de entrada" ;
    Text [ portuguese_brazilian ] = "Eingabeoptionen" ;
    Text[ chinese_simplified ] = "输入选项";
    Text[ russian ] = " ";
    Text[ polish ] = "Opcje wprowadzania";
    Text[ japanese ] = "入力オプション";
    Text[ chinese_traditional ] = "輸入選項";
    Text[ arabic ] = " ";
    Text[ greek ] = " ";
    Text[ korean ] = "입력 옵션";
    Text[ turkish ] = "Giri seenekleri";
    Text[ language_user1 ] = " ";
    Text[ catalan ] = "Opcions d'entrada";
    Text[ finnish ] = "Syttasetukset";
    Text[ thai ] = "ตัวเลือกข้อมูลเข้า";
};

String SCSTR_CFG_SPELLCHECK
{
    Text = "Rechtschreiboptionen" ;
    Text [ ENGLISH ] = "Spellchecker Options" ;
    Text [ dutch ] = "Spellingopties" ;
    Text [ english_us ] = "Spelling Options" ;
    Text [ italian ] = "Opzioni controllo ortografico" ;
    Text [ spanish ] = "Opciones de ortografa" ;
    Text [ french ] = "Options Orthographe" ;
    Text [ swedish ] = "Rttstavningsalternativ" ;
    Text [ danish ] = "Stavekontrol-indstillinger" ;
    Text [ portuguese ] = "Opes de ortografia" ;
    Text [ portuguese_brazilian ] = "Rechtschreiboptionen" ;
    Text[ chinese_simplified ] = "拼写检查选项";
    Text[ russian ] = " ";
    Text[ polish ] = "Opcje pisowni";
    Text[ japanese ] = "スペルチェックのオプション";
    Text[ chinese_traditional ] = "拼寫檢查選項";
    Text[ arabic ] = "  ";
    Text[ greek ] = " ";
    Text[ korean ] = "맞춤법 옵션";
    Text[ turkish ] = "Yazm seenekleri";
    Text[ language_user1 ] = " ";
    Text[ catalan ] = "Opcions de la verificaci ortogrfica";
    Text[ finnish ] = "Oikeinkirjoituksen asetukset";
    Text[ thai ] = "ตัวเลือกการสะกด";
};

String SCSTR_CFG_PRINT
{
    Text = "Druckoptionen" ;
    Text [ ENGLISH ] = "Print Options" ;
    Text [ dutch ] = "Afdrukopties" ;
    Text [ english_us ] = "Print Options" ;
    Text [ italian ] = "Opzioni di stampa" ;
    Text [ spanish ] = "Opciones de impresin" ;
    Text [ french ] = "Options d'impression" ;
    Text [ swedish ] = "Utskriftsalternativ" ;
    Text [ danish ] = "Udskriftsindstillinger" ;
    Text [ portuguese ] = "Opes de impresso" ;
    Text [ portuguese_brazilian ] = "Druckoptionen" ;
    Text[ chinese_simplified ] = "打印选项";
    Text[ russian ] = " ";
    Text[ polish ] = "Opcje wydruku";
    Text[ japanese ] = "印刷オプション";
    Text[ chinese_traditional ] = "列印選項";
    Text[ arabic ] = " ";
    Text[ greek ] = " ";
    Text[ korean ] = "인쇄 옵션";
    Text[ turkish ] = "Yazdrma seenekleri";
    Text[ language_user1 ] = " ";
    Text[ catalan ] = "Opcions d'impressi";
    Text[ finnish ] = "Tulostusasetukset";
    Text[ thai ] = "ตัวเลือกการพิมพ์";
};

String SCSTR_CFG_NAVIPI
{
    Text = "Navigator-Einstellungen" ;
    Text [ ENGLISH ] = "Navigator Settings" ;
    Text [ portuguese ] = "Parmetros - Navegador" ;
    Text [ english_us ] = "Navigator Settings" ;
    Text [ portuguese_brazilian ] = "Navigator-Einstellungen" ;
    Text [ swedish ] = "Navigatorinstllningar" ;
    Text [ danish ] = "Navigator-indstillinger" ;
    Text [ italian ] = "Impostazioni navigatore" ;
    Text [ spanish ] = "Configuracin del Navegador" ;
    Text [ french ] = "Paramtres du Navigateur" ;
    Text [ dutch ] = "Navigator-instellingen" ;
    Text[ chinese_simplified ] = "设定助手";
    Text[ russian ] = " ";
    Text[ polish ] = "Ustawienia nawigatora";
    Text[ japanese ] = "ナビゲータの設定";
    Text[ chinese_traditional ] = "設定助手";
    Text[ arabic ] = " ";
    Text[ greek ] = " Navigator";
    Text[ korean ] = "네비게이터 설정";
    Text[ turkish ] = "Navigatr ayarlar";
    Text[ language_user1 ] = " ";
    Text[ catalan ] = "Parmetres del navegador";
    Text[ finnish ] = "Etsimen asetukset";
    Text[ thai ] = "ตั้งค่าตัวนำทาง";
};

String SCSTR_MINIMUM
{
    Text = "~Minimum" ;
    Text [ ENGLISH ] = "~Minimum" ;
    Text [ dutch ] = "~Minimum" ;
    Text [ english_us ] = "~Minimum" ;
    Text [ swedish ] = "~Minimum" ;
    Text [ danish ] = "Minimum" ;
    Text [ italian ] = "~Minimo" ;
    Text [ spanish ] = "~Mnimo" ;
    Text [ french ] = "~Minimum" ;
    Text [ portuguese ] = "~Mnimo" ;
    Text [ portuguese_brazilian ] = "~Minimum" ;
    Text[ chinese_simplified ] = "最小(~M)";
    Text[ russian ] = "";
    Text[ polish ] = "Minimum";
    Text[ japanese ] = "最小値(~M)";
    Text[ chinese_traditional ] = "最小(~M)";
    Text[ arabic ] = " ";
    Text[ greek ] = "";
    Text[ korean ] = "최소(~M)";
    Text[ turkish ] = "A~sgari";
    Text[ language_user1 ] = " ";
    Text[ catalan ] = "~Mnim";
    Text[ finnish ] = "~Vhintn";
    Text[ thai ] = "~น้อยที่สุด";
};
String SCSTR_MAXIMUM
{
    Text = "~Maximum" ;
    Text [ ENGLISH ] = "~Maximum" ;
    Text [ dutch ] = "~Maximum" ;
    Text [ english_us ] = "~Maximum" ;
    Text [ swedish ] = "~Maximum" ;
    Text [ danish ] = "Maksimum" ;
    Text [ italian ] = "~Massimo" ;
    Text [ spanish ] = "~Mximo" ;
    Text [ french ] = "~Maximum" ;
    Text [ portuguese ] = "~Mximo" ;
    Text [ portuguese_brazilian ] = "~Maximum" ;
    Text[ chinese_simplified ] = "最大(~M)";
    Text[ russian ] = "";
    Text[ polish ] = "Maksimum";
    Text[ japanese ] = "最大値(~M)";
    Text[ chinese_traditional ] = "最大(~M)";
    Text[ arabic ] = " ";
    Text[ greek ] = "";
    Text[ korean ] = "최대(~M)";
    Text[ turkish ] = "A~zami";
    Text[ language_user1 ] = " ";
    Text[ catalan ] = "~Mxim";
    Text[ finnish ] = "~Enintn";
    Text[ thai ] = "~มากที่สุด";
};
String SCSTR_VALUE
{
    Text = "~Wert" ;
    Text [ ENGLISH ] = "~Value" ;
    Text [ dutch ] = "~Waarde" ;
    Text [ english_us ] = "~Value" ;
    Text [ swedish ] = "~Vrde" ;
    Text [ danish ] = "Vrdi" ;
    Text [ italian ] = "~Valore" ;
    Text [ spanish ] = "~Valor" ;
    Text [ french ] = "~Valeur" ;
    Text [ portuguese ] = "~Valor" ;
    Text [ portuguese_brazilian ] = "~Wert" ;
    Text[ chinese_simplified ] = "数值(~V)";
    Text[ russian ] = "";
    Text[ polish ] = "Warto";
    Text[ japanese ] = "数値(~V)";
    Text[ chinese_traditional ] = "數值(~V)";
    Text[ arabic ] = "";
    Text[ greek ] = "";
    Text[ korean ] = "값(~V)";
    Text[ turkish ] = "~Deer";
    Text[ language_user1 ] = " ";
    Text[ catalan ] = "~Valor";
    Text[ finnish ] = "~Arvo";
    Text[ thai ] = "~ค่า";
};

 // fuer Dialoge:

String SCSTR_CHARSET_USER
{
    Text = "System" ;
    Text [ ENGLISH ] = "System" ;
    Text [ english_us ] = "System" ;
    Text [ italian ] = "Sistema" ;
    Text [ spanish ] = "Sistema" ;
    Text [ french ] = "Systme" ;
    Text [ dutch ] = "Systeem" ;
    Text [ swedish ] = "System" ;
    Text [ danish ] = "System" ;
    Text [ portuguese ] = "Sistema" ;
    Text [ portuguese_brazilian ] = "Ansi;Mac;IBMPC;IBMPC (437);IBMPC (850);IBMPC (860);IBMPC (861);IBMPC (863);IBMPC (865);System" ;
    Text[ chinese_simplified ] = "系统";
    Text[ russian ] = "";
    Text[ polish ] = "System";
    Text[ japanese ] = "システム";
    Text[ chinese_traditional ] = "系統";
    Text[ arabic ] = "";
    Text[ greek ] = "";
    Text[ korean ] = "시스템";
    Text[ turkish ] = "Ansi;Mac;IBMPC;IBMPC (437);IBMPC (850);IBMPC (860);IBMPC (861);IBMPC (863);IBMPC (865);Sistem";
    Text[ language_user1 ] = " ";
    Text[ catalan ] = "Sistema";
    Text[ finnish ] = "Jrjestelm";
    Text[ thai ] = "ระบบ";
};

String SCSTR_COLUMN_USER
{
    /* ### ACHTUNG: Neuer Text in Resource? Standard;Text;Datum (TMJ);Datum (MTJ);Datum (JMT);US-Englisch;ausblenden : Standard;Text;Datum (TMJ);Datum (MTJ);Datum (JMT);ausblenden */
    Text = "Standard;Text;Datum (TMJ);Datum (MTJ);Datum (JMT);US-Englisch;ausblenden" ;
    Text [ ENGLISH ] = "Standard;Text;Date (DMY);Date (MDY);Date (YMD);English (US);hide" ;
    Text [ english_us ] = "Standard;Text;Date (DMY);Date (MDY);Date (YMD);US English;Hide" ;
    Text [ italian ] = "Standard;Testo;Data (GMA);Data (MGA);Data (AMG);Inglese US;Nascondi" ;
    Text [ spanish ] = "Predeterminado;Texto;Fecha (DMA);Fecha (MDA);Fecha (AMD);Ingls (US);Ocultar" ;
    Text [ french ] = "Standard;Texte;Date (JMA);Date (MJA);Date (AMJ);Anglais US;Masquer" ;
    Text [ dutch ] = "Standaard;Tekst;Datum (DMJ);Datum (MDJ);Datum (JMD);VS-Engels;verbergen" ;
    Text [ swedish ] = "Standard;Text;Datum (DM);Datum (MD);Datum (MD);Engelska (US);Dlj" ;
    Text [ danish ] = "Standard;Tekst;Dato (DM);Dato (MD);Dato (MD);Engelsk (US);skjul" ;
    Text [ portuguese ] = "Padro;Texto;Data (DMA);Data (MDA);Data (AMD);Ingls (E.U.),ocultar" ;
    Text [ portuguese_brazilian ] = "Standard;Text;Datum (TMJ);Datum (MTJ);Datum (JMT);ausblenden" ;
    Text[ chinese_simplified ] = "标准;文字;日期(DMY);日期(MDY);日期(YMD);美国英语;隐入";
    Text[ russian ] = ";; (); (); (); ;";
    Text[ polish ] = "Standard;Tekst;Data (DMY);Data (DMY);Data (YMD);Angielski (USA);ukryj";
    Text[ japanese ] = "標準;テキスト;日付(DMY);日付(MDY);日付 (YMD);英語(US);非表示";
    Text[ chinese_traditional ] = "標準;文字;日期(DMY);日期(MDY);日期(YMD);美語;隱入";
    Text[ arabic ] = "պ (DMY) (MDY)  (YMD)   ɺ";
    Text[ greek ] = ";; (); (); (); (...);";
    Text[ korean ] = "표준;텍스트;날짜(DMY);날짜(MDY);날짜(YMD);미국 영어;숨기기";
    Text[ turkish ] = "Standart;Metin;Tarih (GAY);Tarih (AGY);Tarih(YAG);ngilizce (ABD);gizle";
    Text[ language_user1 ] = " ";
    Text[ catalan ] = "Estndard;Text;Data (DMA);Data (MDA);Data (AMD);Angls (US);Ocultar";
    Text[ finnish ] = "Vakio;Teksti;Pivmr (PKV);Pivmr (KPV);Pivmr (VKP);Englanti (USA);Piilota";
    Text[ thai ] = "มาตรฐาน;ข้อความ;วันที่ (วดป);วันที่ (ดวป);วันที่ (ปดว);อเมริกัน อังกฤษ;ซ่อน";
};

String SCSTR_FIELDSEP
{
    Text = ",\t44\t;\t59\t:\t58\t{Tab}\t9\t{Leer}\t32" ;
    Text [ ENGLISH ] = ",\t44\t;\t59\t:\t58\t{Tab}\t9\t{Space}\t32" ;
    Text [ norwegian ] = ",\t44\t;\t59\t:\t58\t{Tab}\t9\t{Space}\t32" ;
    Text [ italian ] = ",\t44\t;\t59\t:\t58\t{Tab}\t9\t{Spazio}\t32" ;
    Text [ portuguese_brazilian ] = ",\t44\t;\t59\t:\t58\t{Tab}\t9\t{Space}\t32" ;
    Text [ portuguese ] = ",\t44\t;\t59\t:\t58\t{Tab}\t9\t{espao}\t32" ;
    Text [ french ] = ",\t44\t;\t59\t:\t58\t{Tab}\t9\t{Espace}\t32" ;
    Text [ dutch ] = ",\t44\t;\t59\t:\t58\t{Tab}\t9\t{Leeg}\t32" ;
    Text [ spanish ] = ",\t44\t;\t59\t:\t58\t{Tab}\t9\t{espacio}\t32" ;
    Text [ danish ] = ",\t44\t;\t59\t:\t58\t{Tab}\t9\t{tom}\t32" ;
    Text [ swedish ] = ",\t44\t;\t59\t:\t58\t{Tab}\t9\t{tom}\t32" ;
    Text [ finnish ] = ",\t44\t;\t59\t:\t58\t{Tab}\t9\t{space}\t32 " ;
    Text [ english_us ] = ",\t44\t;\t59\t:\t58\t{Tab}\t9\t{space}\t32 " ;
    Text[ chinese_simplified ] = ",\t44\t;\t59\t:\t58\t{制表符}\t9\t{空缺}\t32";
    Text[ russian ] = ",\t44\t;\t59\t:\t58\t{Tab}\t9\t{}\t32";
    Text[ polish ] = ",\t44\t;\t59\t:\t58\t{Tab}\t9\t{Pusty}\t32";
    Text[ japanese ] = ",\t44\t;\t59\t:\t58\t{タブ}\t9\t{空白}\t32";
    Text[ chinese_traditional ] = ",\t44\t;\t59\t:\t58\t{定位鍵}\t9\t{空缺}\t32";
    Text[ arabic ] = ",\t44\t;\t59\t:\t58\t{ }\t9\t{}\t32";
    Text[ greek ] = ",\t44\t;\t59\t:\t58\t{Tab}\t9\t{}\t32";
    Text[ korean ] = ",\t44\t;\t59\t:\t58\t{탭}\t9\t{공백}\t32";
    Text[ language_user1 ] = " ";
    Text[ turkish ] = ",\t44\t;\t59\t:\t58\t{Tab}\t9\t{Boluk}\t32";
    Text[ catalan ] = ",\t44\t;\t59\t:\t58\t{Tab}\t9\t{buit}\t32";
    Text[ thai ] = ",\t44\t;\t59\t:\t58\t{ระยะกั้น}\t9\t{ช่องว่าง}\t32 ";
};

String SCSTR_TEXTSEP
{
    Text = "\"\t34\t'\t39" ;
};

String SCSTR_FORMULA_AUTOCORRECTION
{
    Text = "%PRODUCTNAME Calc hat einen Fehler in der eingegebenen Formel gefunden.\nWollen Sie die unten vorgeschlagene Korrektur akzeptieren?\n\n" ;
    Text [ ENGLISH ] = "StarCalc found an error in the formula you entered.\nDo you want to accept the correction proposed below?\n\n" ;
    Text [ portuguese ] = "O %PRODUCTNAME Calc encontrou um erro na frmula indicada. \nAceitar a correco proposta em baixo?\n\n" ;
    Text [ english_us ] = "%PRODUCTNAME Calc found an error in the formula entered.\nDo you want to accept the correction proposed below?\n\n" ;
    Text [ portuguese_brazilian ] = "%PRODUCTNAME Calc hat einen Fehler in der eingegebenen Formel gefunden.\nWollen Sie die unten vorgeschlagene Korrektur akzeptieren?\n\n" ;
    Text [ swedish ] = "%PRODUCTNAME Calc har hittat ett fel i den angivna formeln.\nSkall korrigeringen som fresls nedan accepteras?\n\n" ;
    Text [ danish ] = "%PRODUCTNAME Calc har fundet en fejl i den indtastede formel.\nVil du acceptere den rettelse, som foresls nedenfor?\n" ;
    Text [ italian ] = "%PRODUCTNAME Calc ha trovato un errore nella formula digitata.\nVolete accettare la correzione proposta?\n\n" ;
    Text [ spanish ] = "%PRODUCTNAME Calc encontr un error en la frmula dada.\nDesea aceptar la correccin sugerida abajo?\n\n" ;
    Text [ french ] = "%PRODUCTNAME Calc a dtect une erreur dans la formule.\nAcceptez-vous la correction propose ci-dessous ?\n\n" ;
    Text [ dutch ] = "%PRODUCTNAME Calc heeft een fout in de formule gevonden.\nWilt u de hieronder voorgestelde correctie accepteren?\n\n" ;
    Text[ chinese_simplified ] = "%PRODUCTNAME Calc 发现输入的公式含有一个错误。\n您接受下面建议的修改吗?\n\n";
    Text[ russian ] = "%PRODUCTNAME Calc     .\n ,  ?\n\n";
    Text[ polish ] = "%PRODUCTNAME Calc znalaz bd we wprowadzonej formule.\nCzy akceptujesz podan na dole korekt?\n\n";
    Text[ japanese ] = "%PRODUCTNAME Calc は入力された数式内にエラーを発見しました。\n次の修正候補を適用しますか。\n\n";
    Text[ chinese_traditional ] = "%PRODUCTNAME Calc 發現輸入的公式含有一個錯誤。\n您接受下面的修改建議?\n\n";
    Text[ arabic ] = "%PRODUCTNAME Calc       .\n     \n\n";
    Text[ greek ] = " %PRODUCTNAME Calc       .\n          ;\n\n";
    Text[ korean ] = "%PRODUCTNAME Calc가 입력된 수식에서 오류가 발견되었습니다.\n다음의 제안된 수정을 적용하겠습니까?\n\n";
    Text[ turkish ] = "%PRODUCTNAME Calc, girilen formlde bir hata buldu.\nAada nerilen dzeltmeyi kabul etmek istiyor musunuz?\n\n";
    Text[ language_user1 ] = " ";
    Text[ catalan ] = "%PRODUCTNAME Calc ha trobat un error en la frmula.\nVols acceptar la proposta de correcci?\n\n";
    Text[ finnish ] = "%PRODUCTNAME Calc havaitsi virheen annetussa kaavassa.\nHyvksytk ehdotetun korjauksen?\n\n";
    Text[ thai ] = "พบข้อผิดพลาด %PRODUCTNAME Calc ในสูตรที่ใส่เข้าไป\nคุณต้องการยอมรับการแก้ไขข้อผิดพลาดที่เสนอข้างล่างหรือไม่?\n\n";
};

//! the graphics filter error strings should be moved to svx or offapp!

String SCSTR_GRFILTER_OPENERROR
{
    Text = "Grafikdatei kann nicht geffnet werden" ;
    Text [ English ] = "Can't open graphic file" ;
    Text [ norwegian ] = "Can't open graphic file" ;
    Text [ italian ] = "Impossibile aprire il file grafico" ;
    Text [ portuguese_brazilian ] = "N?o consigo abrir arquivo gr?fico" ;
    Text [ portuguese ] = "Impossvel abrir ficheiro grfico." ;
    Text [ finnish ] = "Grafiikkatiedostoja ei voi avata." ;
    Text [ danish ] = "Det er ikke muligt at bne grafikfilen" ;
    Text [ french ] = "Impossible d'ouvrir le fichier graphique !" ;
    Text [ swedish ] = "Grafikfil kan inte ppnas" ;
    Text [ dutch ] = "Grafisch bestand kan niet worden geopend" ;
    Text [ spanish ] = "No es posible abrir el archivo grfico" ;
    Text [ english_us ] = "Graphics file can not be opened" ;
    Text[ chinese_simplified ] = "无法打开图形文件";
    Text[ russian ] = "   ";
    Text[ polish ] = "Pliku graficznego nie mona byo otworzy";
    Text[ japanese ] = "画像ファイルを開けません。";
    Text[ chinese_traditional ] = "無法開啟圖形檔案";
    Text[ arabic ] = "    ";
    Text[ dutch ] = "Grafisch bestand kan niet worden geopend";
    Text[ chinese_simplified ] = "无法打开图形文件";
    Text[ greek ] = "       ";
    Text[ korean ] = "그림 파일을 열 수 없습니다.";
    Text[ turkish ] = "Grafik dosyas alamyor";
    Text[ language_user1 ] = " ";
    Text[ catalan ] = "No es pot obrir el fitxer grfic";
    Text[ thai ] = "ไม่สามารถเปิดแฟ้มกราฟิคได้";
};
String SCSTR_GRFILTER_IOERROR
{
    Text = "Grafikdatei kann nicht gelesen werden" ;
    Text [ English ] = "Can't read graphic file" ;
    Text [ norwegian ] = "Can't read graphic file" ;
    Text [ italian ] = "Impossibile leggere il file grafico" ;
    Text [ portuguese_brazilian ] = "N?o consigo ler arquivo gr?fico" ;
    Text [ portuguese ] = "Impossvel ler o ficheiro grfico." ;
    Text [ finnish ] = "Grafiikkatiedostoja ei voi lukea." ;
    Text [ danish ] = "Det er ikke muligt at lse grafikfilen" ;
    Text [ french ] = "Impossible de lire le fichier graphique !" ;
    Text [ swedish ] = "Grafikfil kan inte lsas" ;
    Text [ dutch ] = "Grafisch bestand kan niet worden gelezen" ;
    Text [ spanish ] = "No es posible leer el archivo grfico" ;
    Text [ english_us ] = "Graphics file can not be read" ;
    Text[ chinese_simplified ] = "无法读取图形文件";
    Text[ russian ] = "   ";
    Text[ polish ] = "Pliku graficznego nie mona byo odczyta";
    Text[ japanese ] = "画像ファイルを読み込めません";
    Text[ chinese_traditional ] = "無法讀取圖形檔案";
    Text[ arabic ] = "    ";
    Text[ dutch ] = "Grafisch bestand kan niet worden gelezen";
    Text[ chinese_simplified ] = "无法读取图形文件";
    Text[ greek ] = "       ";
    Text[ korean ] = "그림 파일을 읽을 수 없습니다.";
    Text[ turkish ] = "Grafik dosyas okunamyor";
    Text[ language_user1 ] = " ";
    Text[ catalan ] = "No es pot llegir el fitxer grfic";
    Text[ thai ] = "ไม่สามารถอ่านแฟ้มกราฟิคได้";
};
String SCSTR_GRFILTER_FORMATERROR
{
    Text = "Unbekanntes Grafikformat" ;
    Text [ English ] = "Unknown graphic format" ;
    Text [ norwegian ] = "Unknown graphic format" ;
    Text [ italian ] = "Formato grafico sconosciuto" ;
    Text [ portuguese_brazilian ] = "Formato gr?fico desconhecido" ;
    Text [ portuguese ] = "Formato de grfico desconhecido." ;
    Text [ finnish ] = "Tuntematon grafiikkamuoto" ;
    Text [ danish ] = "Ukendt grafikformat" ;
    Text [ french ] = "Format graphique inconnu !" ;
    Text [ swedish ] = "Oknt grafikformat" ;
    Text [ dutch ] = "Onbekende grafische-bestandsindeling" ;
    Text [ spanish ] = "Formato de imagen desconocido" ;
    Text [ english_us ] = "Unknown graphic format" ;
    Text[ chinese_simplified ] = "不明的图形格式";
    Text[ russian ] = "   ";
    Text[ polish ] = "Nieznany format graficzny";
    Text[ japanese ] = "不明な図の書式";
    Text[ chinese_traditional ] = "不明的圖形格式";
    Text[ arabic ] = "   ";
    Text[ dutch ] = "Onbekende grafische-bestandsindeling";
    Text[ chinese_simplified ] = "不明的图形格式";
    Text[ greek ] = "  ";
    Text[ korean ] = "알 수 없는 그래픽 서식";
    Text[ turkish ] = "Bilinmeyen grafik dosyas";
    Text[ language_user1 ] = " ";
    Text[ catalan ] = "El format de la imatge s desconegut";
    Text[ thai ] = "ไม่รู้จักรูปแบบกราฟิค";
};
String SCSTR_GRFILTER_VERSIONERROR
{
    Text = "Die Version der Grafikdatei wird nicht untersttzt" ;
    Text [ English ] = "Version of graphic file not supported" ;
    Text [ norwegian ] = "Version of graphic file not supported" ;
    Text [ italian ] = "Versione del file grafico non supportata" ;
    Text [ portuguese_brazilian ] = "Vers?o de arquivo gr?fico n?o suportada" ;
    Text [ portuguese ] = "Verso do ficheiro grfico no tem suporte." ;
    Text [ finnish ] = "Tt grafiikkatiedoston versiota ei tueta." ;
    Text [ danish ] = "Grafikfilens version bliver ikke understttet" ;
    Text [ french ] = "Cette version du fichier graphique n'est pas supporte !" ;
    Text [ swedish ] = "Grafikfilens version stds inte" ;
    Text [ dutch ] = "Deze versie van het grafische bestand wordt niet ondersteund" ;
    Text [ spanish ] = "No se admite la versin del archivo grfico" ;
    Text [ english_us ] = "This graphic file version is not supported" ;
    Text[ chinese_simplified ] = "不支持这个图形文件版本";
    Text[ russian ] = "    ";
    Text[ polish ] = "Wersja pliku graficznego nie bdzie obsugiwana";
    Text[ japanese ] = "この画像ファイルのバージョンは支援されません。";
    Text[ chinese_traditional ] = "不支援這個版本的圖形檔案";
    Text[ arabic ] = "     ";
    Text[ dutch ] = "Deze versie van het grafische bestand wordt niet ondersteund";
    Text[ chinese_simplified ] = "不支持这个图形文件版本";
    Text[ greek ] = "       ";
    Text[ korean ] = "이 그래픽 파일 버전은 지원되지 않습니다.";
    Text[ turkish ] = "Bu grafik dosyas srm desteklenmiyor";
    Text[ language_user1 ] = " ";
    Text[ catalan ] = "Aquesta versi del fitxer grfic no s soportada";
    Text[ thai ] = "ไม่สนับสนุนเวอร์ชั่นแฟ้มกราฟิคนี้";
};
String SCSTR_GRFILTER_FILTERERROR
{
    Text = "Grafikfilter nicht gefunden" ;
    Text [ English ] = "Graphic filter not found" ;
    Text [ norwegian ] = "Graphic filter not found" ;
    Text [ italian ] = "Filtro grafico non trovato" ;
    Text [ portuguese_brazilian ] = "Filtro gr?fico n?o encontrado" ;
    Text [ portuguese ] = "Filtro grfico no encontrado." ;
    Text [ finnish ] = "Grafiikkasuodatinta ei lytynyt." ;
    Text [ danish ] = "Grafikfilter blev ikke fundet" ;
    Text [ french ] = "Filtre graphique introuvable" ;
    Text [ swedish ] = "Grafikfilter hittades inte" ;
    Text [ dutch ] = "Afbeeldingsfilter niet gevonden" ;
    Text [ spanish ] = "No se encontr el filtro de imagen" ;
    Text [ english_us ] = "Graphics filter not found" ;
    Text[ chinese_simplified ] = "没有找到图形过滤器";
    Text[ russian ] = "    .";
    Text[ polish ] = "Nie znaleziono filtrw graficznych";
    Text[ japanese ] = "画像フィルタが見つかりません。";
    Text[ chinese_traditional ] = "沒有找到圖形過濾器";
    Text[ arabic ] = "    ";
    Text[ dutch ] = "Afbeeldingsfilter niet gevonden";
    Text[ chinese_simplified ] = "没有找到图形过滤器";
    Text[ greek ] = "    ";
    Text[ korean ] = "그래픽 필터를 찾지 못했습니다.";
    Text[ turkish ] = "Grafik filtresi bulunamad";
    Text[ language_user1 ] = " ";
    Text[ catalan ] = "No s'ha trobat el filtre d'imatge";
    Text[ thai ] = "ไม่พบตัวกรองกราฟิค";
};
String SCSTR_GRFILTER_TOOBIG
{
    Text = "Nicht genug Speicher zum Einfgen der Grafik" ;
    Text [ English ] = "Not enough memory to insert graphic" ;
    Text [ norwegian ] = "Not enough memory to insert graphic" ;
    Text [ italian ] = "Memoria insufficiente per inserire l'immagine" ;
    Text [ portuguese_brazilian ] = "Mem?ria insuficiente para inserir o gr?fico" ;
    Text [ portuguese ] = "Memria insuficiente para inserir a imagem." ;
    Text [ finnish ] = "Muisti ei riit kuvien lismiseen." ;
    Text [ danish ] = "Ikke nok hukommelse til at indstte grafiken" ;
    Text [ french ] = "Impossible d'insrer l'image, mmoire insuffisante !" ;
    Text [ swedish ] = "Inte tillrckligt med minne fr att infoga grafiken" ;
    Text [ dutch ] = "Niet genoeg vrij geheugen om de afbeelding in te voegen" ;
    Text [ spanish ] = "No hay suficiente memoria para insertar la imagen" ;
    Text [ english_us ] = "Not enough memory available to insert graphics." ;
    Text[ chinese_simplified ] = "没有足够的内存用于插入图形";
    Text[ russian ] = "     .";
    Text[ polish ] = "Za mao pamici do wstawienia grafiki";
    Text[ japanese ] = "グラッフィックの挿入に必要なディスク空き容量が足りません。";
    Text[ chinese_traditional ] = "記憶體不足,無法插入圖形";
    Text[ arabic ] = "     ";
    Text[ dutch ] = "Niet genoeg vrij geheugen om de afbeelding in te voegen";
    Text[ chinese_simplified ] = "没有足够的内存用于插入图形";
    Text[ greek ] = "        .";
    Text[ korean ] = "메모리가 부족하여 그림을 삽입할 수 없습니다.";
    Text[ turkish ] = "Grafiin eklenmesi iin yeterli bellek yok";
    Text[ language_user1 ] = " ";
    Text[ catalan ] = "No hi ha prou memria per a inserir la imatge";
    Text[ thai ] = "หน่วยความจำไม่พอที่จะแทรกกราฟิค";
};
String SCSTR_UNDO_GRAFFILTER
{
    Text = "Grafikfilter" ;
    Text [ ENGLISH ] = "Graphic filter" ;
    Text [ english_us ] = "Graphics Filter" ;
    Text[ portuguese ] = "Filtro grfico";
    Text[ russian ] = "  ";
    Text[ greek ] = " ";
    Text[ dutch ] = "Afbeeldingsfilters";
    Text[ french ] = "Filtre graphique";
    Text[ spanish ] = "Filtro de imagen";
    Text[ italian ] = "Filtro grafico";
    Text[ danish ] = "Grafikfilter";
    Text[ swedish ] = "Grafikfilter";
    Text[ polish ] = "Filtr graficzny";
    Text[ portuguese_brazilian ] = "Graphic filter";
    Text[ japanese ] = "画像フィルタ";
    Text[ korean ] = "그래픽 필터";
    Text[ chinese_simplified ] = "图形过滤器";
    Text[ chinese_traditional ] = "圖形過濾器";
    Text[ arabic ] = " ";
    Text[ turkish ] = "Grafik filtresi";
    Text[ catalan ] = "Filtre d'imatge";
    Text[ finnish ] = "Grafiikkasuodatin";
    Text[ thai ] = "ตัวกรองกราฟิค";
};

// #98185#
String STR_CAPTION_DEFAULT_TEXT
{
    Text = "Text" ;
    Text [ ENGLISH ] = "Text" ;
    Text [ english_us ] = "Text" ;
    Text [ italian ] = "Testo" ;
    Text [ spanish ] = "Texto" ;
    Text [ french ] = "Texte" ;
    Text [ dutch ] = "Tekst" ;
    Text [ swedish ] = "Text" ;
    Text [ danish ] = "Tekst" ;
    Text [ portuguese_brazilian ] = "Text" ;
    Text [ portuguese ] = "Texto" ;
    Text[ chinese_simplified ] = "文字";
    Text[ russian ] = "";
    Text[ polish ] = "Tekst";
    Text[ japanese ] = "テキスト";
    Text[ chinese_traditional ] = "文字";
    Text[ arabic ] = "";
    Text[ dutch ] = "Tekst";
    Text[ chinese_simplified ] = "文字";
    Text[ greek ] = "";
    Text[ korean ] = "텍스트";
    Text[ turkish ] = "Metin";
    Text[ language_user1 ] = " ";
    Text[ finnish ] = "Teksti";
    Text[ catalan ] = "Text";
    Text[ thai ] = "ข้อความ";
};

// Select tables dialog title
String STR_DLG_SELECTTABLES_TITLE
{
    Text = "Tabellen auswhlen";
    Text[ ENGLISH ] = "Select Sheets";
    Text[ english_us ] = "Select Sheets";
    Text[ portuguese ] = "Select Sheets";
    Text[ russian ] = "Select Sheets";
    Text[ greek ] = "Select Sheets";
    Text[ dutch ] = "Select Sheets";
    Text[ french ] = "Slectionner des feuilles";
    Text[ spanish ] = "Seleccionar hojas";
    Text[ finnish ] = "Select Sheets";
    Text[ italian ] = "Seleziona tabelle";
    Text[ danish ] = "Select Sheets";
    Text[ swedish ] = "Markera tabeller";
    Text[ polish ] = "Select Sheets";
    Text[ portuguese_brazilian ] = "Select Sheets";
    Text[ japanese ] = "表の選択";
    Text[ korean ] = "시트 선택";
    Text[ chinese_simplified ] = "选择工作表";
    Text[ chinese_traditional ] = "選取工作表";
    Text[ turkish ] = "Select Sheets";
    Text[ arabic ] = "Select Sheets";
    Text[ catalan ] = "Select Sheets";
    Text[ thai ] = "Select Sheets";
};

// Select tables dialog listbox
String STR_DLG_SELECTTABLES_LBNAME
{
    Text = "~Ausgewhlte Tabellen";
    Text[ ENGLISH ] = "~Selected sheets";
    Text[ english_us ] = "~Selected sheets";
    Text[ portuguese ] = "~Selected sheets";
    Text[ russian ] = "~Selected sheets";
    Text[ greek ] = "~Selected sheets";
    Text[ dutch ] = "~Selected sheets";
    Text[ french ] = "Feuilles slectionnes";
    Text[ spanish ] = "~Hojas seleccionadas";
    Text[ finnish ] = "~Selected sheets";
    Text[ italian ] = "~Seleziona tabelle";
    Text[ danish ] = "~Selected sheets";
    Text[ swedish ] = "Markerade tabeller";
    Text[ polish ] = "~Selected sheets";
    Text[ portuguese_brazilian ] = "~Selected sheets";
    Text[ japanese ] = "選択した表";
    Text[ korean ] = "선택된 시트";
    Text[ chinese_simplified ] = "选择工作表(~S)";
    Text[ chinese_traditional ] = "選取工作表(~S)";
    Text[ turkish ] = "~Selected sheets";
    Text[ arabic ] = "~Selected sheets";
    Text[ catalan ] = "~Selected sheets";
    Text[ thai ] = "~Selected sheets";
};

String STR_REPLCELLSWARN
{
    Text = "Die Zellen, in die Sie Daten einfgen wollen, enthalten bereits Daten.\nWollen Sie die vorhandenen Daten wirklich berschreiben?";
    Text[ english ] = "You are pasting data into cells that already contain data.\nDo you really want to overwrite the existing data?";
    Text[ english_us ] = "You are pasting data into cells that already contain data.\nDo you really want to overwrite the existing data?";
    Text[ portuguese ] = "Do you want to replace the contents of the destination cells?";
    Text[ russian ] = "Do you want to replace the contents of the destination cells?";
    Text[ greek ] = "Do you want to replace the contents of the destination cells?";
    Text[ dutch ] = "Do you want to replace the contents of the destination cells?";
    Text[ french ] = "Les cellules dans lesquelles vous voulez insrer des donnes contiennent dj des donnes.\ncraser les donnes existantes ?";
    Text[ spanish ] = "Las celdas en las que quiere insertar datos ya contienen datos.\nDesea sobrescribir los datos existentes?";
    Text[ finnish ] = "Do you want to replace the contents of the destination cells?";
    Text[ italian ] = "Le celle in cui volete inserire i dati contengono gi dei dati.\nVolete soprascriverli?";
    Text[ danish ] = "Do you want to replace the contents of the destination cells?";
    Text[ swedish ] = "Cellerna som du vill klistra in data i innehller redan data.\nVill du verkligen skriva ver dessa data?";
    Text[ polish ] = "Do you want to replace the contents of the destination cells?";
    Text[ japanese ] = "データを挿入しようとしているセルには、すでにデータがあります。\n既存のデータに上書きしますか。";
    Text[ korean ] = "붙여넣기하려는 셀에는 이미 데이터가 있습니다. 기존의 데이터를 덮어쓰시겠습니까?";
    Text[ chinese_simplified ] = "要粘贴数据的单元格已经含有数据。\n真的要改写现存的数据?";
    Text[ chinese_traditional ] = "要貼上資料的儲存格已經含有資料。\n您真的要覆寫現有的資料?";
    Text[ turkish ] = "Do you want to replace the contents of the destination cells?";
    Text[ arabic ] = "Do you want to replace the contents of the destination cells?";
};


String STR_ACC_CSVRULER_NAME
{
    Text = "Lineal";
    Text[ english ] = "Ruler";
    Text[ english_us ] = "Ruler";
    Text[ portuguese ] = "Ruler";
    Text[ russian ] = "Ruler";
    Text[ greek ] = "Ruler";
    Text[ dutch ] = "Ruler";
    Text[ french ] = "Rgle";
    Text[ spanish ] = "Regla";
    Text[ finnish ] = "Ruler";
    Text[ italian ] = "Righello";
    Text[ danish ] = "Ruler";
    Text[ swedish ] = "Linjal";
    Text[ polish ] = "Ruler";
    Text[ portuguese_brazilian ] = "Ruler";
    Text[ japanese ] = "ルーラ";
    Text[ korean ] = "눈금자";
    Text[ chinese_simplified ] = "标尺";
    Text[ chinese_traditional ] = "標尺";
    Text[ turkish ] = "Ruler";
    Text[ arabic ] = "Ruler";
    Text[ catalan ] = "Ruler";
    Text[ thai ] = "Ruler";
};

String STR_ACC_CSVRULER_DESCR
{
    Text = "Dieses Lineal verwaltet Objekte an festen Positionen.";
    Text[ english ] = "Ruler which manages objects at fixed positions.";
    Text[ english_us ] = "This ruler manages objects at fixed positions.";
    Text[ portuguese ] = "Ruler which manages objects at fixed positions.";
    Text[ russian ] = "Ruler which manages objects at fixed positions.";
    Text[ greek ] = "Ruler which manages objects at fixed positions.";
    Text[ dutch ] = "Ruler which manages objects at fixed positions.";
    Text[ french ] = "Cette rgle gre les objets  des positions fixes.";
    Text[ spanish ] = "Esta regla administra los objetos en posiciones fijas. ";
    Text[ finnish ] = "Ruler which manages objects at fixed positions.";
    Text[ italian ] = "Il righello gestisce oggetti in posizione fissa.";
    Text[ danish ] = "Ruler which manages objects at fixed positions.";
    Text[ swedish ] = "Den hr linjalen hanterar objekt p fasta positioner.";
    Text[ polish ] = "Ruler which manages objects at fixed positions.";
    Text[ portuguese_brazilian ] = "Ruler which manages objects at fixed positions.";
    Text[ japanese ] = "このルーラを使用してオブジェクトの配置を決めます。";
    Text[ korean ] = "이 눈금자는 고정된 위치에 있는 개체를 관리합니다.";
    Text[ chinese_simplified ] = "通过这个尺标来控制处于固定位置的对象。";
    Text[ chinese_traditional ] = "標尺在固定位置管理物件。";
    Text[ turkish ] = "Ruler which manages objects at fixed positions.";
    Text[ arabic ] = "Ruler which manages objects at fixed positions.";
    Text[ catalan ] = "Ruler which manages objects at fixed positions.";
    Text[ thai ] = "Ruler which manages objects at fixed positions.";
};

String STR_ACC_CSVGRID_NAME
{
    Text = "Vorschau";
    Text[ english ] = "Preview";
    Text[ english_us ] = "Preview";
    Text[ portuguese ] = "Preview table";
    Text[ russian ] = "Preview table";
    Text[ greek ] = "Preview table";
    Text[ dutch ] = "Preview table";
    Text[ french ] = "Aperu";
    Text[ spanish ] = "Previsualizacin";
    Text[ finnish ] = "Preview table";
    Text[ italian ] = "Anteprima";
    Text[ danish ] = "Preview table";
    Text[ swedish ] = "Frhandsvisning";
    Text[ polish ] = "Preview table";
    Text[ portuguese_brazilian ] = "Preview table";
    Text[ japanese ] = "プレビュー";
    Text[ korean ] = "미리 보기";
    Text[ chinese_simplified ] = "预览";
    Text[ chinese_traditional ] = "預覽";
    Text[ turkish ] = "Preview table";
    Text[ arabic ] = "Preview table";
    Text[ catalan ] = "Preview table";
    Text[ thai ] = "Preview table";
};

String STR_ACC_CSVGRID_DESCR
{
    Text = "Diese Tabelle zeigt die Anordnung der Daten, wie sie im Dokument erscheinen.";
    Text[ english ] = "This sheet shows, how the data will be arranged in the document.";
    Text[ english_us ] = "This sheet shows how the data will be arranged in the document.";
    Text[ portuguese ] = "This sheet shows, how the data will be arranged in the document.";
    Text[ russian ] = "This sheet shows, how the data will be arranged in the document.";
    Text[ greek ] = "This sheet shows, how the data will be arranged in the document.";
    Text[ dutch ] = "This sheet shows, how the data will be arranged in the document.";
    Text[ french ] = "Cette feuille montre la disposition des donnes dans le document.";
    Text[ spanish ] = "Esta hoja muestra la disposicin de los datos en el documento. ";
    Text[ finnish ] = "This sheet shows, how the data will be arranged in the document.";
    Text[ italian ] = "La tabella mostra la disposizione dei dati nel documento.";
    Text[ danish ] = "This sheet shows, how the data will be arranged in the document.";
    Text[ swedish ] = "Den hr tabellen visar hur data ordnas i dokumentet.";
    Text[ polish ] = "This sheet shows, how the data will be arranged in the document.";
    Text[ portuguese_brazilian ] = "This sheet shows, how the data will be arranged in the document.";
    Text[ japanese ] = "この表に示すようにドキュメント内にデータが配置されます。";
    Text[ korean ] = "이 시트는 데이터가 문서에서 어떻게 배치될 것인지 표시해줍니다.";
    Text[ chinese_simplified ] = "这个工作表显示出在文档之内的数据排列方式。";
    Text[ chinese_traditional ] = "這個工作表顯示資料將在文件內排列的方式。";
    Text[ turkish ] = "This sheet shows, how the data will be arranged in the document.";
    Text[ arabic ] = "This sheet shows, how the data will be arranged in the document.";
    Text[ catalan ] = "This sheet shows, how the data will be arranged in the document.";
    Text[ thai ] = "This sheet shows, how the data will be arranged in the document.";
};

String STR_ACC_DOC_NAME
{
    Text = "Dokumentenansicht";
    Text[ english ] = "Document View";
    Text[ english_us ] = "Document view";
    Text[ portuguese ] = "Document View";
    Text[ russian ] = "Document View";
    Text[ greek ] = "Document View";
    Text[ dutch ] = "Document View";
    Text[ french ] = "Affichage du document";
    Text[ spanish ] = "Visualizacin del documento";
    Text[ finnish ] = "Document View";
    Text[ italian ] = "Vista documento";
    Text[ danish ] = "Document View";
    Text[ swedish ] = "Dokumentvy";
    Text[ polish ] = "Document View";
    Text[ portuguese_brazilian ] = "Document View";
    Text[ japanese ] = "ドキュメント表示";
    Text[ korean ] = "문서 보기";
    Text[ chinese_simplified ] = "文档视图";
    Text[ chinese_traditional ] = "文件檢視";
    Text[ turkish ] = "Document View";
    Text[ arabic ] = "Document View";
    Text[ catalan ] = "Document View";
    Text[ thai ] = "Document View";
};

String STR_ACC_DOC_DESCR
{
    Text = "";
};

String STR_ACC_TABLE_NAME
{
    Text = "Tabelle %1";
    Text[ english ] = "Sheet %1";
    Text[ english_us ] = "Sheet %1";
    Text[ portuguese ] = "Table %1";
    Text[ russian ] = "Table %1";
    Text[ greek ] = "Table %1";
    Text[ dutch ] = "Table %1";
    Text[ french ] = "Feuille %1";
    Text[ spanish ] = "Hoja %1";
    Text[ finnish ] = "Table %1";
    Text[ italian ] = "Tabella %1";
    Text[ danish ] = "Table %1";
    Text[ swedish ] = "Tabell %1";
    Text[ polish ] = "Table %1";
    Text[ portuguese_brazilian ] = "Table %1";
    Text[ japanese ] = "表 %1";
    Text[ korean ] = "시트 %1";
    Text[ chinese_simplified ] = "工作表 %1";
    Text[ chinese_traditional ] = "工作表 %1";
    Text[ turkish ] = "Table %1";
    Text[ arabic ] = "Table %1";
    Text[ catalan ] = "Table %1";
    Text[ thai ] = "Table %1";
};

String STR_ACC_TABLE_DESCR
{
    Text = "";
};

String STR_ACC_CELL_NAME
{
    Text = "Zelle %1";
    Text[ english ] = "Cell %1";
    Text[ english_us ] = "Cell %1";
    Text[ portuguese ] = "Table Cell %1";
    Text[ russian ] = "Table Cell %1";
    Text[ greek ] = "Table Cell %1";
    Text[ dutch ] = "Table Cell %1";
    Text[ french ] = "Cellule %1";
    Text[ spanish ] = "Celda %1";
    Text[ finnish ] = "Table Cell %1";
    Text[ italian ] = "Cella %1";
    Text[ danish ] = "Table Cell %1";
    Text[ swedish ] = "Cell %1";
    Text[ polish ] = "Table Cell %1";
    Text[ portuguese_brazilian ] = "Table Cell %1";
    Text[ japanese ] = "表のセル %1";
    Text[ korean ] = "셀 %1";
    Text[ chinese_simplified ] = "单元格 %1";
    Text[ chinese_traditional ] = "儲存格 %1";
    Text[ turkish ] = "Table Cell %1";
    Text[ arabic ] = "Table Cell %1";
    Text[ catalan ] = "Table Cell %1";
    Text[ thai ] = "Table Cell %1";
};

String STR_ACC_CELL_DESCR
{
    Text = "";
};

String STR_ACC_PREVIEWDOC_NAME
{
    Text = "Seitenvorschau";
    Text[ english ] = "Page Preview";
    Text[ english_us ] = "Page preview";
    Text[ portuguese ] = "Page Preview";
    Text[ russian ] = "Page Preview";
    Text[ greek ] = "Page Preview";
    Text[ dutch ] = "Page Preview";
    Text[ french ] = "Aperu de page";
    Text[ spanish ] = "Vista preliminar";
    Text[ finnish ] = "Page Preview";
    Text[ italian ] = "Anteprima di pagina";
    Text[ danish ] = "Page Preview";
    Text[ swedish ] = "Sidfrhandsvisning";
    Text[ polish ] = "Page Preview";
    Text[ portuguese_brazilian ] = "Page Preview";
    Text[ japanese ] = "印刷プレビュー";
    Text[ korean ] = "페이지 미리 보기";
    Text[ chinese_simplified ] = "页面预览";
    Text[ chinese_traditional ] = "頁面檢視";
    Text[ turkish ] = "Page Preview";
    Text[ arabic ] = "Page Preview";
    Text[ catalan ] = "Page Preview";
    Text[ thai ] = "Page Preview";
};

String STR_ACC_PREVIEWDOC_DESCR
{
    Text = "";
};

String STR_ACC_HEADERCELL_NAME
{
    Text = "";
};

String STR_ACC_HEADERCELL_DESCR
{
    Text = "";
};

String STR_ACC_LEFTAREA_NAME
{
    Text = "Linker Bereich";
    Text[ english ] = "Left Area";
    Text[ english_us ] = "Left area";
    Text[ portuguese ] = "Left Area";
    Text[ russian ] = "Left Area";
    Text[ greek ] = "Left Area";
    Text[ dutch ] = "Left Area";
    Text[ french ] = "Plage gauche";
    Text[ spanish ] = "rea izquierda";
    Text[ finnish ] = "Left Area";
    Text[ italian ] = "Area sinistra";
    Text[ danish ] = "Left Area";
    Text[ swedish ] = "Vnster omrde";
    Text[ polish ] = "Left Area";
    Text[ portuguese_brazilian ] = "Left Area";
    Text[ japanese ] = "左の範囲";
    Text[ korean ] = "왼쪽 영역";
    Text[ chinese_simplified ] = "左边区域";
    Text[ chinese_traditional ] = "左區域";
    Text[ turkish ] = "Left Area";
    Text[ arabic ] = "Left Area";
    Text[ catalan ] = "Left Area";
    Text[ thai ] = "Left Area";
};

String STR_ACC_LEFTAREA_DESCR
{
    Text = "";
};

String STR_ACC_CENTERAREA_NAME
{
    Text = "Mittlerer Bereich";
    Text[ english ] = "Center Area";
    Text[ english_us ] = "Center area";
    Text[ portuguese ] = "Center Area";
    Text[ russian ] = "Center Area";
    Text[ greek ] = "Center Area";
    Text[ dutch ] = "Center Area";
    Text[ french ] = "Plage centrale";
    Text[ spanish ] = "rea central";
    Text[ finnish ] = "Center Area";
    Text[ italian ] = "Area centrale";
    Text[ danish ] = "Center Area";
    Text[ swedish ] = "Mittomrde";
    Text[ polish ] = "Center Area";
    Text[ portuguese_brazilian ] = "Center Area";
    Text[ japanese ] = "中央の範囲";
    Text[ korean ] = "중심 영역";
    Text[ chinese_simplified ] = "中间区域";
    Text[ chinese_traditional ] = "中間區域";
    Text[ turkish ] = "Center Area";
    Text[ arabic ] = "Center Area";
    Text[ catalan ] = "Center Area";
    Text[ thai ] = "Center Area";
};

String STR_ACC_CENTERAREA_DESCR
{
    Text = "";
};

String STR_ACC_RIGHTAREA_NAME
{
    Text = "Rechter Bereich";
    Text[ english ] = "Right Area";
    Text[ english_us ] = "Right area";
    Text[ portuguese ] = "Right Area";
    Text[ russian ] = "Right Area";
    Text[ greek ] = "Right Area";
    Text[ dutch ] = "Right Area";
    Text[ french ] = "Plage droite";
    Text[ spanish ] = "rea derecha";
    Text[ finnish ] = "Right Area";
    Text[ italian ] = "Area destra";
    Text[ danish ] = "Right Area";
    Text[ swedish ] = "Hger omrde";
    Text[ polish ] = "Right Area";
    Text[ portuguese_brazilian ] = "Right Area";
    Text[ japanese ] = "右の範囲";
    Text[ korean ] = "오른쪽 영역";
    Text[ chinese_simplified ] = "右边区域";
    Text[ chinese_traditional ] = "右區域";
    Text[ turkish ] = "Right Area";
    Text[ arabic ] = "Right Area";
    Text[ catalan ] = "Right Area";
    Text[ thai ] = "Right Area";
};

String STR_ACC_RIGHTAREA_DESCR
{
    Text = "";
};

String STR_ACC_HEADER_NAME
{
    Text = "Kopfzeile Seite %1";
    Text[ english ] = "Header Page %1";
    Text[ english_us ] = "Header of page %1";
    Text[ portuguese ] = "Header";
    Text[ russian ] = "Header";
    Text[ greek ] = "Header";
    Text[ dutch ] = "Header";
    Text[ french ] = "En-tte de la page %1";
    Text[ spanish ] = "Encabezamiento de la pgina %1";
    Text[ finnish ] = "Header";
    Text[ italian ] = "Riga d'intestazione della pagina %1";
    Text[ danish ] = "Header";
    Text[ swedish ] = "Sidhuvud sida %1";
    Text[ polish ] = "Header";
    Text[ portuguese_brazilian ] = "Header";
    Text[ japanese ] = "ページ %1 のヘッダ";
    Text[ korean ] = "%1 페이지의 머리글";
    Text[ chinese_simplified ] = "页眉 页 %1";
    Text[ chinese_traditional ] = "頁 %1 的頁首";
    Text[ turkish ] = "Header";
    Text[ arabic ] = "Header";
    Text[ catalan ] = "Header";
    Text[ thai ] = "Header";
};

String STR_ACC_HEADER_DESCR
{
    Text = "";
};

String STR_ACC_FOOTER_NAME
{
    Text = "Fuzeile Seite %1";
    Text[ english ] = "Footer Page %1";
    Text[ english_us ] = "Footer of page %1";
    Text[ portuguese ] = "Footer";
    Text[ russian ] = "Footer";
    Text[ greek ] = "Footer";
    Text[ dutch ] = "Footer";
    Text[ french ] = "Pied de page de la page %1";
    Text[ spanish ] = "Pie de pgina de la pgina %1";
    Text[ finnish ] = "Footer";
    Text[ italian ] = "Pi di pagina della pagina %1";
    Text[ danish ] = "Footer";
    Text[ swedish ] = "Sidfot sida %1";
    Text[ polish ] = "Footer";
    Text[ portuguese_brazilian ] = "Footer";
    Text[ japanese ] = "ページ %1 のフッタ";
    Text[ korean ] = "%1 페이지의 바닥글";
    Text[ chinese_simplified ] = "页脚 页 %1";
    Text[ chinese_traditional ] = "頁 %1 的頁尾";
    Text[ turkish ] = "Footer";
    Text[ arabic ] = "Footer";
    Text[ catalan ] = "Footer";
    Text[ thai ] = "Footer";
};

String STR_ACC_FOOTER_DESCR
{
    Text = "";
};

String STR_ACC_EDITLINE_NAME
{
    Text = "Editzeile";
    Text[ english ] = "Input line";
    Text[ english_us ] = "Input line";
    Text[ portuguese ] = "Editline";
    Text[ russian ] = "Editline";
    Text[ greek ] = "Editline";
    Text[ dutch ] = "Editline";
    Text[ french ] = "Ligne de saisie";
    Text[ spanish ] = "Lnea de edicin";
    Text[ finnish ] = "Editline";
    Text[ italian ] = "Riga di modifica";
    Text[ danish ] = "Editline";
    Text[ swedish ] = "Inmatningsrad";
    Text[ polish ] = "Editline";
    Text[ portuguese_brazilian ] = "Editline";
    Text[ japanese ] = "入力行";
    Text[ korean ] = "입력줄";
    Text[ chinese_simplified ] = "输入行";
    Text[ chinese_traditional ] = "輸入欄";
    Text[ turkish ] = "Editline";
    Text[ arabic ] = "Editline";
    Text[ catalan ] = "Editline";
    Text[ thai ] = "Editline";
};

String STR_ACC_EDITLINE_DESCR
{
    Text = "Hier knnen Sie Text, Zahlen und Formeln eingeben und bearbeiten.";
    Text[ english ] = "This is where you enter or edit text, numbers and formulas.";
    Text[ english_us ] = "This is where you enter or edit text, numbers and formulas.";
    Text[ portuguese ] = "This is where you enter or edit text, numbers and formulas.";
    Text[ russian ] = "This is where you enter or edit text, numbers and formulas.";
    Text[ greek ] = "This is where you enter or edit text, numbers and formulas.";
    Text[ dutch ] = "This is where you enter or edit text, numbers and formulas.";
    Text[ french ] = "Saisie et dition des textes, nombres et formules";
    Text[ spanish ] = "Aqu se puede introducir y editar texto, nmeros y frmulas. ";
    Text[ finnish ] = "This is where you enter or edit text, numbers and formulas.";
    Text[ italian ] = "Spazio per scrivere o modificare testo, numeri e formule.";
    Text[ danish ] = "This is where you enter or edit text, numbers and formulas.";
    Text[ swedish ] = "Hr kan du mata in och redigera text, tal och formler.";
    Text[ polish ] = "This is where you enter or edit text, numbers and formulas.";
    Text[ portuguese_brazilian ] = "This is where you enter or edit text, numbers and formulas.";
    Text[ japanese ] = "ここでテキスト、数値、数式の入力または編集を行います。";
    Text[ korean ] = "여기에서 텍스트, 숫자와 수식을 입력하거나 편집합니다.";
    Text[ chinese_simplified ] = "在此您能够输入和编辑文字、数字和公式。";
    Text[ chinese_traditional ] = "在此您能夠輸入和編輯文字、數字和公式。";
    Text[ turkish ] = "This is where you enter or edit text, numbers and formulas.";
    Text[ arabic ] = "This is where you enter or edit text, numbers and formulas.";
    Text[ catalan ] = "This is where you enter or edit text, numbers and formulas.";
    Text[ thai ] = "This is where you enter or edit text, numbers and formulas.";
};

String STR_ACC_EDITCELL_NAME
{
    Text = "Zelle %1";
    Text[ english ] = "Cell %1";
    Text[ english_us ] = "Cell %1";
    Text[ portuguese ] = "Table Cell %1";
    Text[ russian ] = "Table Cell %1";
    Text[ greek ] = "Table Cell %1";
    Text[ dutch ] = "Table Cell %1";
    Text[ french ] = "Cellule %1";
    Text[ spanish ] = "Celda %1";
    Text[ finnish ] = "Table Cell %1";
    Text[ italian ] = "Cella %1";
    Text[ danish ] = "Table Cell %1";
    Text[ swedish ] = "Cell %1";
    Text[ polish ] = "Table Cell %1";
    Text[ portuguese_brazilian ] = "Table Cell %1";
    Text[ japanese ] = "表のセル %1";
    Text[ korean ] = "셀 %1";
    Text[ chinese_simplified ] = "单元格 %1";
    Text[ chinese_traditional ] = "儲存格 %1";
    Text[ turkish ] = "Table Cell %1";
    Text[ arabic ] = "Table Cell %1";
    Text[ catalan ] = "Table Cell %1";
    Text[ thai ] = "Table Cell %1";
};

String STR_ACC_EDITCELL_DESCR
{
    Text = "";
};

String STR_ACC_DATAPILOT_ROW_DESCR
{
    Text = "Felder, die Sie hier anordnen, werden in der fertigen Datenpilot-Tabelle als Zeile angezeigt.";
    Text[ english ] = "Fields that you drop here will be displayed as rows in the final DataPilot table.";
    Text[ english_us ] = "Fields that you drop here will be displayed as rows in the final DataPilot table.";
    Text[ portuguese ] = "Fields that you drop here will be displayed as rows in the final DataPilot table.";
    Text[ russian ] = "Fields that you drop here will be displayed as rows in the final DataPilot table.";
    Text[ greek ] = "Fields that you drop here will be displayed as rows in the final DataPilot table.";
    Text[ dutch ] = "Fields that you drop here will be displayed as rows in the final DataPilot table.";
    Text[ french ] = "Les champs que vous positionnez  cet endroit seront affichs comme lignes dans la table finale du pilote de donnes.";
    Text[ spanish ] = "Los campos que coloque aqu se mostrarn como filas en la tabla final del Piloto de datos. ";
    Text[ finnish ] = "Fields that you drop here will be displayed as rows in the final DataPilot table.";
    Text[ italian ] = "I campi trascinati in questo spazio verranno visualizzati come righe nella tabella finale DataPilot.";
    Text[ danish ] = "Fields that you drop here will be displayed as rows in the final DataPilot table.";
    Text[ swedish ] = "Flt som du placerar hr visas som rader i den frdiga datapilottabellen.";
    Text[ polish ] = "Fields that you drop here will be displayed as rows in the final DataPilot table.";
    Text[ portuguese_brazilian ] = "Fields that you drop here will be displayed as rows in the final DataPilot table.";
    Text[ japanese ] = "ここにドロップしたフィールドは、DataPilot テーブルで行として表示されます。";
    Text[ korean ] = "여기에서 지정하는 필드는 완성된 데이터 파일럿 테이블에서 행으로 표시됩니다.";
    Text[ chinese_simplified ] = "您在此设定的字段将会当作数据助理表格之中的行显示出来。";
    Text[ chinese_traditional ] = "您拖曳到這裡的欄位將顯示為最後 DataPilot 表格中的列。";
    Text[ turkish ] = "Fields that you drop here will be displayed as rows in the final DataPilot table.";
    Text[ arabic ] = "Fields that you drop here will be displayed as rows in the final DataPilot table.";
    Text[ catalan ] = "Fields that you drop here will be displayed as rows in the final DataPilot table.";
    Text[ thai ] = "Fields that you drop here will be displayed as rows in the final DataPilot table.";
};

String STR_ACC_DATAPILOT_COL_DESCR
{
    Text = "Felder, die Sie hier anordnen, werden in der fertigen Datenpilot-Tabelle als Spalte angezeigt.";
    Text[ english ] = "Fields that you drop here will be displayed as columns in the final DataPilot table.";
    Text[ english_us ] = "Fields that you drop here will be displayed as columns in the final DataPilot table.";
    Text[ portuguese ] = "Fields that you drop here will be displayed as columns in the final DataPilot table.";
    Text[ russian ] = "Fields that you drop here will be displayed as columns in the final DataPilot table.";
    Text[ greek ] = "Fields that you drop here will be displayed as columns in the final DataPilot table.";
    Text[ dutch ] = "Fields that you drop here will be displayed as columns in the final DataPilot table.";
    Text[ french ] = "Les champs que vous positionnez  cet endroit seront affichs comme colonnes dans la table finale du pilote de donnes.";
    Text[ spanish ] = "Los campos que coloque aqu se mostrarn como columnas en la tabla final del Piloto de datos. ";
    Text[ finnish ] = "Fields that you drop here will be displayed as columns in the final DataPilot table.";
    Text[ italian ] = "I campi trascinati in questo spazio verranno visualizzati come colonne nella tabella finale DataPilot.";
    Text[ danish ] = "Fields that you drop here will be displayed as columns in the final DataPilot table.";
    Text[ swedish ] = "Flt som du placerar hr visas som kolumner i den frdiga datapilottabellen.";
    Text[ polish ] = "Fields that you drop here will be displayed as columns in the final DataPilot table.";
    Text[ portuguese_brazilian ] = "Fields that you drop here will be displayed as columns in the final DataPilot table.";
    Text[ japanese ] = "ここにドロップしたフィールドは、DataPilot テーブルで列として表示されます。";
    Text[ korean ] = "여기에서 지정하는 필드는 완성된 데이터 파일럿 테이블에서 열로 표시됩니다.";
    Text[ chinese_simplified ] = "您在此设定的字段将会当作数据助理表格之中的列显示出来。";
    Text[ chinese_traditional ] = "您拖曳到這裡的欄位將顯示為最後 DataPilot 表格中的欄。";
    Text[ turkish ] = "Fields that you drop here will be displayed as columns in the final DataPilot table.";
    Text[ arabic ] = "Fields that you drop here will be displayed as columns in the final DataPilot table.";
    Text[ catalan ] = "Fields that you drop here will be displayed as columns in the final DataPilot table.";
    Text[ thai ] = "Fields that you drop here will be displayed as columns in the final DataPilot table.";
};

String STR_ACC_DATAPILOT_DATA_DESCR
{
    Text = "Felder, die Sie hier anordnen, werden in der fertigen Datenpilot-Tabelle fr Berechnungen genutzt.";
    Text[ english ] = "Fields that you drop here will be used for calculations in the final DataPilot table.";
    Text[ english_us ] = "Fields that you drop here will be used for calculations in the final DataPilot table.";
    Text[ portuguese ] = "Fields that you drop here will be used for calculations in the final DataPilot table.";
    Text[ russian ] = "Fields that you drop here will be used for calculations in the final DataPilot table.";
    Text[ greek ] = "Fields that you drop here will be used for calculations in the final DataPilot table.";
    Text[ dutch ] = "Fields that you drop here will be used for calculations in the final DataPilot table.";
    Text[ french ] = "Les champs que vous positionnez  cet endroit seront utiliss pour les calculs dans la table finale du pilote de donnes.";
    Text[ spanish ] = "Los campos que coloque aqu se utilizarn para realizar clculos en la tabla final del Piloto de datos. ";
    Text[ finnish ] = "Fields that you drop here will be used for calculations in the final DataPilot table.";
    Text[ italian ] = "I campi trascinati in questo spazio verranno utilizzati per eseguire calcoli nella tabella finale DataPilot.";
    Text[ danish ] = "Fields that you drop here will be used for calculations in the final DataPilot table.";
    Text[ swedish ] = "Flt som du placerar hr anvnds fr berkningar i den frdiga datapilottabellen.";
    Text[ polish ] = "Fields that you drop here will be used for calculations in the final DataPilot table.";
    Text[ portuguese_brazilian ] = "Fields that you drop here will be used for calculations in the final DataPilot table.";
    Text[ japanese ] = "ここにドロップしたフィールドは、DataPilot テーブルでの計算に使用されます。";
    Text[ korean ] = "여기에서 지정하는 필드는 완성된 데이터 파일럿 테이블에서 계산으로 사용됩니다.";
    Text[ chinese_simplified ] = "您在此设定的字段将会用于数据助理表格之中计算。";
    Text[ chinese_traditional ] = "您拖曳到這裡的欄位將在最後 DataPilot 表格中用於計算。";
    Text[ turkish ] = "Fields that you drop here will be used for calculations in the final DataPilot table.";
    Text[ arabic ] = "Fields that you drop here will be used for calculations in the final DataPilot table.";
    Text[ catalan ] = "Fields that you drop here will be used for calculations in the final DataPilot table.";
    Text[ thai ] = "Fields that you drop here will be used for calculations in the final DataPilot table.";
};

String STR_ACC_DATAPILOT_SEL_DESCR
{
    Text = "Hier sind die Felder aufgelistet, die Sie in einen der drei anderen Bereiche bewegen knnen.";
    Text[ english ] = "List the fields that you can drag to one of the other three areas.";
    Text[ language_user1 ] = "EM O; EM Oct 2002: (not \"range\") In the datapilot dialog, description of controls";
    Text[ english_us ] = "Lists the fields that you can drag to one of the other three areas.";
    Text[ portuguese ] = "List the fields that you can drag to one of the other three areas.";
    Text[ russian ] = "List the fields that you can drag to one of the other three areas.";
    Text[ greek ] = "List the fields that you can drag to one of the other three areas.";
    Text[ dutch ] = "List the fields that you can drag to one of the other three areas.";
    Text[ french ] = "Liste des champs pouvant tre dplacs vers l'une des trois zones.";
    Text[ spanish ] = "Lista de los campos que se pueden llevar hasta una de las otras tres reas.";
    Text[ finnish ] = "List the fields that you can drag to one of the other three areas.";
    Text[ italian ] = "Elenco dei campi che potete trascinare in una delle tre aree.";
    Text[ danish ] = "List the fields that you can drag to one of the other three areas.";
    Text[ swedish ] = "Hr r flt listade som du kan dra till ett av de andra tre omrdena.";
    Text[ polish ] = "List the fields that you can drag to one of the other three areas.";
    Text[ portuguese_brazilian ] = "List the fields that you can drag to one of the other three areas.";
    Text[ japanese ] = "他の3つの範囲のいずれかにドラッグ可能なフィールドをリストします。";
    Text[ korean ] = "다른 세 영역 중 한 영역으로 끌어올 수 있는 필드를 열거합니다.";
    Text[ chinese_simplified ] = "在此列出您能够在三个区域之间移动的字段。";
    Text[ chinese_traditional ] = "列出您可以拖曳到其他三個區域之一的欄位。";
    Text[ turkish ] = "List the fields that you can drag to one of the other three areas.";
    Text[ arabic ] = "List the fields that you can drag to one of the other three areas.";
    Text[ catalan ] = "List the fields that you can drag to one of the other three areas.";
    Text[ thai ] = "List the fields that you can drag to one of the other three areas.";
};