summaryrefslogtreecommitdiff
path: root/wizards/source/euro/euro.src
blob: 2379f3cdce8a58b78a3d005103afaeae4029f672 (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
/*************************************************************************
 *
 *  $RCSfile: euro.src,v $
 *
 *  $Revision: 1.30 $
 *
 *  last change: $Author: bc $ $Date: 2001-06-25 09:30:00 $
 *
 *  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 ] = "I";
    Text[ korean ] = "";
    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 ] = "";
    Text[ korean ] = "";
    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 ] = "<< ߂";
    Text[ korean ] = "<< ڷ";
    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 ] = "ϊ";
    Text[ korean ] = "ȯ";
    Text[ chinese_simplified ] = "ת(~C)";
    Text[ chinese_traditional ] = "ഫ(~R)";
    Text[ arabic ] = "";
    Text[ turkish ] = "~Dntr";
    Text[ finnish ] = "M&uunna";
    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 ] = "w: OQƂב֑Ɛ̒ʉ݊Z̧͕ϊł܂B";
    Text[ korean ] = "˸: ij ȭȯ ҿ ܺ  ȭ ȯ ʽϴ.";
    Text[ chinese_simplified ] = "ʾ޷תݵĻҽ͹ʽеĻһϵ";
    Text[ chinese_traditional ] = "ܡGLkഫt~ӤޥΪfBΤfȡC";
    Text[ arabic ] = ":     ɡ         .";
    Text[ turkish ] = "Bilgi: D referanslara bal para birimi meblalar ve hcre formlleri iindeki para birimi dntrme etkenleri dntrlemez.";
    Text[ finnish ] = "Remarks: currency amounts connected to external references and currency conversion factors in cell formulas can not be converted.";
    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 = "Entschtzen Sie vorab alle Tabellen!";
Text[English] = "Unprotect all sheets beforehand!";
Text[ english_us ] = "Unprotect all sheets beforehand!";
    Text[ portuguese ] = "Desproteger primeiro todas as tabelas!";
    Text[ russian ] = "     !";
    Text[ greek ] = "      !";
    Text[ dutch ] = "Hef eerst de bescherming van alle werkbladen op!";
    Text[ french ] = "Dprotger toutes les 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 ] = "OĂׂĂ̕\\̕یĂ܂B";
    Text[ korean ] = " ̺ ȣ!";
    Text[ chinese_simplified ] = "ȡеĹ";
    Text[ chinese_traditional ] = "Ҧu@O@";
    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 ] = "fG";
    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 ] = " >>";
    Text[ korean ] = "~>>";
    Text[ chinese_simplified ] = "(~O)>>";
    Text[ chinese_traditional ] = "~(~O) >>";
    Text[ turkish ] = "~leri>>";
    Text[ arabic ] = "~>>";
    Text[ finnish ] = "&Jatka >>";
    Text[ catalan ] = "~Siguiente>>";
};

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 ] = "S޷";
    Text[ korean ] = "ü ";
    Text[ chinese_simplified ] = "ĵ(~E)";
    Text[ chinese_traditional ] = "㪺";
    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 ] = "I͈";
    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 ] = "ق̽";
    Text[ korean ] = "";
    Text[ chinese_simplified ] = "Ԫʽ(~T)";
    Text[ chinese_traditional ] = "椸˦";
    Text[ arabic ] = " ~";
    Text[ turkish ] = "~Hcre ablonlar";
    Text[ finnish ] = "Solut&yylit";
    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 i det aktuella ~tabellarket";
    Text[ polish ] = "Komrki waluty w aktualnym ~arkuszu";
    Text[ portuguese_brazilian ] = "Currency Cells in the current ~Sheet";
    Text[ japanese ] = "݂̕\\̒ʉݾ";
    Text[ korean ] = " Ʈ ȭ ";
    Text[ chinese_simplified ] = "ǰеĻҵԪ(~S)";
    Text[ chinese_traditional ] = "eu@f椸";
    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 ] = "S޷Ă̒ʉݾ";
    Text[ korean ] = "ü ȭ ";
    Text[ chinese_simplified ] = "ĵеĻҵԪ(~D)";
    Text[ chinese_traditional ] = "Ӥ󤺪f椸";
    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 ] = "I͈";
    Text[ korean ] = "õȡ";
    Text[ chinese_simplified ] = "ѡе(~S)";
    Text[ chinese_traditional ] = "襤ϰ";
    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 ] = "ٽق̑I:";
    Text[ korean ] = "  :";
    Text[ chinese_simplified ] = "ѡԪʽ";
    Text[ chinese_traditional ] = "ܳ椸˦G";
    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 ] = "ʉݾق̑I:";
    Text[ korean ] = "ȭ  ";
    Text[ chinese_simplified ] = "ѡҵԪ";
    Text[ chinese_traditional ] = "ܳf椸G";
    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 ] = "fϰG";
    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 ] = "˦G";
    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 ] = "Volumen";
    Text[ italian ] = "Volume";
    Text[ danish ] = "Omfang";
    Text[ swedish ] = "Omfattning";
    Text[ polish ] = "Zakres";
    Text[ portuguese_brazilian ] = "~Extent";
    Text[ japanese ] = "͈";
    Text[ korean ] = "";
    Text[ chinese_simplified ] = "Χ(~E)";
    Text[ chinese_traditional ] = "d";
    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 Document";
    Text[ portuguese ] = "~Documento nico do %PRODUCTNAME Calc";
    Text[ russian ] = "~  %PRODUCTNAME Calc";
    Text[ greek ] = "~   %PRODUCTNAME Calc";
    Text[ dutch ] = "~Een %PRODUCTNAME Calc-document";
    Text[ french ] = "~Document unique %PRODUCTNAME Calc";
    Text[ spanish ] = "~Un archivo de %PRODUCTNAME Calc";
    Text[ italian ] = "~Documento singolo %PRODUCTNAME Calc";
    Text[ danish ] = "~Enkelt %PRODUCTNAME Calc-dokument";
    Text[ swedish ] = "~Enskilt %PRODUCTNAME Calc-dokument";
    Text[ polish ] = "~Pojedynczy dokument %PRODUCTNAME Calc";
    Text[ portuguese_brazilian ] = "~Single File";
    Text[ japanese ] = "e %PRODUCTNAME Calc ޷";
    Text[ korean ] = "~%PRODUCTNAME Calc-";
    Text[ chinese_simplified ] = " %PRODUCTNAME Calc ĵ(~S)";
    Text[ chinese_traditional ] = " %PRODUCTNAME Calc (~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 ] = "Sިڸ";
    Text[ korean ] = "ü丮";
    Text[ chinese_simplified ] = "ȫĿ¼(~D)";
    Text[ chinese_traditional ] = "ؿ";
    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 ] = "ɮסG";
    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 ] = "Kllmapp:";
    Text[ polish ] = "Katalog rdowy:";
    Text[ portuguese_brazilian ] = "Source Directory:";
    Text[ japanese ] = " ިڸ:";
    Text[ korean ] = "ҽ 丮:";
    Text[ chinese_simplified ] = "ԴĿ¼";
    Text[ chinese_traditional ] = "ؿG";
    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 ] = "̫ނ܂";
    Text[ korean ] = "  ";
    Text[ chinese_simplified ] = "Ŀ¼(~I)";
    Text[ chinese_traditional ] = "]Alؿ";
    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 ] = "ؼХؿG";
    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 ] = "ꎞIɊmFȂŕ\\̕ی";
    Text[ korean ] = "Ʈ ȣ Ͻ ȸ ";
    Text[ chinese_simplified ] = "ȷֱʱȡ񱣻";
    Text[ chinese_traditional ] = "Ȯɨu@O@";
    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";
};


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 ] = "ഫiiG ";
    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 ] = "椸˦ഫii";
    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 ] = "Recensement des plages concernes en cours : 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 ] = "Z͈͂̓o^: %2TotPageCount%2 ̕\\ %1Number%1 ";
    Text[ korean ] = "ȯɡ:   %2TotPageCount%2  Ʈ %1Number%1";
    Text[ chinese_simplified ] = "뻻Sheet %1Number%1 of %2TotPageCount%2";
    Text[ chinese_traditional ] = "nOഫϰGu@ %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 %%1 %1/%2yhteens%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 ] = "Recensement des plages concernes en cours...";
    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 ] = "Z͈͂̓o^...";
    Text[ korean ] = "ȯɡ...";
    Text[ chinese_simplified ] = "뻻...";
    Text[ chinese_traditional ] = "nOഫϰ...";
    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 ] = "s`CӪ檺O@ϰC";
    Text[ arabic ] = "   ...";
    Text[ language_user1 ] = " ";
    Text[ turkish ] = "Tablo korumalar yeniden oluturulacak...";
    Text[ finnish ] = "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 ] = "ʉݒPʂ̾ٽقɕϊ...";
    Text[ korean ] = "  ȭ  ȯ...";
    Text[ chinese_simplified ] = "Ԫʽлҵλת...";
    Text[ chinese_traditional ] = "ഫ椸檺f...";
    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] = "    Ready!";
Text[ english_us ] = "finished!";
    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 ] = "";
    Text[ korean ] = "Ϸ!";
    Text[ chinese_simplified ] = "ɣ";
    Text[ chinese_traditional ] = "wgI";
    Text[ arabic ] = "...!";
    Text[ turkish ] = "Bitti!";
    Text[ finnish ] = "valmis";
    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 ] = "ިڸ؂I܂B";
    Text[ korean ] = "丮 Ͻʽÿ";
    Text[ chinese_simplified ] = "ѡһĿ¼";
    Text[ chinese_traditional ] = "бzܤ@ӥؿ";
    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 ] = "̧قI܂B";
    Text[ korean ] = " Ͻʽÿ";
    Text[ chinese_simplified ] = "ѡһļ";
    Text[ chinese_traditional ] = "бzܤ@ɮ";
    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 ] = "ޯިڸ؂I܂B";
    Text[ korean ] = "ǥ 丮 Ͻʽÿ";
    Text[ chinese_simplified ] = "ѡһĿĿ¼";
    Text[ chinese_traditional ] = "бzܤ@ӥؼХؿ";
    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 ] = "inexistant";
    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 ] = "sb";
    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 ] = "Conversor Euro";
    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 ] = "հےʉ݊Z";
    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 ] = "ׂĂ̕\\̕یꎞIɉ܂B";
    Text[ korean ] = " Ʈ ȣ Ͻ ұ?";
    Text[ chinese_simplified ] = "Ҫܱıʱȡ";
    Text[ chinese_traditional ] = "nȮɨu@ϰO@H";
    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ϰO@ݭnJKXG";
    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 ] = "KXLġI";
    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 ] = "O@u@";
    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 ] = "x";
    Text[ korean ] = "!";
    Text[ chinese_simplified ] = "棡";
    Text[ chinese_traditional ] = "ĵiI";
    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 ] = "\\̕ی͉ł܂B";
    Text[ korean ] = "Ʈ ȣ ŵ ʽϴ!";
    Text[ chinese_simplified ] = "޷ȡı";
    Text[ chinese_traditional ] = "Lk檺O@I";
    Text[ arabic ] = "    !";
    Text[ turkish ] = "Tablolardaki koruma kaldrlmyor!";
    Text[ finnish ] = "Lomakkeen suojausta ei voi purkaa";
    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 ] = "\\̕ی͉ł܂B";
    Text[ korean ] = "Ʈ ȣ ŵ ʽϴ!";
    Text[ chinese_simplified ] = "޷ȡ񱣻";
    Text[ chinese_traditional ] = "u@O@SQI";
    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 ] = "ی삳ꂽ\\܂޷Ăł;ق̽قύXłȂ߁A߲ۯĂ͂޷ĂҏWł܂B";
    Text[ korean ] = "ȣ Ʈ ִ        ڵϷ     ϴ.";
    Text[ chinese_simplified ] = "Զļ޷༭ĵΪĵںܱĹʱ޷䵥Ԫʽ";
    Text[ chinese_traditional ] = "۰ɮקUz{LkקoӤA]@ӨO@u@\\ܧxs˦C";
    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 ] = "Veuillez noter que, si tel n'est pas le cas, le convertisseur Euro 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 ] = "łȂꍇհےʉ݊Z޷Ă̕ҏWł܂̂ŒӂĂB";
    Text[ korean ] = "׷   ȯⰡ     Ͻʽÿ!";
    Text[ chinese_simplified ] = "ע⣺ŷһ޷༭ĵ";
    Text[ chinese_traditional ] = "бzdNڶഫ_hNLkBzoӤI";
    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 ] = "Veuillez commencer 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 ] = "ŏɊZʉ݂IĂ";
    Text[ korean ] = "켱 ȯ ȭ Ͻʽÿ!";
    Text[ chinese_simplified ] = "ѡһҪתĻң";
    Text[ chinese_traditional ] = "бzܭnഫ@ӳfI";
    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 ] = "KXG";
    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 ] = "Tw";
    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 ] = "ҏW %PRODUCTNAME Calc ޷ĂIĂB";
    Text[ korean ] = "ϱ  %PRODUCTNAME Calc-  Ͻʽÿ!";
    Text[ chinese_simplified ] = "ѡһҪ༭ %PRODUCTNAME Calc ĵ";
    Text[ chinese_traditional ] = "бzܤ@ӭns誺 %PRODUCTNAME Calc I";
    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>' ިڸ؂ł͂܂B";
    Text[ korean ] = "'<1>'() 丮 ƴմϴ!";
    Text[ chinese_simplified ] = "'<1>' һĿ¼";
    Text[ chinese_traditional ] = "'<1>' O@ӥؿI";
    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 ] = "޷Ă͓ǂݎpłB";
    Text[ korean ] = "Document is Read Only!";
    Text[ chinese_simplified ] = "ĵǷдģ";
    Text[ chinese_traditional ] = "OŪI";
    Text[ turkish ] = "Document is Read Only!";
    Text[ arabic ] = "Document is Read Only!";
    Text[ catalan ] = "Document is Read Only!";
    Text[ finnish ] = "Dokument ist schreibgeschtzt!";
};


 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 Portuguais";
    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 ] = "Jwh";
    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 ] = "kk";
    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 ] = "Z";
    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 ] = "NjQ";
    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 ] = "w갨J";
    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 ] = "Qɪk";
    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 ] = "R";
    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 ] = "c˳k";
    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 ] = "aQO";
    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 ] = "J";
    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 ] = "A moeda definida para o documento no  uma moeda pertencente  zona do Euro!";
    Text[ russian ] = " ";
    Text[ greek ] = " ";
    Text[ dutch ] = "Griekse drachme";
    Text[ french ] = "Drachme Grecque";
    Text[ spanish ] = "Dracma griego";
    Text[ finnish ] = "Asiakirjaan mritetty valuutta ei ole Euro-alueen valuutta.";
    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 ] = "KwԻ";
    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 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 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 ] = "޷ėpɐݒ肳Ăʉ݂հۂł͂܂B";
    Text[ korean ] = " ü    ȭ  ƴմϴ.";
    Text[ chinese_simplified ] = "Ϊĵ趨ĻҲŷ޹ͬʹõŷԪ";
    Text[ chinese_traditional ] = "]wyOڤI";
    Text[ arabic ] = "               !";
    Text[ turkish ] = "letim sisteminiz iin setiiniz dil, Avrupa Para Birlii dillerinden biri deil!";
    Text[ finnish ] = "Kyttjrjestelmn kieli ei ole Euro-alueen kieli.";
    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 ] = "g̵ڰèݸ޼тɐݒ肳Ă錾́Aհۉ̌ł͂܂B";
    Text[ korean ] = " ü    ȭ  ƴմϴ.";
    Text[ chinese_simplified ] = "IJϵͳʹõԲŷ޻˵ʹԣ";
    Text[ chinese_traditional ] = "ާ@tγ]wyOڬwfpyC";
    Text[ arabic ] = "               !";
    Text[ turkish ] = "letim sisteminiz iin setiiniz dil, Avrupa Para Birlii dillerinden biri deil!";
    Text[ finnish ] = "Kyttjrjestelmn kieli ei ole Euro-alueen 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 ] = "i";
    Text[ korean ] = "۾";
    Text[ chinese_simplified ] = "չ";
    Text[ chinese_traditional ] = "ii";
    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 ] = "֘A޷Ă܂Ƃ߂...";
    Text[ korean ] = "  ˻...";
    Text[ chinese_simplified ] = "ĵ...";
    Text[ chinese_traditional ] = "˯s...";
    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 ] = "DZԷ̼:";
    Text[ chinese_simplified ] = "趨";
    Text[ chinese_traditional ] = "]wG";
    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 ] = "`Ou@O@";
    Text[ turkish ] = "Tablo korumas her zaman kaldrlyor";
    Text[ arabic ] = "     ";
    Text[ finnish ] = "Lomake on aina suojaamaton";
    Text[ catalan ] = "Anular siempre la proteccin de hoja";
};