summaryrefslogtreecommitdiff
path: root/wizards/source/importwizard/importwi.src
blob: d87da8e17f0111bfd0e4f3a416e63d68da4e99f0 (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
/*************************************************************************
 *
 *  $RCSfile: importwi.src,v $
 *
 *  $Revision: 1.34 $
 *
 *  last change: $Author: bc $ $Date: 2002-08-16 15:16:34 $
 *
 *  The Contents of this file are made available subject to the terms of
 *  either of the following licenses
 *
 *         - GNU Lesser General Public License Version 2.1
 *         - Sun Industry Standards Source License Version 1.1
 *
 *  Sun Microsystems Inc., October, 2000
 *
 *  GNU Lesser General Public License Version 2.1
 *  =============================================
 *  Copyright 2000 by Sun Microsystems, Inc.
 *  901 San Antonio Road, Palo Alto, CA 94303, USA
 *
 *  This library is free software; you can redistribute it and/or
 *  modify it under the terms of the GNU Lesser General Public
 *  License version 2.1, as published by the Free Software Foundation.
 *
 *  This library is distributed in the hope that it will be useful,
 *  but WITHOUT ANY WARRANTY; without even the implied warranty of
 *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
 *  Lesser General Public License for more details.
 *
 *  You should have received a copy of the GNU Lesser General Public
 *  License along with this library; if not, write to the Free Software
 *  Foundation, Inc., 59 Temple Place, Suite 330, Boston,
 *  MA  02111-1307  USA
 *
 *
 *  Sun Industry Standards Source License Version 1.1
 *  =================================================
 *  The contents of this file are subject to the Sun Industry Standards
 *  Source License Version 1.1 (the "License"); You may not use this file
 *  except in compliance with the License. You may obtain a copy of the
 *  License at http://www.openoffice.org/license.html.
 *
 *  Software provided under this License is provided on an "AS IS" basis,
 *  WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING,
 *  WITHOUT LIMITATION, WARRANTIES THAT THE SOFTWARE IS FREE OF DEFECTS,
 *  MERCHANTABLE, FIT FOR A PARTICULAR PURPOSE, OR NON-INFRINGING.
 *  See the License for the specific provisions governing your rights and
 *  obligations concerning the Software.
 *
 *  The Initial Developer of the Original Code is: Sun Microsystems, Inc.
 *
 *  Copyright: 2000 by Sun Microsystems, Inc.
 *
 *  All Rights Reserved.
 *
 *  Contributor(s): _______________________________________
 *
 *
 ************************************************************************/
#define sHelpButton 1000
#define sCancelButton   1001
#define sBackButton 1002
#define sNextButton 1003
#define sBeginButton    1004
#define sCloseButton    1005
#define sWelcometextLabel1  1006
#define sWelcometextLabel2  1007
#define sWelcometextLabel3  1008
#define sMSTemplateCheckbox_1_    1009
#define sMSTemplateCheckbox_2_    1010
#define sMSTemplateCheckbox_3_    1011
#define sMSDocumentCheckbox_1_    1012
#define sMSDocumentCheckbox_2_    1013
#define sMSDocumentCheckbox_3_    1014
#define sSearchInSubDir 1022
#define sMSContainerName 1030
#define sSummaryHeader  1031
#define sSummaryFrame   1032
#define sTextImportLabel 1033
#define sTextExportLabel 1034
#define sGroupnameDefault   1036
#define sProgressDesc1  1039
#define sProgressOneDoc 1040
#define sProgressMoreDocs   1041
#define sProgressMoreTemplates 1042
#define sNoDirCreation  1050
#define sMsgDirNotThere    1051
#define sQueryfornewCreation    1052
#define sFileExists    1053
#define sMorePathsError3    1054
#define sConvertError1  1055
#define sConvertError2  1056
#define sRTErrorDesc    1057
#define sRTErrorHeader  1058
#define sPathErrorTemplates_1_  1059
#define sPathErrorTemplates_2_  1060
#define sPathErrorTemplates_3_  1061
#define sPathErrorDocument_1_   1062
#define sPathErrorDocument_2_   1063
#define sPathErrorDocument_3_   1064
#define sPathErrorStarDoc_1_    1065
#define sPathErrorStarDoc_2_    1066
#define sPathErrorStarDoc_3_    1067
#define sOverwriteallFiles  1070
#define sreeditMacro    1071
#define scouldNotsaveDocument 1072
#define scouldNotopenDocument 1073
#define sPathDialogMessage  1080
#define sDialogTitle 1081
#define sProgressPage1 1090
#define sProgressPage2 1091
#define sProgressPage3 1092
#define sProgressFound 1093
#define sProgressPage5 1094
#define sReady 1100
#define sXMLTemplateCheckbox_1_    2009
#define sXMLTemplateCheckbox_2_    2010
#define sXMLTemplateCheckbox_3_    2011
#define sXMLTemplateCheckbox_4_    2012
#define sXMLDocumentCheckbox_1_    2013
#define sXMLDocumentCheckbox_2_    2014
#define sXMLDocumentCheckbox_3_    2015
#define sXMLDocumentCheckbox_4_    2016
#define sXMLHelperApplications_1    2017
#define sXMLHelperApplications_2    2018

#define sSourceDocuments         2030
#define sTargetDocuments         2031
#define sCreateLogfile          2032
#define sLogfileHelpText        2033
#define sLogfileSummary         2034
#define sshowLogfile            2035

#define sSumInclusiveSubDir     3000
#define sSumSaveDokumente       3001

#define sSumSOTextDocuments       3100
#define sSumSOTableDocuments      3101
#define sSumSODrawDocuments       3102
#define sSumSOMathDocuments       3103

#define sSumSOTextTemplates       3110
#define sSumSOTableTemplates      3111
#define sSumSODrawTemplates       3112
#define sSumSOGlobalDocuments     3113

#define sSumMSTextDocuments       3200
#define sSumMSTableDocuments      3201
#define sSumMSDrawDocuments       3202

#define sSumMSTextTemplates       3210
#define sSumMSTableTemplates      3211
#define sSumMSDrawTemplates       3212


// --------------------------------------------------------------------
String sHelpButton
{
    Text = "~Hilfe";
    Text[English] = "~Help";
    Text[ English_us ] = "~Help";
    Text[ french ] = "Aide";
    Text[ italian ] = "~?";
    Text[ spanish ] = "~Ayuda";
    Text[ portuguese ] = "~Ajuda";
    Text[ dutch ] = "~Help";
    Text[ swedish ] = "~Hjlp";
    Text[ greek ] = "";
    Text[ dutch ] = "~Help";
    Text[ swedish ] = "~Hjlp";
    Text[ russian ] = "~";
    Text[ danish ] = "~Hjlp";
    Text[ polish ] = "~Pomoc";
    Text[ portuguese_brazilian ] = "~Help";
    Text[ japanese ] = "ヘルプ(~H)";
    Text[ korean ] = "도움말(~H)";
    Text[ chinese_simplified ] = "帮助(~H)";
    Text[ chinese_traditional ] = "說明(~H)";
    Text[ arabic ] = "~";
    Text[ turkish ] = "~Yardm";
    Text[ catalan ] = "~Ajuda";
    Text[ finnish ] = "~Ohje";
    Text[ thai ] = "~ช่วยเหลือ";
};

String sCancelButton
{
    Text = "~Abbrechen";
    Text[English] = "~Cancel";
    Text[ English_us ] = "~Cancel";
    Text[ french ] = "Annuler";
    Text[ italian ] = "~Annulla";
    Text[ spanish ] = "~Cancelar";
    Text[ portuguese ] = "Ca~ncelar";
    Text[ dutch ] = "~Annuleren";
    Text[ swedish ] = "~Avbryt";
    Text[ greek ] = "~";
    Text[ dutch ] = "~Annuleren";
    Text[ swedish ] = "~Avbryt";
    Text[ russian ] = "~";
    Text[ danish ] = "~Annuller";
    Text[ polish ] = "~Anuluj";
    Text[ portuguese_brazilian ] = "~Cancel";
    Text[ japanese ] = "キャンセル(~C)";
    Text[ korean ] = "중단(~C)";
    Text[ chinese_simplified ] = "取消(~C)";
    Text[ chinese_traditional ] = "取消(~C)";
    Text[ arabic ] = "~ ";
    Text[ turkish ] = "~ptal";
    Text[ catalan ] = "~Cancel.la";
    Text[ finnish ] = "~Peruuta";
    Text[ thai ] = "~ยกเลิก";
};

String sBackButton
{
    Text = "<< ~Zurck";
    Text[English] = "<< ~Back";
    Text[ English_us ] = "<< ~Back";
    Text[ french ] = "<< Prcdent";
    Text[ italian ] = "<< ~Indietro";
    Text[ spanish ] = "<< ~Regresar";
    Text[ portuguese ] = "<< ~Anterior";
    Text[ dutch ] = "<< ~Vorige";
    Text[ swedish ] = "<< ~Tillbaka";
    Text[ greek ] = "<< ";
    Text[ dutch ] = "<< ~Vorige";
    Text[ swedish ] = "<< ~Tillbaka";
    Text[ russian ] = "<< ~";
    Text[ danish ] = "<< ~Tilbage";
    Text[ polish ] = "<< ~Wstecz";
    Text[ portuguese_brazilian ] = "<< ~Back";
    Text[ japanese ] = "<< 戻る(~B)";
    Text[ korean ] = "<< 이전으로(~B)";
    Text[ chinese_simplified ] = "<< 返回(~B)";
    Text[ chinese_traditional ] = "<< 返回(~B)";
    Text[ arabic ] = "<< ~";
    Text[ turkish ] = "<< ~Geri";
    Text[ catalan ] = "<< ~Enrere";
    Text[ finnish ] = "<< Edellinen";
    Text[ thai ] = "<< ~กลับไป";
};

String sNextButton
{
    Text = "~Weiter >>";
    Text[English] = "C~ontinue >>";
    Text[ English_us ] = "Ne~xt >>";
    Text[ french ] = "Suivant >>";
    Text[ italian ] = "A~vanti >>";
    Text[ spanish ] = "~Continuar >>";
    Text[ portuguese ] = "~Continuar >>";
    Text[ dutch ] = "~Volgende >>";
    Text[ swedish ] = "~Nsta >>";
    Text[ greek ] = " >>";
    Text[ dutch ] = "~Volgende >>";
    Text[ swedish ] = "~Nsta >>";
    Text[ russian ] = " >>";
    Text[ danish ] = "~Nste >>";
    Text[ polish ] = "Dalej >>";
    Text[ portuguese_brazilian ] = "C~ontinue >>";
    Text[ japanese ] = "次へ(~X) >>";
    Text[ korean ] = "다음(~X) >>";
    Text[ chinese_simplified ] = "继续(~X) >>";
    Text[ chinese_traditional ] = "繼續(~X) >>";
    Text[ arabic ] = "~ >>";
    Text[ turkish ] = "l~eri >>";
    Text[ catalan ] = "C~ontinua >>";
    Text[ finnish ] = "~Jatka >>";
    Text[ thai ] = "ทำต่~อ >>";
};

String sBeginButton
{
    Text = "~Konvertieren";
    Text[English] = "~Convert";
    Text[ English_us ] = "~Convert";
    Text[ french ] = "~Convertir";
    Text[ italian ] = "I~mporta";
    Text[ spanish ] = "~Convertir";
    Text[ portuguese ] = "~Converter";
    Text[ dutch ] = "~Converteren";
    Text[ swedish ] = "~Konvertera";
    Text[ greek ] = "";
    Text[ dutch ] = "~Converteren";
    Text[ swedish ] = "~Konvertera";
    Text[ russian ] = "~";
    Text[ danish ] = "~Konverter";
    Text[ polish ] = "~Konwertuj";
    Text[ portuguese_brazilian ] = "~Import";
    Text[ japanese ] = "変換(~C)";
    Text[ korean ] = "변경(~C)";
    Text[ chinese_simplified ] = "转换(~C)";
    Text[ chinese_traditional ] = "轉換(~C)";
    Text[ arabic ] = "~";
    Text[ turkish ] = "~Al";
    Text[ catalan ] = "~Converteix";
    Text[ finnish ] = "~Muunna";
    Text[ thai ] = "แ~ปลง";
};

String sCloseButton
{
    Text = "~Schlieen";
    Text[English] = "~Close";
    Text[ English_us ] = "~Close";
    Text[ portuguese ] = "~Fechar";
    Text[ russian ] = "~";
    Text[ greek ] = "~Close";
    Text[ dutch ] = "~Sluiten";
    Text[ french ] = "Fermer";
    Text[ spanish ] = "~Cerrar";
    Text[ finnish ] = "~Sulje";
    Text[ italian ] = "~Chiudi";
    Text[ danish ] = "~Luk";
    Text[ swedish ] = "~Stng";
    Text[ polish ] = "Zamknij";
    Text[ portuguese_brazilian ] = "~Close";
    Text[ japanese ] = "閉じる(~C)";
    Text[ korean ] = "닫기(~C)";
    Text[ chinese_simplified ] = "关闭(~C)";
    Text[ chinese_traditional ] = "關閉(~C)";
    Text[ turkish ] = "~Close";
    Text[ arabic ] = "~Close";
    Text[ catalan ] = "~Tanca";
    Text[ thai ] = "~ปิด";
};

String sWelcometextLabel1
{
    Text = "Dieser AutoPilot wandelt Dokumente des alten StarOffice-Formates und Microsoft Office - Dokumente in das neue %PRODUCTNAME XML-Format um.";
    Text[English] = "This AutoPilot converts old Staroffice and Microsoft Office documents to the new StarOffice XML-Format.";
    Text[ English_us ] = "This AutoPilot converts documents in the old StarOffice format and Microsoft Office documents to the new %PRODUCTNAME XML format.";
    Text[ french ] = "Cet AutoPilote convertit les documents de l'ancien format StarOffice et les documents Microsoft Office au nouveau format %PRODUCTNAME XML.";
    Text[ italian ] = "Questo pilota automatico converte i vecchi documenti del formato StarOffice e Microsoft Office nel nuovo formato  %PRODUCTNAME XML.";
    Text[ spanish ] = "Este AutoPiloto convierte documentos del antiguo StarOffice y de Microsoft Office al nuevo formato %PRODUCTNAME XML.";
    Text[ portuguese ] = "Este AutoPiloto converte documentos em formato StarOffice antigo e Microsoft Office para o novo formato XML do %PRODUCTNAME.";
    Text[ dutch ] = "Deze AutoPiloot converteert oude StarOffice-formaten en Microsoft Office-documenten naar het nieuwe %PRODUCTNAME XML-formaat.";
    Text[ swedish ] = "Den hr AutoPiloten konverterar dokument i det gamla StarOffice-formatet och Microsoft Office-dokument till det nya %PRODUCTNAME-XML-formatet.";
    Text[ greek ] = "                 StarOffice   Microsoft Office      %PRODUCTNAME XML.";
    Text[ dutch ] = "Deze AutoPiloot converteert oude StarOffice-formaten en Microsoft Office-documenten naar het nieuwe %PRODUCTNAME XML-formaat.";
    Text[ swedish ] = "Den hr AutoPiloten konverterar dokument i det gamla StarOffice-formatet och Microsoft Office-dokument till det nya %PRODUCTNAME-XML-formatet.";
    Text[ russian ] = "     StarOffice   Microsoft Office    %PRODUCTNAME XML.";
    Text[ danish ] = "Denne AutoPilot konverterer dokumenter i det gamle StarOffice-format og Microsoft Office-dokumenter til det nye %PRODUCTNAME XML-format.";
    Text[ polish ] = "Dany AutoPilot konwertuje starsze dokumenty formatu StarOffice oraz dokumenty Microsoft Office na nowy format %PRODUCTNAME XML.";
    Text[ portuguese_brazilian ] = "This AutoPilot searches through a complete file with all subdirectories in the Microsoft Office Format. You can convert all documents and/or templates to a %PRODUCTNAME Format.";
    Text[ japanese ] = "このオートパイロットは、旧 StarOffice ドキュメントと Microsoft Office ドキュメントを、新しい %PRODUCTNAME の XML 形式に変換します。";
    Text[ korean ] = "이 자동 파일럿은 이전 StarSuite형식과 Microsoft Office문서를 새로운 StarSuite XML형식으로 변환합니다.";
    Text[ chinese_simplified ] = "这个自动文件助理将 StarOffice 旧式文档和 Microsoft Office 文档转换成 %PRODUCTNAME XML 格式。";
    Text[ chinese_traditional ] = "這個檔案助理程式將 StarOffice 舊式格式或 Microsoft Office 文件轉換成新式的 %PRODUCTNAME XML 格式。";
    Text[ arabic ] = "      StarOffice    Microsoft Office    %PRODUCTNAME XML .";
    Text[ turkish ] = "Bu OtoPilot, dizinlerde ve tm alt dizinlerde Microsoft Office formatnda dosyalar arar. Tm belgeleri ve/veya ablonlar %PRODUCTNAME formatna dntrebilirsiniz.";
    Text[ catalan ] = "Aquest AutoPilot converteix documents vells d'StarOffice i de Microsoft Office al nou format  %PRODUCTNAME XML.";
    Text[ finnish ] = "Tm automaattinen ohjaus muuntaa vanhojen versioiden StarOffice-asiakirjat ja Microsoft Office -asiakirjat uuteen %PRODUCTNAME XML -muotoon.";
    Text[ thai ] = "การนำร่องอัตโนมัตินี้แปลงเอกสารในรูปแบบสตาร์ออฟฟิศเก่าและเอกสารไมโครซอฟท์ออฟฟิศเป็นรูปแบบ %PRODUCTNAME XML ใหม่";
};

String sWelcometextLabel2
{
    Text = "Bitte beachten Sie, dass beim Konvertieren der Microsoft - Dokumente angehngte VBA-Makros ihre Funktionalitt verlieren";
    Text[English] = "Please be aware the attached VBA-macros are loosing their functionality.";
    Text[ English_us ] = "Please note that when converting Microsoft documents any attached VBA macros lose their functionality.";
    Text[ french ] = "Notez que la conversion des documents Microsoft entrane la perte de fonctionnalit des macros VBA attaches.";
    Text[ italian ] = "Vi preghiamo di osservare che quando importate documenti Microsoft si possono perdere macro VBA connesse e la loro funzionalit.";
    Text[ spanish ] = "No olvide que al convertir documentos de Microsoft las macros VBA que se hayan adjuntado pueden perder su funcionalidad.";
    Text[ portuguese ] = "No esquea que durante a converso dos documentos Microsoft, as macros VBA anexas perdem a respectiva funcionalidade.";
    Text[ dutch ] = "Wij wijzen u erop dat bij het converteren van Microstof-documenten de functionaliteit van de bijbehorende VBA-macro's verloren gaat.";
    Text[ swedish ] = "Observera att bifogade VBA-makron frlorar sin funktionalitet nr Microsoft-dokument konverteras.";
    Text[ greek ] = "         Microsoft         VBA.";
    Text[ dutch ] = "Wij wijzen u erop dat bij het converteren van Microstof-documenten de functionaliteit van de bijbehorende VBA-macro's verloren gaat.";
    Text[ swedish ] = "Observera att bifogade VBA-makron frlorar sin funktionalitet nr Microsoft-dokument konverteras.";
    Text[ russian ] = ",     Microsoft,   VBA   .";
    Text[ danish ] = "Vr opmrksom p, at vedhftede VBA-makroer til Microsoft-dokumenter mister deres funktioner under konverteringen";
    Text[ polish ] = "Naley uwzgldni, e podczas konwersji dokumentw Microsoft zaczone makra VBA strac swoj funkcjonalno.";
    Text[ portuguese_brazilian ] = "On the following pages, you can choose if you want to import Winword texts, Excel spreadsheets or Powerpoint presentations. Select the Microsoft file folder and the target folder for the newly rendered %PRODUCTNAME file.";
    Text[ japanese ] = "Microsoft ドキュメントの変換時に、添付された VBA マクロの機能が失われないよう注意してください。";
    Text[ korean ] = "Microsoft Office 문서를 변환할 때,첨부된 VBA매크로는 그 기능을 상실한다는 사실을 유의하십시오.";
    Text[ chinese_simplified ] = "请您注意在转换 Microsoft 文档时源文档内含 VBA 宏的功能就会流失。";
    Text[ chinese_traditional ] = "請注意在文件轉換格式時 Microsoft 文件內含的 VBA 巨集功能就會流失。";
    Text[ arabic ] = "      Microsoft     VBA     .";
    Text[ turkish ] = "lerdeki sayfalarda dntrlecek Winword metinleri, Excel tablolar ya da Powerpoint sunularn seebilirsiniz. Microsoft dosyalarnn bulunduu dizini ve yeni oluturulan %PRODUCTNAME dosyalar iin bir hedef dizin sein.";
    Text[ language_user1 ] = "VBA = Visual Basics for Applications TSM 01.12.00";
    Text[ catalan ] = "Si us plau, tingueu en compte que en convertir documents de Microsoft les macros de VBA adjuntes perden la seva funcionalitat.";
    Text[ finnish ] = "Ota huomioon, ett Microsoft-asiakirjojen VBA-makrot eivt en toimi, jos ne muunnetaan.";
    Text[ thai ] = "กรุณาหมายเหตุว่าการแปลงเอกสารไมโครซอฟท์ที่แนบมาโคร VBA สูญเสียการทำตามหน้าที่";
};

String sWelcometextLabel3
{
    Text = "Whlen Sie die umzuwandelnden Dokumenttypen aus:";
    Text[English] = "Select which kind of documents you wish to convert:";
    Text[ English_us ] = "Select the document type for conversion:";
    Text[ portuguese ] = "Seleccione os tipos de documentos a converter:";
    Text[ russian ] = "   :";
    Text[ greek ] = "       :";
    Text[ dutch ] = "Kies de documenttypen die u wilt converteren:";
    Text[ french ] = "Slectionnez les types de documents  convertir :";
    Text[ spanish ] = "Seleccione los tipos de documento a convertir:";
    Text[ italian ] = "Selezionate il tipo di documento da convertire:";
    Text[ danish ] = "Vlg de dokumenttyper, der skal omdannes:";
    Text[ swedish ] = "Vlj dokumenttyperna som ska konverteras:";
    Text[ polish ] = "Wybierz typ dokumentu, ktry ma zosta skonwertowany:";
    Text[ portuguese_brazilian ] = "Select which kind of documents you wish to convert:";
    Text[ japanese ] = "変換するドキュメントの種類を選択します。";
    Text[ korean ] = "변환할 문서 유형을 선택하십시오:";
    Text[ chinese_simplified ] = "请选择一个要转换的文档类型:";
    Text[ chinese_traditional ] = "請選擇要轉換的文件類型:";
    Text[ turkish ] = "Select which kind of documents you wish to convert:";
    Text[ arabic ] = "    :";
    Text[ catalan ] = "Seleccioneu el tipus de document:";
    Text[ finnish ] = "Valitse muunnettava asiakirjatyyppi:";
    Text[ thai ] = "เลือกชนิดเอกสารเพื่อทำการแปลง:";
};



String sMSTemplateCheckbox_1_
{
    Text = "Word-Vorlagen";
    Text[English] = "Word templates";
    Text[ English_us ] = "Word templates";
    Text[ french ] = "Modles Word";
    Text[ italian ] = "Modelli di Word";
    Text[ spanish ] = "Word - Plantillas";
    Text[ portuguese ] = "Modelos Word";
    Text[ dutch ] = "Word-sjablonen";
    Text[ swedish ] = "Word-mallar";
    Text[ greek ] = " Word";
    Text[ dutch ] = "Word-sjablonen";
    Text[ swedish ] = "Word-mallar";
    Text[ russian ] = "Word - ";
    Text[ danish ] = "Word-skabeloner";
    Text[ polish ] = "Word - Szablony";
    Text[ portuguese_brazilian ] = "Word templates";
    Text[ japanese ] = "Word テンプレート";
    Text[ korean ] = "Word 템플릿";
    Text[ chinese_simplified ] = "Word 模板";
    Text[ chinese_traditional ] = "Word 範本";
    Text[ arabic ] = " Word";
    Text[ turkish ] = "Word ablonlar";
    Text[ catalan ] = "Plantilles de Word";
    Text[ finnish ] = "Word-asiakirjamalli";
    Text[ thai ] = "แม่แบบเวิร์ด ";
};

String sMSTemplateCheckbox_2_
{
    Text = "Excel-Vorlagen";
    Text[English] = "Excel templates";
    Text[ English_us ] = "Excel templates";
    Text[ french ] = "Modles Excel";
    Text[ italian ] = "Modelli di Excel";
    Text[ spanish ] = "Excel - Plantillas";
    Text[ portuguese ] = "Modelos Excel";
    Text[ dutch ] = "Excel-sjablonen";
    Text[ swedish ] = "Excel-mallar";
    Text[ greek ] = " Excel";
    Text[ dutch ] = "Excel-sjablonen";
    Text[ swedish ] = "Excel-mallar";
    Text[ russian ] = "Excel - ";
    Text[ danish ] = "Excel-skabeloner";
    Text[ polish ] = "Excel - Szablony";
    Text[ portuguese_brazilian ] = "Excel templates";
    Text[ japanese ] = "Excel テンプレート";
    Text[ korean ] = "Excel 템플릿";
    Text[ chinese_simplified ] = "Excel 模板";
    Text[ chinese_traditional ] = "Excel 範本";
    Text[ arabic ] = " Excel";
    Text[ turkish ] = "Excel ablonlar";
    Text[ catalan ] = "Plantilles d'Excel";
    Text[ finnish ] = "Excel-asiakirjamalli";
    Text[ thai ] = "แม่แบบเอ็กเซล ";
};

String sMSTemplateCheckbox_3_
{
    Text = "PowerPoint-Vorlagen";
    Text[English] = "PowerPoint templates";
    Text[ English_us ] = "PowerPoint templates";
    Text[ french ] = "Modles PowerPoint";
    Text[ italian ] = "Modelli di PowerPoint";
    Text[ spanish ] = "PowerPoint - Plantillas";
    Text[ portuguese ] = "Modelos PowerPoint";
    Text[ dutch ] = "PowerPoint-sjablonen";
    Text[ swedish ] = "PowerPoint-mallar";
    Text[ greek ] = " PowerPoint";
    Text[ dutch ] = "PowerPoint-sjablonen";
    Text[ swedish ] = "PowerPoint-mallar";
    Text[ russian ] = "PowerPoint - ";
    Text[ danish ] = "PowerPoint-skabeloner";
    Text[ polish ] = "PowerPoint - Szablony";
    Text[ portuguese_brazilian ] = "PowerPoint templates";
    Text[ japanese ] = "PowerPoint テンプレート";
    Text[ korean ] = "PowerPoint-템플릿";
    Text[ chinese_simplified ] = "PowerPoint 模板";
    Text[ chinese_traditional ] = "PowerPoint 範本";
    Text[ arabic ] = " PowerPoint";
    Text[ turkish ] = "PowerPoint ablonlar";
    Text[ catalan ] = "Plantilles de PowerPoint";
    Text[ finnish ] = "PowerPoint-asiakirjamalli";
    Text[ thai ] = "แม่แบบเพาเวอร์พ้อยท์ ";
};

String sMSDocumentCheckbox_1_
{
    Text = "Word-Dokumente";
    Text[English] = "Word documents";
    Text[ English_us ] = "Word documents";
    Text[ french ] = "Documents Word";
    Text[ italian ] = "Documenti di Word";
    Text[ spanish ] = "Documentos Word";
    Text[ portuguese ] = "Documentos Word";
    Text[ dutch ] = "Word-documenten";
    Text[ swedish ] = "Word-dokument";
    Text[ greek ] = " Word";
    Text[ dutch ] = "Word-documenten";
    Text[ swedish ] = "Word-dokument";
    Text[ russian ] = "Word - ";
    Text[ danish ] = "Word-dokumenter";
    Text[ polish ] = "Word - Dokumenty";
    Text[ portuguese_brazilian ] = "Word documents";
    Text[ japanese ] = "Word ドキュメント";
    Text[ korean ] = "Word 문서";
    Text[ chinese_simplified ] = "Word 文档";
    Text[ chinese_traditional ] = "Word 文件";
    Text[ arabic ] = " Word";
    Text[ turkish ] = "Word belgeleri";
    Text[ catalan ] = "Documents de Word";
    Text[ finnish ] = "Word-asiakirja";
    Text[ thai ] = "เอกสารเวิร์ด ";
};

String sMSDocumentCheckbox_2_
{
    Text = "Excel-Dokumente";
    Text[English] = "Excel documents";
    Text[ English_us ] = "Excel documents";
    Text[ french ] = "Documents Excel";
    Text[ italian ] = "Documenti di Excel";
    Text[ spanish ] = "Documentos Excel";
    Text[ portuguese ] = "Documentos Excel";
    Text[ dutch ] = "Excel-documenten";
    Text[ swedish ] = "Excel-dokument";
    Text[ greek ] = " Excel";
    Text[ dutch ] = "Excel-documenten";
    Text[ swedish ] = "Excel-dokument";
    Text[ russian ] = "Excel - ";
    Text[ danish ] = "Excel-dokumenter";
    Text[ polish ] = "Excel - Dokumenty";
    Text[ portuguese_brazilian ] = "Excel documents";
    Text[ japanese ] = "Excel ドキュメント";
    Text[ korean ] = "Excel 문서";
    Text[ chinese_simplified ] = "Excel 文档";
    Text[ chinese_traditional ] = "Excel 文件";
    Text[ arabic ] = " Excel";
    Text[ turkish ] = "Excel belgeleri";
    Text[ catalan ] = "Documents Excel";
    Text[ finnish ] = "Excel-asiakirjat";
    Text[ thai ] = "เอกสารเอ็กเซล ";
};

String sMSDocumentCheckbox_3_
{
    Text = "PowerPoint-Dokumente";
    Text[English] = "PowerPoint documents";
    Text[ English_us ] = "PowerPoint documents";
    Text[ french ] = "Documents PowerPoint";
    Text[ italian ] = "Documenti di PowerPoint";
    Text[ spanish ] = "Documentos PowerPoint";
    Text[ portuguese ] = "Documentos PowerPoint";
    Text[ dutch ] = "PowerPoint-documenten";
    Text[ swedish ] = "PowerPoint-dokument";
    Text[ greek ] = " PowerPoint";
    Text[ dutch ] = "PowerPoint-documenten";
    Text[ swedish ] = "PowerPoint-dokument";
    Text[ russian ] = "PowerPoint - ";
    Text[ danish ] = "PowerPoint-dokumenter";
    Text[ polish ] = "PowerPoint - Dokumenty";
    Text[ portuguese_brazilian ] = "PowerPoint documents";
    Text[ japanese ] = "PowerPoint ドキュメント";
    Text[ korean ] = "PowerPoint-문서";
    Text[ chinese_simplified ] = "PowerPoint 文档";
    Text[ chinese_traditional ] = "PowerPoint 文件";
    Text[ arabic ] = "PowerPoint ";
    Text[ turkish ] = "PowerPoint belgeleri";
    Text[ catalan ] = "Documents de PowerPoint";
    Text[ finnish ] = "PowerPoint-asiakirjat";
    Text[ thai ] = "เอกสารเพาเวอร์พ้อยท์ ";
};


String sSearchInSubDir
{
    Text = "inkl. Unterverzeichnisse";
    Text[English] = "including subdirectories";
    Text[ English_us ] = "Including subdirectories";
    Text[ french ] = "Sous-rpertoires compris";
    Text[ italian ] = "incluse sottocartelle";
    Text[ spanish ] = "incluidos subdirectorios";
    Text[ portuguese ] = "incl. subdirectrios";
    Text[ dutch ] = "incl. subdirectory's";
    Text[ swedish ] = "inkl. underordnade kataloger";
    Text[ greek ] = ". ";
    Text[ dutch ] = "incl. subdirectory's";
    Text[ swedish ] = "inkl. underordnade kataloger";
    Text[ russian ] = " ";
    Text[ danish ] = "inkl. underbiblioteker";
    Text[ polish ] = "cznie z katalogami podrzdnymi";
    Text[ portuguese_brazilian ] = "including subdirectories";
    Text[ japanese ] = "下位ディレクトリも含む";
    Text[ korean ] = "하위 색인 포함";
    Text[ chinese_simplified ] = "包括子目录";
    Text[ chinese_traditional ] = "包含子目錄";
    Text[ arabic ] = "    ";
    Text[ turkish ] = "Alt dizinler dahil";
    Text[ catalan ] = "incloure directoris";
    Text[ finnish ] = "sisllytetn alikansiot";
    Text[ thai ] = "รวมไดเร็กทอรี่ย่อย";
};



String sMSContainerName
{
    Text = "Microsoft Office";
    Text[English] = "Microsoft Office";
    Text[ English_us ] = "Microsoft Office";
    Text[ portuguese ] = "Microsoft Office";
    Text[ russian ] = "Microsoft Office";
    Text[ greek ] = "Microsoft Office";
    Text[ dutch ] = "Microsoft Office";
    Text[ french ] = "Microsoft Office";
    Text[ spanish ] = "Microsoft Office";
    Text[ italian ] = "Microsoft Office";
    Text[ danish ] = "Microsoft Office";
    Text[ swedish ] = "Microsoft Office";
    Text[ polish ] = "Microsoft Office";
    Text[ portuguese_brazilian ] = "Microsoft Office";
    Text[ japanese ] = "Microsoft Office";
    Text[ korean ] = "Microsoft Office";
    Text[ chinese_simplified ] = "Microsoft Office";
    Text[ chinese_traditional ] = "Microsoft Office";
    Text[ turkish ] = "Microsoft Office";
    Text[ arabic ] = "Microsoft Office";
    Text[ catalan ] = "Microsoft Office";
    Text[ finnish ] = "Microsoft Office";
    Text[ thai ] = "ไมโครซอฟท์ออฟฟิศ";
};



String sSummaryHeader
{
    Text = "Zusammenfassung:";
    Text[English] = "Summary:";
    Text[ English_us ] = "Summary:";
    Text[ french ] = "Rcapitulatif :";
    Text[ italian ] = "Sommario:";
    Text[ spanish ] = "Resumen:";
    Text[ portuguese ] = "Resumo:";
    Text[ dutch ] = "Samenvatting:";
    Text[ swedish ] = "Sammanfattning:";
    Text[ greek ] = ":";
    Text[ dutch ] = "Samenvatting:";
    Text[ swedish ] = "Sammanfattning:";
    Text[ russian ] = ":";
    Text[ danish ] = "Resume:";
    Text[ polish ] = "Podsumowanie:";
    Text[ portuguese_brazilian ] = "Summary:";
    Text[ japanese ] = "概要:";
    Text[ korean ] = "간추림:";
    Text[ chinese_simplified ] = "概要:";
    Text[ chinese_traditional ] = "概要:";
    Text[ arabic ] = ":";
    Text[ turkish ] = "zet:";
    Text[ catalan ] = "Resum:";
    Text[ finnish ] = "Yhteenveto:";
    Text[ thai ] = "สรุป:";
};

String sTextImportLabel
{
    Text = "Importieren von:";
    Text[English] = "Import from:";
    Text[ English_us ] = "Import from:";
    Text[ portuguese ] = "Importar de:";
    Text[ russian ] = " :";
    Text[ greek ] = " :";
    Text[ dutch ] = "Importeren uit:";
    Text[ french ] = "Import depuis :";
    Text[ spanish ] = "Importar de:";
    Text[ italian ] = "Importa da:";
    Text[ danish ] = "Importer flgende:";
    Text[ swedish ] = "Importera frn:";
    Text[ polish ] = "Import z:";
    Text[ portuguese_brazilian ] = "Import from:";
    Text[ japanese ] = "インポート元:";
    Text[ korean ] = "가져오기:";
    Text[ chinese_simplified ] = "输入来源:";
    Text[ chinese_traditional ] = "匯入從:";
    Text[ turkish ] = "Import from:";
    Text[ arabic ] = " :";
    Text[ catalan ] = "Importa des de:";
    Text[ finnish ] = "Lhde:";
    Text[ thai ] = "นำเข้าจาก:";
};


String sTextExportLabel
{
    Text = "Speichern in:";
    Text[English] = "Store in:";
    Text[ English_us ] = "Save to:";
    Text[ french ] = "Enregistrer dans :";
    Text[ italian ] = "Salva in:";
    Text[ spanish ] = "Guardar en:";
    Text[ portuguese ] = "Guardar em:";
    Text[ dutch ] = "Opslaan in:";
    Text[ swedish ] = "Spara i:";
    Text[ greek ] = " :";
    Text[ dutch ] = "Opslaan in:";
    Text[ swedish ] = "Spara i:";
    Text[ russian ] = " :";
    Text[ danish ] = "Gem i:";
    Text[ polish ] = "Zapisz w:";
    Text[ portuguese_brazilian ] = "Text template group:";
    Text[ japanese ] = "保存先:";
    Text[ korean ] = "저장:";
    Text[ chinese_simplified ] = "存盘到:";
    Text[ chinese_traditional ] = "儲存到:";
    Text[ arabic ] = " :";
    Text[ turkish ] = "Metin ablon grubu:";
    Text[ catalan ] = "Desa a:";
    Text[ finnish ] = "Tallenna:";
    Text[ thai ] = "บันทึกไปยัง:";
};


String sGroupnameDefault
{
    Text = "Importierte_Vorlagen";
    Text[English] = "Imported_Templates";
    Text[ English_us ] = "Imported_Templates";
    Text[ french ] = "Modles_imports";
    Text[ italian ] = "Modelli_importati";
    Text[ spanish ] = "Plantillas de texto importadas";
    Text[ portuguese ] = "Modelos_importados";
    Text[ dutch ] = "Gemporteerde_sjablonen";
    Text[ swedish ] = "Importerade_mallar";
    Text[ greek ] = "__";
    Text[ dutch ] = "Gemporteerde_sjablonen";
    Text[ swedish ] = "Importerade_mallar";
    Text[ russian ] = "_";
    Text[ danish ] = "Importerede_skabeloner";
    Text[ polish ] = "Importowane_szablony";
    Text[ portuguese_brazilian ] = "Imported text templates";
    Text[ japanese ] = "インポートしたテンプレート";
    Text[ korean ] = "가져오기 템플릿";
    Text[ chinese_simplified ] = "输入的样式";
    Text[ chinese_traditional ] = "匯入的樣式";
    Text[ arabic ] = "__";
    Text[ turkish ] = "e aktarlan metin ablonlar";
    Text[ catalan ] = "Plantilles de text importades";
    Text[ language_user1 ] = "Bezeichnet einen Verzeichnis, dass zur Laufzeit angelegt wird";
    Text[ finnish ] = "Tuodut_tekstimallipohjat";
    Text[ thai ] = "นำเข้า_แม่แบบ_ข้อความ";
};


String sProgressDesc1
{
    Text = "Fortschritt: ";
    Text[English] = "Progress: ";
    Text[ English_us ] = "Progress: ";
    Text[ french ] = "Progression : ";
    Text[ italian ] = "Progresso: ";
    Text[ spanish ] = "Progreso: ";
    Text[ portuguese ] = "Progresso: ";
    Text[ dutch ] = "Voortgang:  ";
    Text[ swedish ] = "Framsteg: ";
    Text[ greek ] = ": ";
    Text[ dutch ] = "Voortgang:  ";
    Text[ swedish ] = "Framsteg: ";
    Text[ russian ] = ":   ";
    Text[ danish ] = "Fremgang: ";
    Text[ polish ] = "Postp: ";
    Text[ portuguese_brazilian ] = "Progress: ";
    Text[ japanese ] = "進捗状況: ";
    Text[ korean ] = "진보:";
    Text[ chinese_simplified ] = "已经完成: ";
    Text[ chinese_traditional ] = "已經完成: ";
    Text[ arabic ] = ": ";
    Text[ turkish ] = "lerleme: ";
    Text[ catalan ] = "Progrs: ";
    Text[ finnish ] = "Tilanne:";
    Text[ thai ] = "ความคืบหน้า: ";
};

String sProgressOneDoc
{
    Text = " Dokument";
    Text[English] = " Document";
    Text[ English_us ] = "Document";
    Text[ french ] = " Document";
    Text[ italian ] = "Documento";
    Text[ spanish ] = "Documento";
    Text[ portuguese ] = "Documento";
    Text[ dutch ] = "Document";
    Text[ swedish ] = "Dokument";
    Text[ greek ] = "";
    Text[ dutch ] = "Document";
    Text[ swedish ] = "Dokument";
    Text[ russian ] = "";
    Text[ danish ] = " Dokument";
    Text[ polish ] = "Dokument";
    Text[ portuguese_brazilian ] = "Document";
    Text[ japanese ] = "ドキュメント";
    Text[ korean ] = "문서";
    Text[ chinese_simplified ] = " 文档";
    Text[ chinese_traditional ] = " 文件";
    Text[ arabic ] = "";
    Text[ turkish ] = "Belge";
    Text[ catalan ] = "Document";
    Text[ finnish ] = "Asiakirja";
    Text[ thai ] = "เอกสาร";
};

String sProgressMoreDocs
{
    Text = "Dokumente";
    Text[English] = "Documents";
    Text[ English_us ] = "Documents";
    Text[ french ] = "Documents";
    Text[ italian ] = "Documenti";
    Text[ spanish ] = "Documentos";
    Text[ portuguese ] = "Documentos";
    Text[ dutch ] = "Documenten";
    Text[ swedish ] = "Dokument";
    Text[ greek ] = "";
    Text[ dutch ] = "Documenten";
    Text[ swedish ] = "Dokument";
    Text[ russian ] = "";
    Text[ danish ] = "Dokumenter";
    Text[ polish ] = "Dokumenty";
    Text[ portuguese_brazilian ] = "Documents";
    Text[ japanese ] = "ドキュメント";
    Text[ korean ] = "문서들";
    Text[ chinese_simplified ] = "文档";
    Text[ chinese_traditional ] = "文件";
    Text[ arabic ] = "";
    Text[ turkish ] = "Belgeler";
    Text[ catalan ] = "Documents";
    Text[ finnish ] = "Asiakirjat";
    Text[ thai ] = "เอกสาร";
};


String sProgressMoreTemplates
{
    Text = "Vorlagen";
    Text[English] = "Templates";
    Text[ English_us ] = "Templates";
    Text[ portuguese ] = "Modelos";
    Text[ russian ] = "";
    Text[ greek ] = "";
    Text[ dutch ] = "Sjablonen";
    Text[ french ] = "Modles";
    Text[ spanish ] = "Plantillas";
    Text[ italian ] = "Modelli";
    Text[ danish ] = "Skabeloner";
    Text[ swedish ] = "Mallar";
    Text[ polish ] = "Szablony";
    Text[ portuguese_brazilian ] = "Templates";
    Text[ japanese ] = "テンプレート";
    Text[ korean ] = "템플릿";
    Text[ chinese_simplified ] = "样式";
    Text[ chinese_traditional ] = "樣式";
    Text[ turkish ] = "Templates";
    Text[ arabic ] = "";
    Text[ catalan ] = "Plantilles";
    Text[ finnish ] = "Mallipohjat";
    Text[ thai ] = "แม่แบบ";
};


String sNoDirCreation
{
    Text = "Das Verzeichnis '%1' kann nicht angelegt werden: ";
    Text[English] = "The following directory cannot be created: ";
    Text[ English_us ] = "The '%1' directory cannot be created: ";
    Text[ french ] = "Impossible de crer le rpertoire '%1' : ";
    Text[ italian ] = "Impossibile creare la cartella '%1': ";
    Text[ spanish ] = "No se puede crear el directorio '%1': ";
    Text[ portuguese ] = " impossvel criar o directrio '%1'.";
    Text[ dutch ] = "Directory '%1' kan niet worden aangelegd:  ";
    Text[ swedish ] = "Det gr inte att skapa katalogen '%1': ";
    Text[ greek ] = "       '%1': ";
    Text[ dutch ] = "Directory '%1' kan niet worden aangelegd:  ";
    Text[ swedish ] = "Det gr inte att skapa katalogen '%1': ";
    Text[ russian ] = "  '%1' : ";
    Text[ danish ] = "Biblioteket '%1' kan ikke oprettes: ";
    Text[ polish ] = "Utworzenie katalogu '%1' nie jest moliwe: ";
    Text[ portuguese_brazilian ] = "The following directory is not available: ";
    Text[ japanese ] = "ディレクトリ '%1' は格納できません。 ";
    Text[ korean ] = "'%1' 색인을 만들 수 없습니다:";
    Text[ chinese_simplified ] = "无法创建这个目录 '%1' : ";
    Text[ chinese_traditional ] = "無法建立 %1 目錄: ";
    Text[ arabic ] = "    '%1':";
    Text[ turkish ] = "Aadaki dizin mevcut deil: ";
    Text[ catalan ] = "No es pot crear el directori '%1': ";
    Text[ finnish ] = "Hakemistoa %1 ei voida luoda: ";
    Text[ thai ] = "ไม่สามารถสร้างไดเร็กทอรี่'%1' ได้: ";
};


String sMsgDirNotThere
{
    Text = "Das Verzeichnis '%1' ist nicht vorhanden!";
    Text[English] = "The Directory '%1' does not exist.";
    Text[ English_us ] = "The '%1' directory does not exist.";
    Text[ french ] = "Le rpertoire '%1' n'existe pas !";
    Text[ italian ] = "La cartella '%1' non esiste.";
    Text[ spanish ] = "El directorio '%1' no existe.";
    Text[ portuguese ] = "O directrio '%1' no existe.";
    Text[ dutch ] = "Directory '%1' bestaat niet!";
    Text[ swedish ] = "Katalogen '%1' finns inte.";
    Text[ greek ] = "  '%1'  !";
    Text[ dutch ] = "Directory '%1' bestaat niet!";
    Text[ swedish ] = "Katalogen '%1' finns inte.";
    Text[ russian ] = " '%1'  .";
    Text[ danish ] = "Biblioteket '%1' findes ikke!";
    Text[ polish ] = "Katalog '%1' nie istnieje!";
    Text[ portuguese_brazilian ] = "The following directories are not available:";
    Text[ japanese ] = "ディレクトリ '%1' はありません。";
    Text[ korean ] = "'%1' 색인이 없습니다!";
    Text[ chinese_simplified ] = "目录 '%1' 不存在。";
    Text[ chinese_traditional ] = "目錄 %1 不存在。";
    Text[ arabic ] = " '%1'  .";
    Text[ turkish ] = "Aadaki dizinler mevcut deil:";
    Text[ catalan ] = "El directori '%1' no existeix.";
    Text[ finnish ] = "Hakemistoa %1 ei ole olemassa:";
    Text[ thai ] = "ไม่มีไดเร็กทอรี่ '%1' อยู่";
};


String sQueryfornewCreation
{
    Text = "Soll es erstellt werden?";
    Text[English] = "Do your want to create it now?";
    Text[ English_us ] = "Do you want to create it now?";
    Text[ portuguese ] = "Cri-lo agora?";
    Text[ russian ] = "?";
    Text[ greek ] = "   ;";
    Text[ dutch ] = "Wilt u dit aanleggen?";
    Text[ french ] = "Doit-il tre cr ?";
    Text[ spanish ] = "Desea crearlo?";
    Text[ italian ] = "Volete crearla?";
    Text[ danish ] = "Skal det oprettes?";
    Text[ swedish ] = "Ska den skapas nu?";
    Text[ polish ] = "Utworzy?";
    Text[ portuguese_brazilian ] = "Do you want to create it now?";
    Text[ japanese ] = "作成しますか。";
    Text[ korean ] = "색인을 만드시겠습니까?";
    Text[ chinese_simplified ] = "要建立这个目录?";
    Text[ chinese_traditional ] = "要建立這個目錄?";
    Text[ turkish ] = "Do you want to create it now?";
    Text[ arabic ] = "   ";
    Text[ catalan ] = "Voleu crear-lo ara?";
    Text[ finnish ] = "Haluatko luoda sen nyt?";
    Text[ language_user1 ] = "Das 'es' bezieht sich auf ein bestimmtes Verzeichnis";
    Text[ thai ] = "คุณต้องการสร้างมันขณะนี้หรือไม่?";
};


String sFileExists
{
    Text = "Die Datei '<1>' existiert bereits.<CR>Mchten Sie sie berschreiben?";
    Text[English] = "The File '<1>' already exists. Do you want to overwrite it?";
    Text[ English_us ] = "The '<1>' file already exists.<CR>Do you want to overwrite it?";
    Text[ french ] = "Le fichier '<1>' existe dj.<CR>Voulez-vous le remplacer ?";
    Text[ italian ] = "Il file '<1>' esiste gi: <CR>Volete soprascriverlo?";
    Text[ spanish ] = "Ya existe el archivo '<1>'. <CR>Desea sobrescribirlo?";
    Text[ portuguese ] = "O ficheiro '<1>' j existe.<CR>Substituir?";
    Text[ dutch ] = "Bestand '<1>' bestaat reeds. <CR>Wilt u het overschrijven?";
    Text[ swedish ] = "Filen '<1>' finns redan.<CR>Vill du skriva ver den?";
    Text[ greek ] = "  '<1>'  .<CR>  ;";
    Text[ dutch ] = "Bestand '<1>' bestaat reeds. <CR>Wilt u het overschrijven?";
    Text[ swedish ] = "Filen '<1>' finns redan.<CR>Vill du skriva ver den?";
    Text[ russian ] = " '<1>'  .<CR>   ?";
    Text[ danish ] = "Filen '<1>' findes allerede.<CR>Skal den overskrives?";
    Text[ polish ] = "Plik '<1>' ju istnieje.<CR>Skasowa go przez zapisanie?";
    Text[ portuguese_brazilian ] = "Please alter these.";
    Text[ japanese ] = "ファイル '<1>' はすでにあります。<CR>上書きしますか。";
    Text[ korean ] = "'<1>' 파일이 이미 있습니다.  <CR> 덮어씌울까요?";
    Text[ chinese_simplified ] = "文件 '<1>' 已经存在。<CR>要改写这个文件?";
    Text[ chinese_traditional ] = "檔案<1>已經存在。<CR>要覆寫這個檔案?";
    Text[ arabic ] = " '<1>'  . <CR>   ";
    Text[ turkish ] = "Bunlar deitirin.";
    Text[ catalan ] = "El fitxer '<1>' ja existeix.<CR>Voleu sobreescriure'l?";
    Text[ finnish ] = "Tiedosto <1> on jo olemassa.<CR>Haluatko korvata tiedoston?";
    Text[ thai ] = "แฟ้ม '<1>' มีอยู่แล้ว<CR>คุณต้องการเขียนทับมันหรือไม่?";
};

String sMorePathsError3
{
    Text = "Verzeichnisse nicht vorhanden";
    Text[English] = "Directories are not available";
    Text[ English_us ] = "Directories do not exist";
    Text[ french ] = "Rpertoires inexistants";
    Text[ italian ] = "Cartelle inesistenti";
    Text[ spanish ] = "Directorios no existentes";
    Text[ portuguese ] = "Directrios no existem";
    Text[ dutch ] = "Directory bestaat niet";
    Text[ swedish ] = "Kataloger finns ej";
    Text[ greek ] = "   ";
    Text[ dutch ] = "Directory bestaat niet";
    Text[ swedish ] = "Kataloger finns ej";
    Text[ russian ] = "  ";
    Text[ danish ] = "Bibliotekerne findes ikke";
    Text[ polish ] = "Katalogi nie istniej";
    Text[ portuguese_brazilian ] = "Directories are not available";
    Text[ japanese ] = "ディレクトリはありません";
    Text[ korean ] = "색인이 없습니다";
    Text[ chinese_simplified ] = "目录不存在";
    Text[ chinese_traditional ] = "目錄不存在";
    Text[ arabic ] = "  ";
    Text[ turkish ] = "Dizinler mevcut deil";
    Text[ catalan ] = "Els directoris no existeixen";
    Text[ finnish ] = "Hakemistoja ei ole";
    Text[ thai ] = "ไม่มีไดเร็กทอรี่อยู่";
};


String sOverwriteallFiles
{
    Text = "Mchten Sie, dass Dokumente ohne Abfrage berschrieben werden?";
    Text[English] = "Do you want to overwrite documents without query";
    Text[ English_us ] = "Do you want to overwrite documents without query";
};


String sreeditMacro
{
    Text = "Dokumentenmakro muss berarbeitet werden";
    Text[English] = "Document macro has to be revised";
    Text[ English_us ] = "Document macro has to be revised";
};

String scouldNotsaveDocument
{
    Text = "Dokument '<1>' konnte nicht gespeichert werden";
    Text[English] = "Document '<1>' could not be saved";
    Text[ English_us ] = "Document '<1>' could not be saved";
};


String scouldNotopenDocument
{
    Text = "Dokument '<1>' konnte nicht geffnet werden";
    Text[English] = "Document '<1>' could not be opened";
    Text[ English_us ] = "Document '<1>' could not be opened";
};



String sConvertError1
{
    Text = "Mchten Sie das Konvertieren an dieser Stelle wirklich abbrechen ?";
    Text[English] = "Do you really want to cancel the conversion at this point?";
    Text[ English_us ] = "Do you really want to terminate conversion at this point?";
    Text[ french ] = "tes-vous sr de vouloir interrompre la conversion en cours ?";
    Text[ italian ] = "Interrompere veramente la conversione a questo punto ?";
    Text[ spanish ] = "Desea realmente cancelar ahora la conversin?";
    Text[ portuguese ] = "Cancelar realmente a converso em curso?";
    Text[ dutch ] = "Wilt u het converteren hier werkelijk stoppen?";
    Text[ swedish ] = "Vill du verkligen avbryta konverteringen nu?";
    Text[ greek ] = "         ;";
    Text[ dutch ] = "Wilt u het converteren hier werkelijk stoppen?";
    Text[ swedish ] = "Vill du verkligen avbryta konverteringen nu?";
    Text[ russian ] = "        ?";
    Text[ danish ] = "Er du sikker p, at du vil annullere konverteringen nu?";
    Text[ polish ] = "Czy na pewno przerwa konwersj w tym miejscu?";
    Text[ portuguese_brazilian ] = "Do you really want to cancel the conversion at this point?";
    Text[ japanese ] = "変換をここで中断しますか。";
    Text[ korean ] = "여기에서 변환을 정말 취소하겠습니까?";
    Text[ chinese_simplified ] = "您真要现在中断这个转换过程?";
    Text[ chinese_traditional ] = "真要立刻中斷這個轉換?";
    Text[ arabic ] = "        ɿ";
    Text[ turkish ] = "Dntrme ilemini gerekten bu aamada iptal etmek istiyor musunuz?";
    Text[ catalan ] = "Realment voleu acabar la conversi en aquest punt?";
    Text[ finnish ] = "Haluatko varmasti lopettaa ohjauksen nyt?";
    Text[ thai ] = "คุณต้องการยุติการแปลงที่จุดนี้หรือไม่?";
};

String sConvertError2
{
    Text = "Autopilot abbrechen";
    Text[English] = "Cancel Autopilot";
    Text[ English_us ] = "Cancel AutoPilot";
    Text[ french ] = "Annuler l'AutoPilote";
    Text[ italian ] = "Interrompi Pilota automatico";
    Text[ spanish ] = "Cancelar el AutoPiloto";
    Text[ portuguese ] = "Cancelar AutoPiloto";
    Text[ dutch ] = "AutoPiloot stoppen";
    Text[ swedish ] = "Avbryt Autopiloten";
    Text[ greek ] = "  ";
    Text[ dutch ] = "AutoPiloot stoppen";
    Text[ swedish ] = "Avbryt Autopiloten";
    Text[ russian ] = " ";
    Text[ danish ] = "Annuller Autopilot";
    Text[ polish ] = "Anuluj AutoPilota";
    Text[ portuguese_brazilian ] = "Cancel Autopilot";
    Text[ japanese ] = "オートパイロットを中止";
    Text[ korean ] = "자동 파일럿 중단";
    Text[ chinese_simplified ] = "取消自动文档助理";
    Text[ chinese_traditional ] = "取消自動檔案助理";
    Text[ arabic ] = "   ";
    Text[ turkish ] = "Otopilot'tan k";
    Text[ catalan ] = "Cancel.la Autopilot";
    Text[ finnish ] = "Peruuta automaattinen ohjaus";
    Text[ thai ] = "ยกเลิกการนำร่องอัตโนมัติ";
};

String sRTErrorDesc
{
    Text = "Es ist ein unerwarteter Fehler im Autopiloten aufgetreten.";
    Text[English] = "An unexpected Autopilot error has occured.";
    Text[ English_us ] = "An unexpected error has occurred in the AutoPilot.";
    Text[ french ] = "Une erreur imprvue s'est produite dans l'AutoPilote.";
    Text[ italian ] = "Si  verificato un errore nel Pilota automatico.";
    Text[ spanish ] = "Ha ocurrido un error inesperado en el AutoPiloto";
    Text[ portuguese ] = "Surgiu um erro imprevisto no AutoPiloto.";
    Text[ dutch ] = "Er is een onverwachte fout opgetreden in de AutoPiloot.";
    Text[ swedish ] = "Ett ovntat fel har uppsttt i Autopiloten.";
    Text[ greek ] = "      .";
    Text[ dutch ] = "Er is een onverwachte fout opgetreden in de AutoPiloot.";
    Text[ swedish ] = "Ett ovntat fel har uppsttt i Autopiloten.";
    Text[ russian ] = "    .";
    Text[ danish ] = "Der er opstet en uventet fejl i Autopilot.";
    Text[ polish ] = "Wystpi niespodziewanie bd w AutoPilocie";
    Text[ portuguese_brazilian ] = "An unexpected Autopilot error has occured.";
    Text[ japanese ] = "オートパイロットに予期されないエラーが発生しました。";
    Text[ korean ] = "자동 파일럿에서 예상치 않은 오류 발생.";
    Text[ chinese_simplified ] = "自动文件助理程序出现了一个意外的错误。";
    Text[ chinese_traditional ] = "自動檔案助理發生了一個意外的錯誤。";
    Text[ arabic ] = "      .";
    Text[ turkish ] = "OtoPilot'ta beklenmeyen bir hata olutu.";
    Text[ catalan ] = "S'ha produt un error inesperat a l'AutoPilot.";
    Text[ finnish ] = "Automaattisessa ohjauksessa on ilmennyt odottamaton virhe.";
    Text[ thai ] = "เกิดข้อผิดพลาดที่ไม่คาดคิดขึ้นในการนำร่องอัตโนมัติ";
};

String sRTErrorHeader
{
    Text = "Fehler";
    Text[English] = "Error";
    Text[ English_us ] = "Error";
    Text[ french ] = "Erreur";
    Text[ italian ] = "Errore";
    Text[ spanish ] = "Error";
    Text[ portuguese ] = "Erro";
    Text[ dutch ] = "Fout";
    Text[ swedish ] = "Fel";
    Text[ greek ] = "";
    Text[ dutch ] = "Fout";
    Text[ swedish ] = "Fel";
    Text[ russian ] = "";
    Text[ danish ] = "Fejl";
    Text[ polish ] = "Bd";
    Text[ portuguese_brazilian ] = "Error";
    Text[ japanese ] = "エラー";
    Text[ korean ] = "에러";
    Text[ chinese_simplified ] = "错误";
    Text[ chinese_traditional ] = "錯誤";
    Text[ arabic ] = "";
    Text[ turkish ] = "Hata";
    Text[ catalan ] = "Error";
    Text[ finnish ] = "Virhe";
    Text[ thai ] = "ข้อผิดพลาด";
};


String sPathDialogMessage
{
    Text = "Whlen Sie ein Verzeichnis aus";
    Text[English] = "Select a directory";
    Text[ English_us ] = "Select a directory";
    Text[ french ] = "Slectionnez un rpertoire";
    Text[ italian ] = "Scegliete una cartella";
    Text[ spanish ] = "Elija un directorio";
    Text[ portuguese ] = "Seleccione um directrio";
    Text[ dutch ] = "Selecteer een directory";
    Text[ swedish ] = "Vlj ut en katalog";
    Text[ greek ] = " ";
    Text[ dutch ] = "Selecteer een directory";
    Text[ swedish ] = "Vlj ut en katalog";
    Text[ russian ] = " ";
    Text[ danish ] = "Vlg et bibliotek";
    Text[ polish ] = "Wybierz katalog";
    Text[ portuguese_brazilian ] = "Select a directory";
    Text[ japanese ] = "ディレクトリを選択します。";
    Text[ korean ] = "색인을 선택하십시오.";
    Text[ chinese_simplified ] = "请您选择一个目录";
    Text[ chinese_traditional ] = "請選擇一個目錄";
    Text[ arabic ] = "  ";
    Text[ turkish ] = "Bir dizin sein";
    Text[ catalan ] = "Seleccioneu un directori";
    Text[ finnish ] = "Valitse hakemisto";
    Text[ thai ] = "เลือกไดเร็กทอรี่";
};

String sDialogTitle
{
    Text = "Dokumenten-Konverter";
    Text[English] = "Document Converter";
    Text[ English_us ] = "Document Converter";
    Text[ portuguese ] = "Conversor de documentos";
    Text[ greek ] = "  ";
    Text[ dutch ] = "Documenten-converter";
    Text[ french ] = "Convertisseur de documents";
    Text[ spanish ] = "Convertidor de documentos";
    Text[ swedish ] = "Dokumentkonverterare";
    Text[ russian ] = " ";
    Text[ italian ] = "Convertitore di documenti";
    Text[ danish ] = "Dokument-konverter";
    Text[ polish ] = "Konwerter dokumentw";
    Text[ portuguese_brazilian ] = "Microsoft Import AutoPilot";
    Text[ japanese ] = "ドキュメント変換";
    Text[ korean ] = "문서 변환기";
    Text[ chinese_simplified ] = "文档转换器";
    Text[ chinese_traditional ] = "文件轉換器";
    Text[ arabic ] = " ";
    Text[ turkish ] = "OtoPilot Microsoft ie aktarma";
    Text[ catalan ] = "Conversor de documents";
    Text[ finnish ] = "Asiakirjan muunto";
    Text[ thai ] = "ตัวแปลงเอกสาร";
};

String sProgressPage1
{
    Text = "Arbeitsfortschritt";
    Text[English] = "Current Progress";
    Text[ English_us ] = "Progress";
    Text[ portuguese ] = "Progresso";
    Text[ russian ] = "";
    Text[ greek ] = " ";
    Text[ dutch ] = "Voortgang";
    Text[ french ] = "Progression";
    Text[ spanish ] = "Progreso";
    Text[ italian ] = "Progressione";
    Text[ danish ] = "Arbejdsfremgang";
    Text[ swedish ] = "Arbetsframsteg";
    Text[ polish ] = "Postp";
    Text[ portuguese_brazilian ] = "Current Progress";
    Text[ japanese ] = "進捗状況";
    Text[ korean ] = "진행";
    Text[ chinese_simplified ] = "已经完成";
    Text[ chinese_traditional ] = "已經完成";
    Text[ turkish ] = "Current Progress";
    Text[ arabic ] = "";
    Text[ catalan ] = "Progrs";
    Text[ finnish ] = "Valmis";
    Text[ thai ] = "เสร็จสมบูรณ์แล้ว";
};

String sProgressPage2
{
    Text = "Erfassen der relevanten Dokumente:";
    Text[English] = "Retrieval of the relevant documents";
    Text[ English_us ] = "Retrieving the relevant documents:";
    Text[ portuguese ] = "Recuperao de documentos relevantes...";
    Text[ russian ] = "  ";
    Text[ greek ] = "   :";
    Text[ dutch ] = "De relevante documenten worden geselecteerd:";
    Text[ french ] = "Rcupration des documents importants :";
    Text[ spanish ] = "Recogida de los documentos relevantes:";
    Text[ italian ] = "Recupero dei documenti importanti:";
    Text[ danish ] = "Registrering af de relevante dokumenter:";
    Text[ swedish ] = "Samlar de relevanta dokumenten:";
    Text[ polish ] = "Przywracanie wanych dokumentw:";
    Text[ portuguese_brazilian ] = "Retrieval of the relevant documents";
    Text[ japanese ] = "関連するドキュメントをまとめています:";
    Text[ korean ] = "관련 문서 파악:";
    Text[ chinese_simplified ] = "汇编相关的文档:";
    Text[ chinese_traditional ] = "正在匯編相關的文件:";
    Text[ turkish ] = "Retrieval of the relevant documents";
    Text[ arabic ] = "   :";
    Text[ catalan ] = "S'estan recuperant els documents rellevants:";
    Text[ finnish ] = "Haetaan asianmukaiset asiakirjat:";
    Text[ thai ] = "กำลังค้นคืนเอกสารที่เกี่ยวข้อง:";
};

String sProgressPage3
{
    Text = "Konvertieren der Dokumente";
    Text[English] = "Converting the documents";
    Text[ English_us ] = "Converting the documents";
    Text[ portuguese ] = "A converter documentos";
    Text[ russian ] = " ";
    Text[ greek ] = "  ";
    Text[ dutch ] = "De documenten worden geconverteerd";
    Text[ french ] = "Conversion des documents";
    Text[ spanish ] = "Conversin de documentos";
    Text[ italian ] = "Conversione dei documenti";
    Text[ danish ] = "Konvertering af dokumenterne";
    Text[ swedish ] = "Konvertering av dokumenten";
    Text[ polish ] = "Konwersja dokumentw";
    Text[ portuguese_brazilian ] = "Converting the documents";
    Text[ japanese ] = "ドキュメントの変換";
    Text[ korean ] = "문서 변환";
    Text[ chinese_simplified ] = "转换文档";
    Text[ chinese_traditional ] = "轉換文件";
    Text[ turkish ] = "Converting the documents";
    Text[ arabic ] = " ";
    Text[ catalan ] = "S'estan convertint els documents";
    Text[ finnish ] = "Muunnetaan asiakirjat";
    Text[ thai ] = "กำลังแปลงเอกสาร";
};


String sProgressFound
{
    Text = "Gefunden:";
    Text[English] = "Found:";
    Text[ English_us ] = "Found:";
    Text[ portuguese ] = "Encontrado:";
    Text[ russian ] = ":";
    Text[ greek ] = ":";
    Text[ dutch ] = "Gevonden:";
    Text[ french ] = "Dtect(s) :";
    Text[ spanish ] = "Encontrado:";
    Text[ italian ] = "Trovato:";
    Text[ danish ] = "Fundet:";
    Text[ swedish ] = "Hittad:";
    Text[ polish ] = "Znaleziono:";
    Text[ portuguese_brazilian ] = "Found";
    Text[ japanese ] = "見つかりました:";
    Text[ korean ] = "발견:";
    Text[ chinese_simplified ] = "已经找到:";
    Text[ chinese_traditional ] = "已經找到:";
    Text[ turkish ] = "Found";
    Text[ arabic ] = "  :";
    Text[ catalan ] = "Trobat:";
    Text[ finnish ] = "Tulokset:";
    Text[ thai ] = "พบ:";
};


String sProgressPage5
{
    Text = "%1 gefunden";
    Text[English] = "%1 found";
    Text[ English_us ] = "%1 found";
    Text[ portuguese ] = "%1 encontrado(s)";
    Text[ russian ] = "%1 ";
    Text[ greek ] = " %1";
    Text[ dutch ] = "%1 gevonden";
    Text[ french ] = "%1 dtect(s)";
    Text[ spanish ] = "%1 encontrado";
    Text[ italian ] = "%1 trovato/i";
    Text[ danish ] = "%1 fundet";
    Text[ swedish ] = "%1 hittad(e)";
    Text[ polish ] = "znaleziono %1";
    Text[ portuguese_brazilian ] = "%1 found";
    Text[ japanese ] = "%1 が見つかりました。";
    Text[ korean ] = "%1을(를) 검색";
    Text[ chinese_simplified ] = "%1 被找到。";
    Text[ chinese_traditional ] = "%1 被找到";
    Text[ turkish ] = "%1 found";
    Text[ arabic ] = "   %1";
    Text[ catalan ] = "%1 trobat";
    Text[ finnish ] = "%1 lydetty";
    Text[ language_user1 ] = "RB (15.06.01): %1 bezieht sich auf die Anzahl der gefundenen Dokumente bzw. Vorlagen.";
    Text[ thai ] = "พบ %1 ";
};

String sReady
{
    Text = "Fertig";
    Text[English] = "Ready";
    Text[ English_us ] = "Finished";
    Text[ portuguese ] = "Pronto!";
    Text[ russian ] = "";
    Text[ greek ] = "!";
    Text[ dutch ] = "Klaar";
    Text[ french ] = "Terminer";
    Text[ spanish ] = "Terminado";
    Text[ italian ] = "Fine";
    Text[ danish ] = "Udfr";
    Text[ swedish ] = "Frdig";
    Text[ polish ] = "Gotowe!";
    Text[ portuguese_brazilian ] = "Ready!";
    Text[ japanese ] = "完了";
    Text[ korean ] = "완성!";
    Text[ chinese_simplified ] = "完成";
    Text[ chinese_traditional ] = "完成";
    Text[ turkish ] = "Ready!";
    Text[ arabic ] = "!";
    Text[ catalan ] = "Acabat!";
    Text[ finnish ] = "Valmis!";
    Text[ thai ] = "สมบูรณ์!";
};


String sXMLTemplateCheckbox_1_
{
    Text = "Textvorlagen";
    Text[English] = "Text templates";
    Text[ English_us ] = "Text templates";
    Text[ french ] = "Modles de texte";
    Text[ italian ] = "Modelli di testo";
    Text[ spanish ] = "Plantillas de texto";
    Text[ portuguese ] = "Modelos de texto";
    Text[ dutch ] = "Tekstsjablonen";
    Text[ swedish ] = "Textmallar";
    Text[ greek ] = " ";
    Text[ dutch ] = "Tekstsjablonen";
    Text[ swedish ] = "Textmallar";
    Text[ russian ] = " ";
    Text[ danish ] = "Teksttypografier";
    Text[ polish ] = "Szablony tekstowe";
    Text[ portuguese_brazilian ] = "%PRODUCTNAME Writer templates";
    Text[ japanese ] = "文書テンプレート";
    Text[ korean ] = "텍스트 템플릿";
    Text[ chinese_simplified ] = "文本样式";
    Text[ chinese_traditional ] = "文字樣式";
    Text[ arabic ] = " ";
    Text[ turkish ] = "%PRODUCTNAME Writer ablonlar";
    Text[ catalan ] = "Plantilles de text";
    Text[ finnish ] = "Tekstimallipohjat";
    Text[ thai ] = "แม่แบบข้อความ";
};

String sXMLTemplateCheckbox_2_
{
    Text = "Tabellenvorlagen";
    Text[English] = "Table templates";
    Text[ English_us ] = "Spreadsheet templates";
    Text[ french ] = "Modles de classeur";
    Text[ italian ] = "Modelli di fogli elettronici";
    Text[ spanish ] = "Plantillas de hojas de clculo";
    Text[ portuguese ] = "Modelos de folhas de clculo";
    Text[ dutch ] = "Werkbladsjablonen";
    Text[ swedish ] = "Tabellmallar";
    Text[ greek ] = " ";
    Text[ dutch ] = "Werkbladsjablonen";
    Text[ swedish ] = "Tabellmallar";
    Text[ russian ] = "  ";
    Text[ danish ] = "Tabeltypografier";
    Text[ polish ] = "Szablony arkuszy kalkulacyjnych";
    Text[ portuguese_brazilian ] = "%PRODUCTNAME Calc templates";
    Text[ japanese ] = "表計算テンプレート";
    Text[ korean ] = "표 템플릿";
    Text[ chinese_simplified ] = "工作表样式";
    Text[ chinese_traditional ] = "工作表樣式";
    Text[ arabic ] = " ";
    Text[ turkish ] = "%PRODUCTNAME Calc ablonlar";
    Text[ catalan ] = "Plantilles de fulls de clcul";
    Text[ finnish ] = "Laskentataulukkomallipohjat";
    Text[ thai ] = "แม่แบบกระดาษคำนวณ";
};

String sXMLTemplateCheckbox_3_
{
    Text = "Zeichnungs/Prsentationsvorlagen";
    Text[English] = "Drawing/Presentation templates";
    Text[ English_us ] = "Drawing/presentation templates";
    Text[ french ] = "Modles de dessin / prsentation";
    Text[ italian ] = "Modelli di disegni/presentazioni";
    Text[ spanish ] = "Plantillas de dibujo/presentacin";
    Text[ portuguese ] = "Modelos de desenho/apresentao";
    Text[ dutch ] = "Teken-/presentatiesjablonen";
    Text[ swedish ] = "Tecknings-/presentationsmallar";
    Text[ greek ] = " /";
    Text[ dutch ] = "Teken-/presentatiesjablonen";
    Text[ swedish ] = "Tecknings-/presentationsmallar";
    Text[ russian ] = "   ";
    Text[ danish ] = "Tegnings-/prsentationstypografier";
    Text[ polish ] = "Szablony rysunkw/prezentacji";
    Text[ portuguese_brazilian ] = "%PRODUCTNAME Impress/%PRODUCTNAME Draw templates";
    Text[ japanese ] = "図形描画/プレゼンテーションテンプレート";
    Text[ korean ] = "그리기/프레젠테이션 템플릿";
    Text[ chinese_simplified ] = "绘图/演示文稿样式";
    Text[ chinese_traditional ] = "繪圖/簡報樣式";
    Text[ arabic ] = " / ";
    Text[ turkish ] = "%PRODUCTNAME Impress/%PRODUCTNAME Draw ablonlar";
    Text[ catalan ] = "Plantilles de dibuixos/presentacions";
    Text[ finnish ] = "Piirros-/esitysmallipohjat";
    Text[ thai ] = "แม่แบบการวาดรูป/การนำเสนอ";
};

String sXMLTemplateCheckbox_4_
{
    Text = "Globaldokumente";
    Text[English] = "Master Documents";
    Text[ English_us ] = "Master documents";
    Text[ portuguese ] = "Documentos-mestre";
    Text[ russian ] = " ";
    Text[ greek ] = " ";
    Text[ dutch ] = "Masterdocumenten";
    Text[ french ] = "Documents matres";
    Text[ spanish ] = "Documentos maestros";
    Text[ italian ] = "Documenti master";
    Text[ danish ] = "Hoveddokumenter";
    Text[ swedish ] = "Samlingsdokument";
    Text[ polish ] = "Dokumenty gwne";
    Text[ portuguese_brazilian ] = "%PRODUCTNAME Math Documents";
    Text[ japanese ] = "マスタードキュメント";
    Text[ korean ] = "마스터 문서";
    Text[ chinese_simplified ] = "主控文档";
    Text[ chinese_traditional ] = "主控文件";
    Text[ turkish ] = "%PRODUCTNAME Math Documents";
    Text[ arabic ] = " ";
    Text[ catalan ] = "Documents mestre";
    Text[ finnish ] = "Pasiakirjat";
    Text[ thai ] = "เอกสารต้นฉบับ";
};


String sXMLDocumentCheckbox_1_
{
    Text = "Textdokumente";
    Text[English] = "Text documents";
    Text[ English_us ] = "Text documents";
    Text[ french ] = "Documents texte";
    Text[ italian ] = "Documenti di testo";
    Text[ spanish ] = "Documentos de texto";
    Text[ portuguese ] = "Documentos de texto";
    Text[ dutch ] = "Tekstdocumenten";
    Text[ swedish ] = "Textdokument";
    Text[ greek ] = " ";
    Text[ dutch ] = "Tekstdocumenten";
    Text[ swedish ] = "Textdokument";
    Text[ russian ] = " ";
    Text[ danish ] = "Tekstdokumenter";
    Text[ polish ] = "Dokumenty tekstowe";
    Text[ portuguese_brazilian ] = "%PRODUCTNAME Writer documents";
    Text[ japanese ] = "文書ドキュメント";
    Text[ korean ] = "텍스트 문서";
    Text[ chinese_simplified ] = "文本文档";
    Text[ chinese_traditional ] = "文字文件";
    Text[ arabic ] = " ";
    Text[ turkish ] = "%PRODUCTNAME Writer belgeleri";
    Text[ catalan ] = "Documents de text";
    Text[ finnish ] = "Tekstiasiakirjat";
    Text[ thai ] = "เอกสารข้อความ";
};

String sXMLDocumentCheckbox_2_
{
    Text = "Tabellendokumente";
    Text[English] = "Table documents";
    Text[ English_us ] = "Spreadsheets";
    Text[ french ] = "Classeurs";
    Text[ italian ] = "Fogli elettronici";
    Text[ spanish ] = "Hojas de clculo";
    Text[ portuguese ] = "Folhas de clculo ";
    Text[ dutch ] = "Werkbladdocumenten";
    Text[ swedish ] = "Tabelldokument";
    Text[ greek ] = " ";
    Text[ dutch ] = "Werkbladdocumenten";
    Text[ swedish ] = "Tabelldokument";
    Text[ russian ] = "  ";
    Text[ danish ] = "Regneark";
    Text[ polish ] = "Arkusze kalkulacyjne";
    Text[ portuguese_brazilian ] = "%PRODUCTNAME Calc documents";
    Text[ japanese ] = "表計算ドキュメント";
    Text[ korean ] = "스프레드시트 문서";
    Text[ chinese_simplified ] = "工作表文档";
    Text[ chinese_traditional ] = "工作表文件";
    Text[ arabic ] = " ";
    Text[ turkish ] = "%PRODUCTNAME Calc belgeleri";
    Text[ catalan ] = "Documents de fulls de clcul";
    Text[ finnish ] = "Laskentataulukkoasiakirjat";
    Text[ thai ] = "เอกสารกระดาษคำนวณ";
};

String sXMLDocumentCheckbox_3_
{
    Text = "Zeichnungs/Prsentationsdokumente";
    Text[English] = "Drawing/Presentation documents";
    Text[ English_us ] = "Drawing/presentation documents";
    Text[ french ] = "Dessins / prsentations";
    Text[ italian ] = "Disegni/presentazioni";
    Text[ spanish ] = "Documentos de dibujo/presentacin";
    Text[ portuguese ] = "Desenhos/Apresentaes";
    Text[ dutch ] = "Teken-/presentatiedocumenten";
    Text[ swedish ] = "Tecknings-/presentationsdokument";
    Text[ greek ] = " /";
    Text[ dutch ] = "Teken-/presentatiedocumenten";
    Text[ swedish ] = "Tecknings-/presentationsdokument";
    Text[ russian ] = "   ";
    Text[ danish ] = "Tegnings-/prsentationsdokumenter";
    Text[ polish ] = "Dokumenty rysunku/prezentacji";
    Text[ portuguese_brazilian ] = "%PRODUCTNAME Impress/%PRODUCTNAME Draw documents";
    Text[ japanese ] = "図形描画/プレゼンテーションドキュメント";
    Text[ korean ] = "그리기/프레젠테이션 문서";
    Text[ chinese_simplified ] = "绘图和演示文稿文档";
    Text[ chinese_traditional ] = "繪圖/簡報文件";
    Text[ arabic ] = " / ";
    Text[ turkish ] = "%PRODUCTNAME Impress/%PRODUCTNAME Draw belgeleri";
    Text[ catalan ] = "Documents de dibuix/presentacions";
    Text[ finnish ] = "Piirros-/esitysasiakirjat";
    Text[ thai ] = "เอกสารการวาดรูป/การนำเสนอ";
};


String sXMLDocumentCheckbox_4_
{
    Text = "Globaldokumente/Formeln";
    Text[English] = "Master documents/Formulas";
    Text[ English_us ] = "Master documents/formulas";
    Text[ portuguese ] = "Documentos-mestre/Frmulas";
    Text[ russian ] = "   ";
    Text[ greek ] = " /";
    Text[ dutch ] = "Masterdocumenten/formules";
    Text[ french ] = "Documents matres / formules";
    Text[ spanish ] = "Documentos maestros/Frmulas";
    Text[ italian ] = "Documenti master/formule";
    Text[ danish ] = "Hoveddokumenter/formler";
    Text[ swedish ] = "Samlingsdokument/formler";
    Text[ polish ] = "Dokumenty gwne/Formuy";
    Text[ portuguese_brazilian ] = "%PRODUCTNAME Math Documents";
    Text[ japanese ] = "マスタードキュメント/数式";
    Text[ korean ] = "마스터 문서/수식";
    Text[ chinese_simplified ] = "主控文档和公式";
    Text[ chinese_traditional ] = "主控文件/公式";
    Text[ turkish ] = "%PRODUCTNAME Math Documents";
    Text[ arabic ] = " /";
    Text[ catalan ] = "Documents/frmules mestres";
    Text[ finnish ] = "Pasiakirjat/kaavat";
    Text[ thai ] = "ต้นฉบับเอกสาร/สูตรคำนวณ";
};

String sXMLHelperApplications_1
{
    Text = "Globaldokumente";
    Text[English] = "Master Documents";
    Text[ English_us ] = "Master documents";
    Text[ language_user1 ] = "EM(1.2.01) kommt mitten im Satz vor, deshalb kleingeschr auf Eng. Zustndig ist BC/Extras.";
    Text[ portuguese ] = "documentos-mestre";
    Text[ russian ] = " ";
    Text[ greek ] = " ";
    Text[ dutch ] = "Masterdocumenten";
    Text[ french ] = "Documents matres";
    Text[ spanish ] = "documentos maestros";
    Text[ italian ] = "documenti master";
    Text[ danish ] = "Hoveddokumenter";
    Text[ swedish ] = "Samlingsdokument";
    Text[ polish ] = "dokumenty gwne";
    Text[ portuguese_brazilian ] = "Master Documents";
    Text[ japanese ] = "マスタードキュメント";
    Text[ korean ] = "마스터 문서들";
    Text[ chinese_simplified ] = "主控文档";
    Text[ chinese_traditional ] = "主控文件";
    Text[ turkish ] = "Master Documents";
    Text[ arabic ] = " ";
    Text[ catalan ] = "Documents mestre";
    Text[ finnish ] = "pasiakirjat";
    Text[ thai ] = "ต้นฉบับเอกสาร";
};

String sXMLHelperApplications_2
{
    Text = "Formeln";
    Text[English] = "Formulas";
    Text[ English_us ] = "Formulas";
    Text[ portuguese ] = "Frmulas";
    Text[ russian ] = "";
    Text[ greek ] = "";
    Text[ dutch ] = "Formules";
    Text[ french ] = "Formules";
    Text[ spanish ] = "Frmulas";
    Text[ italian ] = "Formule";
    Text[ danish ] = "Formler";
    Text[ swedish ] = "Formler";
    Text[ polish ] = "Formuy";
    Text[ portuguese_brazilian ] = "Formulas";
    Text[ japanese ] = "数式";
    Text[ korean ] = "수식";
    Text[ chinese_simplified ] = "公式";
    Text[ chinese_traditional ] = "公式";
    Text[ turkish ] = "Formulas";
    Text[ arabic ] = "";
    Text[ catalan ] = "Frmules";
    Text[ finnish ] = "Kaavat";
    Text[ thai ] = "สูตรคำนวณ";
};


String sSourceDocuments
{
    Text = "Quelldokumente";
    Text[English] = "Sourcedocuments";
    Text[ English_us ] = "Source documents";
    Text[ portuguese ] = "Documentos fonte";
    Text[ russian ] = " ";
    Text[ greek ] = "Sourcedocuments";
    Text[ dutch ] = "Brondocumenten";
    Text[ french ] = "Documents source";
    Text[ spanish ] = "Documentos fuente";
    Text[ finnish ] = "Lhdeasiakirjat";
    Text[ italian ] = "Documenti sorgente";
    Text[ danish ] = "Kildedokumenter";
    Text[ swedish ] = "Klldokument";
    Text[ polish ] = "Dokumenty rdowe";
    Text[ portuguese_brazilian ] = "Sourcedocuments";
    Text[ japanese ] = "ソースドキュメント";
    Text[ korean ] = "소스 문서";
    Text[ chinese_simplified ] = "源文档";
    Text[ chinese_traditional ] = "源文件";
    Text[ turkish ] = "Sourcedocuments";
    Text[ arabic ] = "Sourcedocuments";
    Text[ catalan ] = "Documents font";
    Text[ thai ] = "แหล่งเอกสาร";
};


String sTargetDocuments
{
    Text = "Zieldokumente";
    Text[English] = "Targetdocuments";
    Text[ English_us ] = "Target documents";
    Text[ portuguese ] = "Documentos destino";
    Text[ russian ] = " ";
    Text[ greek ] = "Targetdocuments";
    Text[ dutch ] = "Doeldocumenten";
    Text[ french ] = "Documents cible";
    Text[ spanish ] = "Documentos destino";
    Text[ finnish ] = "Kohdeasiakirjat";
    Text[ italian ] = "Documenti di destinazione";
    Text[ danish ] = "Mldokumenter";
    Text[ swedish ] = "Mldokument";
    Text[ polish ] = "Dokumenty docelowe";
    Text[ portuguese_brazilian ] = "Targetdocuments";
    Text[ japanese ] = "ターゲットドキュメント";
    Text[ korean ] = "대상 문서";
    Text[ chinese_simplified ] = "目标文档";
    Text[ chinese_traditional ] = "目標文件";
    Text[ turkish ] = "Targetdocuments";
    Text[ arabic ] = "Targetdocuments";
    Text[ catalan ] = "Documents dest";
    Text[ thai ] = "เอกสารเป้าหมาย";
};

String sCreateLogfile
{
    Text = "Logdatei erstellen";
    Text[English] = "Create Logfile";
    Text[ English_us ] = "Create log file";
    Text[ portuguese ] = "Criar ficheiro de registo";
    Text[ russian ] = "  ";
    Text[ greek ] = "Creae Logfile";
    Text[ dutch ] = "Logbestand maken";
    Text[ french ] = "Crer un fichier journal";
    Text[ spanish ] = "Crear archivo de operaciones";
    Text[ finnish ] = "Luo lokitiedosto";
    Text[ italian ] = "Crea file di log";
    Text[ danish ] = "Opret logfil";
    Text[ swedish ] = "Skapa loggfil";
    Text[ polish ] = "Utwrz plik rejestracyjny";
    Text[ portuguese_brazilian ] = "Creae Logfile";
    Text[ japanese ] = "ログファイルの作成";
    Text[ korean ] = "로그 파일 만들기";
    Text[ chinese_simplified ] = "建立日志文件";
    Text[ chinese_traditional ] = "製作日誌檔案";
    Text[ turkish ] = "Creae Logfile";
    Text[ arabic ] = "Creae Logfile";
    Text[ catalan ] = "Crea fitxer de registre";
    Text[ thai ] = "สร้างแฟ้มลงบันทึกเข้า-ออก";
};


String sLogfileSummary
{
    Text = "<COUNT> Dokumente konvertiert";
    Text[English] = "<COUNT> Documents converted";
    Text[ english_us ] = "<COUNT> documents converted";
    Text[ portuguese ] = "<COUNT> Documents converted";
    Text[ russian ] = "<COUNT> Documents converted";
    Text[ greek ] = "<COUNT> Documents converted";
    Text[ dutch ] = "<COUNT> Documents converted";
    Text[ french ] = "<COUNT> Documents converted";
    Text[ spanish ] = "<COUNT> Documents converted";
    Text[ finnish ] = "<COUNT> Documents converted";
    Text[ italian ] = "<COUNT> Documents converted";
    Text[ danish ] = "<COUNT> Documents converted";
    Text[ swedish ] = "<COUNT> dokument konverterade";
    Text[ polish ] = "<COUNT> Documents converted";
    Text[ japanese ] = "<COUNT> Documents converted";
    Text[ korean ] = "<COUNT> Documents converted";
    Text[ chinese_simplified ] = "<COUNT> 文件已经转换";
    Text[ chinese_traditional ] = "<COUNT> 文件已轉換";
    Text[ turkish ] = "<COUNT> Documents converted";
    Text[ arabic ] = "<COUNT> Documents converted";
};



String sLogfileHelpText
{
    Text = "In Ihrem Arbeitsverzeichnis wird eine Logdatei angelegt";
    Text[English] = "A Logfile will be created within your Working Directory";
    Text[ English_us ] = "A log file will be created in your work directory";
    Text[ portuguese ] = "O ficheiro de registo ser criado na sua pasta de trabalho.";
    Text[ russian ] = "       .";
    Text[ greek ] = "A Logfile will be created within your Working Directory";
    Text[ dutch ] = "In uw werkdirectory wordt een logbestand aangelegd.";
    Text[ french ] = "Un fichier journal va tre cr dans votre dossier de travail.";
    Text[ spanish ] = "Se crear un archivo de operaciones en su directorio de trabajo.";
    Text[ finnish ] = "Lokitiedosto luodaan tyhakemistoon";
    Text[ italian ] = "Il programma crea un file di log nella vostra cartella di lavoro.";
    Text[ danish ] = "Der oprettes en logfil i arbejdsmappen";
    Text[ swedish ] = "En loggfil kommer att skapas i din arbetskatalog";
    Text[ polish ] = "W Twoim katalogu roboczym utworzony zostanie plik rejestracyjny.";
    Text[ portuguese_brazilian ] = "A Logfile will be created within your Working Directory";
    Text[ japanese ] = "ワーキングディレクトリにログファイルが格納されます。";
    Text[ korean ] = "작업 디렉토리 안에 로그파일이 만들어집니다";
    Text[ chinese_simplified ] = "在您的工作目录内新建一个日志文件。";
    Text[ chinese_traditional ] = "在您的工作目錄內新增一個日誌檔案。";
    Text[ turkish ] = "A Logfile will be created within your Working Directory";
    Text[ arabic ] = "A Logfile will be created within your Working Directory";
    Text[ catalan ] = "El fitxer de registre es crear al directori de treball";
    Text[ thai ] = "แฟ้มลงบันทึกเข้า-ออกจะถูกสร้างในไดเร็กทอรี่การทำงานของคุณ";
};


String sshowLogfile
{
    Text = "Logdatei anzeigen";
    Text[English] = "Show Logfile";
    Text[ English_us ] = "Show Logfile";
};


String sSumInclusiveSubDir
{
    Text = "Es werden alle Unterverzeichnisse bercksichtigt";
    Text[English] = "All directories will be considered";
    Text[ English_us ] = "All subdirectories will be taken into account";
    Text[ french ] = "Tous les sous-rpertoires seront pris en compte.";
    Text[ italian ] = "Si terr conto di tutte le sottocartelle";
    Text[ spanish ] = "Se tendrn en cuenta todos los subdirectorios";
    Text[ portuguese ] = "Sero considerados todos os subdirectrios!";
    Text[ dutch ] = "Er wordt rekening gehouden met alle subdirectory's";
    Text[ swedish ] = "Det tas hnsyn till alla underordnade kataloger";
    Text[ greek ] = "    ";
    Text[ dutch ] = "Er wordt rekening gehouden met alle subdirectory's";
    Text[ swedish ] = "Det tas hnsyn till alla underordnade kataloger";
    Text[ russian ] = "  ";
    Text[ danish ] = "Alle underbiblioteker medtages";
    Text[ polish ] = "Uwzgldnione zostan wszystkie katalogi podrzdne";
    Text[ portuguese_brazilian ] = "All directories will be considered";
    Text[ japanese ] = "すべての下位ディレクトリが対象になります。";
    Text[ korean ] = "모든 하위 디렉토리가 참작됩니다.";
    Text[ chinese_simplified ] = "包括所有子目录";
    Text[ chinese_traditional ] = "包含所有子目錄";
    Text[ arabic ] = "    ";
    Text[ turkish ] = "Tm alt dizinler dikkate alnacak";
    Text[ catalan ] = "Es tindran en compte totes els subdirectoris";
    Text[ finnish ] = "Kaikki alihakemistot huomioidaan";
    Text[ thai ] = "ไดเร็กทอรี่ย่อยทั้งหมดจะถูกพิจารณา";
};

String sSumSaveDokumente
{
    Text = "Exportiert werden sie in das folgende Verzeichnis:";
    Text[English] = "These will be exported in the following directory:";
    Text[ English_us ] = "These will be exported to the following directory:";
    Text[ french ] = "Ils seront exports vers le rpertoire suivant :";
    Text[ italian ] = "L'esportazione avver nella seguente cartella:";
    Text[ spanish ] = "Se exportarn al siguiente directorio:";
    Text[ portuguese ] = "Estes sero exportados para o seguinte directrio:";
    Text[ dutch ] = "Ze worden gexporteerd naar de volgende  directory:";
    Text[ swedish ] = "De exporteras till fljande katalog:";
    Text[ greek ] = "       :";
    Text[ dutch ] = "Ze worden gexporteerd naar de volgende  directory:";
    Text[ swedish ] = "De exporteras till fljande katalog:";
    Text[ russian ] = "    :";
    Text[ danish ] = "Disse eksporteres til flgende bibliotek:";
    Text[ polish ] = "Eksportowane zostan do nastpujcego katalogu:";
    Text[ portuguese_brazilian ] = "These will be exported in the following directory:";
    Text[ japanese ] = "次のディレクトリにエクスポートされます。";
    Text[ korean ] = "이 파일 및 문서들은 다음의 디렉토리로 내보내집니다:";
    Text[ chinese_simplified ] = "输出至下列目录:";
    Text[ chinese_traditional ] = "匯入到以下目錄:";
    Text[ arabic ] = "     :";
    Text[ turkish ] = "Bu dosyalarn aktarlaca hedef dizin:";
    Text[ catalan ] = "S'exportaran al segent directori:";
    Text[ finnish ] = "Kohteet viedn seuraavaan hakemistoon:";
    Text[ thai ] = "เหล่านี้จะถูกส่งออกไปยังไดเร็กทอรี่ต่อไปนี้:";
};


String sSumSOTextDocuments
{
    Text = "Alle %PRODUCTNAME Textdokumente aus dem folgenden Verzeichnis werden importiert:";
    Text[English] = "All %PRODUCTNAME text documents in the following directory will be imported:";
    Text[ English_us ] = "All %PRODUCTNAME text documents contained in the following directory will be imported:";
    Text[ french ] = "Les documents texte %PRODUCTNAME contenus dans le rpertoire suivant vont tre imports :";
    Text[ italian ] = "Vengono importati tutti i documenti di testo %PRODUCTNAME dalla cartella seguente:";
    Text[ spanish ] = "Se importarn todos los documentos de texto de %PRODUCTNAME desde el siguiente directorio:";
    Text[ portuguese ] = "Todos os documentos de texto do %PRODUCTNAME sero importados do seguinte directrio:";
    Text[ dutch ] = "Alle %PRODUCTNAME teksten uit de volgende directory worden gemporteerd:";
    Text[ swedish ] = "Alla %PRODUCTNAME textdokument som finns i fljande katalog importeras:";
    Text[ greek ] = "  %1      :";
    Text[ dutch ] = "Alle %PRODUCTNAME teksten uit de volgende directory worden gemporteerd:";
    Text[ swedish ] = "Alla %PRODUCTNAME textdokument som finns i fljande katalog importeras:";
    Text[ russian ] = "   %PRODUCTNAME     :";
    Text[ danish ] = "Alle %PRODUCTNAME-tekstdokumenter importeres fra flgende bibliotek:";
    Text[ polish ] = "Importowane bd wszystkie dokumenty tekstowe programu %PRODUCTNAME z nastpujcego katalogu:";
    Text[ portuguese_brazilian ] = "All Word templates will be imported in the following directory:";
    Text[ japanese ] = "すべての %PRODUCTNAME 文書ドキュメントは次のディレクトリからインポートされます。";
    Text[ korean ] = "다음 디렉토리에서 모든 %1을(를) 가져옵니다:";
    Text[ chinese_simplified ] = "从以下的目录中输入全部的 %PRODUCTNAME 文本文档:";
    Text[ chinese_traditional ] = "從下列目錄匯入全部的 %PRODUCTNAME 文字文件:";
    Text[ arabic ] = "    %1   :";
    Text[ turkish ] = "e aktarlacak tm Word ablonlarn ieren dizin:";
    Text[ catalan ] = "S'importaran tots els documents %PRODUCTNAME Text del segent directori:";
    Text[ finnish ] = "Kaikki seuraavassa hakemistossa olevat ohjelman %PRODUCTNAME tekstiasiakirjat tuodaan:";
    Text[ thai ] = "เอกสารข้อความ %PRODUCTNAME ทั้งหมดที่บรรจุในไดเร็กทอรี่ต่อไปนี้จะถูกนำเข้า:";
};


String sSumSOTableDocuments
{
    Text = "Alle %PRODUCTNAME Tabellendokumente aus dem folgenden Verzeichnis werden importiert:";
    Text[English] = "All %PRODUCTNAME table documents in the following directory will be imported:";
    Text[ English_us ] = "All %PRODUCTNAME spreadsheets contained in the following directory will be imported:";
    Text[ french ] = "Les classeurs %PRODUCTNAME contenus dans le rpertoire suivant vont tre imports :";
    Text[ italian ] = "Vengono importati tutti i fogli elettronici %PRODUCTNAME dalla cartella seguente:";
    Text[ spanish ] = "Se importarn todas las hojas de clculo de %PRODUCTNAME del siguiente directorio:";
    Text[ portuguese ] = "Todas as folhas de clculo do %PRODUCTNAME sero importadas do seguinte directrio:";
    Text[ dutch ] = "Alle %PRODUCTNAME werkbladen uit de volgende directory worden gemporteerd:";
    Text[ swedish ] = "Alla %PRODUCTNAME tabelldokument som finns i fljande katalog importeras:";
    Text[ greek ] = "  %1      :";
    Text[ dutch ] = "Alle %PRODUCTNAME werkbladen uit de volgende directory worden gemporteerd:";
    Text[ swedish ] = "Alla %PRODUCTNAME tabelldokument som finns i fljande katalog importeras:";
    Text[ russian ] = "    %PRODUCTNAME      :";
    Text[ danish ] = "Alle %PRODUCTNAME-regneark importeres fra flgende bibliotek:";
    Text[ polish ] = "Importowane bd wszystkie arkusze kalkulacyjne programu %PRODUCTNAME z nastpujcego katalogu:";
    Text[ portuguese_brazilian ] = "All Word templates will be imported in the following directory:";
    Text[ japanese ] = "すべての %PRODUCTNAME 表計算ドキュメントは次のディレクトリからインポートされます。";
    Text[ korean ] = "다음 디렉토리에서 모든 %1을(를) 가져옵니다:";
    Text[ chinese_simplified ] = "从以下的目录中输入所有 %PRODUCTNAME 工作表文档:";
    Text[ chinese_traditional ] = "從下列目錄匯入全部的 %PRODUCTNAME 工作表文件:";
    Text[ arabic ] = "    %1   :";
    Text[ turkish ] = "e aktarlacak tm Word ablonlarn ieren dizin:";
    Text[ catalan ] = "S'importaran tots els documents %PRODUCTNAME Taula del segent directori:";
    Text[ finnish ] = "Kaikki seuraavassa hakemistossa olevat ohjelman %PRODUCTNAME laskentataulukot tuodaan:";
    Text[ thai ] = "กระดาษคำนวณ %PRODUCTNAME ทั้งหมดที่บรรจุในไดเร็กทอรี่ต่อไปนี้จะถูกนำเข้า:";
};


String sSumSODrawDocuments
{
    Text = "Alle %PRODUCTNAME Zeichnungs- und Prsentationsdokumente aus dem folgenden Verzeichnis werden importiert:";
    Text[English] = "All %PRODUCTNAME drawing and impress documents in the following directory will be imported:";
    Text[ English_us ] = "All %PRODUCTNAME drawing and presentation documents contained in the following directory will be imported:";
    Text[ french ] = "Les dessins et prsentations %PRODUCTNAME contenus dans le rpertoire suivant vont tre imports :";
    Text[ italian ] = "Vengono importati tutti i disegni e le presentazioni %PRODUCTNAME dalla cartella seguente:";
    Text[ spanish ] = "Se importarn todos los documentos de presentacin y dibujo de %PRODUCTNAME desde el siguiente directorio:";
    Text[ portuguese ] = "Todos os desenhos e apresentaes do %PRODUCTNAME sero importados do seguinte directrio:";
    Text[ dutch ] = "Alle %PRODUCTNAME tekening- en presentatiedocumenten uit de volgende directory worden gemporteerd:";
    Text[ swedish ] = "Alla %PRODUCTNAME tecknings- och presentationsdokument som finns i fljande katalog importeras:";
    Text[ greek ] = "  %1      :";
    Text[ dutch ] = "Alle %PRODUCTNAME tekening- en presentatiedocumenten uit de volgende directory worden gemporteerd:";
    Text[ swedish ] = "Alla %PRODUCTNAME tecknings- och presentationsdokument som finns i fljande katalog importeras:";
    Text[ russian ] = "    %PRODUCTNAME      :";
    Text[ danish ] = "Alle %PRODUCTNAME-tegnings- og prsentationsdokumenter importeres fra flgende bibliotek:";
    Text[ polish ] = "Importowane bd wszystkie dokumenty rysunkowe i prezenacyjne programu %PRODUCTNAME z nastpujcego katalogu:";
    Text[ portuguese_brazilian ] = "All Word templates will be imported in the following directory:";
    Text[ japanese ] = "すべての %PRODUCTNAME 図形描画ドキュメントとプレゼンテーションドキュメントは次のディレクトリからインポートされます。";
    Text[ korean ] = "다음 디렉토리에서 모든 %1을(를) 가져옵니다:";
    Text[ chinese_simplified ] = "从以下的目录中输入所有 %PRODUCTNAME 绘图文档和演示文稿文档:";
    Text[ chinese_traditional ] = "從下列目錄匯入全部的 %PRODUCTNAME 繪圖及簡報文件:";
    Text[ arabic ] = "    %1   :";
    Text[ turkish ] = "e aktarlacak tm Word ablonlarn ieren dizin:";
    Text[ catalan ] = "S'importaran tots els documents %PRODUCTNAME Impress i Dibuix del segent directori:";
    Text[ finnish ] = "Kaikki seuraavassa hakemistossa olevat ohjelman %PRODUCTNAME piirrokset tuodaan:";
    Text[ thai ] = "เอกสารการวาดรูปและการนำเสนอ %PRODUCTNAME ทั้งหมดที่บรรจุในไดเร็กทอรี่ต่อไปนี้จะถูกนำเข้า:";
};


String sSumSOMathDocuments
{
    Text = "Alle %PRODUCTNAME Formeldokumente aus dem folgenden Verzeichnis werden importiert:";
    Text[English] = "All %PRODUCTNAME formula documents in the following directory will be imported:";
    Text[ English_us ] = "All %PRODUCTNAME formula documents contained in the following directory will be imported:";
    Text[ french ] = "Les formules %PRODUCTNAME contenues dans le rpertoire suivant vont tre importes :";
    Text[ italian ] = "Vengono importati tutte le formule PRODUCTNAME dalla cartella seguente:";
    Text[ spanish ] = "Se importarn todos los documentos de frmula de %PRODUCTNAME desde el siguiente directorio:";
    Text[ portuguese ] = "Todas as frmulas do %PRODUCTNAME sero importadas do seguinte directrio:";
    Text[ dutch ] = "Alle %PRODUCTNAME formuledocumenten uit de volgende directory worden gemporteerd:";
    Text[ swedish ] = "Alla %PRODUCTNAME formeldokument som finns i fljande katalog importeras:";
    Text[ greek ] = "  %1      :";
    Text[ dutch ] = "Alle %PRODUCTNAME formuledocumenten uit de volgende directory worden gemporteerd:";
    Text[ swedish ] = "Alla %PRODUCTNAME formeldokument som finns i fljande katalog importeras:";
    Text[ russian ] = "   %PRODUCTNAME     :";
    Text[ danish ] = "Alle %PRODUCTNAME-formeldokumenter importeres fra flgende bibliotek:";
    Text[ polish ] = "Importowane bd wszystkie dokumenty formu programu %PRODUCTNAME z nastpujcego katalogu:";
    Text[ portuguese_brazilian ] = "All Word templates will be imported in the following directory:";
    Text[ japanese ] = "すべての %PRODUCTNAME 数式ドキュメントは次のディレクトリからインポートされます。";
    Text[ korean ] = "다음 디렉토리에서 모든 %1을(를) 가져옵니다:";
    Text[ chinese_simplified ] = "从以下的目录中输入所有 %PRODUCTNAME 公式文档:";
    Text[ chinese_traditional ] = "從下列目錄匯入全部的 %PRODUCTNAME 公式文件:";
    Text[ arabic ] = "    %1   :";
    Text[ turkish ] = "e aktarlacak tm Word ablonlarn ieren dizin:";
    Text[ catalan ] = "S'importaran tots els documents %PRODUCTNAME Frmula del segent directori:";
    Text[ finnish ] = "Kaikki seuraavassa hakemistossa olevat ohjelman %PRODUCTNAME kaava-asiakirjat tuodaan:";
    Text[ thai ] = "เอกสารสูตรคำนวณ %PRODUCTNAME ทั้งหมดที่บรรจุในไดเร็กทอรี่ต่อไปนี้จะถูกนำเข้า:";
};


String sSumSOTextTemplates
{
    Text = "Alle %PRODUCTNAME Textvorlagen aus dem folgenden Verzeichnis werden importiert:";
    Text[English] = "All %PRODUCTNAME text templates in the following directory will be imported:";
    Text[ English_us ] = "All %PRODUCTNAME text templates contained in the following directory will be imported:";
    Text[ french ] = "Les modles de texte %PRODUCTNAME contenus dans le rpertoire suivant vont tre imports :";
    Text[ italian ] = "Vengono importati tutti i modelli di testo %PRODUCTNAME dalla cartella seguente:";
    Text[ spanish ] = "Se importarn todas las plantillas de %PRODUCTNAME del siguiente directorio:";
    Text[ portuguese ] = "Todos os modelos de texto do %PRODUCTNAME sero importados do seguinte directrio:";
    Text[ dutch ] = "Alle %PRODUCTNAME tekstsjablonen uit de volgende directory worden gemporteerd:";
    Text[ swedish ] = "Alla %PRODUCTNAME textmallar som finns i fljande katalog importeras:";
    Text[ greek ] = "  %1      :";
    Text[ dutch ] = "Alle %PRODUCTNAME tekstsjablonen uit de volgende directory worden gemporteerd:";
    Text[ swedish ] = "Alla %PRODUCTNAME textmallar som finns i fljande katalog importeras:";
    Text[ russian ] = "   %PRODUCTNAME     :";
    Text[ danish ] = "Alle %PRODUCTNAME-tekstskabeloner importeres fra flgende bibliotek:";
    Text[ polish ] = "Importowane bd wszystkie szablony tekstw programu %PRODUCTNAME z nastpujcego katalogu:";
    Text[ portuguese_brazilian ] = "All Word templates will be imported in the following directory:";
    Text[ japanese ] = "すべての %PRODUCTNAME 文書テンプレートは次のディレクトリからインポートされます。";
    Text[ korean ] = "다음 디렉토리에서 모든 %1을(를) 가져옵니다:";
    Text[ chinese_simplified ] = "从以下的目录中输入所有 %PRODUCTNAME 文本文档的样式:";
    Text[ chinese_traditional ] = "從下列目錄匯入全部的 %PRODUCTNAME 文字文件樣式:";
    Text[ arabic ] = "    %1   :";
    Text[ turkish ] = "e aktarlacak tm Word ablonlarn ieren dizin:";
    Text[ catalan ] = "S'importaran tots els documents %PRODUCTNAME Plantilla del segent directori:";
    Text[ finnish ] = "Kaikki seuraavassa hakemistossa olevat ohjelman %PRODUCTNAME tekstimallipohjat tuodaan:";
    Text[ thai ] = "แม่แบบข้อความ %PRODUCTNAME ทั้งหมดที่บรรจุในไดเร็กทอรี่ต่อไปนี้จะถูกนำเข้า:";
};


String sSumSOTableTemplates
{
    Text = "Alle %PRODUCTNAME Tabellenvorlagen aus dem folgenden Verzeichnis werden importiert:";
    Text[English] = "All %PRODUCTNAME table templates in the following directory will be imported:";
    Text[ English_us ] = "All %PRODUCTNAME table templates contained in the following directory will be imported:";
    Text[ french ] = "Les modles de classeur %PRODUCTNAME contenus dans le rpertoire suivant vont tre imports :";
    Text[ italian ] = "Vengono importati tutti i modelli di fogli elettronici %PRODUCTNAME dalla cartella seguente:";
    Text[ spanish ] = "Se importarn todas las plantillas de hojas de clculo de %PRODUCTNAME desde el siguiente directorio:";
    Text[ portuguese ] = "Todos os modelos de tabelas do %PRODUCTNAME sero importados do seguinte directrio:";
    Text[ dutch ] = "Alle %PRODUCTNAME werkbladsjablonen uit de volgende directory worden gemporteerd:";
    Text[ swedish ] = "Alla %PRODUCTNAME tabellmallar som finns i fljande katalog importeras:";
    Text[ greek ] = "  %1      :";
    Text[ dutch ] = "Alle %PRODUCTNAME werkbladsjablonen uit de volgende directory worden gemporteerd:";
    Text[ swedish ] = "Alla %PRODUCTNAME tabellmallar som finns i fljande katalog importeras:";
    Text[ russian ] = "    %PRODUCTNAME     :";
    Text[ danish ] = "Alle %PRODUCTNAME-regnearksskabeloner importeres fra flgende bibliotek:";
    Text[ polish ] = "Importowane bd wszystkie szablony arkuszy kalkulacyjnych programu %PRODUCTNAME z nastpujcego katalogu:";
    Text[ portuguese_brazilian ] = "All Word templates will be imported in the following directory:";
    Text[ japanese ] = "すべての %PRODUCTNAME 表計算テンプレートは次のディレクトリからインポートされます。";
    Text[ korean ] = "다음 디렉토리에서 모든 %1을(를) 가져옵니다:";
    Text[ chinese_simplified ] = "从以下的目录中输入所有 %PRODUCTNAME 工作表样式文档:";
    Text[ chinese_traditional ] = "從下列目錄匯入全部的 %PRODUCTNAME 工作表樣式文件:";
    Text[ arabic ] = "    %1   :";
    Text[ turkish ] = "e aktarlacak tm Word ablonlarn ieren dizin:";
    Text[ catalan ] = "S'importaran totes les plantilles %PRODUCTNAME Taula del segent directori:";
    Text[ finnish ] = "Kaikki seuraavassa hakemistossa olevat ohjelman %PRODUCTNAME taulukkomallipohjat tuodaan:";
    Text[ thai ] = "แม่แบบตาราง %PRODUCTNAME ทั้งหมดที่บรรจุในไดเร็กทอรี่ต่อไปนี้จะถูกนำเข้า:";
};


String sSumSODrawTemplates
{
    Text = "Alle %PRODUCTNAME Zeichnungs- und Prsentationsvorlagen aus dem folgenden Verzeichnis werden importiert:";
    Text[English] = "All %PRODUCTNAME drawing and impress templates in the following directory will be imported:";
    Text[ English_us ] = "All %PRODUCTNAME drawing and presentation templates contained in the following directory will be imported:";
    Text[ french ] = "Les modles de dessin et de prsentation %PRODUCTNAME contenus dans le rpertoire suivant vont tre imports :";
    Text[ italian ] = "Vengono importati tutti i modelli di disegni e presentazioni %PRODUCTNAME dalla cartella seguente:";
    Text[ spanish ] = "Se importarn todas las plantillas de presentacin y dibujo de %PRODUCTNAME desde el siguiente directorio:";
    Text[ portuguese ] = "Todos os modelos de desenhos e apresentaes do %PRODUCTNAME sero importados do seguinte directrio:";
    Text[ dutch ] = "Alle %PRODUCTNAME tekening- en presentatiesjablomen uit de volgende directory worden gemporteerd:";
    Text[ swedish ] = "Alla %PRODUCTNAME tecknings- och presentationsmallar som finns i fljande katalog importeras:";
    Text[ greek ] = "  %1      :";
    Text[ dutch ] = "Alle %PRODUCTNAME tekening- en presentatiesjablomen uit de volgende directory worden gemporteerd:";
    Text[ swedish ] = "Alla %PRODUCTNAME tecknings- och presentationsmallar som finns i fljande katalog importeras:";
    Text[ russian ] = "     %PRODUCTNAME      :";
    Text[ danish ] = "Alle %PRODUCTNAME-tegnings- og prsentationsskabeloner importeres fra flgende bibliotek:";
    Text[ polish ] = "Importowane bd wszystkie szablony rysunkowe i prezentacyjne programu %PRODUCTNAME z nastpujcego katalogu:";
    Text[ portuguese_brazilian ] = "All Word templates will be imported in the following directory:";
    Text[ japanese ] = "すべての %PRODUCTNAME 図形描画テンプレートとプレゼンテーションテンプレートは次のディレクトリからインポートされます。";
    Text[ korean ] = "다음 디렉토리에서 모든 %1을(를) 가져옵니다:";
    Text[ chinese_simplified ] = "从以下的目录中输入所有 %PRODUCTNAME 绘图样式文档和工作表样式文档:";
    Text[ chinese_traditional ] = "從下列目錄匯入全部的 %PRODUCTNAME 繪圖及簡報樣式文件:";
    Text[ arabic ] = "    %1   :";
    Text[ turkish ] = "e aktarlacak tm Word ablonlarn ieren dizin:";
    Text[ catalan ] = "S'importaran totes les plantilles %PRODUCTNAME Impress i Dibuix del segent directori:";
    Text[ finnish ] = "Kaikki seuraavassa hakemistossa olevat ohjelman %PRODUCTNAME esitysmallipohjat tuodaan:";
    Text[ thai ] = "แม่แบบการวาดรูปและการนำเสนอ %PRODUCTNAME ทั้งหมดที่บรรจุในไดเร็กทอรี่ต่อไปนี้จะถูกนำเข้า:";
};

String sSumSOGlobalDocuments
{
    Text = "Alle %PRODUCTNAME Globaldokumente aus dem folgenden Verzeichnis werden importiert:";
    Text[English] = "All %PRODUCTNAME global documents in the following directory will be imported:";
    Text[ English_us ] = "All %PRODUCTNAME master documents contained in the following directory will be imported:";
    Text[ french ] = "Les documents matres %PRODUCTNAME contenus dans le rpertoire suivant vont tre imports :";
    Text[ italian ] = "Vengono importati tutti i documenti master %PRODUCTNAME dalla cartella seguente:";
    Text[ spanish ] = "Se importarn todos los documentos maestros de %PRODUCTNAME desde el siguiente directorio:";
    Text[ portuguese ] = "Todos os documentos-mestre do %PRODUCTNAME sero importados do seguinte directrio:";
    Text[ dutch ] = "Alle %PRODUCTNAME masterdocumenten uit de volgende directory worden gemporteerd:";
    Text[ swedish ] = "Alla %PRODUCTNAME samlingsdokument som finns i fljande katalog importeras:";
    Text[ greek ] = "  %1      :";
    Text[ dutch ] = "Alle %PRODUCTNAME masterdocumenten uit de volgende directory worden gemporteerd:";
    Text[ swedish ] = "Alla %PRODUCTNAME samlingsdokument som finns i fljande katalog importeras:";
    Text[ russian ] = "   %PRODUCTNAME     :";
    Text[ danish ] = "Alle %PRODUCTNAME-hoveddokumenter importeres fra flgende bibliotek:";
    Text[ polish ] = "Importowane bd wszystkie dokumenty gwne programu %PRODUCTAME z nastpujcego katalogu:";
    Text[ portuguese_brazilian ] = "All Word templates will be imported in the following directory:";
    Text[ japanese ] = "すべての %PRODUCTNAME マスタードキュメントは次のディレクトリからインポートされます。";
    Text[ korean ] = "다음 디렉토리에서 모든 %1을(를) 가져옵니다:";
    Text[ chinese_simplified ] = "从以下的目录中输入所有 %PRODUCTNAME 主控文档:";
    Text[ chinese_traditional ] = "從下列目錄匯入全部的 %PRODUCTNAME 主控文件:";
    Text[ arabic ] = "    %1   :";
    Text[ turkish ] = "e aktarlacak tm Word ablonlarn ieren dizin:";
    Text[ catalan ] = "S'importaran tots els documents mestres %PRODUCTNAME del segent directori:";
    Text[ finnish ] = "Kaikki seuraavassa hakemistossa olevat ohjelman %PRODUCTNAME pasiakirjat tuodaan:";
    Text[ finnish ] = "Kaikki seuraavassa hakemistossa olevat ohjelman %PRODUCTNAME pasiakirjat tuodaan:";
    Text[ thai ] = "ต้นฉบับเอกสาร %PRODUCTNAME ทั้งหมดที่บรรจุในไดเร็กทอรี่ต่อไปนี้จะถูกนำเข้า:";
};


String sSumMSTextDocuments
{
    Text = "Alle Word-Dokumente aus dem folgenden Verzeichnis werden importiert:";
    Text[English] = "All Word documents in the following directory will be imported:";
    Text[ English_us ] = "All Word documents contained in the following directory will be imported:";
    Text[ french ] = "Les documents Word contenus dans le rpertoire suivant vont tre imports :";
    Text[ italian ] = "Vengono importati tutti i documenti di Word dalla cartella seguente:";
    Text[ spanish ] = "Se importarn todos los documentos Word del siguiente directorio:";
    Text[ portuguese ] = "Todos os documentos Word sero importados do seguinte directrio:";
    Text[ dutch ] = "Alle Word-documenten uit de volgende directory worden gemporteerd:";
    Text[ swedish ] = "Alla Word-dokument som finns i fljande katalog importeras:";
    Text[ greek ] = "  %1      :";
    Text[ dutch ] = "Alle Word-documenten uit de volgende directory worden gemporteerd:";
    Text[ swedish ] = "Alla Word-dokument som finns i fljande katalog importeras:";
    Text[ russian ] = "  Word     :";
    Text[ danish ] = "Alle Word-dokumenter importeres fra flgende bibliotek:";
    Text[ polish ] = "Importowane bd wszystkie dokumenty programu Word z nastpujcego katalogu:";
    Text[ portuguese_brazilian ] = "All Word templates will be imported in the following directory:";
    Text[ japanese ] = "すべての Word ドキュメントは次のディレクトリからインポートされます。";
    Text[ korean ] = "다음 디렉토리에서 모든 %1을(를) 가져옵니다:";
    Text[ chinese_simplified ] = "从以下的目录中输入所有 Word 文档:";
    Text[ chinese_traditional ] = "從下列目錄匯入全部的 Word 文件:";
    Text[ arabic ] = "    %1   :";
    Text[ turkish ] = "e aktarlacak tm Word ablonlarn ieren dizin:";
    Text[ catalan ] = "S'importaran tots els documents Word del segent directori:";
    Text[ finnish ] = "Kaikki seuraavassa hakemistossa ovat Word-asiakirjat tuodaan:";
    Text[ thai ] = "เอกสารเวิร์ดทั้งหมดที่บรรจุในไดเร็กทอรี่ต่อไปนี้จะถูกนำเข้า:";
};


String sSumMSTableDocuments
{
    Text = "Alle Excel-Dokumente aus dem folgenden Verzeichnis werden importiert:";
    Text[English] = "All Excel documents in the following directory will be imported:";
    Text[ English_us ] = "All Excel documents contained in the following directory will be imported:";
    Text[ french ] = "Les documents Excel contenus dans le rpertoire suivant vont tre imports :";
    Text[ italian ] = "Vengono importati tutti i documenti di Excel dalla seguente cartella:";
    Text[ spanish ] = "Se importarn todos los documentos Excel del siguiente directorio:";
    Text[ portuguese ] = "Todos os doumentos Excel sero importados do seguinte directrio:";
    Text[ dutch ] = "Alle Excel-documenten uit de volgende  directory worden gemporteerd:";
    Text[ swedish ] = "Alla Excel-dokument som finns i fljande katalog importeras:";
    Text[ greek ] = "  %1      :";
    Text[ dutch ] = "Alle Excel-documenten uit de volgende  directory worden gemporteerd:";
    Text[ swedish ] = "Alla Excel-dokument som finns i fljande katalog importeras:";
    Text[ russian ] = "  Excel     :";
    Text[ danish ] = "Alle Excel-dokumenter importeres fra flgende bibliotek:";
    Text[ polish ] = "Importowane bd wszystkie dokumenty programu Excel z nastpujcego katalogu:";
    Text[ portuguese_brazilian ] = "All Word templates will be imported in the following directory:";
    Text[ japanese ] = "すべての Excel ドキュメントは次のディレクトリからインポートされます。";
    Text[ korean ] = "다음 디렉토리에서 모든 %1을(를) 가져옵니다:";
    Text[ chinese_simplified ] = "从下一个目录输入所有的 Excel 文档:";
    Text[ chinese_traditional ] = "從下列目錄匯入全部的 Excel 文件:";
    Text[ arabic ] = "    %1   :";
    Text[ turkish ] = "e aktarlacak tm Word ablonlarn ieren dizin:";
    Text[ catalan ] = "S'importaran tots els documents Excel del segent directori:";
    Text[ finnish ] = "Kaikki seuraavassa hakemistossa ovat Excel-asiakirjat tuodaan:";
    Text[ thai ] = "เอกสารเอ็กเซลทั้งหมดที่บรรจุในไดเร็กทอรี่ต่อไปนี้จะถูกนำเข้า:";
};


String sSumMSDrawDocuments
{
    Text = "Alle PowerPoint-Dokumente aus dem folgenden Verzeichnis werden importiert:";
    Text[English] = "All PowerPoint documents in the following directory will be imported:";
    Text[ English_us ] = "All PowerPoint documents contained in the following directory will be imported:";
    Text[ french ] = "Les documents PowerPoint contenus dans le rpertoire suivant vont tre imports :";
    Text[ italian ] = "Vengono importati tutti i documenti di PowerPoint dalla seguente cartella:";
    Text[ spanish ] = "Se importarn todos los documentos PowerPoint del siguiente directorio:";
    Text[ portuguese ] = "Todos os documentos PowerPoint sero importados do seguinte directrio:";
    Text[ dutch ] = "Alle PowerPoint-documenten uit de volgende  directory worden gemporteerd:";
    Text[ swedish ] = "Alla PowerPoint-dokument som finns i fljande katalog importeras:";
    Text[ greek ] = "  %1      :";
    Text[ dutch ] = "Alle PowerPoint-documenten uit de volgende  directory worden gemporteerd:";
    Text[ swedish ] = "Alla PowerPoint-dokument som finns i fljande katalog importeras:";
    Text[ russian ] = "  PowerPoint     :";
    Text[ danish ] = "Alle PowerPoint-dokumenter importeres fra flgende bibliotek:";
    Text[ polish ] = "Importowane bd wszystkie dokumenty programu PowerPoint z nastpujcego katalogu:";
    Text[ portuguese_brazilian ] = "All Word templates will be imported in the following directory:";
    Text[ japanese ] = "すべての PowerPoint ドキュメントは次のディレクトリからインポートされます。";
    Text[ korean ] = "다음 디렉토리에서 모든 %1을(를) 가져옵니다:";
    Text[ chinese_simplified ] = "从下一个目录输入所有的 PowerPoint 文档:";
    Text[ chinese_traditional ] = "從下列目錄匯入全部的 PowerPiont 文件:";
    Text[ arabic ] = "    %1   :";
    Text[ turkish ] = "e aktarlacak tm Word ablonlarn ieren dizin:";
    Text[ catalan ] = "S'importaran tots els documents PowerPoint del segent directori:";
    Text[ finnish ] = "Kaikki seuraavassa hakemistossa ovat PowerPoint-asiakirjat tuodaan:";
    Text[ thai ] = "เอกสารเพาเวอร์พ้อยท์ทั้งหมดที่บรรจุในไดเร็กทอรี่ต่อไปนี้จะถูกนำเข้า:";
};


String sSumMSTextTemplates
{
    Text = "Alle Word-Vorlagen aus dem folgenden Verzeichnis werden importiert:";
    Text[English] = "All Word templates in the following directory will be imported:";
    Text[ English_us ] = "All Word templates contained in the following directory will be imported:";
    Text[ french ] = "Les modles Word contenus dans le rpertoire suivant vont tre imports :";
    Text[ italian ] = "Vengono importati tutti i modelli di Word dalla cartella seguente:";
    Text[ spanish ] = "Se importarn todas las plantillas Word del siguiente directorio:";
    Text[ portuguese ] = "Todos os modelos Word sero importados do seguinte directrio:";
    Text[ dutch ] = "Alle Word-sjablonen uit de volgende directory worden gemporteerd:";
    Text[ swedish ] = "Alla Word-mallar som finns i fljande katalog importeras:";
    Text[ greek ] = "  %1      :";
    Text[ dutch ] = "Alle Word-sjablonen uit de volgende directory worden gemporteerd:";
    Text[ swedish ] = "Alla Word-mallar som finns i fljande katalog importeras:";
    Text[ russian ] = "  Word     :";
    Text[ danish ] = "Alle Word-skabeloner importeres fra flgende bibliotek:";
    Text[ polish ] = "Importowane bd wszystkie szablony programu Word z nastpujcego katalogu:";
    Text[ portuguese_brazilian ] = "All Word templates will be imported in the following directory:";
    Text[ japanese ] = "すべての Word テンプレートは次のディレクトリからインポートされます。";
    Text[ korean ] = "다음 디렉토리에서 모든 %1을(를) 가져옵니다:";
    Text[ chinese_simplified ] = "从以下的目录中输入所有的 Word 范本:";
    Text[ chinese_traditional ] = "從下列目錄匯入全部的 Word 範本:";
    Text[ arabic ] = "    %1   :";
    Text[ turkish ] = "e aktarlacak tm Word ablonlarn ieren dizin:";
    Text[ catalan ] = "S'importaran totes les plantilles Word del segent directori:";
    Text[ finnish ] = "Kaikki seuraavassa hakemistossa ovat Word-mallipohjat tuodaan:";
    Text[ thai ] = "แม่แบบเวิร์ดทั้งหมดที่บรรจุในไดเร็กทอรี่ต่อไปนี้จะถูกนำเข้า:";
};


String sSumMSTableTemplates
{
    Text = "Alle Excel-Vorlagen aus dem folgenden Verzeichnis werden importiert:";
    Text[English] = "All Excel templates in the following directory will be imported:";
    Text[ English_us ] = "All Excel templates contained in the following directory will be imported:";
    Text[ french ] = "Les modles Excel contenus dans le rpertoire suivant vont tre imports :";
    Text[ italian ] = "Vengono importati tutti i modelli di Excel dalla seguente cartella:";
    Text[ spanish ] = "Se importarn todas las plantillas Excel del siguiente directorio:";
    Text[ portuguese ] = "Todos os modelos Excel sero importados do seguinte directrio:";
    Text[ dutch ] = "Alle Excel-sjablonen uit de volgende  directory worden gemporteerd:";
    Text[ swedish ] = "Alla Excel-mallar som finns i fljande katalog importeras:";
    Text[ greek ] = "  %1      :";
    Text[ dutch ] = "Alle Excel-sjablonen uit de volgende  directory worden gemporteerd:";
    Text[ swedish ] = "Alla Excel-mallar som finns i fljande katalog importeras:";
    Text[ russian ] = "  Excel     :";
    Text[ danish ] = "Alle Excel-skabeloner importeres fra flgende bibliotek:";
    Text[ polish ] = "Importowane bd wszystkie szablony programu Excel z nastpujcego katalogu:";
    Text[ portuguese_brazilian ] = "All Word templates will be imported in the following directory:";
    Text[ japanese ] = "すべての Excel テンプレートは次のディレクトリからインポートされます。";
    Text[ korean ] = "다음 디렉토리에서 모든 %1을(를) 가져옵니다:";
    Text[ chinese_simplified ] = "从以下一个目录输入所有的 Excel 范本:";
    Text[ chinese_traditional ] = "從下列目錄匯入全部的 Excel 範本:";
    Text[ arabic ] = "    %1   :";
    Text[ turkish ] = "e aktarlacak tm Word ablonlarn ieren dizin:";
    Text[ catalan ] = "S'importaran totes les plantilles Excel del segent directori:";
    Text[ finnish ] = "Kaikki seuraavassa hakemistossa ovat Excel-mallipohjat tuodaan:";
    Text[ thai ] = "แม่แบบเอ็กเซลทั้งหมดที่บรรจุในไดเร็กทอรี่ต่อไปนี้จะถูกนำเข้า:";
};


String sSumMSDrawTemplates
{
    Text = "Alle PowerPoint-Vorlagen aus dem folgenden Verzeichnis werden importiert:";
    Text[English] = "All PowerPoint templates in the following directory will be imported:";
    Text[ English_us ] = "All PowerPoint templates contained in the following directory will be imported:";
    Text[ french ] = "Les modles PowerPoint contenus dans le rpertoire suivant vont tre imports :";
    Text[ italian ] = "Vengono importati tutti i modelli di PowerPoint dalla seguente cartella:";
    Text[ spanish ] = "Se importarn todas las plantillas PowerPoint del siguiente directorio:";
    Text[ portuguese ] = "Todos os modelos PowerPoint sero importados do seguinte directrio:";
    Text[ dutch ] = "Alle PowerPoint-sjablonen uit de volgende directory worden gemporteerd:";
    Text[ swedish ] = "Alla PowerPoint-mallar som finns i fljande katalog importeras:";
    Text[ greek ] = "  %1      :";
    Text[ dutch ] = "Alle PowerPoint-sjablonen uit de volgende directory worden gemporteerd:";
    Text[ swedish ] = "Alla PowerPoint-mallar som finns i fljande katalog importeras:";
    Text[ russian ] = "  PowerPoint     :";
    Text[ danish ] = "Alle PowerPoint-skabeloner importeres fra flgende bibliotek:";
    Text[ polish ] = "Importowane bd wszystkie szablony programu PowerPoint z nastpujcego katalogu:";
    Text[ portuguese_brazilian ] = "All Word templates will be imported in the following directory:";
    Text[ japanese ] = "すべての PowerPoint テンプレートは次のディレクトリからインポートされます。";
    Text[ korean ] = "다음 디렉토리에서 모든 %1을(를) 가져옵니다:";
    Text[ chinese_simplified ] = "从以下一个目录输入所有的 PowerPoint 范本:";
    Text[ chinese_traditional ] = "從下列目錄匯入全部的 PowerPoint 範本:";
    Text[ arabic ] = "    %1   :";
    Text[ turkish ] = "e aktarlacak tm Word ablonlarn ieren dizin:";
    Text[ catalan ] = "S'importaran totes les plantilles PowerPoint del segent directori:";
    Text[ finnish ] = "Kaikki seuraavassa hakemistossa ovat PowerPoint-mallipohjat tuodaan:";
    Text[ thai ] = "แม่แบบเพาเวอร์พ้อยท์ทั้งหมดที่บรรจุในไดเร็กทอรี่ต่อไปนี้จะถูกนำเข้า:";
};