summaryrefslogtreecommitdiff
path: root/wizards/source/euro/euro.src
blob: 19a751f1cb45d0df00b9481c5812dd6359b75aa3 (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
/*************************************************************************
 *
 *  $RCSfile: euro.src,v $
 *
 *  $Revision: 1.47 $
 *
 *  last change: $Author: obo $ $Date: 2001-12-14 19:02:37 $
 *
 *  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 STEP_ZERO 1000
#define STEP_CONVERTER 1100
#define STEP_AUTOPILOT 1200
#define STATUSLINE 1300
#define MESSAGES 1400
#define CURRENCIES 1500
#define STEP_LASTPAGE 1600
// --------------------------------------------------------------------
String STEP_ZERO
{
Text = "Be~enden";
Text[English] = "~Cancel";
Text[ english_us ] = "~Cancel";
    Text[ portuguese ] = "Ca~ncelar";
    Text[ russian ] = "~";
    Text[ greek ] = "~";
    Text[ dutch ] = "~Annuleren";
    Text[ french ] = "~Annuler";
    Text[ spanish ] = "~Cancelar";
    Text[ italian ] = "Esci";
    Text[ danish ] = "~Afslut";
    Text[ swedish ] = "~Avbryt";
    Text[ polish ] = "~Zakocz";
    Text[ portuguese_brazilian ] = "~Cancel";
    Text[ japanese ] = "終了(~C)";
    Text[ korean ] = "종료(~C)";
    Text[ chinese_simplified ] = "结束(~C)";
    Text[ chinese_traditional ] = "結束(~C)";
    Text[ arabic ] = " ";
    Text[ turkish ] = "~ptal";
    Text[ finnish ] = "~Peruuta";
    Text[ catalan ] = "~Cancelar";
};

String STEP_ZERO + 1
{
Text = "~Hilfe";
Text[English] = "~Help";
Text[ english_us ] = "~Help";
    Text[ portuguese ] = "~Ajuda";
    Text[ russian ] = "~";
    Text[ greek ] = "~";
    Text[ dutch ] = "~Help";
    Text[ french ] = "~Aide";
    Text[ spanish ] = "~Ayuda";
    Text[ italian ] = "~Guida";
    Text[ danish ] = "~Hjlp";
    Text[ swedish ] = "~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[ finnish ] = "~Ohje";
    Text[ catalan ] = "~Ayuda";
};

String STEP_ZERO + 2
{
Text = "<<~Zurck";
Text[English] = "<<~Back";
Text[ english_us ] = "<<~Back";
    Text[ portuguese ] = "<<~Anterior";
    Text[ russian ] = "<<~";
    Text[ greek ] = "<<~";
    Text[ dutch ] = "<<~Vorige";
    Text[ french ] = "<<~Prcdent";
    Text[ spanish ] = "<<~Regresar";
    Text[ italian ] = "<<~Indietro";
    Text[ danish ] = "<<~Tilbage";
    Text[ swedish ] = "<<~Tillbaka";
    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 ] = "<<Ge~ri";
    Text[ finnish ] = "<< Edellinen";
    Text[ catalan ] = "<<~Regresar";
};

String STEP_ZERO + 3
{
Text = "~Konvertieren";
Text[English] = "~Ready";
Text[ english_us ] = "~Convert";
    Text[ portuguese ] = "~Converter";
    Text[ russian ] = "~";
    Text[ greek ] = "~";
    Text[ dutch ] = "~Converteren";
    Text[ french ] = "~Convertir";
    Text[ spanish ] = "~Convertir";
    Text[ italian ] = "Converti";
    Text[ danish ] = "~Konverter";
    Text[ swedish ] = "~Konvertera";
    Text[ polish ] = "~Konwertuj";
    Text[ portuguese_brazilian ] = "~Ready";
    Text[ japanese ] = "変換(~C)";
    Text[ korean ] = "변환(~C)";
    Text[ chinese_simplified ] = "转换(~C)";
    Text[ chinese_traditional ] = "轉換(~C)";
    Text[ arabic ] = "";
    Text[ turkish ] = "~Dntr";
    Text[ finnish ] = "~Muunna";
    Text[ catalan ] = "~Convertir";
};

String STEP_ZERO + 4
{
Text = "Hinweis: Whrungsbetrge aus externen Verknpfungen, sowie Whrungsumrechnungsfaktoren in Formeln knnen nicht konvertiert werden.";
Text[English] = "Hint: Currency amounts that refer to external Links as well as currency -converting factors in Cell formulas cannot be converted.";
Text[ english_us ] = "Note: Currency amounts from external links and currency conversion factors in formulas cannot be converted.";
    Text[ portuguese ] = "Observao:  impossvel converter montantes em moeda ligados a referncias externas bem como factores de converso monetria em frmulas de clulas.";
    Text[ russian ] = "  :  ,     ,          .";
    Text[ greek ] = ":               .           .";
    Text[ dutch ] = "Tip: Bedragen in valuta die verbonden zijn met externe links en valuta omrekeningsfactoren in celformules kunnen niet worden geconverteerd.";
    Text[ french ] = "Avertissement : Il est impossible de convertir les montants provenant de liens externes, de mme que les facteurs de conversion inclus dans les formules.";
    Text[ spanish ] = "Advertencia: No se pueden convertir los importes monetarios de referencias externas ni los factores de conversin de moneda en frmulas.";
    Text[ italian ] = "Nota: non  possibile convertire gli importi monetari provenienti da riferimenti esterni, nonch fattori di conversione monetaria in formule.";
    Text[ danish ] = "Henvisning: Det er ikke muligt at konvertere valutabelb, som relaterer til eksterne referencer, og valutaomregningsfaktorer i celleformler.";
    Text[ swedish ] = "OBS: valutabelopp som har externa referenser, liksom valutaomrkningsfaktorer i formler kan inte konverteras.";
    Text[ polish ] = "Wskazwka: Kwot (waluty) z zewntrznych pocze oraz przelicznikw waluty w formuach komrek nie mona skonwertowa.";
    Text[ portuguese_brazilian ] = "Hint: Currency amounts that refer to external Links as well as currency -converting factors in Cell formulas cannot be converted.";
    Text[ japanese ] = "指示: 外部参照する為替相場と数式の通貨換算ファクタは変換できません。";
    Text[ korean ] = "알림: 수식내의 통화변환 요소와 외부참조에 연결된 통화량은 변환되지 않습니다.";
    Text[ chinese_simplified ] = "提示:无法转换引用外来数据的货币金额和公式中的货币换算系数。";
    Text[ chinese_traditional ] = "提示:無法轉換含有外來引用的貨幣數額及公式的貨幣換算值。";
    Text[ arabic ] = ":     ɡ         .";
    Text[ turkish ] = "Bilgi: D referanslara bal para birimi meblalar ve hcre formlleri iindeki para birimi dntrme etkenleri dntrlemez.";
    Text[ finnish ] = "Huomautus: Ulkoisten linkkien valuuttamri ja kaavojen valuutanmuuntokertoimia ei voi muuntaa.";
    Text[ catalan ] = "Advertencia: No se pueden convertir los importes monetarios de referencias externas ni los factores de conversin de moneda en frmulas.";
};

String STEP_ZERO + 5
{
Text = "Heben Sie vorab Den Schutz aller Tabellen auf!";
Text[English] = "Unprotect all sheets beforehand!";
Text[ english_us ] = "First, unprotect all sheets.";
    Text[ portuguese ] = "Desproteger primeiro todas as tabelas!";
    Text[ russian ] = "     .";
    Text[ greek ] = "      !";
    Text[ dutch ] = "Hef eerst de beveiliging van alle werkbladen op!";
    Text[ french ] = "Dsactivez la protection des feuilles au pralable !";
    Text[ spanish ] = "Desprotega primero todas las tablas!";
    Text[ italian ] = "Eliminate la protezione dalle tabelle.";
    Text[ danish ] = "Ophv forinden beskyttelsen for alle ark!";
    Text[ swedish ] = "Upphv frst skyddet fr alla tabeller";
    Text[ polish ] = "Odbezpiecz najpierw wszystkie tabele!";
    Text[ portuguese_brazilian ] = "Unprotect all sheets beforehand!";
    Text[ japanese ] = "前もってすべての表の保護を解除しておきます。";
    Text[ korean ] = "모든 시트를 사전에 보호해제하십시오!";
    Text[ chinese_simplified ] = "事先取消所有工作表保护";
    Text[ chinese_traditional ] = "先取消所有工作表的保護";
    Text[ arabic ] = "     !";
    Text[ turkish ] = "nce btn tablolarn korumasn kaldrn!";
    Text[ finnish ] = "Poista kaikkien lomakkeiden suojaus etukteen.";
    Text[ catalan ] = "Desprotega primero todas las tablas!";
};

String STEP_ZERO + 6
{
Text = "Whrungen:";
Text[English] = "Currencies:";
Text[ english_us ] = "Currencies:";
    Text[ portuguese ] = "Moedas:";
    Text[ russian ] = ":";
    Text[ greek ] = ":";
    Text[ dutch ] = "Valuta:";
    Text[ french ] = "Monnaies :";
    Text[ spanish ] = "Monedas:";
    Text[ italian ] = "Valute:";
    Text[ danish ] = "Valutaer:";
    Text[ swedish ] = "Valutor:";
    Text[ polish ] = "Waluty:";
    Text[ portuguese_brazilian ] = "Currencies:";
    Text[ japanese ] = "通貨:";
    Text[ korean ] = "통화:";
    Text[ chinese_simplified ] = "货币:";
    Text[ chinese_traditional ] = "貨幣:";
    Text[ arabic ] = ":";
    Text[ turkish ] = "Para Birimleri:";
    Text[ finnish ] = "Valuutat:";
    Text[ catalan ] = "Monedas:";
};


String STEP_ZERO + 7
{
Text = "~Weiter>>";
Text[English] = "C~ontinue>>";
Text[ english_us ] = "C~ontinue>>";
    Text[ portuguese ] = "~Continuar>>";
    Text[ russian ] = ">>";
    Text[ greek ] = "~>>";
    Text[ dutch ] = "Volgende>>";
    Text[ french ] = "~Suivant>>";
    Text[ spanish ] = "~Siguiente>>";
    Text[ italian ] = "Avanti>>";
    Text[ danish ] = "~Nste>>";
    Text[ swedish ] = "~Nsta>>";
    Text[ polish ] = "~Dalej>>";
    Text[ portuguese_brazilian ] = "C~ontinue>>";
    Text[ japanese ] = "次へ(~O) >>";
    Text[ korean ] = "다음(~O) >>";
    Text[ chinese_simplified ] = "继续(~O) >>";
    Text[ chinese_traditional ] = "繼續(~O) >>";
    Text[ turkish ] = "~leri>>";
    Text[ arabic ] = "~>>";
    Text[ finnish ] = "~Jatka>>";
    Text[ catalan ] = "~Siguiente>>";
};


String STEP_ZERO + 8
{
Text = "~Schlieen";
Text[English] = "C~lose";
Text[ english_us ] = "C~lose";
    Text[ portuguese ] = "~Fechar";
    Text[ russian ] = "~";
    Text[ greek ] = "C~lose";
    Text[ dutch ] = "~Sluiten";
    Text[ french ] = "~Fermer";
    Text[ spanish ] = "~Cerrar";
    Text[ finnish ] = "C~lose";
    Text[ italian ] = "~Chiudi";
    Text[ danish ] = "C~lose";
    Text[ swedish ] = "~Stng";
    Text[ polish ] = "Zamknij";
    Text[ portuguese_brazilian ] = "C~lose";
    Text[ japanese ] = "閉じる(~L)";
    Text[ korean ] = "닫기(~L)";
    Text[ chinese_simplified ] = "关闭(~L)";
    Text[ chinese_traditional ] = "關閉(~L)";
    Text[ turkish ] = "C~lose";
    Text[ arabic ] = "C~lose";
    Text[ catalan ] = "C~lose";
};

String STEP_CONVERTER
{
Text = "Kom~plettes Dokument";
Text[English] = "~Entire Document";
Text[ english_us ] = "~Entire document";
    Text[ portuguese ] = "~Documento inteiro";
    Text[ russian ] = "~ ";
    Text[ greek ] = "~ ";
    Text[ dutch ] = "~Compleet document";
    Text[ french ] = "Document ~entier";
    Text[ spanish ] = "~Documento completo";
    Text[ italian ] = "Documento intero";
    Text[ danish ] = "Hele ~dokumentet";
    Text[ swedish ] = "Kom~plett dokument";
    Text[ polish ] = "~Cay dokument";
    Text[ portuguese_brazilian ] = "~Entire Document";
    Text[ japanese ] = "全ドキュメント(~E)";
    Text[ korean ] = "전체 문서(~E)";
    Text[ chinese_simplified ] = "整个文档(~E)";
    Text[ chinese_traditional ] = "完整的文件(~E)";
    Text[ arabic ] = " ";
    Text[ turkish ] = "~Belgenin tm";
    Text[ finnish ] = "~Koko asiakirja";
    Text[ catalan ] = "~Documento completo";
};

String STEP_CONVERTER + 1
{
Text = "Selektion";
Text[English] = "Selection";
Text[ english_us ] = "Selection";
    Text[ portuguese ] = "Seleco";
    Text[ russian ] = "";
    Text[ greek ] = "";
    Text[ dutch ] = "Selectie";
    Text[ french ] = "Slection";
    Text[ spanish ] = "Seleccin";
    Text[ italian ] = "Selezione";
    Text[ danish ] = "Markering";
    Text[ swedish ] = "Markering";
    Text[ polish ] = "Selekcja";
    Text[ portuguese_brazilian ] = "Selection";
    Text[ japanese ] = "選択範囲";
    Text[ korean ] = "선택";
    Text[ chinese_simplified ] = "选中";
    Text[ chinese_traditional ] = "選取";
    Text[ arabic ] = "";
    Text[ turkish ] = "Seim";
    Text[ language_user1 ] = " ";
    Text[ finnish ] = "Valinta";
    Text[ catalan ] = "Seleccin";
};

String STEP_CONVERTER + 2
{
Text = "~Zellvorlagen";
Text[English] = "Cell~templates";
Text[ english_us ] = "Cell S~tyles";
    Text[ portuguese ] = "Estilos de ~clulas";
    Text[ russian ] = " ";
    Text[ greek ] = " ~";
    Text[ dutch ] = "~Celprofielen";
    Text[ french ] = "Styles de ~cellule";
    Text[ spanish ] = "~Estilos de celda";
    Text[ italian ] = "Modelli di cella";
    Text[ danish ] = "~Celletypografier";
    Text[ swedish ] = "Cell~mallar";
    Text[ polish ] = "~Style komrki";
    Text[ portuguese_brazilian ] = "Cell~templates";
    Text[ japanese ] = "セルスタイル(~T)";
    Text[ korean ] = "셀 템플릿(~T)";
    Text[ chinese_simplified ] = "单元格样式(~T)";
    Text[ chinese_traditional ] = "儲存格樣式(~T)";
    Text[ arabic ] = " ~";
    Text[ turkish ] = "~Hcre ablonlar";
    Text[ finnish ] = "~Solutyylit";
    Text[ catalan ] = "~Estilos de celda";
};

String STEP_CONVERTER + 3
{
Text = "Whrungszellen im aktuellen ~Tabellenblatt";
Text[English] = "Currency Cells in the current ~Sheet";
Text[ english_us ] = "Currency cells in the current ~sheet";
    Text[ portuguese ] = "Clulas de moeda na ~folha activa";
    Text[ russian ] = "    ";
    Text[ greek ] = "     ~";
    Text[ dutch ] = "Valutacellen in het actuele ~werkblad";
    Text[ french ] = "Cellules montaires dans la ~feuille de calcul active";
    Text[ spanish ] = "Celdas monetarias en hoja a~ctiva";
    Text[ italian ] = "Celle della valuta nella tabella corrente";
    Text[ danish ] = "Valutaceller i det aktuelle ~ark";
    Text[ swedish ] = "Valutaceller p det aktuella ~tabellbladet";
    Text[ polish ] = "Komrki waluty w aktualnym ~arkuszu";
    Text[ portuguese_brazilian ] = "Currency Cells in the current ~Sheet";
    Text[ japanese ] = "現在の表の通貨セル(~S)";
    Text[ korean ] = "현재 시트의 통화 셀(~S)";
    Text[ chinese_simplified ] = "当前工作表中的货币单元格(~S)";
    Text[ chinese_traditional ] = "使用中的工作表分頁的貨幣儲存格(~S)";
    Text[ arabic ] = "   ~  ";
    Text[ turkish ] = "Ak ~sayfada bulunan para birimi hcreleri";
    Text[ finnish ] = "Nykyisen ~lomakkeen valuuttasolut";
    Text[ catalan ] = "Celdas monetarias en hoja a~ctiva";
};

String STEP_CONVERTER + 4
{
Text = "Whrungszellen im ganzen ~Dokument";
Text[English] = "Currency Cells in the entire ~Document";
Text[ english_us ] = "Currency cells in the entire ~document";
    Text[ portuguese ] = "Clulas de moeda no ~documento inteiro";
    Text[ russian ] = "    ";
    Text[ greek ] = "     ~";
    Text[ dutch ] = "Valutacellen in het gehele ~document";
    Text[ french ] = "Cellules montaires dans le ~document entier";
    Text[ spanish ] = "Celdas monetarias en todo el ~documento";
    Text[ italian ] = "Celle della valuta nell'intero documento";
    Text[ danish ] = "Valutaceller i hele ~dokumentet";
    Text[ swedish ] = "Valutaceller i hela ~dokumentet";
    Text[ polish ] = "Komrki waluty w caym ~dokumencie";
    Text[ portuguese_brazilian ] = "Currency Cells in the entire ~Document";
    Text[ japanese ] = "全ドキュメントの通貨セル(~D)";
    Text[ korean ] = "전체 문서의 통화 셀(~D)";
    Text[ chinese_simplified ] = "整个文档中的货币单元格(~D)";
    Text[ chinese_traditional ] = "整個文件內的貨幣儲存格(~D)";
    Text[ arabic ] = "    ~";
    Text[ turkish ] = "~Belgenin tmndeki para birimi hcreleri";
    Text[ finnish ] = "Koko ~asiakirjan valuuttasolut";
    Text[ catalan ] = "Celdas monetarias en todo el ~documento";
};

String STEP_CONVERTER + 5
{
Text = "Ausgewhlter ~Bereich";
Text[English] = "~Selected Range";
Text[ english_us ] = "~Selected range";
    Text[ portuguese ] = "~Intervalo seleccionado";
    Text[ russian ] = " ";
    Text[ greek ] = "~ ";
    Text[ dutch ] = "Geselecteerd ~bereik";
    Text[ french ] = "Plage ~slectionne";
    Text[ spanish ] = "rea ~seleccionada";
    Text[ italian ] = "Area selezionata";
    Text[ danish ] = "~Markeret omrde";
    Text[ swedish ] = "~Utvalt omrde";
    Text[ polish ] = "~Zaznaczony obszar";
    Text[ portuguese_brazilian ] = "~Selected Range";
    Text[ japanese ] = "選択した範囲(~S)";
    Text[ korean ] = "선택된 영역(~S)";
    Text[ chinese_simplified ] = "选中的区域(~S)";
    Text[ chinese_traditional ] = "選中的區域(~S)";
    Text[ arabic ] = "~ ";
    Text[ turkish ] = "Seilen aralk";
    Text[ finnish ] = "~Valittu alue";
    Text[ catalan ] = "rea ~seleccionada";
};

String STEP_CONVERTER + 6
{
Text = "Zellvorlagen auswhlen:";
Text[English] = "Select Celltemplates";
Text[ english_us ] = "Select Cell Styles";
    Text[ portuguese ] = "Seleccionar estilos de clulas:";
    Text[ russian ] = "  :";
    Text[ greek ] = "  :";
    Text[ dutch ] = "Celprofielen selecteren:";
    Text[ french ] = "Slection des styles de cellule :";
    Text[ spanish ] = "Seleccione los estilos de celda:";
    Text[ italian ] = "Seleziona modelli di cella:";
    Text[ danish ] = "Vlg celletypografier:";
    Text[ swedish ] = "Vlj ut cellmallar";
    Text[ polish ] = "Wybierz style komrki:";
    Text[ portuguese_brazilian ] = "Select Celltemplates";
    Text[ japanese ] = "セルスタイルの選択:";
    Text[ korean ] = "셀 템플릿 선택:";
    Text[ chinese_simplified ] = "选择单元格样式:";
    Text[ chinese_traditional ] = "選擇儲存格樣式:";
    Text[ arabic ] = "  :";
    Text[ turkish ] = "Hcre ablonlarn se:";
    Text[ finnish ] = "Valitse solutyylit";
    Text[ catalan ] = "Seleccione los estilos de celda:";
};

String STEP_CONVERTER + 7
{
Text = "Whrungszellen auswhlen:";
Text[English] = "Select Currency Cells";
Text[ english_us ] = "Select currency cells";
    Text[ portuguese ] = "Seleccionar clulas de moeda:";
    Text[ russian ] = "  ";
    Text[ greek ] = "  :";
    Text[ dutch ] = "Valutacellen selecteren:";
    Text[ french ] = "Slectionnez les cellules montaires :";
    Text[ spanish ] = "Seleccione las celdas monetarias:";
    Text[ italian ] = "Seleziona celle della valuta";
    Text[ danish ] = "Vlg valutaceller:";
    Text[ swedish ] = "Vlj ut valutaceller:";
    Text[ polish ] = "Wybierz komrki waluty:";
    Text[ portuguese_brazilian ] = "Select Currency Cells";
    Text[ japanese ] = "通貨セルの選択:";
    Text[ korean ] = "통화 셀 선택";
    Text[ chinese_simplified ] = "选择货币单元格:";
    Text[ chinese_traditional ] = "選擇貨幣儲存格:";
    Text[ arabic ] = "  :";
    Text[ turkish ] = "Para birimi hcrelerini se:";
    Text[ finnish ] = "Valitse valuuttasolut";
    Text[ catalan ] = "Seleccione las celdas monetarias:";
};

String STEP_CONVERTER + 8
{
Text = "Whrungsbereiche:";
Text[English] = "Currency Ranges";
Text[ english_us ] = "Currency ranges:";
    Text[ portuguese ] = "Intervalos monetrios:";
    Text[ russian ] = " ";
    Text[ greek ] = " :";
    Text[ dutch ] = "Valutabereiken:";
    Text[ french ] = "Plages montaires :";
    Text[ spanish ] = "reas monetarias:";
    Text[ italian ] = "Aree valuta";
    Text[ danish ] = "Valutaomrder:";
    Text[ swedish ] = "Valutaomrden:";
    Text[ polish ] = "Obszary waluty:";
    Text[ portuguese_brazilian ] = "Currency Ranges";
    Text[ japanese ] = "通貨範囲:";
    Text[ korean ] = "통화 영역:";
    Text[ chinese_simplified ] = "货币区域:";
    Text[ chinese_traditional ] = "貨幣區域:";
    Text[ arabic ] = " :";
    Text[ turkish ] = "Para birimi aralklar:";
    Text[ finnish ] = "Valuutta-alueet:";
    Text[ catalan ] = "reas monetarias:";
};

String STEP_CONVERTER + 9
{
Text = "Vorlagen:";
Text[English] = "Templates:";
Text[ english_us ] = "Templates:";
    Text[ portuguese ] = "Estilos:";
    Text[ russian ] = ":";
    Text[ greek ] = ":";
    Text[ dutch ] = "Sjablonen:";
    Text[ french ] = "Styles :";
    Text[ spanish ] = "Estilos:";
    Text[ italian ] = "Modelli:";
    Text[ danish ] = "Typografier:";
    Text[ swedish ] = "Mallar:";
    Text[ polish ] = "Style:";
    Text[ portuguese_brazilian ] = "Templates:";
    Text[ japanese ] = "スタイル:";
    Text[ korean ] = "템플릿:";
    Text[ chinese_simplified ] = "样式:";
    Text[ chinese_traditional ] = "樣式:";
    Text[ arabic ] = ":";
    Text[ turkish ] = "ablonlar:";
    Text[ finnish ] = "Mallipohjat:";
    Text[ catalan ] = "Estilos:";
};


String STEP_AUTOPILOT
{
Text = "Umfang";
Text[English] = "~Extent";
Text[ english_us ] = "Extent";
    Text[ portuguese ] = "Volume";
    Text[ russian ] = "~";
    Text[ greek ] = "";
    Text[ dutch ] = "Omvang";
    Text[ french ] = "tendue";
    Text[ spanish ] = "Cantidad";
    Text[ italian ] = "Volume";
    Text[ danish ] = "Omfang";
    Text[ swedish ] = "Omfattning";
    Text[ polish ] = "Zakres";
    Text[ portuguese_brazilian ] = "~Extent";
    Text[ japanese ] = "範囲";
    Text[ korean ] = "범위";
    Text[ chinese_simplified ] = "范围";
    Text[ chinese_traditional ] = "範圍";
    Text[ arabic ] = "";
    Text[ turkish ] = "Kapsam";
    Text[ finnish ] = "Laajenna";
    Text[ catalan ] = "Volumen";
};

String STEP_AUTOPILOT + 1
{
Text = "~Einzelnes %PRODUCTNAME -Dokument";
Text[English] = "~Single File";
Text[ english_us ] = "~Single %PRODUCTNAME Calc document";
    Text[ portuguese ] = "~Documento nico %PRODUCTNAME";
    Text[ russian ] = "~  %PRODUCTNAME";
    Text[ greek ] = "~   %PRODUCTNAME Calc";
    Text[ dutch ] = "~Een %PRODUCTNAME-document";
    Text[ french ] = "Document unique %PRODUCTNAME";
    Text[ spanish ] = "~Un documento de %PRODUCTNAME";
    Text[ italian ] = "~Documento singolo %PRODUCTNAME";
    Text[ danish ] = "~Enkelt %PRODUCTNAME Calc-dokument";
    Text[ swedish ] = "~Enskilt %PRODUCTNAME-dokument";
    Text[ polish ] = "~Pojedynczy dokument %PRODUCTNAME";
    Text[ portuguese_brazilian ] = "~Single File";
    Text[ japanese ] = "1つの %PRODUCTNAME ドキュメント(~S)";
    Text[ korean ] = "개별 %PRODUCTNAME Calc-문서(~S)";
    Text[ chinese_simplified ] = "单个 %PRODUCTNAME 文档(~S)";
    Text[ chinese_traditional ] = "單個 %PRODUCTNAME 文件(~S)";
    Text[ arabic ] = "~ %PRODUCTNAME Calc ";
    Text[ turkish ] = "~Tek %PRODUCTNAME Calc belgesi";
    Text[ finnish ] = "~Yksi %PRODUCTNAME Calc -asiakirja";
    Text[ catalan ] = "~Un archivo de %PRODUCTNAME Calc";
};

String STEP_AUTOPILOT + 2
{
Text = "~Gesamtes Verzeichnis";
Text[English] = "Complete ~Directory";
Text[ english_us ] = "Complete ~directory";
    Text[ portuguese ] = "Directrio ~inteiro";
    Text[ russian ] = " ";
    Text[ greek ] = "~ ";
    Text[ dutch ] = "~Complete directory";
    Text[ french ] = "Rpertoire ~entier";
    Text[ spanish ] = "~Directorio completo";
    Text[ italian ] = "Tutte le cartelle";
    Text[ danish ] = "Hele ~biblioteket";
    Text[ swedish ] = "H~ela katalogen";
    Text[ polish ] = "~Cay katalog";
    Text[ portuguese_brazilian ] = "Complete ~Directory";
    Text[ japanese ] = "全ディレクトリ(~D)";
    Text[ korean ] = "전체 디렉토리(~D)";
    Text[ chinese_simplified ] = "全部的目录(~D)";
    Text[ chinese_traditional ] = "全部的目錄(~D)";
    Text[ arabic ] = " ~";
    Text[ turkish ] = "~Dizinin tm";
    Text[ finnish ] = "Koko ~hakemisto";
    Text[ catalan ] = "~Directorio completo";
};

String STEP_AUTOPILOT + 3
{
Text = "Quelldokument:";
Text[English] = "Source Document:";
Text[ english_us ] = "Source Document:";
    Text[ portuguese ] = "Ficheiro fonte:";
    Text[ russian ] = " :";
    Text[ greek ] = " :";
    Text[ dutch ] = "Bronbestand:";
    Text[ french ] = "Document source :";
    Text[ spanish ] = "Archivo fuente:";
    Text[ italian ] = "Documento sorgente:";
    Text[ danish ] = "Kildedokument:";
    Text[ swedish ] = "Klldokument:";
    Text[ polish ] = "Dokument rdowy:";
    Text[ portuguese_brazilian ] = "Source File:";
    Text[ japanese ] = "ソース ドキュメント:";
    Text[ korean ] = "소스 문서:";
    Text[ chinese_simplified ] = "源文档:";
    Text[ chinese_traditional ] = "源文件:";
    Text[ arabic ] = " :";
    Text[ turkish ] = "Kaynak belge:";
    Text[ finnish ] = "Lhdeasiakirja:";
    Text[ catalan ] = "Archivo fuente:";
};

String STEP_AUTOPILOT + 4
{
Text = "Quellverzeichnis:";
Text[English] = "Source Directory:";
Text[ english_us ] = "Source directory:";
    Text[ portuguese ] = "Directrio fonte:";
    Text[ russian ] = " :";
    Text[ greek ] = " :";
    Text[ dutch ] = "Brondirectory:";
    Text[ french ] = "Rpertoire source :";
    Text[ spanish ] = "Directorio fuente:";
    Text[ italian ] = "Cartella di origine (root):";
    Text[ danish ] = "Kildebibliotek:";
    Text[ swedish ] = "Kllkatalog:";
    Text[ polish ] = "Katalog rdowy:";
    Text[ portuguese_brazilian ] = "Source Directory:";
    Text[ japanese ] = "ソース ディレクトリ:";
    Text[ korean ] = "소스 디렉토리:";
    Text[ chinese_simplified ] = "源目录:";
    Text[ chinese_traditional ] = "源目錄:";
    Text[ arabic ] = " :";
    Text[ turkish ] = "Kaynak dizin:";
    Text[ finnish ] = "Lhdehakemisto:";
    Text[ catalan ] = "Directorio fuente:";
};

String STEP_AUTOPILOT + 5
{
Text = "~Inklusive Unterverzeichnisse";
Text[English] = "~Including Subfolders";
Text[ english_us ] = "~Including subfolders";
    Text[ portuguese ] = "Incluindo ~subdirectrios";
    Text[ russian ] = "~ ";
    Text[ greek ] = "~  ";
    Text[ dutch ] = "~Inclusief subdirectory's";
    Text[ french ] = "Sous-rpertoires ~compris";
    Text[ spanish ] = "Incluidos ~subdirectorios";
    Text[ italian ] = "Comprese le sottocartelle";
    Text[ danish ] = "~Inklusive underbiblioteker";
    Text[ swedish ] = "~Inklusive undermappar";
    Text[ polish ] = "~cznie z katalogami podrzdn.";
    Text[ portuguese_brazilian ] = "~Including Subfolders";
    Text[ japanese ] = "サブフォルダも含む(~I)";
    Text[ korean ] = "하위 폴더 포함(~I)";
    Text[ chinese_simplified ] = "包括子目录(~I)";
    Text[ chinese_traditional ] = "包括子目錄(~I)";
    Text[ arabic ] = "~  ";
    Text[ turkish ] = "~Alt dizinler dahil";
    Text[ finnish ] = "~Mys alikansiot";
    Text[ catalan ] = "Incluidos ~subdirectorios";
};

String STEP_AUTOPILOT + 6
{
Text = "Zielverzeichnis:";
Text[English] = "Target Directory";
Text[ english_us ] = "Target directory:";
    Text[ portuguese ] = "Directrio de destino:";
    Text[ russian ] = " ";
    Text[ greek ] = " :";
    Text[ dutch ] = "Doeldirectory";
    Text[ french ] = "Rpertoire cible :";
    Text[ spanish ] = "Directorio destino:";
    Text[ italian ] = "Cartella di destinazione:";
    Text[ danish ] = "Mlbibliotek:";
    Text[ swedish ] = "Mlmapp";
    Text[ polish ] = "Katalog docelowy:";
    Text[ portuguese_brazilian ] = "Target Directory";
    Text[ japanese ] = "ターゲット ディレクトリ:";
    Text[ korean ] = "목표 디렉토리";
    Text[ chinese_simplified ] = "目标目录:";
    Text[ chinese_traditional ] = "目標目錄:";
    Text[ arabic ] = " :";
    Text[ turkish ] = "Hedef dizin:";
    Text[ finnish ] = "Kohdehakemisto";
    Text[ catalan ] = "Directorio destino:";
};


String STEP_AUTOPILOT + 7
{
Text = "Tabellenschutz vorbergehend ohne Rckfrage aufheben";
Text[English] = "Always raise Sheet Protection";
Text[ english_us ] = "Temporarily unprotect sheet without query";
    Text[ portuguese ] = "Anular provisoriamente a proteco da folha sem pedido de confirmao";
    Text[ russian ] = "   ";
    Text[ greek ] = "    ( )";
    Text[ dutch ] = "Werkbladbeveiliging tijdelijk zonder bevestigingsdialoog opheffen.";
    Text[ french ] = "Annulation provisoire de la protection de la feuille sans demande de confirmation";
    Text[ spanish ] = "Desproteger hoja provisionalmente sin preguntar";
    Text[ italian ] = "Disattiva temporaneamente la protezione tabella senza conferma";
    Text[ danish ] = "Ophv arkbeskyttelse midlertidig uden forsprgsel";
    Text[ swedish ] = "Upphv tabellskydd temporrt utan skerhetsfrga";
    Text[ polish ] = "Znie tymczasowo ochron arkusza bez uprzedniego potwierdzenia";
    Text[ portuguese_brazilian ] = "Always raise Sheet Protection";
    Text[ japanese ] = "一時的に確認なしで表の保護を解除";
    Text[ korean ] = "시트 보호를 일시적으로 조회없이 제거";
    Text[ chinese_simplified ] = "不需确认直接暂时取消表格保护";
    Text[ chinese_traditional ] = "暫時取消工作表保護";
    Text[ turkish ] = "Tablo korumasn, sormadan geici olarak kaldr";
    Text[ arabic ] = "      ";
    Text[ finnish ] = "Poista lomakkeiden suojaus vliaikaisesti ilman kysely";
    Text[ catalan ] = "Desproteger hoja provisionalmente sin preguntar";
};


String STEP_AUTOPILOT + 10
{
Text = "Auch Feldbefehle und Tabellen in Textdokumenten konvertieren";
Text[ English ] = "Also convert Fields and Tables in Text Documents";
Text[ english_us ] = "Also convert fields and tables in text documents";
Text[ language_user1 ] = "Label einer Checkbox";
    Text[ portuguese ] = "Converter tambm campos e tabelas em documentos de texto.";
    Text[ russian ] = "     ";
    Text[ greek ] = "Also convert Fields and Tables in Text Documents";
    Text[ dutch ] = "Ook veldopdrachten en tabellen in tekstdocumenten converteren.";
    Text[ french ] = "Conversion galement pour les champs et les tables des textes.";
    Text[ spanish ] = "Convertir tambin campos y tablas en documentos de texto.";
    Text[ finnish ] = "Also convert Fields and Tables in Text Documents";
    Text[ italian ] = "Converti anche comadi di campo e tabelle nel documento di testo";
    Text[ danish ] = "Also convert Fields and Tables in Text Documents";
    Text[ swedish ] = "Konvertera ven fltkommandon och tabeller i textdokument";
    Text[ polish ] = "Konwertuj rwnie pola i tabele w dokumentach tekstowych";
    Text[ portuguese_brazilian ] = "Also convert Fields and Tables in Text Documents";
    Text[ japanese ] = "文書ドキュメントのフィールドと表も変換";
    Text[ korean ] = "텍스트 문서의 필드 명령어와 시트도 변환";
    Text[ chinese_simplified ] = "也转换文本文档之中的字段指令和表格";
    Text[ chinese_traditional ] = "也轉換文字文件之中的欄位指令和表格";
    Text[ turkish ] = "Also convert Fields and Tables in Text Documents";
    Text[ arabic ] = "Also convert Fields and Tables in Text Documents";
    Text[ catalan ] = "Also convert Fields and Tables in Text Documents";
};


String STATUSLINE
{
Text = "Konvertierungsfortschritt: ";
Text[English] = "Progress of the Conversion";
Text[ english_us ] = "Conversion status: ";
    Text[ portuguese ] = "Estado da converso: ";
    Text[ russian ] = " : ";
    Text[ greek ] = "  : ";
    Text[ dutch ] = "Voortschrijden van de convertering:   ";
    Text[ french ] = "Progression de la conversion :";
    Text[ spanish ] = "Progreso de conversin: ";
    Text[ italian ] = "Stato conversione: ";
    Text[ danish ] = "Konverteringsstatus: ";
    Text[ swedish ] = "Konverteringsframsteg:  ";
    Text[ polish ] = "Progres w konwersji:";
    Text[ portuguese_brazilian ] = "Progress of the Conversion";
    Text[ japanese ] = "変換ステータス: ";
    Text[ korean ] = "변환 상태: ";
    Text[ chinese_simplified ] = "转换状态: ";
    Text[ chinese_traditional ] = "轉換進展: ";
    Text[ arabic ] = "   : ";
    Text[ turkish ] = "Dntrme geliimi:";
    Text[ finnish ] = "Muunnon tila: ";
    Text[ catalan ] = "Progreso de conversin: ";
};

String STATUSLINE + 1
{
Text = "Konvertierungsfortschritt fr die Zellvorlagen:";
Text[English] = "Progress Of The Conversion of The Celltemplates";
Text[ english_us ] = "Conversion status of the cell templates:";
    Text[ portuguese ] = "Estado da converso dos estilos de clulas:";
    Text[ russian ] = "   :";
    Text[ greek ] = "      :";
    Text[ dutch ] = "Voortschrijden van de convertering van de celprofielen:";
    Text[ french ] = "Progression de la conversion des styles de cellule :";
    Text[ spanish ] = "Progreso de conversin para estilos de celdas:";
    Text[ italian ] = "Stato conversione per i modelli di cella:";
    Text[ danish ] = "Celletypografiernes konverteringsstatus:";
    Text[ swedish ] = "Konverteringsframsteg fr cellformatmallarna";
    Text[ polish ] = "Progres w konwersji dot. stylw komrki";
    Text[ portuguese_brazilian ] = "Progress Of The Conversion of The Celltemplates";
    Text[ japanese ] = "セルスタイルの変換ステータス:";
    Text[ korean ] = "셀 템플릿의 변환 상태:";
    Text[ chinese_simplified ] = "单元格样式的转换状态";
    Text[ chinese_traditional ] = "儲存格樣式的轉換進展";
    Text[ arabic ] = "      :";
    Text[ turkish ] = "Hcre ablonlarnn dntrme geliimi:";
    Text[ finnish ] = "Solumallien muuntotila:";
    Text[ catalan ] = "Progreso de conversin para estilos de celdas:";
};

String STATUSLINE + 2
{
Text = "Erfassung der umzurechnenden Bereiche: Blatt %1Number%1 von %2TotPageCount%2";
Text[English] = "Surveying the relevant Ranges...";
Text[ english_us ] = "Registration of the relevant ranges: Sheet %1Number%1 of %2TotPageCount%2";
    Text[ portuguese ] = "Registo das reas a calcular: Pgina %1 Nmero %1 de %2 TotPageCount%2";
    Text[ russian ] = "  :  %1Number%1  %2TotPageCount%2";
    Text[ greek ] = "    :  %1Number%1 von %2TotPageCount%2";
    Text[ dutch ] = "Registratie van de relevante bereiken: Blad %1 nummer %1 van %2TotPageCount%2";
    Text[ french ] = "Rcupration des plages  convertir : page %1Number%1de %2TotPageCount%2.";
    Text[ spanish ] = "Registro de las reas a calcular: Hoja %1Number%1 de %2TotPageCount%2 .";
    Text[ italian ] = "Rilevamento delle aree da considerare. pagina %1Number%1 di %2TotPageCount%2";
    Text[ danish ] = "Registrerer de relevante omrder: Ark %1Number%1 af %2TotPageCount%2";
    Text[ swedish ] = "Bestmning av omrdena som skall rknas om: Ark %1Number%1 av %2TotPageCount%2";
    Text[ polish ] = "Ujcie obszarw do przeliczenia: Strona %1Number%1 z %2TotPageCount%2";
    Text[ portuguese_brazilian ] = "Surveying the relevant Ranges...";
    Text[ japanese ] = "換算する範囲の登録: %2TotPageCount%2 の表 %1Number%1 ";
    Text[ korean ] = "환산할 영역 파악: %2TotPageCount%2의 시트 %1Number%1";
    Text[ chinese_simplified ] = "纳入换算的区域:工作簿 %2TotPageCount%2 内的 %1Number%1";
    Text[ chinese_traditional ] = "登記轉換的區域:工作表頁 %2TotPageCount%2 內的 %1Number%1";
    Text[ arabic ] = "   : Sheet %1Number%1 of %2TotPageCount%2 ";
    Text[ turkish ] = "Dntrlecek aralklarn kayd:  %2TotPageCount%2 Sayfa %1Numara%1";
    Text[ finnish ] = "Merkitsevien alueiden rekisterinti: Lomake %1Number%1 / %2TotPageCount%2";
    Text[ catalan ] = "Registro de las reas a calcular: Hoja %1Number%1 de %2TotPageCount%2 .";
};


String STATUSLINE + 3
{
Text = "Erfassung der umzurechnenden Bereiche...";
Text[English] = "Surveying the relevant Ranges...";
Text[ english_us ] = "Entry of the ranges to be converted...";
    Text[ portuguese ] = "Registo das reas a calcular...";
    Text[ russian ] = "  ...";
    Text[ greek ] = "      ...";
    Text[ dutch ] = "Vastleggen van de te converteren bereiken...";
    Text[ french ] = "Rcupration des plages  convertir...";
    Text[ spanish ] = "Registro de las reas a calcular...";
    Text[ italian ] = "Rilevamento delle aree da calcolare...";
    Text[ danish ] = "Registrerer de relevante omrder...";
    Text[ swedish ] = "Bestmning av omrdena som skall rknas om...";
    Text[ polish ] = "Ujcie obszarw do przeliczenia...";
    Text[ portuguese_brazilian ] = "Converting the Currencyunits in the Celltemplates...";
    Text[ japanese ] = "換算する範囲の登録...";
    Text[ korean ] = "환산될 영역 파악...";
    Text[ chinese_simplified ] = "纳入换算的区域...";
    Text[ chinese_traditional ] = "登記轉換區域...";
    Text[ arabic ] = "   ...";
    Text[ turkish ] = "Dntrlecek aralklarn kayd...";
    Text[ finnish ] = "Muunnettavien alueiden syttminen";
    Text[ catalan ] = "Registro de las reas a calcular...";
};



String STATUSLINE + 4
{
Text = "Jeder einzelne Tabellenschutz wird wieder hergestellt...";
Text[English] = "Sheets are reprotected...";
Text[ english_us ] = "Sheet protection for each sheet will be restored...";
    Text[ portuguese ] = "A restaurar proteco das folhas...";
    Text[ russian ] = "    ...";
    Text[ greek ] = "     ...";
    Text[ dutch ] = "Beveiliging van werkbladen wordt hersteld...";
    Text[ french ] = "Restauration des protections des feuilles...";
    Text[ spanish ] = "Se volver a crear cada proteccin de tabla...";
    Text[ italian ] = "Protezione tabella in corso di ripristinamento...";
    Text[ danish ] = "Arkbeskyttelsen genoprettes...";
    Text[ swedish ] = "Varje enskilt tabellskydd terstlls igen...";
    Text[ polish ] = "Pojedyncze funkcje ochrony arkuszy zostan odnowione...";
    Text[ portuguese_brazilian ] = "Sheets are reprotected...";
    Text[ japanese ] = "それぞれの表が再び保護されます...";
    Text[ korean ] = "각각의 모든 시트 보호가 다시 복구됩니다....";
    Text[ chinese_simplified ] = "重新恢复每个表格的保护...";
    Text[ chinese_traditional ] = "重新恢复每個表格的保護區域。";
    Text[ arabic ] = "   ...";
    Text[ language_user1 ] = " ";
    Text[ turkish ] = "Tablo korumalar yeniden oluturulacak...";
    Text[ finnish ] = "Kunkin lomakkeen lomakesuojaus palautetaan";
    Text[ catalan ] = "Se volvern a crear las protecciones de tablas";
};


String STATUSLINE + 5
{
Text = "Konvertierung der Whrungseinheiten in den Zellvorlagen...";
Text[English] = "Converting the Currencyunits in the Celltemplates...";
Text[ english_us ] = "Conversion of the currency units in the cell templates...";
    Text[ portuguese ] = "Converso das unidades monetrias nos estilos de clulas...";
    Text[ russian ] = "     ...";
    Text[ greek ] = "      ...";
    Text[ dutch ] = "Convertering van de valuta in de celprofielen...";
    Text[ french ] = "Conversion des units montaires dans les styles de cellule en cours...";
    Text[ spanish ] = "Conversin de unidades monetarias en estilos de celdas...";
    Text[ italian ] = "Conversione delle unit di misura nei modelli di cella.";
    Text[ danish ] = "Konverterer valutaenhederne i celletypografierne...";
    Text[ swedish ] = "Konvertering av valutaenheterna i cellformatmallarna...";
    Text[ polish ] = "Konwersja jednostek waluty w stylach komrki...";
    Text[ portuguese_brazilian ] = "Converting the Currencyunits in the Celltemplates...";
    Text[ japanese ] = "通貨単位を次のセルスタイルに変換...";
    Text[ korean ] = "셀 템플릿의 통화 단위 변환...";
    Text[ chinese_simplified ] = "单元格样式中货币单位的转换...";
    Text[ chinese_traditional ] = "轉換儲存格的貨幣單位...";
    Text[ arabic ] = "     ...";
    Text[ turkish ] = "Hcre ablonlarndaki para birimlerinin dntrlmesi...";
    Text[ finnish ] = "Solumallipohjien valuuttayksikkjen muunto";
    Text[ catalan ] = "Conversin de unidades monetarias en estilos de celdas...";
};



String MESSAGES
{
Text = "~Fertig";
Text[English] = "~finished";
Text[ english_us ] = "~Finish";
    Text[ portuguese ] = "~Pronto";
    Text[ russian ] = "";
    Text[ greek ] = "!";
    Text[ dutch ] = "~Klaar";
    Text[ french ] = "Termin";
    Text[ spanish ] = "Terminado";
    Text[ italian ] = "...fine!";
    Text[ danish ] = "Frdig!";
    Text[ swedish ] = "~Frdig";
    Text[ polish ] = "Gotowe!";
    Text[ portuguese_brazilian ] = "Ready";
    Text[ japanese ] = "完了(~F)";
    Text[ korean ] = "완료!(~F)";
    Text[ chinese_simplified ] = "完成(~F)";
    Text[ chinese_traditional ] = "完成(~F)";
    Text[ arabic ] = "...!";
    Text[ turkish ] = "Bitti!";
    Text[ finnish ] = "valmis";
    Text[ language_user1 ] = "Statt in einer Msgbox taucht dieser String jetzt im Label eines Buttons auf";
    Text[ catalan ] = "Terminado!";
};

String MESSAGES + 1
{
Text = "Whlen Sie ein Verzeichnis";
Text[English] = "Select a Directory";
Text[ english_us ] = "Select directory";
    Text[ portuguese ] = "Seleccionar directrio";
    Text[ russian ] = " ";
    Text[ greek ] = " ";
    Text[ dutch ] = "Kies een directory";
    Text[ french ] = "Slectionnez un rpertoire";
    Text[ spanish ] = "Seleccione un directorio";
    Text[ italian ] = "Selezionate una cartella";
    Text[ danish ] = "Vlg et bibliotek";
    Text[ swedish ] = "Vlj en mapp";
    Text[ polish ] = "Wybierz katalog";
    Text[ portuguese_brazilian ] = "Select a Directory";
    Text[ japanese ] = "ディレクトリを選択します。";
    Text[ korean ] = "디렉토리를 선택하십시오";
    Text[ chinese_simplified ] = "请选择一个目录";
    Text[ chinese_traditional ] = "請您選擇一個目錄";
    Text[ arabic ] = "  ";
    Text[ turkish ] = "Dizin sein";
    Text[ language_user1 ] = " ";
    Text[ finnish ] = "Valitse hakemisto";
    Text[ catalan ] = "Seleccione un directorio";
};

String MESSAGES + 2
{
Text = "Whlen Sie eine Datei";
Text[English] = "Select a File";
Text[ english_us ] = "Select file";
    Text[ portuguese ] = "Seleccionar ficheiro";
    Text[ russian ] = " ";
    Text[ greek ] = " ";
    Text[ dutch ] = "Kies een bestand";
    Text[ french ] = "Slectionnez un fichier";
    Text[ spanish ] = "Seleccione un archivo";
    Text[ italian ] = "Selezionate un file";
    Text[ danish ] = "Vlg en fil";
    Text[ swedish ] = "Vlj en fil";
    Text[ polish ] = "Wybierz plik";
    Text[ portuguese_brazilian ] = "Select a File";
    Text[ japanese ] = "ファイルを選択します。";
    Text[ korean ] = "파일을 선택하십시오";
    Text[ chinese_simplified ] = "请选择一个文件";
    Text[ chinese_traditional ] = "請您選擇一個檔案";
    Text[ arabic ] = "  ";
    Text[ turkish ] = "Dosya sein";
    Text[ language_user1 ] = " ";
    Text[ finnish ] = "Valitse tiedosto";
    Text[ catalan ] = "Seleccione un archivo";
};

String MESSAGES + 3
{
Text = "Whlen Sie das Zielverzeichnis";
Text[English] = "Select the Targetdirectory";
Text[ english_us ] = "Select target directory";
    Text[ portuguese ] = "Seleccionar directrio de destino";
    Text[ russian ] = "  ";
    Text[ greek ] = "   ";
    Text[ dutch ] = "Kies de doeldirectory";
    Text[ french ] = "Slectionnez le rpertoire cible";
    Text[ spanish ] = "Seleccione el directorio destino";
    Text[ italian ] = "Selezionate una cartella di destinazione";
    Text[ danish ] = "Vlg mlbiblioteket";
    Text[ swedish ] = "Vlj mlmappen";
    Text[ polish ] = "Wybierz katalog docelowy";
    Text[ portuguese_brazilian ] = "Select the Targetdirectory";
    Text[ japanese ] = "ターゲットディレクトリを選択します。";
    Text[ korean ] = "목표 디렉토리를 선택하십시오";
    Text[ chinese_simplified ] = "请选择一个目标目录";
    Text[ chinese_traditional ] = "請您選擇一個目標目錄";
    Text[ arabic ] = "   ";
    Text[ turkish ] = "Hedef dizin sein";
    Text[ finnish ] = "Valitse kohdehakemisto";
    Text[ catalan ] = "Seleccione el directorio destino";
};

String MESSAGES + 4
{
Text = "nicht vorhanden";
Text[English] = "not there";
Text[ english_us ] = "non-existant";
    Text[ portuguese ] = "no existe";
    Text[ russian ] = " ";
    Text[ greek ] = " ";
    Text[ dutch ] = "niet voorhanden";
    Text[ french ] = "Non existant";
    Text[ spanish ] = "inexistente";
    Text[ italian ] = "non esiste";
    Text[ danish ] = "eksisterer ikke";
    Text[ swedish ] = "finns ej";
    Text[ polish ] = "nie istnieje";
    Text[ portuguese_brazilian ] = "not there";
    Text[ japanese ] = "ありません";
    Text[ korean ] = "존재하지 않음";
    Text[ chinese_simplified ] = "不存在";
    Text[ chinese_traditional ] = "不存在";
    Text[ arabic ] = " ";
    Text[ turkish ] = "mevcut deil";
    Text[ finnish ] = "ei olemassa";
    Text[ catalan ] = "inexistente";
};


String MESSAGES + 5
{
Text = "Euro-Konverter";
Text[English] = "Euro-Converter";
Text[ english_us ] = "Euro Converter";
    Text[ portuguese ] = "Euro-Conversor";
    Text[ russian ] = " ";
    Text[ greek ] = " ";
    Text[ dutch ] = "Euro-Converter";
    Text[ french ] = "Euro-Convertisseur";
    Text[ spanish ] = "Convertidor Euro";
    Text[ italian ] = "Convertitore Euro";
    Text[ danish ] = "Euro-konverter";
    Text[ swedish ] = "Eurokonverterare";
    Text[ polish ] = "Konwerter Euro";
    Text[ portuguese_brazilian ] = "Euro-Converter";
    Text[ japanese ] = "ユーロ通貨換算";
    Text[ korean ] = "유로 변환기";
    Text[ chinese_simplified ] = "欧元换算器";
    Text[ chinese_traditional ] = "歐元轉換器";
    Text[ arabic ] = " ";
    Text[ turkish ] = "Euro dntrc";
    Text[ finnish ] = "Euro-muunnin";
    Text[ catalan ] = "Convertidor Euro";
};



String MESSAGES + 6
{
Text = "Soll der Schutz aller Tabellen vorbergehend aufgehoben werden?";
Text[English] = "Shall protected Sheets be temporarily unprotected?";
Text[ english_us ] = "Should protected spreadsheets be temporarily unprotected?";
    Text[ portuguese ] = "Desproteger temporariamente todas as tabelas?";
    Text[ russian ] = "       ?";
    Text[ greek ] = "        ;";
    Text[ dutch ] = "Wilt u de beveiliging van alle werkbladen tijdelijk ongedaan maken?";
    Text[ french ] = "Souhaitez-vous liminer temporairement la protection des feuilles ?";
    Text[ spanish ] = "Desea desproteger temporalmante todas las hojas?";
    Text[ italian ] = "Volete disattivare temporaneamente la protezione da tutte le celle?";
    Text[ danish ] = "Skal beskyttelsen ophves midlertidigt for alle ark?";
    Text[ swedish ] = "Skall skyddet fr alla tabeller upphvas temporrt?";
    Text[ polish ] = "Czy ochrona chronionych arkuszy ma by tymczasowo zniesiona?";
    Text[ portuguese_brazilian ] = "Shall protected Sheets be temporarily unprotected?";
    Text[ japanese ] = "すべての表の保護を一時的に解除しますか。";
    Text[ korean ] = "모든 스프레드시트의 보호를 일시적으로 해제할까요?";
    Text[ chinese_simplified ] = "要对受保护的表格暂时取消保护吗?";
    Text[ chinese_traditional ] = "要暫時取消工作表區域保護?";
    Text[ arabic ] = "      ʿ";
    Text[ turkish ] = "Tm tablolarn korumas geici olarak kaldrlsn m?";
    Text[ finnish ] = "Poistetaanko suojattujen laskentataulukkojen suojaus vliaikaisesti?";
    Text[ catalan ] = "Desea desproteger temporalmante todas las hojas?";
};


String MESSAGES + 7
{
Text = "Kennwort zum Aufheben des Schutzes der Tabelle %1TableName%1";
Text[English] = "Surveying the relevant Ranges of the Table %1TableName%1:";
Text[ english_us ] = "Enter the password to unprotect the table %1TableName%1";
    Text[ portuguese ] = "Senha para desproteger a tabela %1TableName%1:";
    Text[ russian ] = "     %1TableName%1:";
    Text[ greek ] = "        %1TableName%1";
    Text[ dutch ] = "Wachtwoord voor het verwijderen van de beveiliging van werkblad %1TableName%1:";
    Text[ french ] = "Mot de passe pour l'annulation de la protection de la feuille %1NomTable%1";
    Text[ spanish ] = "Contrasea para desproteger la hoja %1TableName%1:";
    Text[ italian ] = "Password per togliere la protezione alla tabella %1TableName%1:";
    Text[ danish ] = "Adgangskode til ophvelse af beskyttelsen for arket %1TableName%1:";
    Text[ swedish ] = "Lsenord fr upphvning av skyddet fr tabell %1TableName%1:";
    Text[ polish ] = "Haso w celu zniesienia ochrony arkusza %1NazwaArkusza%1";
    Text[ portuguese_brazilian ] = "Surveying the relevant Ranges of the Table %1TableName%1:";
    Text[ japanese ] = "表 %1TableName%1 の保護を解除するためのパスワード:";
    Text[ korean ] = "도표 %1TableName%1의 보호를 제거하기 위한 패스워드:";
    Text[ chinese_simplified ] = "请输入密码,取消表格%1TableName%1保护锁定";
    Text[ chinese_traditional ] = "取消%1TableName%1區域保護需要鍵入密碼:";
    Text[ arabic ] = "        %1TableName%1";
    Text[ turkish ] = "Tablo %1TableName%1 korumasn kaldrmak iin gerekli ifreyi girin:";
    Text[ finnish ] = "Anna taulukon %1TableName%1 suojauksen purun salasana";
    Text[ catalan ] = "Contrasea para desproteger la hoja %1TableName%1:";
};


String MESSAGES + 8
{
Text = "Falsches Kennwort!";
Text[English] = "Wrong Password!";
Text[ english_us ] = "Wrong Password!";
    Text[ portuguese ] = "Senha incorrecta!";
    Text[ russian ] = " !";
    Text[ greek ] = " !";
    Text[ dutch ] = "Verkeerd wachtwoord!";
    Text[ french ] = "Mot de passe incorrect !";
    Text[ spanish ] = "Falsa contrasea!";
    Text[ italian ] = "Password errata!";
    Text[ danish ] = "Forkert adgangskode!";
    Text[ swedish ] = "Fel lsenord!";
    Text[ polish ] = "Nieprawidowe haso!";
    Text[ portuguese_brazilian ] = "Wrong Password!";
    Text[ japanese ] = "パスワードが正しくありません";
    Text[ korean ] = "틀린 코드 워드!";
    Text[ chinese_simplified ] = "密码无效!";
    Text[ chinese_traditional ] = "密碼無效!";
    Text[ arabic ] = "   !";
    Text[ turkish ] = "ifre yanl!";
    Text[ finnish ] = "Vr salasana";
    Text[ catalan ] = "Falsa contrasea!";
};


String MESSAGES + 9
{
Text = "Geschtzte Tabelle";
Text[English] = "Protected Sheet";
Text[ english_us ] = "Protected Sheet";
    Text[ portuguese ] = "Tabela protegida";
    Text[ russian ] = " ";
    Text[ greek ] = " ";
    Text[ dutch ] = "Beveiligd werkblad";
    Text[ french ] = "Feuille protge";
    Text[ spanish ] = "Hoja protegida";
    Text[ italian ] = "Tabella protetta";
    Text[ danish ] = "Bekyttede ark";
    Text[ swedish ] = "Skyddad tabell";
    Text[ polish ] = "Chronione arkusze";
    Text[ portuguese_brazilian ] = "Protected Sheet";
    Text[ japanese ] = "保護された表";
    Text[ korean ] = "보호된 시트";
    Text[ chinese_simplified ] = "受保护的表格";
    Text[ chinese_traditional ] = "受保護的工作表";
    Text[ arabic ] = " ";
    Text[ turkish ] = "Korumal tablo";
    Text[ finnish ] = "Suojattu lomake";
    Text[ catalan ] = "Hoja protegida";
};


String MESSAGES + 10
{
Text = "Warnung!";
Text[English] = "Warning";
Text[ english_us ] = "Warning!";
    Text[ portuguese ] = "Advertncia!";
    Text[ russian ] = "!";
    Text[ greek ] = "!";
    Text[ dutch ] = "Waarschuwing!";
    Text[ french ] = "Avertissement !";
    Text[ spanish ] = "Atencin!";
    Text[ italian ] = "Attenzione!";
    Text[ danish ] = "Advarsel!";
    Text[ swedish ] = "Varning!";
    Text[ polish ] = "Ostrzeenie!";
    Text[ portuguese_brazilian ] = "Warning!";
    Text[ japanese ] = "警告";
    Text[ korean ] = "경고!";
    Text[ chinese_simplified ] = "警告!";
    Text[ chinese_traditional ] = "警告!";
    Text[ arabic ] = "!";
    Text[ turkish ] = "Uyar!";
    Text[ finnish ] = "Varoitus";
    Text[ catalan ] = "Atencin!";
};


String MESSAGES + 11
{
Text = "Schutz der Tabellen wird nicht aufgehoben!";
Text[English] = "Sheets are not protected!";
Text[ english_us ] = "Protection for the sheets will not be removed.";
    Text[ portuguese ] = "A proteco das folhas no ser anulada!";
    Text[ russian ] = "    !";
    Text[ greek ] = "      !";
    Text[ dutch ] = "Werkbladbeveiliging wordt niet opgeheven!";
    Text[ french ] = "La protection des feuilles ne sera pas annule !";
    Text[ spanish ] = "Las hojas no se desprotegern!";
    Text[ italian ] = "Le protezioni delle tabelle non verranno disattivate!";
    Text[ danish ] = "Arkbeskyttelsen ophves ikke!";
    Text[ swedish ] = "Tabellskydd upphvs inte!";
    Text[ polish ] = "Ochrona arkuszy nie zostanie zniesiona!";
    Text[ portuguese_brazilian ] = "Sheets are not protected!";
    Text[ japanese ] = "表の保護は解除できません。";
    Text[ korean ] = "데이블 보호는 해제되지 않습니다!";
    Text[ chinese_simplified ] = "无法取消表格的保护!";
    Text[ chinese_traditional ] = "無法取消表格的保護!";
    Text[ arabic ] = "    !";
    Text[ turkish ] = "Tablolardaki koruma kaldrlmyor!";
    Text[ finnish ] = "Lomakkeiden suojausta ei poisteta.";
    Text[ catalan ] = "Las hojas no se desprotegern!";
};


String MESSAGES + 12
{
Text = "Tabellenschutz wird nicht aufgehoben!";
Text[English] = "Sheet is not protected!";
Text[ english_us ] = "Sheet cannot be unprotected";
    Text[ portuguese ] = "A proteco da folha no ser anulada!";
    Text[ russian ] = "    !";
    Text[ greek ] = "       !";
    Text[ dutch ] = "Werkbladbeveiliging wordt niet opgeheven!";
    Text[ french ] = "La protection de la feuille ne sera pas annule !";
    Text[ spanish ] = "No se desproteger la hoja!";
    Text[ italian ] = "La protezione della tabella non verr disattivata!";
    Text[ danish ] = "Arkbeskyttelsen ophves ikke!";
    Text[ swedish ] = "Tabellskydd upphvs inte!";
    Text[ polish ] = "Ochrona arkusza nie zostanie zniesiona!";
    Text[ portuguese_brazilian ] = "Sheet is not protected!";
    Text[ japanese ] = "表の保護は解除できません。";
    Text[ korean ] = "시트 보호는 제거되지 않습니다!";
    Text[ chinese_simplified ] = "无法取消表格保护!";
    Text[ chinese_traditional ] = "工作表的保護沒有被取消!";
    Text[ arabic ] = "    !";
    Text[ turkish ] = "Tablo korumas kaldrlmyor!";
    Text[ finnish ] = "Lomakkeen suojausta ei voi purkaa";
    Text[ catalan ] = "No se desproteger la hoja!";
};


String MESSAGES + 13
{
Text = "Der AutoPilot kann dieses Dokument nicht bearbeiten, da in Dokumenten mit geschtzten Tabellen keine Zellvorlagen modifiziert werden knnen.";
Text[English] = "The AutoPilot cannot convert this document, because in documents with protected sheets celltemplates cannot be modified!";
Text[ english_us ] = "The AutoPilot cannot edit this document as cell formats cannot be modified in documents containing protected spreadsheets.";
    Text[ portuguese ] = "O AutoPiloto no pode editar este documento, j que  impossvel modificar estilos de clulas em documentos com tabelas protegidas.";
    Text[ russian ] = "     ,          .";
    Text[ greek ] = "                        .";
    Text[ dutch ] = "Celopmaakprofielen in documenten met beveiligde werkbladen kunnen niet worden gewijzigd. De AutoPiloot kan dit document daarom niet bewerken.";
    Text[ french ] = "L'AutoPilote ne peut pas diter ce document : la modification des styles de cellule est impossible dans un document contenant des feuilles de calcul protges.";
    Text[ spanish ] = "El AutoPiloto no puede editar este documento porque no se pueden modificar estilos de celda en documentos con hojas protegidas.";
    Text[ italian ] = "Il Pilota automatico non pu modificare questo documento in quanto non  possibile modificare i modelli di cella nei documenti con tabelle protette.";
    Text[ danish ] = "AutoPiloten kan ikke redigere dette dokument, da det ikke er muligt at modificere celletypografier i dokumenter med beskyttede regneark.";
    Text[ swedish ] = "AutoPilot kan inte redigera det hr dokumentet eftersom ingen cellmall kan modifieras i dokument med skyddade tabeller.";
    Text[ polish ] = "AutoPilot nie jest w stanie edytowa tego dokumentu, poniewa w dokumentach zawierajcych chronione arkusze nie mona modyfikowa stylw komrki.";
    Text[ portuguese_brazilian ] = "But by modified celltempltates even cells in protected sheets may be modified!";
    Text[ japanese ] = "保護された表を含むドキュメントではセルスタイルが変更できないため、オートパイロットはこのドキュメントを編集できません。";
    Text[ korean ] = "보호된 스프레드시트가 있는 문서에서는 셀 템플릿이 변경될 수 없기 때문에 자동 파일럿은 이 문서를 편집할 수 없습니다.";
    Text[ chinese_simplified ] = "自动文件助理无法编辑这个文档,因为在文档内含有受保护的工作表时无法更改其单元格样式。";
    Text[ chinese_traditional ] = "自動檔案助理程式無法修改這個文件,因為一個受保護工作表不允許變更儲存格樣式。";
    Text[ arabic ] = "      ϡ             .";
    Text[ turkish ] = "Korumal tablo ieren belgelerde hcre ablonlar zerinde deiiklik yaplamad iin OtoPilot bu belgeyi dzenleyemiyor.";
    Text[ finnish ] = "Automaattinen ohjaus ei voi muokata tt asiakirjaa, koska suojattujen laskentataulukkoasiakirjojen solujen muotoilu ei voi muokata.";
    Text[ catalan ] = "El AutoPiloto no puede editar este documento porque no se pueden modificar estilos de celda en documentos con hojas protegidas.";
};



String MESSAGES + 14
{
Text = "Bitte bedenken Sie, dass der Eurokonverter sonst das Dokument nicht bearbeiten kann!";
Text[English] = "Please note that the Euroconverter can otherwise not edit this document!";
Text[ english_us ] = "Please note that the Euro Converter will, otherwise, not be able to edit this document!";
    Text[ portuguese ] = "No esquea que, de outra forma, o conversor de euros no poder editar o documento!";
    Text[ russian ] = ", ,         .";
    Text[ greek ] = "               '  '!";
    Text[ dutch ] = "Let op: u kunt het document anders niet bewerken met de euroconverter!";
    Text[ french ] = "Notez que, si tel n'est pas le cas, le Euro-Convertisseur n'est pas en mesure d'diter le document !";
    Text[ spanish ] = "Tenga en cuenta que de lo contrario el Convertidor Euro no podr editar el documento!";
    Text[ italian ] = "Vi preghiamo di notare che altrimenti il convertitore Euro non pu modificare il documento!";
    Text[ danish ] = "Bemrk venligst, at Eurokonverteren ellers ikke kan redigere dokumentet!";
    Text[ swedish ] = "Tnk p att Eurokonverteraren inte kan redigera dokumentet annars!";
    Text[ polish ] = "Uwzgldnij prosz, e w innym wypadku konwerter Euro nie bdzie w stanie edytowa dokumentu!";
    Text[ portuguese_brazilian ] = "Please note that the Euroconverter can otherwise not edit this document!";
    Text[ japanese ] = "そうでない場合はユーロ通貨換算でドキュメントの編集ができませんので注意してください。";
    Text[ korean ] = "그렇지 않으면 유로 변환기가 문서를 편집할 수 없음에 유의하십시오!";
    Text[ chinese_simplified ] = "请注意:否则欧币换算器无法编辑这个文档!";
    Text[ chinese_traditional ] = "請您留意歐圓轉換器否則就無法處理這個文件!";
    Text[ arabic ] = "           !";
    Text[ turkish ] = "Euro Dntrcs, aksi halde belgeyi dzenleyemez!";
    Text[ finnish ] = "Euromuunnin ei muutoin pysty muokkaamaan tt asiakirjaa.";
    Text[ catalan ] = "Tenga en cuenta que de lo contrario el Convertidor Euro no podr editar el documento!";
};



String MESSAGES + 15
{
Text = "Bitte whlen Sie zunchst eine zu konvertierende Whrung aus!";
Text[English] = "Please choose a currency first!";
Text[ english_us ] = "Please choose a currency to be converted first!";
    Text[ portuguese ] = "Comece por escolher a moeda a ser convertida!";
    Text[ russian ] = "  ,   ";
    Text[ greek ] = "    !";
    Text[ dutch ] = "Kies eerst de valuta die u wilt converteren";
    Text[ french ] = "Commencez par slectionner la monnaie  convertir !";
    Text[ spanish ] = "Elija primero la moneda que desee convertir!";
    Text[ italian ] = "Selezionate una valuta da convertire!";
    Text[ danish ] = "Vlg venligst frst en valuta, som skal konverteres!";
    Text[ swedish ] = "Vlj frst ut en valuta som skall konverteras!";
    Text[ polish ] = "Wybierz najpierw walut, ktr chcesz skonwertowa!";
    Text[ portuguese_brazilian ] = "Please choose a currency first!";
    Text[ japanese ] = "最初に換算する通貨を選択してください。";
    Text[ korean ] = "우선 변환할 통화를 선택하십시오!";
    Text[ chinese_simplified ] = "请首先选择一个要转换的货币!";
    Text[ chinese_traditional ] = "請您先選擇要轉換的一個貨幣!";
    Text[ arabic ] = "     !";
    Text[ turkish ] = "nce konvertibl olan bir para birimi sein!";
    Text[ finnish ] = "Valitse ensin muunnettava valuutta.";
    Text[ catalan ] = "Elija primero la moneda que desee convertir!";
};

String MESSAGES + 16
{
Text = "Kennwort:";
Text[English] = "Password:";
Text[ english_us ] = "Password:";
    Text[ portuguese ] = "Senha:";
    Text[ russian ] = ":";
    Text[ greek ] = " :";
    Text[ dutch ] = "Wachtwoord:";
    Text[ french ] = "Mot de passe :";
    Text[ spanish ] = "Contrasea:";
    Text[ italian ] = "Password:";
    Text[ danish ] = "Adgangskode:";
    Text[ swedish ] = "Lsenord:";
    Text[ polish ] = "Haso:";
    Text[ portuguese_brazilian ] = "Password:";
    Text[ japanese ] = "パスワード:";
    Text[ korean ] = "패스워드:";
    Text[ chinese_simplified ] = "密码:";
    Text[ chinese_traditional ] = "密碼:";
    Text[ turkish ] = "ifre:";
    Text[ arabic ] = " :";
    Text[ finnish ] = "Salasana:";
    Text[ catalan ] = "Contrasea:";
};

String MESSAGES + 17
{
Text = "OK";
Text[English] = "OK";
Text[ english_us ] = "OK";
    Text[ portuguese ] = "OK";
    Text[ russian ] = "OK";
    Text[ greek ] = "OK";
    Text[ dutch ] = "OK";
    Text[ french ] = "OK";
    Text[ spanish ] = "Aceptar";
    Text[ italian ] = "OK";
    Text[ danish ] = "OK";
    Text[ swedish ] = "OK";
    Text[ polish ] = "OK";
    Text[ portuguese_brazilian ] = "OK";
    Text[ japanese ] = "OK";
    Text[ korean ] = "OK";
    Text[ chinese_simplified ] = "确定";
    Text[ chinese_traditional ] = "確定";
    Text[ turkish ] = "Tamam";
    Text[ arabic ] = "";
    Text[ finnish ] = "OK";
    Text[ catalan ] = "Aceptar";
};

String MESSAGES + 18
{
Text = "Abbrechen";
Text[English] = "Cancel";
Text[ english_us ] = "Cancel";
    Text[ portuguese ] = "Cancelar";
    Text[ russian ] = "";
    Text[ greek ] = "";
    Text[ dutch ] = "Annuleren";
    Text[ french ] = "Annuler";
    Text[ spanish ] = "Cancelar";
    Text[ italian ] = "Annulla";
    Text[ danish ] = "Annuller";
    Text[ swedish ] = "Avbryt";
    Text[ polish ] = "Anuluj";
    Text[ portuguese_brazilian ] = "Cancel";
    Text[ japanese ] = "キャンセル";
    Text[ korean ] = "취소";
    Text[ chinese_simplified ] = "取消";
    Text[ chinese_traditional ] = "取消";
    Text[ turkish ] = "ptal";
    Text[ arabic ] = " ";
    Text[ finnish ] = "Peruuta";
    Text[ catalan ] = "Cancelar";
};


 String MESSAGES + 19
{
Text = "Bitte whlen Sie ein %PRODUCTNAME Calc-Dokument zur Bearbeitung aus!";
Text[English] = "Please choose a StarOffice Calc-document to work on!";
Text[ english_us ] = "Please select a %PRODUCTNAME Calc document for editing!";
    Text[ portuguese ] = "Seleccione o documento %PRODUCTNAME Calc a editar!";
    Text[ russian ] = "    %PRODUCTNAME Calc!";
    Text[ greek ] = "        %PRODUCTNAME Calc!";
    Text[ dutch ] = "Kies een %PRODUCTNAME Calc-document!";
    Text[ french ] = "Slectionnez un document %PRODUCTNAME Calc pour l'dition !";
    Text[ spanish ] = "Elija un documento %PRODUCTNAME Calc para trabajar";
    Text[ italian ] = "Scegliete un documento %PRODUCTNAME Calc per modificarlo.";
    Text[ danish ] = "Please choose a %PRODUCTNAME Calc-document to work on!";
    Text[ swedish ] = "Vlj ett %PRODUCTNAME Calc-dokument som du vill redigera!";
    Text[ polish ] = "Naley wybra dokument %PRODUCTNAME Calc, ktry ma zosta opracowany.";
    Text[ portuguese_brazilian ] = "Please choose a %PRODUCTNAME Calc-document to work on!";
    Text[ japanese ] = "編集する %PRODUCTNAME Calc ドキュメントを選択してください。";
    Text[ korean ] = "편집하기 위해 %PRODUCTNAME Calc-문서를  선택하십시오!";
    Text[ chinese_simplified ] = "请您选择一个要编辑的 %PRODUCTNAME Calc 文档!";
    Text[ chinese_traditional ] = "請您選擇一個要編輯的 %PRODUCTNAME Calc 文件!";
    Text[ turkish ] = "Please choose a %PRODUCTNAME Calc-document to work on!";
    Text[ arabic ] = "   %PRODUCTNAME Calc !";
    Text[ finnish ] = "Valitse %PRODUCTNAME Calc -asiakirja muokattavaksi!";
    Text[ catalan ] = "Elija un documento %PRODUCTNAME Calc para trabajar";
};


String MESSAGES + 20
{
Text = "'<1>' ist kein Verzeichnis!";
Text[English] = "<1> is not a directory!";
Text[ english_us ] = "'<1>' is not a directory!";
    Text[ portuguese ] = "'<1>' no  um directrio!";
    Text[ russian ] = "'<1>'   !";
    Text[ greek ] = " '<1>'   !";
    Text[ dutch ] = "'<1>' is geen directory!";
    Text[ french ] = "'<1>' n'est pas un rpertoire !";
    Text[ spanish ] = "'<1>' no es un directorio!";
    Text[ italian ] = "'<1>' non  una cartella";
    Text[ danish ] = "<1> is not a directory!";
    Text[ swedish ] = "'<1>' r inte en katalog!";
    Text[ polish ] = "'<1>' nie jest katalogiem!";
    Text[ portuguese_brazilian ] = "<1> is not a directory!";
    Text[ japanese ] = "'<1>' はディレクトリではありません。";
    Text[ korean ] = "'<1>'은(는) 디렉토리가 아닙니다!";
    Text[ chinese_simplified ] = "'<1>' 不是一个目录!";
    Text[ chinese_traditional ] = "<1>不是一個目錄!";
    Text[ turkish ] = "<1> is not a directory!";
    Text[ arabic ] = "'<1>'  !";
    Text[ finnish ] = "<1> ei ole hakemisto!";
    Text[ catalan ] = "'<1>' no es un directorio!";
};


String MESSAGES + 21
{
Text = "Dokument ist schreibgeschtzt!";
Text[English] = "Document is Read Only!";
Text[ english_us ] = "Document is read-only!";
    Text[ portuguese ] = "O documento  s de leitura!";
    Text[ russian ] = "   !";
    Text[ greek ] = "     !";
    Text[ dutch ] = "Document is schrijfbeveiligd!";
    Text[ french ] = "Le document est en lecture seule !";
    Text[ spanish ] = "El documento es de slo lectura!";
    Text[ italian ] = "Il documento  protetto.";
    Text[ danish ] = "Document is Read Only!";
    Text[ swedish ] = "Dokument r skrivskyddat!";
    Text[ polish ] = "Dokument jest tylko do odczytu!";
    Text[ portuguese_brazilian ] = "Document is Read Only!";
    Text[ japanese ] = "ドキュメントは読み取り専用です。";
    Text[ korean ] = "읽기 전용 문서입니다!";
    Text[ chinese_simplified ] = "文档是防改写的!";
    Text[ chinese_traditional ] = "文件是唯讀的!";
    Text[ turkish ] = "Document is Read Only!";
    Text[ arabic ] = "Document is Read Only!";
    Text[ catalan ] = "Document is Read Only!";
    Text[ finnish ] = "Asiakirja on vain-luku-tilassa.";
};


String MESSAGES + 22
{
    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[ portuguese ] = "The '<1>' file already exists.<CR>Do you want to overwrite it?";
    Text[ russian ] = " '<1>'  .<CR> ?";
    Text[ greek ] = "The '<1>' file already exists.<CR>Do you want to overwrite it?";
    Text[ dutch ] = "Bestand '<1>' bestaat reeds.<CR>Overschrijven?";
    Text[ french ] = "Le fichier '<1>' existe dj.<CR>Voulez-vous l'craser ?";
    Text[ spanish ] = "Ya existe el archivo '<1>'.<CR>Desea sobrescribirlo?";
    Text[ finnish ] = "The '<1>' file already exists.<CR>Do you want to overwrite it?";
    Text[ italian ] = "Il file '<1>' esiste gi. <CR>Volete sovrascriverlo?";
    Text[ danish ] = "The '<1>' file already exists.<CR>Do you want to overwrite it?";
    Text[ swedish ] = "Filen '<1>' finns redan.<CR>Vill du skriva ver den?";
    Text[ polish ] = "Plik '<1>' ju istnieje.<CR>Skasowa go przez zapisanie?";
    Text[ portuguese_brazilian ] = "The '<1>' file already exists.<CR>Do you want to overwrite it?";
    Text[ japanese ] = "ファイル '<1>' はすでにあります。<CR>上書きしますか。";
    Text[ korean ] = "'<1>' 파일이 이미 존재합니다.<CR>덮어쓰겠습니까?";
    Text[ chinese_simplified ] = "文件 '<1>'已经存在。<CR>您要改写这个文件?";
    Text[ chinese_traditional ] = "'<1>' 檔案已經存在。<CR>要覆寫?";
    Text[ turkish ] = "The '<1>' file already exists.<CR>Do you want to overwrite it?";
    Text[ arabic ] = "The '<1>' file already exists.<CR>Do you want to overwrite it?";
    Text[ catalan ] = "The '<1>' file already exists.<CR>Do you want to overwrite it?";
};


String MESSAGES + 23
{
    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[ portuguese ] = "Do you really want to terminate conversion at this point?";
    Text[ russian ] = "        ?";
    Text[ greek ] = "Do you really want to terminate conversion at this point?";
    Text[ dutch ] = "Wilt u het converteren werkelijk stoppen?";
    Text[ french ] = "Interrompre la conversion  ce stade ?";
    Text[ spanish ] = "Desea realmente interrumpir ahora el proceso de conversin?";
    Text[ finnish ] = "Do you really want to terminate conversion at this point?";
    Text[ italian ] = "Volete davvero annullare la conversione in questo punto?";
    Text[ danish ] = "Do you really want to terminate conversion at this point?";
    Text[ swedish ] = "Vill du verkligen avbryta konverteringen nu?";
    Text[ polish ] = "Na pewno przerwa konwersj w tym miejscu?";
    Text[ portuguese_brazilian ] = "Do you really want to terminate conversion at this point?";
    Text[ japanese ] = "本当にここで変換を中止しますか。";
    Text[ korean ] = "정말로 지금 변환을 종료하겠습니까?";
    Text[ chinese_simplified ] = "您真的要现在取消转换?";
    Text[ chinese_traditional ] = "現在真的要取消轉換?";
    Text[ turkish ] = "Do you really want to terminate conversion at this point?";
    Text[ arabic ] = "Do you really want to terminate conversion at this point?";
    Text[ catalan ] = "Do you really want to terminate conversion at this point?";
};

String MESSAGES + 24
{
    Text = "Autopilot abbrechen";
    Text[English] = "Cancel Autopilot";
    Text[ English_us ] = "Cancel AutoPilot";
    Text[ portuguese ] = "Cancel AutoPilot";
    Text[ russian ] = " ";
    Text[ greek ] = "Cancel AutoPilot";
    Text[ dutch ] = "AutoPiloot stoppen";
    Text[ french ] = "Annuler l'AutoPilote";
    Text[ spanish ] = "Cancelar AutoPiloto";
    Text[ finnish ] = "Cancel AutoPilot";
    Text[ italian ] = "Annulla Pilota automatico";
    Text[ danish ] = "Cancel AutoPilot";
    Text[ swedish ] = "Avbryt AutoPiloten";
    Text[ polish ] = "Anuluj AutoPilota";
    Text[ portuguese_brazilian ] = "Cancel AutoPilot";
    Text[ japanese ] = "オートパイロットを中止";
    Text[ korean ] = "자동 파일럿 취소";
    Text[ chinese_simplified ] = "取消自动文档助理";
    Text[ chinese_traditional ] = "取消自動檔案助理";
    Text[ turkish ] = "Cancel AutoPilot";
    Text[ arabic ] = "Cancel AutoPilot";
    Text[ catalan ] = "Cancel AutoPilot";
};

 String CURRENCIES
{
Text = "Portugiesischer Escudo";
Text[English] = "Portuguese Escudo";
Text[ english_us ] = "Portuguese Escudo";
    Text[ portuguese ] = "Escudo portugus";
    Text[ russian ] = " ";
    Text[ greek ] = " ";
    Text[ dutch ] = "Portugese escudo";
    Text[ french ] = "Escudo Portugais";
    Text[ spanish ] = "Escudo portugus";
    Text[ italian ] = "Scudo portoghese";
    Text[ danish ] = "Portugisisk escudo";
    Text[ swedish ] = "Portugisisk escudo";
    Text[ polish ] = "Escudo portugalski";
    Text[ portuguese_brazilian ] = "Portuguese Escudo";
    Text[ japanese ] = "ポルトガル エスクード";
    Text[ korean ] = "포르투갈 에스쿠도";
    Text[ chinese_simplified ] = "葡萄牙埃斯库多";
    Text[ chinese_traditional ] = "葡萄牙埃斯庫多";
    Text[ arabic ] = " ";
    Text[ turkish ] = "Portekiz Eskdosu";
    Text[ finnish ] = "Portugalin escudo";
    Text[ catalan ] = "Escudo portugus";
};

String CURRENCIES + 1
{
Text = "Niederlndischer Gulden";
Text[English] = "Dutch Guilder";
Text[ english_us ] = "Dutch Guilder";
    Text[ portuguese ] = "Florim holands";
    Text[ russian ] = " ";
    Text[ greek ] = " ";
    Text[ dutch ] = "Nederlandse gulden";
    Text[ french ] = "Florin Hollandais";
    Text[ spanish ] = "Florn holands";
    Text[ italian ] = "Fiorino olandese";
    Text[ danish ] = "Nederlandsk gylden";
    Text[ swedish ] = "Hollndsk gulden";
    Text[ polish ] = "Gulden holenderski";
    Text[ portuguese_brazilian ] = "Dutch Guilder";
    Text[ japanese ] = "オランダ ギルダー";
    Text[ korean ] = "네델란드 길더";
    Text[ chinese_simplified ] = "荷兰盾";
    Text[ chinese_traditional ] = "荷蘭盾";
    Text[ arabic ] = " ";
    Text[ turkish ] = "Hollanda Florini";
    Text[ finnish ] = "Hollannin guldeni";
    Text[ catalan ] = "Florn holands";
};

String CURRENCIES + 2
{
Text = "Franzsischer Francs";
Text[English] = "French Franc";
Text[ english_us ] = "French Franc";
    Text[ portuguese ] = "Franco francs";
    Text[ russian ] = " ";
    Text[ greek ] = " ";
    Text[ dutch ] = "Franse franc";
    Text[ french ] = "Franc Franais";
    Text[ spanish ] = "Franco francs";
    Text[ italian ] = "Franco francese";
    Text[ danish ] = "Fransk franc";
    Text[ swedish ] = "Fransk franc";
    Text[ polish ] = "Frank francuski";
    Text[ portuguese_brazilian ] = "French Franc";
    Text[ japanese ] = "フランス フラン";
    Text[ korean ] = "프랑스 프랑";
    Text[ chinese_simplified ] = "法国法郎";
    Text[ chinese_traditional ] = "法國法郎";
    Text[ arabic ] = " ";
    Text[ turkish ] = "Fransz Frang";
    Text[ finnish ] = "Ranskan frangi";
    Text[ catalan ] = "Franco francs";
};

String CURRENCIES + 3
{
Text = "Spanische Pesete";
Text[English] = "Spanish Peseta";
Text[ english_us ] = "Spanish Peseta";
    Text[ portuguese ] = "Peseta espanhola";
    Text[ russian ] = " ";
    Text[ greek ] = " ";
    Text[ dutch ] = "Spaanse peseta";
    Text[ french ] = "Peseta Espagnole";
    Text[ spanish ] = "Peseta espaola";
    Text[ italian ] = "Peseta spagnola";
    Text[ danish ] = "Spansk peseta";
    Text[ swedish ] = "Spansk peseta";
    Text[ polish ] = "Hiszpaska peseta";
    Text[ portuguese_brazilian ] = "Spanish Peseta";
    Text[ japanese ] = "スペイン ペセタ";
    Text[ korean ] = "스페인 페세타";
    Text[ chinese_simplified ] = "西班牙比塞塔";
    Text[ chinese_traditional ] = "西班牙比塞塔";
    Text[ arabic ] = " ";
    Text[ turkish ] = "spanyol Pezetas";
    Text[ finnish ] = "Espanjan peseta";
    Text[ catalan ] = "Peseta espaola";
};

String CURRENCIES + 4
{
Text = "Italienische Lira";
Text[English] = "Italian Lira";
Text[ english_us ] = "Italian Lira";
    Text[ portuguese ] = "Lira italiana";
    Text[ russian ] = " ";
    Text[ greek ] = " ";
    Text[ dutch ] = "Italiaanse lire";
    Text[ french ] = "Lire Italienne";
    Text[ spanish ] = "Lira italiana";
    Text[ italian ] = "Lira italiana";
    Text[ danish ] = "Italiensk lira";
    Text[ swedish ] = "Italiensk lire";
    Text[ polish ] = "Lir woski";
    Text[ portuguese_brazilian ] = "Italian Lira";
    Text[ japanese ] = "イタリア リラ";
    Text[ korean ] = "이태리 리라";
    Text[ chinese_simplified ] = "意大利里拉";
    Text[ chinese_traditional ] = "意大利里拉";
    Text[ arabic ] = " ";
    Text[ turkish ] = "talyan Lireti";
    Text[ finnish ] = "Italian liira";
    Text[ catalan ] = "Lira italiana";
};

String CURRENCIES + 5
{
Text = "Deutsche Mark";
Text[English] = "German Mark";
Text[ english_us ] = "German Mark";
    Text[ portuguese ] = "Marco alemo";
    Text[ russian ] = " ";
    Text[ greek ] = " ";
    Text[ dutch ] = "Duitse mark";
    Text[ french ] = "Deutsche Mark";
    Text[ spanish ] = "Marco alemn";
    Text[ italian ] = "Marco tedesco";
    Text[ danish ] = "Tysk mark";
    Text[ swedish ] = "Tysk mark";
    Text[ polish ] = "Marka niemiecka";
    Text[ portuguese_brazilian ] = "German Mark";
    Text[ japanese ] = "ドイツ マルク";
    Text[ korean ] = "독일 마르크";
    Text[ chinese_simplified ] = "德国马克";
    Text[ chinese_traditional ] = "德國馬克";
    Text[ arabic ] = " ";
    Text[ turkish ] = "Alman Mark";
    Text[ finnish ] = "Saksan markka";
    Text[ catalan ] = "Marco alemn";
};

String CURRENCIES + 6
{
Text = "Belgischer Franc";
Text[English] = "Belgian Franc";
Text[ english_us ] = "Belgian Franc";
    Text[ portuguese ] = "Franco belga";
    Text[ russian ] = " ";
    Text[ greek ] = " ";
    Text[ dutch ] = "Belgische franc";
    Text[ french ] = "Franc Belge";
    Text[ spanish ] = "Franco belga";
    Text[ italian ] = "Franco belga";
    Text[ danish ] = "Belgisk franc";
    Text[ swedish ] = "Belgisk franc";
    Text[ polish ] = "Frank belgijski";
    Text[ portuguese_brazilian ] = "Belgian Franc";
    Text[ japanese ] = "ベルギー フラン";
    Text[ korean ] = "벨기에 프랑";
    Text[ chinese_simplified ] = "比利时法郎";
    Text[ chinese_traditional ] = "比利時法郎";
    Text[ arabic ] = " ";
    Text[ turkish ] = "Belika Frang";
    Text[ finnish ] = "Belgian frangi";
    Text[ catalan ] = "Franco belga";
};

String CURRENCIES + 7
{
Text = "Irisches Pfund";
Text[English] = "Irish Pound";
Text[ english_us ] = "Irish Punt";
    Text[ portuguese ] = "Libra irlandesa";
    Text[ russian ] = " ";
    Text[ greek ] = " ";
    Text[ dutch ] = "Ierse pond";
    Text[ french ] = "Livre Irlandaise";
    Text[ spanish ] = "Libra irlandesa";
    Text[ italian ] = "Sterlina irlandese";
    Text[ danish ] = "Irsk pund";
    Text[ swedish ] = "Irlndskt pund";
    Text[ polish ] = "Funt irlandski";
    Text[ portuguese_brazilian ] = "Irish Pound";
    Text[ japanese ] = "アイルランド ポンド";
    Text[ korean ] = "아일랜드 파운드";
    Text[ chinese_simplified ] = "爱尔兰镑";
    Text[ chinese_traditional ] = "愛爾蘭鎊";
    Text[ arabic ] = " ";
    Text[ turkish ] = "rlanda Liras";
    Text[ finnish ] = "Irlannin punta";
    Text[ catalan ] = "Libra irlandesa";
};

String CURRENCIES + 8
{
Text = "Luxemburgischer Franc";
Text[English] = "Luxembourg Franc";
Text[ english_us ] = "Luxembourg Franc";
    Text[ portuguese ] = "Franco luxemburgus";
    Text[ russian ] = " ";
    Text[ greek ] = " ";
    Text[ dutch ] = "Luxemburgse franc";
    Text[ french ] = "Franc Luxembourgeois";
    Text[ spanish ] = "Franco luxemburgus";
    Text[ italian ] = "Franco lussemburghese";
    Text[ danish ] = "Luxembourgsk franc";
    Text[ swedish ] = "Luxemburgisk franc";
    Text[ polish ] = "Frank luksemburski";
    Text[ portuguese_brazilian ] = "Luxembourg Franc";
    Text[ japanese ] = "ルクセンブルグ フラン";
    Text[ korean ] = "룩셈브르크 프랑";
    Text[ chinese_simplified ] = "卢森堡法郎";
    Text[ chinese_traditional ] = "盧森堡法郎";
    Text[ arabic ] = " ";
    Text[ turkish ] = "Luxembourg Frang";
    Text[ finnish ] = "Luxemburgin frangi";
    Text[ catalan ] = "Franco luxemburgus";
};

String CURRENCIES + 9
{
Text = "sterreichischer Schilling";
Text[English] = "Austrian Schilling";
Text[ english_us ] = "Austrian Schilling";
    Text[ portuguese ] = "Xelim austraco";
    Text[ russian ] = " ";
    Text[ greek ] = " ";
    Text[ dutch ] = "Oostenrijkse schilling";
    Text[ french ] = "Schilling Autrichien";
    Text[ spanish ] = "Cheln austriaco";
    Text[ italian ] = "Scellino austriaco";
    Text[ danish ] = "strigsk schilling";
    Text[ swedish ] = "sterrikisk schilling";
    Text[ polish ] = "Szyling austriacki";
    Text[ portuguese_brazilian ] = "Austrian Schilling";
    Text[ japanese ] = "オーストリア シリング";
    Text[ korean ] = "오스트리아 쉴링";
    Text[ chinese_simplified ] = "奥地利先令";
    Text[ chinese_traditional ] = "奧地利先令";
    Text[ arabic ] = "  ";
    Text[ turkish ] = "Avusturya ilini";
    Text[ finnish ] = "Itvallan shillinki";
    Text[ catalan ] = "Cheln austriaco";
};

String CURRENCIES + 10
{
Text = "Finnische Mark";
Text[English] = "Finnish Mark";
Text[ english_us ] = "Finnish Mark";
    Text[ portuguese ] = "Marco finlands";
    Text[ russian ] = " ";
    Text[ greek ] = " ";
    Text[ dutch ] = "Finse mark";
    Text[ french ] = "Mark Finlandais";
    Text[ spanish ] = "Marco finlands";
    Text[ italian ] = "Marco finlandese";
    Text[ danish ] = "Finsk markka";
    Text[ swedish ] = "Finsk mark";
    Text[ polish ] = "Marka fiska";
    Text[ portuguese_brazilian ] = "Finnish Mark";
    Text[ japanese ] = "フィンランド マルッカ";
    Text[ korean ] = "핀란드 마르크";
    Text[ chinese_simplified ] = "芬兰马克";
    Text[ chinese_traditional ] = "芬蘭馬克";
    Text[ arabic ] = " ";
    Text[ turkish ] = "Fin Markkas";
    Text[ finnish ] = "Suomen markka";
    Text[ catalan ] = "Marco finlands";
};

String CURRENCIES + 11
{
Text = "Griechische Drachme";
Text[English] = "Greek Drachma";
Text[ english_us ] = "Greek Drachma";
    Text[ portuguese ] = "Dracma grego";
    Text[ russian ] = " ";
    Text[ greek ] = " ";
    Text[ dutch ] = "Griekse drachme";
    Text[ french ] = "Drachme Grecque";
    Text[ spanish ] = "Dracma griego";
    Text[ finnish ] = "Kreikan drakhma";
    Text[ italian ] = "Dracma greca";
    Text[ danish ] = "Den valuta, der er indstillet for dette dokument, er ingen Euro-valuta!";
    Text[ swedish ] = "Grekisk drakma";
    Text[ polish ] = "Drachma grecka";
    Text[ portuguese_brazilian ] = "The Language of the Document is not known to the Autopilot";
    Text[ japanese ] = "ギリシャ ドラクマ";
    Text[ korean ] = "그리스 드라크마!";
    Text[ chinese_simplified ] = "希腊的德拉赫马";
    Text[ chinese_traditional ] = "希腊的德拉赫馬";
    Text[ turkish ] = "Belge iin ayarlanan para birimi, Euro-para birimi deil!";
    Text[ arabic ] = "          ?!";
    Text[ catalan ] = "La moneda determinada para el documento no pertenece a la zona del Euro!";
};

String CURRENCIES + 12
{
Text = "Die fr das Dokument eingestellte Whrung ist keine Euro-Whrung!";
Text[English] = "The currency of the document is not of the European Currency Union!";
Text[ english_us ] = "The currency set for the document is not a European currency!";
    Text[ portuguese ] = "A moeda definida para o documento no  uma moeda europeia!";
    Text[ russian ] = "       !";
    Text[ greek ] = "            !";
    Text[ dutch ] = "De voor dit document ingestelde valuta is geen Euro-valuta!";
    Text[ french ] = "La monnaie dfinie pour le document n'est pas une monnaie europenne !";
    Text[ spanish ] = "La moneda determinada para el documento no pertenece a la zona del Euro!";
    Text[ italian ] = "La lingua impostata nel vostro sistema operativo non  parte dell'Euro.";
    Text[ danish ] = "Det sprog, som er indstillet for dit operativsystem, er ikke et sprog som tilhrer EU's monetre union!";
    Text[ swedish ] = "Valutan som r instlld fr ditt dokument r ingen euro-valuta!";
    Text[ polish ] = "Waluta wybrana do zastosowania w dokumencie nie jest walut Euro.";
    Text[ portuguese_brazilian ] = "The language set for the operation system is not a language of the European Currency Union!";
    Text[ japanese ] = "このドキュメント用に設定されている通貨はユーロではありません。";
    Text[ korean ] = "이 문서에 설정된 통화 단위는 유럽 통화가 아닙니다.";
    Text[ chinese_simplified ] = "为文档设定的货币不是欧洲共同体使用的欧元!";
    Text[ chinese_traditional ] = "為文件設定的語言不是歐元!";
    Text[ arabic ] = "               !";
    Text[ turkish ] = "letim sisteminiz iin setiiniz dil, Avrupa Para Birlii dillerinden biri deil!";
    Text[ finnish ] = "Asiakirjaan mritetty valuutta ei ole eurooppalainen valuutta.";
    Text[ catalan ] = "El idioma definido para su sistema operativo no pertenece a la unin monetaria europea!";
};

String CURRENCIES + 13
{
Text = "Die fr Ihr Betriebssystem eingestellte Sprache ist keine Sprache der Europischen Whrungsunion!";
Text[English] = "The language set for the operation system is not a language of the European Currency Union!";
Text[ english_us ] = "The language set for your operating system is not a language of the European Monetary Union.";
    Text[ portuguese ] = "A lngua que definiu para o seu sistema operativo no faz parte das lnguas da unio monetria europeia!";
    Text[ russian ] = ",        ,         ().";
    Text[ greek ] = "                !";
    Text[ dutch ] = "De voor uw besturingssysteem ingestelde taal is geen taal van de Europese Monetaire Unie!";
    Text[ french ] = "La langue dfinie pour le systme d'exploitation ne correspond  aucun pays de l'Union Montaire Europenne !";
    Text[ spanish ] = "El idioma definido para su sistema operativo no pertenece a la unin monetaria europea!";
    Text[ italian ] = "La lingua impostata nel vostro sistema operativo non fa parte dell'Unione Monetaria Europea!";
    Text[ danish ] = "Det sprog, som er indstillet for dit operativsystem, er ikke et sprog som tilhrer EU's monetre union!";
    Text[ swedish ] = "Sprket som r instllt fr ditt operativsystem finns inte i den europeiska valutaunionen!";
    Text[ polish ] = "Jzyk systemu operacyjnego na komputerze uytkownika nie jest jzykiem adnego z krajw Europejskiej Unii Walutowej!";
    Text[ portuguese_brazilian ] = "The language set for the operation system is not a language of the European Currency Union!";
    Text[ japanese ] = "お使いのオペレーティングシステムに設定されている言語は、ユーロ加盟国の言語ではありません。";
    Text[ korean ] = "귀하의 운영체제에 설정된 언어는 유럽 통화의 언어가 아닙니다.";
    Text[ chinese_simplified ] = "您的操作系统使用的语言不是欧洲货币联盟的使用语言!";
    Text[ chinese_traditional ] = "為操作系統設定的語言不是歐洲貨幣聯盟的語言。";
    Text[ arabic ] = "               !";
    Text[ turkish ] = "letim sisteminiz iin setiiniz dil, Avrupa Para Birlii dillerinden biri deil!";
    Text[ finnish ] = "Kyttjrjestelmn kielimritys ei ole minkn EMU-alueen valtion kieli.";
    Text[ catalan ] = "El idioma definido para su sistema operativo no pertenece a la unin monetaria europea!";
};


String STEP_LASTPAGE
{
Text = "Arbeitsfortschritt";
Text[English] = "Progress";
Text[ english_us ] = "Progress";
    Text[ portuguese ] = "Progresso";
    Text[ russian ] = "";
    Text[ greek ] = " ";
    Text[ dutch ] = "Vooruitgang";
    Text[ french ] = "Progression";
    Text[ spanish ] = "Progreso";
    Text[ italian ] = "Progressione";
    Text[ danish ] = "Arbejdsfremgang";
    Text[ swedish ] = "Arbetsframsteg";
    Text[ polish ] = "Postp w pracy";
    Text[ portuguese_brazilian ] = "Progress";
    Text[ japanese ] = "進捗状況";
    Text[ korean ] = "작업진행";
    Text[ chinese_simplified ] = "已经完成";
    Text[ chinese_traditional ] = "已經完成";
    Text[ turkish ] = "Geliim";
    Text[ arabic ] = "";
    Text[ finnish ] = "Tilanne";
    Text[ catalan ] = "Progreso";
};


String STEP_LASTPAGE + 1
{
Text = "Erfassen der relevanten Dokumente...";
Text[English] = "Retrieving the relevant Documents...";
Text[ english_us ] = "Retrieving the relevant documents...";
    Text[ portuguese ] = "A reunir documentos relevantes...";
    Text[ russian ] = "  ...";
    Text[ greek ] = "   ...";
    Text[ dutch ] = "Opnemen van de relevantw documenten...";
    Text[ french ] = "Rcupration des documents importants...";
    Text[ spanish ] = "Recuperando los documentos relevantes...";
    Text[ italian ] = "Rilevamento dei documenti importanti...";
    Text[ danish ] = "Bestemmer de relevante dokumenter...";
    Text[ swedish ] = "Samlar de relevanta dokumenten...";
    Text[ polish ] = "Przywracanie wanych dokumentw...";
    Text[ portuguese_brazilian ] = "Retrieving the relevant Documents...";
    Text[ japanese ] = "関連するドキュメントをまとめる...";
    Text[ korean ] = "관련 문서 검색...";
    Text[ chinese_simplified ] = "检索相关文档...";
    Text[ chinese_traditional ] = "檢索編輯相關文件...";
    Text[ turkish ] = "lgili belgeleri alyor...";
    Text[ arabic ] = "   ...";
    Text[ finnish ] = "Haetaan asianmukaiset asiakirjat";
    Text[ catalan ] = "Recuperando los documentos relevantes...";
};

String STEP_LASTPAGE + 2
{
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 ] = "Converteren van de documenten...";
    Text[ french ] = "Conversion des documents...";
    Text[ spanish ] = "Convirtiendo los documentos...";
    Text[ italian ] = "Conversione dei documenti...";
    Text[ danish ] = "Konverterer dokumenterne...";
    Text[ swedish ] = "Konvertering av dokumenten...";
    Text[ polish ] = "Konwertuj dokumenty...";
    Text[ portuguese_brazilian ] = "Converting the Documents...";
    Text[ japanese ] = "ドキュメントの変換...";
    Text[ korean ] = "문서 변환...";
    Text[ chinese_simplified ] = "转换文档...";
    Text[ chinese_traditional ] = "轉換文件...";
    Text[ turkish ] = "Belgeleri dntryor...";
    Text[ arabic ] = " ...";
    Text[ finnish ] = "Muunnetaan asiakirjat";
    Text[ catalan ] = "Convirtiendo los documentos...";
};

String STEP_LASTPAGE + 3
{
Text = "Einstellungen:";
Text[English] = "Configurations:";
Text[ english_us ] = "Settings:";
    Text[ portuguese ] = "Configurao:";
    Text[ russian ] = ":";
    Text[ greek ] = ":";
    Text[ dutch ] = "Configuraties:";
    Text[ french ] = "Paramtres :";
    Text[ spanish ] = "Configuracin:";
    Text[ italian ] = "Impostazioni:";
    Text[ danish ] = "Indstillinger:";
    Text[ swedish ] = "Instllningar:";
    Text[ polish ] = "Ustawienia:";
    Text[ portuguese_brazilian ] = "Configurations:";
    Text[ japanese ] = "設定:";
    Text[ korean ] = "구성:";
    Text[ chinese_simplified ] = "设定:";
    Text[ chinese_traditional ] = "設定:";
    Text[ turkish ] = "Ayarlar:";
    Text[ arabic ] = ":";
    Text[ finnish ] = "Asetukset:";
    Text[ catalan ] = "Configuracin:";
};

String STEP_LASTPAGE + 4
{
Text = "Tabellenschutz wird immer aufgehoben";
Text[English] = "Sheet Protection is always raised";
Text[ english_us ] = "Sheet is always unprotected";
    Text[ portuguese ] = "Anular sempre proteco da folha";
    Text[ russian ] = "   ";
    Text[ greek ] = "     ";
    Text[ dutch ] = "Werkbladbeveiliging wordt altijd opgeheven";
    Text[ french ] = "La protection de la feuille sera toujours annule";
    Text[ spanish ] = "Anular siempre la proteccin de hoja";
    Text[ italian ] = "Disattiva sempre la protezione tabella";
    Text[ danish ] = "Arkbeskyttelsen ophves altid";
    Text[ swedish ] = "Tabellskydd upphvs alltid";
    Text[ polish ] = "Zniesienie ochrony arkusza za kadym razem";
    Text[ portuguese_brazilian ] = "Sheet Protection is always raised";
    Text[ japanese ] = "常に表の保護を解除";
    Text[ korean ] = "시트 보호 항상 제거";
    Text[ chinese_simplified ] = "自动取消表格保护";
    Text[ chinese_traditional ] = "自動取消工作表保護";
    Text[ turkish ] = "Tablo korumas her zaman kaldrlyor";
    Text[ arabic ] = "     ";
    Text[ finnish ] = "Lomake on aina suojaamaton";
    Text[ catalan ] = "Anular siempre la proteccin de hoja";
};