summaryrefslogtreecommitdiff
path: root/dbaccess/source/ui/tabledesign/table.src
blob: 35e4ecac74688d0aec0166d8483a7b2c4e558346 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
/*************************************************************************
 *
 *  $RCSfile: table.src,v $
 *
 *  $Revision: 1.31 $
 *
 *  last change: $Author: oj $ $Date: 2001-07-16 07:56:28 $
 *
 *  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): _______________________________________
 *
 *
 ************************************************************************/

#ifndef _DBU_RESOURCE_HRC_
#include "dbu_resource.hrc"
#endif
#ifndef _DBA_DBACCESS_HELPID_HRC_
#include "dbaccess_helpid.hrc"
#endif
#ifndef _DBACCESS_SLOTID_HRC_
#include "dbaccess_slotid.hrc"
#endif
#ifndef DBACCESS_UI_BROWSER_ID_HXX
#include "browserids.hxx"
#endif
#ifndef _GLOBLMN_HRC
#include <svx/globlmn.hrc>
#endif
#ifndef DBAUI_TOOLBOX_HXX
#include "toolbox.hrc"
#endif

#define MN_EDIT     20
#define MN_VIEW     21
#define MN_EXTRA    22
#define MN_INDEX    23
#define MN_WIN      30
#define MN_HELP     31


#define MID_INDEXDESIGN \
    Identifier = SID_INDEXDESIGN ; \
    Text = "I~ndexentwurf..." ; \
    Text [ english ] = "I~ndex Desgin..." ; \
    Text [ english_us ] = "~Index Design...";   \
    Text[ portuguese ] = "E~sbo�ar �ndice..."; \
    Text[ russian ] = "������ �������..."; \
    Text[ greek ] = "���������� ����������"; \
    Text[ dutch ] = "~Ontwerp-index..."; \
    Text[ french ] = "�bauche d'i~ndex..."; \
    Text[ spanish ] = "D~ise�o de �ndice..."; \
    Text[ finnish ] = "I~ndexentwurf"; \
    Text[ italian ] = "~Struttura indice..."; \
    Text[ danish ] = "Index Desgin"; \
    Text[ swedish ] = "I~ndexutkast..."; \
    Text[ polish ] = "~Projekt indeksu..."; \
    Text[ portuguese_brazilian ] = "Index Desgin"; \
    Text[ japanese ] = "���ޯ���޻޲�(~I)..."; \
    Text[ korean ] = "��� ����(~I)"; \
    Text[ chinese_simplified ] = "�������(~I)..."; \
    Text[ chinese_traditional ] = "���޳]�p(~I)..."; \
    Text[ turkish ] = "Index Desgin"; \
    Text[ arabic ] = "����� ������"; \
    Text[ catalan ] = "Index Desgin";


String STR_TABLEDESIGN_DBFIELDTYPES
{
    //Text = "Unbekannt;Text;Zahl;Datum/Zeit;Datum;Zeit;Ja/Nein;W�hrung;Memo;Z�hler;Bild;Text (fix);Dezimal;Bin�rfeld (fix);Bin�rfeld;BigInt;Double;Float;Real;Integer;Small Integer;Tiny Integer;SQL Null;Objekt;Distinct;Struktur;Feld;BLOB;CLOB;REF;OTHER" ;

    Text [ language_user1 ] = "the sorting of the text doesn't be changed and every type must be translated";

    Text = "Unbekannt;Text;Zahl;Datum/Zeit;Datum;Zeit;Ja/Nein;W�hrung;Memo;Z�hler;Bild;Text (fix);Dezimal;Bin�rfeld (fix);Bin�rfeld;BigInt;Double;Float;Real;Integer;Small Integer;Tiny Integer;SQL Null;Objekt;Distinct;Struktur;Feld;BLOB;CLOB;REF;OTHER" ;
    Text [ ENGLISH ] = "Unknown;Text;Number;Date/Time;Date;Time;Boolean;Currency;Memo;Counter;Image;Text (fix);Decimal;Binary (fix);Binary;BigInt;Double;Float;Real;Integer;Small Integer;Tiny Integer;SQL Null;Object;Distinct;Struct;Feld;BLOB;CLOB;REF;OTHER" ;
    Text[ english_us ] = "Unknown;Text;Number;Date/Time;Date;Time;Yes/No;Currency;Memo;Counter;Image;Text (fix);Decimal;Binary (fix);Binary;BigInt;Double;Float;Real;Integer;Small Integer;Tiny Integer;SQL Null;Object;Distinct;Structure;Field;BLOB;CLOB;REF;OTHER";
    Text[ portuguese ] = "Desconhecido;Texto;N�mero;Data/Hora;Data;Hora;Sim/N�o;Moeda;Memorando;Contador;Imagem;Texto (fixo);Decimal;CampoBin�rio (fixo);CampoBin�rio;BigInt;Double;Float;Real;Integer;Small Integer;Tiny Integer;SQL Null;Objekt;Distinct;Estrutura;Campo;BLOB;CLOB;REF;OTHER";
    Text[ russian ] = "����������;�����;�����;����/�����;����;�����;��/���;������;�������;�������;��������;����� (����.);����������;�������� ���� (����.);�������� ����;BigInt;Double;Float;Real;Integer;Small Integer;Tiny Integer;SQL ����;������;Distinct;���������;����;BLOB;CLOB;REF;OTHER";
    Text[ greek ] = "�������;�������;�������;����������/���;����������;���;���/���;�������;��������;��������;������;������� (�������);��������;������� ����� (�������);������� �����;BigInt;Double;Float;Real;Integer;Small Integer;Tiny Integer;SQL Null;�����������;Distinct;����;�����;BLOB;CLOB;REF;OTHER";
    Text[ dutch ] = "Onbekend;Tekst;Nummer;Datum/Tijd;Datum;Tijd;Ja/Nee;Valuta;Memo;Teller;Afbeelding;Tekst (vast);Decimaal;Binair (vast);Binair;BigInt;Double;Float;Real;Integer;Small Integer;Tiny Integer;SQL Null;Object;Distinct;Structuur;Veld;BLOB;CLOB;REF;OTHER";
    Text[ french ] = "Inconnu;Texte;Nombre;Date/Heure;Date;Heure;Oui/Non;Monnaie;M�mo;Compteur;Image;Texte (fixe);D�cimal;Champ binaire (fixe);Champ binaire;BigInt;Double;Float;Real;Integer;Small Integer;Tiny Integer;SQL Null;Objet;Distinct;Structure;Champ;BLOB;CLOB;REF";
    Text[ spanish ] = "Desconocido;Texto;N�mero;Fecha/Hora;Fecha;Hora;S�/No;Moneda;Nota;Contador;Imagen;Texto(fijo);Decimal;Campo binario(fijo);Campo binario;BigInt;Double;Float;Real;Integer;Small Integer;Tiny Integer;SQL Null;Objeto;Distinct;Estructura;Campo;BLOB;CLOB;REF;OTHER";
    Text[ italian ] = "Sconosciuto;Testo;Numero;Data/Ora;Data;Ora;S�/No;Valuta;Memo;Contatore;Immagine;Testo(fisso);Decimale;Campo binario (fisso);Campo binario;BigInt;Doppio;Fluttuante;Reale;Integrale;Piccolo integrale;Tiny Integrale;SQL nullo;Oggetto;Distinto;Struttura;Campo;BLOB;CLOB;REF;OTHER";
    Text[ danish ] = "Unknown;Text;Number;Date/Time;Date;Time;Boolean;Currency;Memo;Counter;Image;Text (fix);Decimal;Binary (fix);Binary;BigInt;Double;Float;Real;Integer;Small Integer;Tiny Integer;SQL Null;Object;Distinct;Struct;Feld;BLOB;CLOB;REF";
    Text[ swedish ] = "Ok�nd;Text;Tal;Datum/Tid;Datum;Tid;Ja/Nej;Valuta;PM;R�knare;Bild;Text (fast);Decimal;Bin�rt f�lt (fast);Bin�rf�lt;BigInt;Double;Float;Real;Integer;Small Integer;Tiny Integer;SQL Null;Objekt;Distinct;Struktur;F�lt;BLOB;CLOB;REF;OTHER";
    Text[ polish ] = "Nieznany;Tekst;Liczba;Data/Godzina;Data;Godzina;Tak/Nie;Waluta;Memorandum;Licznik;Obraz;Tekst (sta�y);Dziesi�tny;Pole binarne (sta�e);BigInt;Double;Float;Real;Integer;Small Integer;Tiny Integer;SQL Zero;Obiekt;Distinct;Struktura;Pole;BLOB;CLOB;REF;OTHER";
    Text[ portuguese_brazilian ] = "Unknown;Text;Number;Date/Time;Date;Time;Boolean;Currency;Memo;Counter;Image;Text (fix);Decimal;Binary (fix);Binary;BigInt;Double;Float;Real;Integer;Small Integer;Tiny Integer;SQL Null;Object;Distinct;Struct;Feld;BLOB;CLOB;REF";
    Text[ japanese ] = "�s��;÷��;����;���t/����;���t;����;�͂�/������;�ʉݒP��;��;����;�Ұ��;÷��(�Œ�);�\\�i�@;��i�@̨����(�Œ�);��i�@̨����;BigInt;Double;Float;Real;Integer;Small Integer;Tiny Integer;SQL ���;��޼ު��;Distinct;�\\��;̨����;BLOB;CLOB;REF";
    Text[ korean ] = "�˷��� ���� ����;�ؽ�Ʈ;��;��¥/�ð�;��¥;�ð�;��/�ƴϿ�;ȭ��;�޸�;ī����;�̹���;�ؽ�Ʈ (����);10��;2�� (����);2��;BigInt;����;�ε�;Real;����;���� ����;���� ����;SQL ��;��ü;Distinct;Struct;�ʵ�;BLOB;CLOB;REF;OTHER";
    Text[ chinese_simplified ] = "����;����;����;����/ʱ��;����;ʱ��;��/��;����;Memo;����;ͼ��;����(�̶�);ʮ����;������(�̶�);������;BigInt;Double;Float;Real;Integer;Small Integer;Tiny Integer;SQL Null;Objekt;Distinct;Struktur;Feld;BLOB;CLOB;REF;����";
    Text[ chinese_traditional ] = "����;��r;�Ʀr;���/�ɶ�;���;�ɶ�;�O/�_;�f��;Memo;�p��;�v��;��r(�T�w);�Q�i��;�G�i��(�T�w);�G�i��;BigInt;Double;Float;Real;Integer;Small Integer;Tiny Integer;SQL Null;Object;Distinct;Structure;Field;BLOB;CLOB;REF;�䥦";
    Text[ turkish ] = "Unknown;Text;Number;Date/Time;Date;Time;Boolean;Currency;Memo;Counter;Image;Text (fix);Decimal;Binary (fix);Binary;BigInt;Double;Float;Real;Integer;Small Integer;Tiny Integer;SQL Null;Object;Distinct;Struct;Feld;BLOB;CLOB;REF";
    Text[ arabic ] = "��� �����;��;���;�����/���;�����;���;���/��;����;�����;����;����;�� (����);����;����� (����);�����;BigInt;Double;Float;Real;Integer;Small Integer;Tiny Integer;SQL Null;����;Dis";
    Text[ catalan ] = "Desconocido;Texto;N�mero;Fecha/Hora;Fecha;Hora;S�/No;Moneda;Nota;Contador;Imagen;Texto(fijo);Decimal;Campo binario(fijo);Campo binario;BigInt;Double;Float;Real;Integer;Small Integer;Tiny Integer;SQL Null;Objeto;Distinct;Estructura;Campo;BLOB;CLOB;REF;OTHER";
    Text[ finnish ] = "Unbekannt;Text;Zahl;Datum/Zeit;Datum;Zeit;Ja/Nein;W�hrung;Memo;Z�hler;Bild;Text (fix);Dezimal;Bin�rfeld (fix);Bin�rfeld;BigInt;Double;Float;Real;Integer;Small Integer;Tiny Integer;SQL Null;Objekt;Distinct;Struktur;Feld;BLOB;CLOB;REF;OTHER";
};

String STR_TABLEDESIGN_UNDO_PRIMKEY
{
    Text = "Prim�rschl�ssel einf�gen/entfernen" ;
    Text [ english_us ] = "Insert/remove primary key" ;
    Text [ portuguese_brazilian ] = "Prim?rschl?sel einf?en/entfernen" ;
    Text [ swedish ] = "Infoga/ta bort prim�rnyckel" ;
    Text [ danish ] = "Inds�t/fjern prim�rn�gle" ;
    Text [ italian ] = "Inserisci/elimina la chiave primaria" ;
    Text [ spanish ] = "Insertar/eliminar llave primaria" ;
    Text [ french ] = "Ins�rer/supprimer une cl� primaire" ;
    Text [ dutch ] = "Primaire sleutel invoegen/verwijderen" ;
    Text [ portuguese ] = "Inserir/remover chave prim�ria" ;
    Text[ chinese_simplified ] = "������ɾ�����ؼ���";
    Text[ russian ] = "��������/������ ��������� ����";
    Text[ polish ] = "Wstaw /Usu� g��wny klucz";
    Text[ japanese ] = "��ײ�ط��̑}���ƍ폜";
    Text[ chinese_traditional ] = "���J�ΧR���D����r";
    Text[ arabic ] = "�����/��� ������� �������";
    Text[ dutch ] = "Primaire sleutel invoegen/verwijderen";
    Text[ chinese_simplified ] = "������ɾ�����ؼ���";
    Text[ greek ] = "��������/�������� �������� ������";
    Text[ korean ] = "�⺻Ű ����/����";
    Text[ turkish ] = "Birinci anahtar ekle/kald�r";
    Text[ language_user1 ] = " ";
    Text[ catalan ] = "Insertar/eliminar llave primaria";
    Text[ finnish ] = "Prim�rschl�ssel einf�gen/entfernen";
};

String STR_VALUE_YES
{
    Text = "Ja" ;
    Text [ ENGLISH ] = "Yes" ;
    Text [ dutch ] = "Ja" ;
    Text [ english_us ] = "Yes" ;
    Text [ italian ] = "S�" ;
    Text [ spanish ] = "S�" ;
    Text [ french ] = "Oui" ;
    Text [ swedish ] = "Ja" ;
    Text [ danish ] = "Ja" ;
    Text [ portuguese_brazilian ] = "Ja" ;
    Text [ portuguese ] = "Sim" ;
    Text[ chinese_simplified ] = "��";
    Text[ russian ] = "��";
    Text[ polish ] = "Tak";
    Text[ japanese ] = "�͂�";
    Text[ chinese_traditional ] = "�O";
    Text[ arabic ] = "���";
    Text[ dutch ] = "Ja";
    Text[ chinese_simplified ] = "��";
    Text[ greek ] = "���";
    Text[ korean ] = "��";
    Text[ turkish ] = "Evet";
    Text[ language_user1 ] = " ";
    Text[ catalan ] = "S�";
    Text[ finnish ] = "Kyll�";
};
String STR_VALUE_NO
{
    Text = "Nein" ;
    Text [ ENGLISH ] = "No" ;
    Text [ dutch ] = "Nee" ;
    Text [ english_us ] = "No" ;
    Text [ italian ] = "No" ;
    Text [ spanish ] = "No" ;
    Text [ french ] = "Non" ;
    Text [ swedish ] = "Nej" ;
    Text [ danish ] = "Nej" ;
    Text [ portuguese_brazilian ] = "Nein" ;
    Text [ portuguese ] = "N�o" ;
    Text[ chinese_simplified ] = "��";
    Text[ russian ] = "���";
    Text[ polish ] = "Nie";
    Text[ japanese ] = "������";
    Text[ chinese_traditional ] = "�_";
    Text[ arabic ] = "��";
    Text[ dutch ] = "Nee";
    Text[ chinese_simplified ] = "��";
    Text[ greek ] = "���";
    Text[ korean ] = "�ƴϿ�";
    Text[ turkish ] = "Hay�r";
    Text[ language_user1 ] = " ";
    Text[ catalan ] = "No";
    Text[ finnish ] = "Ei";
};
String STR_VALUE_ASC
{
    Text = "Aufsteigend" ;
    Text [ ENGLISH ] = "Ascending" ;
    Text [ dutch ] = "Oplopend" ;
    Text [ english_us ] = "Ascending" ;
    Text [ italian ] = "Crescente" ;
    Text [ spanish ] = "Ascendente" ;
    Text [ french ] = "Croissant" ;
    Text [ swedish ] = "Stigande" ;
    Text [ danish ] = "Stigende" ;
    Text [ portuguese_brazilian ] = "Aufsteigend" ;
    Text [ portuguese ] = "Ascendente" ;
    Text[ chinese_simplified ] = "����";
    Text[ russian ] = "�� �����������";
    Text[ polish ] = "Rosn�co";
    Text[ japanese ] = "����";
    Text[ chinese_traditional ] = "�V�W";
    Text[ arabic ] = "������";
    Text[ dutch ] = "Oplopend";
    Text[ chinese_simplified ] = "����";
    Text[ greek ] = "�������";
    Text[ korean ] = "��������";
    Text[ turkish ] = "Artan";
    Text[ language_user1 ] = " ";
    Text[ catalan ] = "Ascendente";
    Text[ finnish ] = "nouseva";
};
String STR_VALUE_DESC
{
    Text = "Absteigend" ;
    Text [ ENGLISH ] = "Descending" ;
    Text [ english_us ] = "Descending" ;
    Text [ italian ] = "Decrescente" ;
    Text [ spanish ] = "Descendente" ;
    Text [ french ] = "D�croissant" ;
    Text [ dutch ] = "Aflopend" ;
    Text [ swedish ] = "Fallande" ;
    Text [ danish ] = "Faldende" ;
    Text [ portuguese_brazilian ] = "Absteigend" ;
    Text [ portuguese ] = "Descendente" ;
    Text[ chinese_simplified ] = "����";
    Text[ russian ] = "�� ��������";
    Text[ polish ] = "Malej�co";
    Text[ japanese ] = "�~��";
    Text[ chinese_traditional ] = "�V�U";
    Text[ arabic ] = "������";
    Text[ dutch ] = "Aflopend";
    Text[ chinese_simplified ] = "����";
    Text[ greek ] = "��������";
    Text[ korean ] = "��������";
    Text[ turkish ] = "Azalan";
    Text[ language_user1 ] = " ";
    Text[ catalan ] = "Descendente";
    Text[ finnish ] = "laskeva";
};
String STR_VALUE_NONE
{
    // Bemerkung : sollte auch in anderen Sprachen irgendwie zum Wort 'Wert' passen : Wert - keiner ....
    Text = "<keiner>" ;
    Text [ ENGLISH ] = "<keiner>" ;
    Text[ italian ] = "<senza>";
    Text[ portuguese_brazilian ] = "<keiner>";
    Text[ portuguese ] = "<nenhum>";
    Text[ danish ] = "<ingen>";
    Text[ french ] = "<aucun(e)>";
    Text[ swedish ] = "<ingen>";
    Text[ dutch ] = "<geen>";
    Text[ spanish ] = "<ninguno>";
    Text[ english_us ] = "<none>";
    Text[ chinese_simplified ] = "<��>";
    Text[ russian ] = "<���>";
    Text[ polish ] = "<brak>";
    Text[ japanese ] = "<�Ȃ�>";
    Text[ chinese_traditional ] = "<�L>";
    Text[ arabic ] = "<����>";
    Text[ dutch ] = "<geen>";
    Text[ chinese_simplified ] = "<��>";
    Text[ greek ] = "<������>";
    Text[ korean ] = "<����>";
    Text[ turkish ] = "<yok>";
    Text[ language_user1 ] = "";
    Text[ catalan ] = "<ninguno>";
    Text[ finnish ] = "<Ei mit��n>";
};

String STR_TAB_FIELD_NAME
{
    Text = "Feldname" ;
    Text [ ENGLISH ] = "Field name" ;
    Text [ english_us ] = "Field Name" ;
    Text [ italian ] = "Nome di campo" ;
    Text [ spanish ] = "Nombre del campo" ;
    Text [ french ] = "Nom de champ" ;
    Text [ dutch ] = "Veldnaam" ;
    Text [ swedish ] = "F�ltnamn" ;
    Text [ danish ] = "Feltnavn" ;
    Text [ portuguese_brazilian ] = "Feldname" ;
    Text [ portuguese ] = "Nome do campo" ;
    Text[ chinese_simplified ] = "�ֶ�����";
    Text[ russian ] = "��� ����";
    Text[ polish ] = "Nazwa pola";
    Text[ japanese ] = "̨���ޖ�";
    Text[ chinese_traditional ] = "���W��";
    Text[ arabic ] = "��� �����";
    Text[ dutch ] = "Veldnaam";
    Text[ chinese_simplified ] = "�ֶ�����";
    Text[ greek ] = "����� ������";
    Text[ korean ] = "�ʵ� �̸�";
    Text[ turkish ] = "Alan ad�";
    Text[ language_user1 ] = " ";
    Text[ catalan ] = "Nombre del campo";
    Text[ finnish ] = "Kent�n nimi";
};
String STR_TAB_FIELD_DATATYPE
{
    Text = "Feldtyp" ;
    Text [ ENGLISH ] = "Field type" ;
    Text [ english_us ] = "Field Type" ;
    Text [ italian ] = "Tipo di campo" ;
    Text [ spanish ] = "Tipo de campo" ;
    Text [ french ] = "Type de champ" ;
    Text [ dutch ] = "Veldtype" ;
    Text [ swedish ] = "F�lttyp" ;
    Text [ danish ] = "Felttype" ;
    Text [ portuguese_brazilian ] = "Feldtyp" ;
    Text [ portuguese ] = "Tipo de campo" ;
    Text[ chinese_simplified ] = "�ֶ�����";
    Text[ russian ] = "��� ����";
    Text[ polish ] = "Typ pola";
    Text[ japanese ] = "̨���ނ̎��";
    Text[ chinese_traditional ] = "�������";
    Text[ arabic ] = "��� �����";
    Text[ dutch ] = "Veldtype";
    Text[ chinese_simplified ] = "�ֶ�����";
    Text[ greek ] = "����� ������";
    Text[ korean ] = "�ʵ� ����";
    Text[ turkish ] = "Alan t�r�";
    Text[ language_user1 ] = " ";
    Text[ catalan ] = "Tipo de campo";
    Text[ finnish ] = "Kentt�tyyppi";
};
String STR_TAB_FIELD_LENGTH
{
    Text = "Feldl�nge" ;
    Text [ ENGLISH ] = "Field length" ;
    Text [ english_us ] = "Field length" ;
    Text [ italian ] = "Lunghezza di campo" ;
    Text [ spanish ] = "Longitud de campo" ;
    Text [ french ] = "Longueur de champ" ;
    Text [ dutch ] = "Veldlengte" ;
    Text [ swedish ] = "F�ltl�ngd" ;
    Text [ danish ] = "Feltl�ngde" ;
    Text [ portuguese_brazilian ] = "Feldl?nge" ;
    Text [ portuguese ] = "Comprimento do campo" ;
    Text[ chinese_simplified ] = "�ֶγ���";
    Text[ russian ] = "����� ����";
    Text[ polish ] = "D�ugo�� pola";
    Text[ japanese ] = "̨���ނ̒���";
    Text[ chinese_traditional ] = "������";
    Text[ arabic ] = "��� �����";
    Text[ dutch ] = "Veldlengte";
    Text[ chinese_simplified ] = "�ֶγ���";
    Text[ greek ] = "����� ������";
    Text[ korean ] = "�ʵ� ����";
    Text[ turkish ] = "Alan uzunlu�u";
    Text[ language_user1 ] = " ";
    Text[ catalan ] = "Longitud de campo";
    Text[ finnish ] = "Feldl�nge";
};
String STR_TAB_FIELD_DESCR
{
    Text = "Beschreibung" ;
    Text [ ENGLISH ] = "Description" ;
    Text [ english_us ] = "Description" ;
    Text [ portuguese_brazilian ] = "Beschreibung" ;
    Text [ swedish ] = "Beskrivning" ;
    Text [ danish ] = "Beskrivelse" ;
    Text [ italian ] = "Descrizione" ;
    Text [ spanish ] = "Descripci�n" ;
    Text [ french ] = "Description" ;
    Text [ dutch ] = "Omschrijving" ;
    Text [ portuguese ] = "Descri��o" ;
    Text[ chinese_simplified ] = "˵��";
    Text[ russian ] = "��������";
    Text[ polish ] = "Opis";
    Text[ japanese ] = "�T�v";
    Text[ chinese_traditional ] = "�y�z";
    Text[ arabic ] = "���";
    Text[ dutch ] = "Omschrijving";
    Text[ chinese_simplified ] = "˵��";
    Text[ greek ] = "���������";
    Text[ korean ] = "����";
    Text[ turkish ] = "Tan�m";
    Text[ language_user1 ] = " ";
    Text[ catalan ] = "Descripci�n";
    Text[ finnish ] = "Kommentti";
};
String STR_TAB_FIELD_NULLABLE
{
    Text = "Eingabe erforderlich" ;
    Text [ ENGLISH ] = "Input required" ;
    Text [ dutch ] = "Invoer verlangd" ;
    Text [ english_us ] = "Input required" ;
    Text [ italian ] = "Digitazione necessaria" ;
    Text [ spanish ] = "Se requiere entrada" ;
    Text [ french ] = "Saisie requise" ;
    Text [ swedish ] = "Inmatning kr�vs" ;
    Text [ danish ] = "Input kr�ves" ;
    Text [ portuguese_brazilian ] = "Eingabe erforderlich" ;
    Text [ portuguese ] = "Entrada necess�ria" ;
    Text[ chinese_simplified ] = "Ҫ������";
    Text[ russian ] = "��������� ����";
    Text[ polish ] = "Wymagany jest wpis";
    Text[ japanese ] = "���͂��K�v";
    Text[ chinese_traditional ] = "�n�D��J���";
    Text[ arabic ] = "����� �����";
    Text[ dutch ] = "Invoer verlangd";
    Text[ chinese_simplified ] = "Ҫ������";
    Text[ greek ] = "���������� ��������";
    Text[ korean ] = "�Է��� �䱸��";
    Text[ turkish ] = "Veri giri�i gerekiyor";
    Text[ language_user1 ] = " ";
    Text[ catalan ] = "Se requiere entrada";
    Text[ finnish ] = "Merkint� pakollinen";
};
String STR_FIELD_AUTOINCREMENT
{
    Text = "~Auto-Wert" ;
    Text [ ENGLISH ] = "Auto value" ;
    Text[ italian ] = "Valore ~automatico";
    Text[ portuguese_brazilian ] = "Auto value";
    Text[ portuguese ] = "~Valor autom�tico";
    Text[ danish ] = "AutoV�rdi";
    Text[ french ] = "A~utoValeur";
    Text[ swedish ] = "~AutoV�rde";
    Text[ dutch ] = "~AutoWaarde";
    Text[ spanish ] = "~Valor autom�tico";
    Text[ english_us ] = "~AutoValue";
    Text[ chinese_simplified ] = "�Զ���ֵ(~A)";
    Text[ russian ] = "~������������";
    Text[ polish ] = "Warto�� automatyczna";
    Text[ japanese ] = "�������͒l(~A)";
    Text[ chinese_traditional ] = "�۰ʼƭ�(~A)";
    Text[ arabic ] = "���� �������";
    Text[ dutch ] = "~AutoWaarde";
    Text[ chinese_simplified ] = "�Զ���ֵ(~A)";
    Text[ greek ] = "~��������";
    Text[ korean ] = "�ڵ���(~A)";
    Text[ turkish ] = "~Otomatik de�er";
    Text[ language_user1 ] = " ";
    Text[ catalan ] = "~Valor autom�tico";
    Text[ finnish ] = "~Auto-Wert";
};
String STR_TAB_PROPERTIES
{
    Text = "Feldeigenschaften" ;
    Text [ ENGLISH ] = "Field properties" ;
    Text [ english_us ] = "Field Properties" ;
    Text [ portuguese_brazilian ] = "Feldeigenschaften" ;
    Text [ swedish ] = "F�ltegenskaper" ;
    Text [ danish ] = "Feltegenskaber" ;
    Text [ italian ] = "Propriet� di campo" ;
    Text [ spanish ] = "Propiedades del campo" ;
    Text [ french ] = "Propri�t�s du champ" ;
    Text [ dutch ] = "Veldeigenschappen" ;
    Text [ portuguese ] = "Propriedades do campo" ;
    Text[ chinese_simplified ] = "�ֶ�����";
    Text[ russian ] = "�������� ����";
    Text[ polish ] = "W�a�ciwo�ci pola";
    Text[ japanese ] = "̨���ނ̑���";
    Text[ chinese_traditional ] = "����ݩ�";
    Text[ arabic ] = "����� �����";
    Text[ dutch ] = "Veldeigenschappen";
    Text[ chinese_simplified ] = "�ֶ�����";
    Text[ greek ] = "��������� ������";
    Text[ korean ] = "�ʵ� �������";
    Text[ turkish ] = "Alan �zellikleri";
    Text[ language_user1 ] = " ";
    Text[ catalan ] = "Propiedades del campo";
    Text[ finnish ] = "Feldeigenschaften";
};
String STR_TABPAGE_GENERAL
{
    Text = "Allgemein" ;
    Text [ ENGLISH ] = "General" ;
    Text [ english_us ] = "General" ;
    Text [ portuguese_brazilian ] = "Allgemein" ;
    Text [ swedish ] = "Allm�nt" ;
    Text [ danish ] = "Generelt" ;
    Text [ italian ] = "Generale" ;
    Text [ spanish ] = "General" ;
    Text [ french ] = "G�n�ral" ;
    Text [ dutch ] = "Algemeen" ;
    Text [ portuguese ] = "Geral" ;
    Text[ chinese_simplified ] = "����";
    Text[ russian ] = "�����";
    Text[ polish ] = "Og�lne";
    Text[ japanese ] = "�S��";
    Text[ chinese_traditional ] = "�@��";
    Text[ arabic ] = "���";
    Text[ dutch ] = "Algemeen";
    Text[ chinese_simplified ] = "����";
    Text[ greek ] = "������";
    Text[ korean ] = "�Ϲ�";
    Text[ turkish ] = "Genel";
    Text[ language_user1 ] = " ";
    Text[ catalan ] = "General";
    Text[ finnish ] = "Yleinen";
};
String STR_TAB_TABLE_DESCRIPTION
{
    Text = "Beschreibung :" ;
    Text [ ENGLISH ] = "Description :" ;
    Text[ english_us ] = "Description:";
    Text[ portuguese ] = "Descri��o:";
    Text[ greek ] = "��������� :";
    Text[ dutch ] = "Omschrijving :";
    Text[ french ] = "Description :";
    Text[ spanish ] = "Descripci�n :";
    Text[ swedish ] = "Beskrivning :";
    Text[ russian ] = "�������� :";
    Text[ italian ] = "Descrizione :";
    Text[ danish ] = "Beskrivelse :";
    Text[ polish ] = "Opis :";
    Text[ portuguese_brazilian ] = "Description :";
    Text[ japanese ] = "�T�v:";
    Text[ korean ] = "���� :";
    Text[ chinese_simplified ] = "˵����";
    Text[ chinese_traditional ] = "�y�z�G";
    Text[ arabic ] = "����� :";
    Text[ turkish ] = "Tan�m :";
    Text[ catalan ] = "Descripci�n :";
    Text[ finnish ] = "Beschreibung :";
};

String STR_TAB_TABLE_PROPERTIES
{
    Text = "Tabelleneigenschaften" ;
    Text [ ENGLISH ] = "Table properties" ;
    Text[ english_us ] = "Table properties";
    Text[ portuguese ] = "Propriedades da tabela";
    Text[ greek ] = "��������� �������";
    Text[ dutch ] = "Tabeleigenschappen";
    Text[ french ] = "Propri�t�s de la table";
    Text[ spanish ] = "Propiedades de la tabla";
    Text[ swedish ] = "Tabellegenskaper";
    Text[ russian ] = "�������� �������";
    Text[ italian ] = "Propriet� tabella";
    Text[ danish ] = "Tabelegenskaber";
    Text[ polish ] = "W�a�ciwo�ci tabeli";
    Text[ portuguese_brazilian ] = "Table properties";
    Text[ japanese ] = "ð��ق̑���";
    Text[ korean ] = "���̺� �������";
    Text[ chinese_simplified ] = "��������";
    Text[ chinese_traditional ] = "�����ݩ�";
    Text[ arabic ] = "����� ������";
    Text[ turkish ] = "Tablo �zellikleri";
    Text[ language_user1 ] = " ";
    Text[ catalan ] = "Propiedades de la tabla";
    Text[ finnish ] = "Tabelleneigenschaften";
};

Control RID_DB_TAB_EDITOR
{
    Pos = MAP_APPFONT ( 0 , 0 ) ;
    Size = MAP_APPFONT ( 40 , 12 ) ;
    TabStop = TRUE ;
    SvLook = TRUE ;
    Hide = TRUE ;
    HelpId = HID_TABDESIGN_BACKGROUND ;
};

ErrorBox ERR_INVALID_LISTBOX_ENTRY
{
    Message = "Der eingegebenen Text ist kein Element der Liste." ;
    Message [ English ] = "The text entry does not belong to the list" ;
    Message [ english_us ] = "The text you entered is not a list element. " ;
    Message [ italian ] = "Il testo digitato non � un elemento della lista." ;
    Message [ spanish ] = "Este texto introducido no pertenece a la lista." ;
    Message [ french ] = "Le texte saisi n'est pas un �l�ment de la liste." ;
    Message [ dutch ] = "De tekstinvoer is geen element van de lijst." ;
    Message [ swedish ] = "Den inmatade texten �r inget element i listan." ;
    Message [ danish ] = "Den indtastede tekst er ikke et element i listen." ;
    Message [ portuguese_brazilian ] = "Der eingegebenen Text ist kein Element der Liste." ;
    Message [ portuguese ] = "O texto digitado n�o faz parte da lista." ;
    Message[ chinese_simplified ] = "��������ֲ����е���Ԫ��";
    Message[ russian ] = "��������� ����� �� �������� ��������� ������.";
    Message[ polish ] = "Wprowadzony tekst nie jest elementem listy.";
    Message[ japanese ] = "���͂���÷�Ă�ؽĂ̗v�f�ł͂���܂���B";
    Message[ chinese_traditional ] = "��J����r���O�M��椸�C";
    Message[ arabic ] = "���� ������� ��� �� ��� ����� �������.";
    Message[ dutch ] = "De tekstinvoer is geen element van de lijst.";
    Message[ chinese_simplified ] = "��������ֲ����е���Ԫ��";
    Message[ greek ] = "�� ������� ��� �������� ��� ����� �������� ��� ������.";
    Message[ korean ] = "�Էµ� �ؽ�Ʈ�� ����� �׸��� �ƴմϴ�.";
    Message[ turkish ] = "Girilen metin, liste ��esi de�il.";
    Message[ language_user1 ] = " ";
    Message[ catalan ] = "Este texto introducido no pertenece a la lista.";
    Message[ finnish ] = "Der eingegebenen Text ist kein Element der Liste.";
};

Menu RID_TABLEDESIGNROWPOPUPMENU
{
    ItemList =
    {
    MenuItem
    {
        ITEM_EDIT_CUT
    };
    MenuItem
    {
        ITEM_EDIT_COPY
    };
    MenuItem
    {
        ITEM_EDIT_PASTE
    };
    MenuItem
    {
        ITEM_EDIT_DELETE
    };
    MenuItem
    {
        Identifier = SID_TABLEDESIGN_INSERTROWS ;
        HelpID = SID_TABLEDESIGN_INSERTROWS ;
        Text = "Zeilen einf�gen" ;
        Text [ ENGLISH ] = "Insert rows" ;
        Text [ english_us ] = "Insert Rows" ;
        Text [ portuguese_brazilian ] = "Zeilen einf?en" ;
        Text [ swedish ] = "Infoga rader" ;
        Text [ danish ] = "Inds�t r�kker" ;
        Text [ italian ] = "Inserisci righe" ;
        Text [ spanish ] = "Insertar filas" ;
        Text [ french ] = "Ins�rer des lignes" ;
        Text [ dutch ] = "Rijen invoegen" ;
        Text [ portuguese ] = "Inserir linhas" ;
        Text[ chinese_simplified ] = "������";
            Text[ russian ] = "�������� ������";
            Text[ polish ] = "Wstaw wiersze";
            Text[ japanese ] = "�s�̑}��";
            Text[ chinese_traditional ] = "���J�C";
            Text[ arabic ] = "����� ����";
            Text[ dutch ] = "Rijen invoegen";
            Text[ chinese_simplified ] = "������";
            Text[ greek ] = "�������� �������";
            Text[ korean ] = "�� ����";
            Text[ turkish ] = "Sat�r ekle";
            Text[ language_user1 ] = " ";
            Text[ catalan ] = "Insertar filas";
            Text[ finnish ] = "Lis�� rivit";
        };
    MenuItem
    {
        Separator = TRUE ;
    };
    MenuItem
    {
        Identifier = SID_TABLEDESIGN_TABED_PRIMARYKEY ;
        HelpID = SID_TABLEDESIGN_TABED_PRIMARYKEY ;
        Checkable = TRUE ;
        Text = "Prim�rschl�ssel" ;
        Text [ ENGLISH ] = "Primary key" ;
        Text [ english_us ] = "Primary Key" ;
        Text [ portuguese_brazilian ] = "Prim?rschl?sel" ;
        Text [ swedish ] = "Prim�rnyckel" ;
        Text [ danish ] = "Prim�rn�gle" ;
        Text [ italian ] = "Chiave primaria" ;
        Text [ spanish ] = "Llave primaria" ;
        Text [ french ] = "Cl� primaire" ;
        Text [ dutch ] = "Primaire sleutel" ;
        Text [ portuguese ] = "Chave prim�ria" ;
        Text[ chinese_simplified ] = "���ؼ���";
            Text[ russian ] = "��������� ����";
            Text[ polish ] = "Klucz g��wny";
            Text[ japanese ] = "��ײ�ط�";
            Text[ chinese_traditional ] = "�D����r";
            Text[ arabic ] = "����� �����";
            Text[ dutch ] = "Primaire sleutel";
            Text[ chinese_simplified ] = "���ؼ���";
            Text[ greek ] = "�������� ������";
            Text[ korean ] = "�⺻Ű";
            Text[ turkish ] = "Birinci anahtar";
            Text[ language_user1 ] = " ";
            Text[ catalan ] = "Llave primaria";
            Text[ finnish ] = "Prim�rschl�ssel";
        };
    };
};
String STR_TABED_UNDO_CELLMODIFIED
{
    Text = "Zelle �ndern" ;
    Text [ english_us ] = "Modify cell" ;
    Text [ portuguese ] = "Modificar c�lula" ;
    Text [ portuguese_brazilian ] = "Zelle ?ndern" ;
    Text [ swedish ] = "�ndra cell" ;
    Text [ danish ] = "Modificer celle" ;
    Text [ italian ] = "Modifica cella" ;
    Text [ spanish ] = "Modificar celda" ;
    Text [ french ] = "Modifier une cellule" ;
    Text [ dutch ] = "Cel veranderen" ;
    Text[ chinese_simplified ] = "���ĵ�Ԫ��";
    Text[ russian ] = "�������� ������";
    Text[ polish ] = "Modyfikuj kom�rk�";
    Text[ japanese ] = "�ق̕ύX";
    Text[ chinese_traditional ] = "�ק��x�s��";
    Text[ arabic ] = "����� ������";
    Text[ dutch ] = "Cel veranderen";
    Text[ chinese_simplified ] = "���ĵ�Ԫ��";
    Text[ greek ] = "����������� ������";
    Text[ korean ] = "�� ����";
    Text[ turkish ] = "H�creyi de�i�tir";
    Text[ language_user1 ] = " ";
    Text[ catalan ] = "Modificar celda";
    Text[ finnish ] = "Zelle �ndern";
};
String STR_TABED_UNDO_ROWDELETED
{
    Text = "Zeile l�schen" ;
    Text [ english_us ] = "Delete row" ;
    Text [ portuguese_brazilian ] = "Zeile l?chen" ;
    Text [ swedish ] = "Radera rad" ;
    Text [ danish ] = "Slet r�kke" ;
    Text [ italian ] = "Elimina riga" ;
    Text [ spanish ] = "Eliminar fila" ;
    Text [ french ] = "Supprimer la ligne" ;
    Text [ dutch ] = "Rij wissen" ;
    Text [ portuguese ] = "Eliminar linha" ;
    Text[ chinese_simplified ] = "ɾ����";
    Text[ russian ] = "������� ������";
    Text[ polish ] = "Usu� wiersz";
    Text[ japanese ] = "�s�̍폜";
    Text[ chinese_traditional ] = "�R���C";
    Text[ arabic ] = "��� ��";
    Text[ dutch ] = "Rij wissen";
    Text[ chinese_simplified ] = "ɾ����";
    Text[ greek ] = "�������� �������";
    Text[ korean ] = "�� ����";
    Text[ turkish ] = "Sat�r� sil";
    Text[ language_user1 ] = " ";
    Text[ catalan ] = "Eliminar fila";
    Text[ finnish ] = "Poista rivi";
};
String STR_TABED_UNDO_TYPE_CHANGED
{
    Text = "Feldtype �ndern" ;
    Text [ ENGLISH ] = "Feldtype �ndern" ;
    Text[ italian ] = "Cambia tipi di campo";
    Text[ portuguese_brazilian ] = "Feldtype ?ndern";
    Text[ portuguese ] = "Modificar tipo de campo";
    Text[ danish ] = "Modificer felttype";
    Text[ french ] = "Modifier le type de champ";
    Text[ swedish ] = "�ndra f�lttyp";
    Text[ dutch ] = "Veldtype veranderen";
    Text[ spanish ] = "Modificar tipo de campo";
    Text[ english_us ] = "Modify Field Type";
    Text[ chinese_simplified ] = "�����ֶ�����";
    Text[ russian ] = "�������� ��� ����";
    Text[ polish ] = "Zmie� typ pola";
    Text[ japanese ] = "̨���ނ̎�ނ̕ύX";
    Text[ chinese_traditional ] = "�ܧ��������";
    Text[ arabic ] = "����� ��� �����";
    Text[ dutch ] = "Veldtype veranderen";
    Text[ chinese_simplified ] = "�����ֶ�����";
    Text[ greek ] = "������ ����� ������";
    Text[ korean ] = "�ʵ����� ����";
    Text[ turkish ] = "Alan t�r�n� de�i�tir";
    Text[ language_user1 ] = " ";
    Text[ catalan ] = "Modificar tipo de campo";
    Text[ finnish ] = "Feldtype �ndern";
};
String STR_TABED_UNDO_ROWINSERTED
{
    Text = "Zeile einf�gen" ;
    Text [ english_us ] = "Insert row" ;
    Text [ portuguese_brazilian ] = "Zeile einf?en" ;
    Text [ swedish ] = "Infoga rad" ;
    Text [ danish ] = "Inds�t r�kke" ;
    Text [ italian ] = "Inserisci riga" ;
    Text [ spanish ] = "Insertar fila" ;
    Text [ french ] = "Ins�rer une ligne" ;
    Text [ dutch ] = "Rij invoegen" ;
    Text [ portuguese ] = "Inserir linha" ;
    Text[ chinese_simplified ] = "������";
    Text[ russian ] = "�������� ������";
    Text[ polish ] = "Wstaw wiersz";
    Text[ japanese ] = "�s�̑}��";
    Text[ chinese_traditional ] = "���J�C";
    Text[ arabic ] = "����� ��";
    Text[ dutch ] = "Rij invoegen";
    Text[ chinese_simplified ] = "������";
    Text[ greek ] = "�������� �������";
    Text[ korean ] = "�� ����";
    Text[ turkish ] = "Sat�r ekle";
    Text[ language_user1 ] = " ";
    Text[ catalan ] = "Insertar fila";
    Text[ finnish ] = "Lis�� rivit";
};
String STR_TABED_UNDO_NEWROWINSERTED
{
    Text = "Neue Zeile einf�gen" ;
    Text [ english_us ] = "Insert new row" ;
    Text [ portuguese_brazilian ] = "Neue Zeile einf?en" ;
    Text [ swedish ] = "Infoga ny rad" ;
    Text [ danish ] = "Inds�t ny r�kke" ;
    Text [ italian ] = "Inserisci riga nuova" ;
    Text [ spanish ] = "Insertar nueva fila" ;
    Text [ french ] = "Ins�rer une nouvelle ligne" ;
    Text [ dutch ] = "Nieuwe rij invoegen" ;
    Text [ portuguese ] = "Inserir nova linha" ;
    Text[ chinese_simplified ] = "������";
    Text[ russian ] = "�������� ����� ������";
    Text[ polish ] = "Wstaw nowy wiersz";
    Text[ japanese ] = "�V�����s�̑}��";
    Text[ chinese_traditional ] = "���J�C";
    Text[ arabic ] = "����� ��� ����";
    Text[ dutch ] = "Nieuwe rij invoegen";
    Text[ chinese_simplified ] = "������";
    Text[ greek ] = "�������� ���� �������";
    Text[ korean ] = "�� ���� ����";
    Text[ turkish ] = "Yeni sat�r ekle";
    Text[ language_user1 ] = " ";
    Text[ catalan ] = "Insertar nueva fila";
    Text[ finnish ] = "Neue Zeile einf�gen";
};
String STR_TABED_UNDO_PRIMKEY
{
    Text = "Prim�rschl�ssel einf�gen/entfernen" ;
    Text [ english_us ] = "Insert/remove primary key" ;
    Text [ portuguese_brazilian ] = "Prim?rschl?sel einf?en/entfernen" ;
    Text [ swedish ] = "Infoga/ta bort prim�rnyckel" ;
    Text [ danish ] = "Inds�t/fjern prim�rn�gle" ;
    Text [ italian ] = "Inserisci/elimina la chiave primaria" ;
    Text [ spanish ] = "Insertar/eliminar llave primaria" ;
    Text [ french ] = "Ins�rer/supprimer une cl� primaire" ;
    Text [ dutch ] = "Primaire sleutel invoegen/verwijderen" ;
    Text [ portuguese ] = "Inserir/remover chave prim�ria" ;
    Text[ chinese_simplified ] = "������ɾ�����ؼ���";
    Text[ russian ] = "��������/������ ��������� ����";
    Text[ polish ] = "Wstaw /Usu� g��wny klucz";
    Text[ japanese ] = "��ײ�ط��̑}���ƍ폜";
    Text[ chinese_traditional ] = "���J�ΧR���D����r";
    Text[ arabic ] = "�����/��� ������� �������";
    Text[ dutch ] = "Primaire sleutel invoegen/verwijderen";
    Text[ chinese_simplified ] = "������ɾ�����ؼ���";
    Text[ greek ] = "��������/�������� �������� ������";
    Text[ korean ] = "�⺻Ű ����/����";
    Text[ turkish ] = "Birinci anahtar ekle/kald�r";
    Text[ language_user1 ] = " ";
    Text[ catalan ] = "Insertar/eliminar llave primaria";
    Text[ finnish ] = "Prim�rschl�ssel einf�gen/entfernen";
};

ToolBox RID_BRW_TABLEDESIGN_TOOLBOX
{
    SVLook = TRUE ;
    Pos = MAP_APPFONT ( 3 , 1 ) ;
    Size = MAP_APPFONT ( 200 , 14 ) ;
    OutputSize = TRUE ;
    Align = BOXALIGN_TOP ;
    ItemImageList = RID_DEFAULTIMAGELIST_SC ;
    HideWhenDeactivate = TRUE ;
    HelpId = HID_TLB_TABLEDESIGN ;

    ItemList =
    {
        ToolBoxItem
        {
            Identifier = ID_BROWSER_EDITDOC ;
            HelpId = SID_EDITDOC ;
            Text = "Bearbeiten" ;
            Text [ ENGLISH ] = "Bearbeiten" ;
            Text[ english_us ] = "Edit";
            Text[ portuguese ] = "Editar";
            Text[ russian ] = "������";
            Text[ greek ] = "�����������";
            Text[ dutch ] = "Bewerken";
            Text[ french ] = "�diter";
            Text[ spanish ] = "Editar";
            Text[ italian ] = "Modifica";
            Text[ danish ] = "Rediger";
            Text[ swedish ] = "Redigera";
            Text[ polish ] = "Edytuj";
            Text[ portuguese_brazilian ] = "Bearbeiten";
            Text[ japanese ] = "�ҏW";
            Text[ korean ] = "����";
            Text[ chinese_simplified ] = "�༭";
            Text[ chinese_traditional ] = "�s��";
            Text[ turkish ] = "D�zenle";
            Text[ arabic ] = "�����";
            Text[ catalan ] = "Editar";
            Text[ finnish ] = "Muokkaa";
        };
        ToolBoxItem
        {
            Type = TOOLBOXITEM_SEPARATOR ;
        };
        ToolBoxItem
        {
            Identifier = ID_BROWSER_SAVEDOC ;
            HelpId = SID_SAVEDOC ;
            Text = "Speichern" ;
            Text [ ENGLISH ] = "Save" ;
            Text[ english_us ] = "Save";
            Text[ portuguese ] = "Guardar";
            Text[ russian ] = "���������";
            Text[ greek ] = "����������";
            Text[ dutch ] = "Opslaan";
            Text[ french ] = "Enregistrer";
            Text[ spanish ] = "Guardar";
            Text[ italian ] = "Salva";
            Text[ danish ] = "Save";
            Text[ swedish ] = "Spara";
            Text[ polish ] = "Zapisz";
            Text[ portuguese_brazilian ] = "Save";
            Text[ japanese ] = "�ۑ�";
            Text[ korean ] = "����";
            Text[ chinese_simplified ] = "����";
            Text[ chinese_traditional ] = "�x�s";
            Text[ turkish ] = "Save";
            Text[ arabic ] = "���";
            Text[ catalan ] = "Guardar";
            Text[ finnish ] = "Tallenna";
        };
        ToolBoxItem
        {
            ITEM_FILE_SAVEASDOC
            Command = ".uno:SaveAsDoc";
        };
        ToolBoxItem
        {
            Type = TOOLBOXITEM_SEPARATOR ;
        };
        ToolBoxItem
        {
            Identifier = SID_INDEXDESIGN ;
            HelpId = SID_INDEXDESIGN ;
            MID_INDEXDESIGN
        };
        ToolBoxItem
        {
            Type = TOOLBOXITEM_SEPARATOR ;
        };
        ToolBoxItem
        {
            Identifier = ID_BROWSER_CUT ;
            HelpId = SID_CUT ;
            MID_SBA_QRY_CUT
        };
        ToolBoxItem
        {
            Identifier = ID_BROWSER_COPY ;
            HelpId = SID_COPY ;
            MID_SBA_QRY_COPY
        };
        ToolBoxItem
        {
            Identifier = ID_BROWSER_PASTE ;
            HelpId = SID_PASTE ;
            MID_SBA_QRY_PASTE
        };
        ToolBoxItem
        {
            Type = TOOLBOXITEM_SEPARATOR ;
        };
        ToolBoxItem
        {
            Identifier = ID_BROWSER_UNDO ;
            HelpId = SID_UNDO ;
            Text = "R�ckg�ngig" ;
            Text [ ENGLISH ] = "Undo" ;
            Text[ english_us ] = "Undo";
            Text[ portuguese ] = "Anular";
            Text[ russian ] = "��������";
            Text[ greek ] = "��������";
            Text[ dutch ] = "Ongedaan";
            Text[ french ] = "Annuler";
            Text[ spanish ] = "Deshacer";
            Text[ italian ] = "Annulla";
            Text[ danish ] = "Undo";
            Text[ swedish ] = "�ngra";
            Text[ polish ] = "Cofnij";
            Text[ portuguese_brazilian ] = "Undo";
            Text[ japanese ] = "���ɖ߂�";
            Text[ korean ] = "�������";
            Text[ chinese_simplified ] = "��������";
            Text[ chinese_traditional ] = "�_��";
            Text[ turkish ] = "Undo";
            Text[ arabic ] = "�����";
            Text[ catalan ] = "Deshacer";
            Text[ finnish ] = "peruuta";
        };
        ToolBoxItem
        {
            Identifier = ID_BROWSER_REDO ;
            HelpId = SID_REDO ;
            Text = "Wiederherstellen" ;
            Text [ ENGLISH ] = "Redo" ;

            Text[ english_us ] = "Redo";
            Text[ portuguese ] = "Restaurar";
            Text[ russian ] = "������������";
            Text[ greek ] = "���������";
            Text[ dutch ] = "Herstellen";
            Text[ french ] = "Restaurer";
            Text[ spanish ] = "Restaurar";
            Text[ italian ] = "Ripristina";
            Text[ danish ] = "Redo";
            Text[ swedish ] = "�terst�ll";
            Text[ polish ] = "Przywr��";
            Text[ portuguese_brazilian ] = "Redo";
            Text[ japanese ] = "��蒼��";
            Text[ korean ] = "����";
            Text[ chinese_simplified ] = "�ָ���������";
            Text[ chinese_traditional ] = "��_�M�����O";
            Text[ turkish ] = "Redo";
            Text[ arabic ] = "�����";
            Text[ catalan ] = "Restaurar";
            Text[ finnish ] = "Toista";
        };
        ToolBoxItem
        {
            Identifier  = ID_TABLE_DESIGN_NO_CONNECTION;
            HelpId      = HID_TABLE_DESIGN_NO_CONNECTION ;
            Hide = TRUE;
            ItemImage = IMG_DATABASE;

            Text = "Keine Verbindung" ;
            Text [ ENGLISH ] = "No connection" ;
            Text[ english_us ] = "No Connection";
            Text[ portuguese ] = "Sem liga��o";
            Text[ russian ] = "��� ����������";
            Text[ greek ] = "��� ������� �������";
            Text[ dutch ] = "Geen verbinding";
            Text[ french ] = "Aucun connexion";
            Text[ spanish ] = "Sin conexi�n";
            Text[ italian ] = "Nessun collegamento";
            Text[ danish ] = "No connection";
            Text[ swedish ] = "Ingen f�rbindelse";
            Text[ polish ] = "Brak po��czenia";
            Text[ portuguese_brazilian ] = "No connection";
            Text[ japanese ] = "�ڑ��Ȃ�";
            Text[ korean ] = "������� ����";
            Text[ chinese_simplified ] = "�޷�����";
            Text[ chinese_traditional ] = "�S���s�u";
            Text[ turkish ] = "No connection";
            Text[ arabic ] = "�� ���� �����";
            Text[ catalan ] = "No connection";
            Text[ finnish ] = "Keine Verbindung";
        };
    };
};
String STR_DEFAULT_VALUE
{
    Text = "~Defaultwert" ;
    Text [ ENGLISH ] = "Default" ;
    Text [ english_us ] = "~Default value" ;
    Text [ portuguese_brazilian ] = "Defaultwert" ;
    Text [ swedish ] = "Stan~dardv�rde" ;
    Text [ danish ] = "Standardv�rdi" ;
    Text [ italian ] = "~Valore predefinito" ;
    Text [ spanish ] = "Valor pre~determinado" ;
    Text [ french ] = "Valeur par ~d�faut" ;
    Text [ dutch ] = "~Standaardwaarde" ;
    Text [ portuguese ] = "~Valor padr�o" ;
    Text[ chinese_simplified ] = "Ĭ��ֵ(~D)";
    Text[ russian ] = "�������� �� ���������";
    Text[ polish ] = "Warto�� domy�lna";
    Text[ japanese ] = "�W���l(~D)";
    Text[ chinese_traditional ] = "�q�{��(~D)";
    Text[ arabic ] = "���� ��������";
    Text[ dutch ] = "~Standaardwaarde";
    Text[ chinese_simplified ] = "Ĭ��ֵ(~D)";
    Text[ greek ] = "���� �����������";
    Text[ korean ] = "�⺻��(~D)";
    Text[ turkish ] = "~Standart de�er";
    Text[ language_user1 ] = " ";
    Text[ catalan ] = "Valor pre~determinado";
    Text[ finnish ] = "~Defaultwert";
};
String STR_FIELD_REQUIRED
{
    Text = "~Eingabe erforderlich" ;
    Text [ ENGLISH ] = "Field required." ;
    Text [ english_us ] = "~Entry required" ;
    Text [ portuguese_brazilian ] = "Eingabe erforderlich" ;
    Text [ swedish ] = "In~matning kr�vs" ;
    Text [ danish ] = "Input kr�ves" ;
    Text [ italian ] = "Di~gitazione necessaria" ;
    Text [ spanish ] = "~Entrada requerida" ;
    Text [ french ] = "~Saisie requise" ;
    Text [ dutch ] = "~Invoer verlangd" ;
    Text [ portuguese ] = "~Entrada necess�ria" ;
    Text[ chinese_simplified ] = "Ҫ������(~E)";
    Text[ russian ] = "��������� ����";
    Text[ polish ] = "Wymagany jest wpis";
    Text[ japanese ] = "���͂��K�v(~E)";
    Text[ chinese_traditional ] = "������J���(~E)";
    Text[ arabic ] = "����� �����";
    Text[ dutch ] = "~Invoer verlangd";
    Text[ chinese_simplified ] = "Ҫ������(~E)";
    Text[ greek ] = "�����~����� ��������";
    Text[ korean ] = "�Է� �ʼ�(~E)";
    Text[ turkish ] = "~Giri� gerekiyor";
    Text[ language_user1 ] = " ";
    Text[ catalan ] = "~Entrada requerida";
    Text[ finnish ] = "~Eingabe erforderlich";
};
String STR_TEXT_LENGTH
{
    Text = "~L�nge" ;
    Text [ ENGLISH ] = "Length" ;
    Text [ english_us ] = "~Length" ;
    Text [ portuguese_brazilian ] = "L?nge" ;
    Text [ swedish ] = "~L�ngd" ;
    Text [ danish ] = "L�ngde" ;
    Text [ italian ] = "~Lunghezza" ;
    Text [ spanish ] = "~Longitud" ;
    Text [ french ] = "~Longueur" ;
    Text [ dutch ] = "~Lengte" ;
    Text [ portuguese ] = "~Comprimento" ;
    Text[ chinese_simplified ] = "����(~L)";
    Text[ russian ] = "�����";
    Text[ polish ] = "D�ugo��";
    Text[ japanese ] = "����(~L)";
    Text[ chinese_traditional ] = "����(~L)";
    Text[ arabic ] = "�����";
    Text[ dutch ] = "~Lengte";
    Text[ chinese_simplified ] = "����(~L)";
    Text[ greek ] = "�����";
    Text[ korean ] = "����(~L)";
    Text[ turkish ] = "~Uzunluk";
    Text[ language_user1 ] = " ";
    Text[ catalan ] = "~Longitud";
    Text[ finnish ] = "~Pituus";
};
String STR_NUMERIC_TYPE
{
    Text = "~Typ" ;
    Text [ ENGLISH ] = "Type" ;
    Text [ english_us ] = "~Type" ;
    Text [ portuguese_brazilian ] = "Typ" ;
    Text [ swedish ] = "~Typ" ;
    Text [ danish ] = "Type" ;
    Text [ italian ] = "~Tipo" ;
    Text [ spanish ] = "Tip~o" ;
    Text [ french ] = "~Type" ;
    Text [ dutch ] = "~Type" ;
    Text [ portuguese ] = "~Tipo" ;
    Text[ chinese_simplified ] = "����(~T)";
    Text[ russian ] = "���";
    Text[ polish ] = "Typ";
    Text[ japanese ] = "���(~T)";
    Text[ chinese_traditional ] = "����(~T)";
    Text[ arabic ] = "�����";
    Text[ dutch ] = "~Type";
    Text[ chinese_simplified ] = "����(~T)";
    Text[ greek ] = "~�����";
    Text[ korean ] = "����(~T)";
    Text[ turkish ] = "~Tip";
    Text[ language_user1 ] = " ";
    Text[ catalan ] = "Tip~o";
    Text[ finnish ] = "~Tyyppi";
};
String STR_LENGTH
{
    Text = "~L�nge" ;
    Text [ ENGLISH ] = "Length" ;
    Text [ english_us ] = "~Length" ;
    Text [ portuguese_brazilian ] = "Tamanho" ;
    Text [ swedish ] = "~L�ngd" ;
    Text [ danish ] = "L�ngde" ;
    Text [ italian ] = "Lun~ghezza" ;
    Text [ spanish ] = "Ta~ma�o" ;
    Text [ french ] = "~Longueur" ;
    Text [ dutch ] = "~Lengte" ;
    Text [ portuguese ] = "~Comprimento" ;
    Text[ chinese_simplified ] = "����(~L)";
    Text[ russian ] = "�����";
    Text[ polish ] = "D�ugo��";
    Text[ japanese ] = "����(~L)";
    Text[ chinese_traditional ] = "����(~L)";
    Text[ arabic ] = "�����";
    Text[ dutch ] = "~Lengte";
    Text[ chinese_simplified ] = "����(~L)";
    Text[ greek ] = "�����";
    Text[ korean ] = "����(~L)";
    Text[ turkish ] = "~Uzunluk";
    Text[ language_user1 ] = " ";
    Text[ catalan ] = "Ta~ma�o";
    Text[ finnish ] = "~Pituus";
};
String STR_SCALE
{
    Text = "~Nachkommastellen" ;
    Text [ ENGLISH ] = "Scale" ;
    Text [ english_us ] = "Decimal ~places" ;
    Text [ portuguese_brazilian ] = "Nachkommastellen" ;
    Text [ swedish ] = "Decimalpositio~ner" ;
    Text [ danish ] = "Antal decimaler" ;
    Text [ italian ] = "Posizio~ni decimali" ;
    Text [ spanish ] = "~Decimales" ;
    Text [ french ] = "~D�cimales" ;
    Text [ dutch ] = "~Cijfers achter de komma" ;
    Text [ portuguese ] = "Casas ~decimais" ;
    Text[ chinese_simplified ] = "С����λ��(~P)";
    Text[ russian ] = "����� ������ ����� �������";
    Text[ polish ] = "Miejsca po przecinku";
    Text[ japanese ] = "�����_�ȉ��̌���(~P)";
    Text[ chinese_traditional ] = "�p���I���(~P)";
    Text[ arabic ] = "������� �������";
    Text[ dutch ] = "~Cijfers achter de komma";
    Text[ chinese_simplified ] = "С����λ��(~P)";
    Text[ greek ] = "�������� �����";
    Text[ korean ] = "�Ҽ��� ���� �ڸ�(~P)";
    Text[ turkish ] = "~Ondal�k basamaklar";
    Text[ language_user1 ] = " ";
    Text[ catalan ] = "~Decimales";
    Text[ finnish ] = "~Nachkommastellen";
};
String STR_FORMAT
{
    Text = "Format-Beispiel" ;
    Text [ ENGLISH ] = "Format sample" ;
    Text[ italian ] = "Esempio di formato";
    Text[ portuguese_brazilian ] = "Format-Code";
    Text[ portuguese ] = "Exemplo de formato";
    Text[ danish ] = "Format eksempel";
    Text[ french ] = "Exemple de format";
    Text[ swedish ] = "Formatexempel";
    Text[ dutch ] = "Opmaakvoorbeeld";
    Text[ spanish ] = "Ejemplo de formato";
    Text[ english_us ] = "Format example";
    Text[ chinese_simplified ] = "��ʽʾ��";
    Text[ language_user1 ] = " ";
    Text[ russian ] = "������ �������";
    Text[ polish ] = "Przyk�ad formatu";
    Text[ japanese ] = "���������";
    Text[ chinese_traditional ] = "�榡�ܽd";
    Text[ arabic ] = "���� �������";
    Text[ dutch ] = "Opmaakvoorbeeld";
    Text[ chinese_simplified ] = "��ʽʾ��";
    Text[ greek ] = "���������� ������������";
    Text[ korean ] = "���� ��";
    Text[ turkish ] = "Format �rne�i";
    Text[ catalan ] = "Ejemplo de formato";
    Text[ finnish ] = "Format-Beispiel";
};
String STR_HELP_BOOL_DEFAULT
{
    Text = "W�hlen Sie einen Wert, der in jedem neu eingef�gten Datensatz als Standard erscheinen soll.\nW�hlen Sie den leeren String, wenn das Feld keinen solchen Standardwert haben soll." ;
    Text [ ENGLISH ] = "W�hlen Sie einen Wert, der in jedem neu eingef�gten Datensatz als Standard erscheinen soll.\nW�hlen Sie den leeren String, wenn das Feld keinen solchen Standardwert haben soll." ;
    Text[ italian ] = "Selezionate un valore da inserire come valore standard in ogni nuovo record di dati.\nSelezionate la sequenza vuota per non impostare nessun valore standard.";
    Text[ portuguese_brazilian ] = "W?hlen Sie einen Wert, der in jedem neu eingef?ten Datensatz als Standard erscheinen soll.\nW?hlen Sie den leeren String, wenn das Feld keinen solchen Standardwert haben soll.";
    Text[ portuguese ] = "Seleccione o valor a aparecer como padr�o em cada novo registo de dados introduzido.\nSeleccione a sequ�ncia vazia, se o campo n�o tiver que apresentar nenhum valor padr�o.";
    Text[ danish ] = "V�lg en v�rdi, som skal vises som standard i hver ny datapost.\nV�lg den tomme streng, hvis feltet ikke skal have en standardv�rdi.";
    Text[ french ] = "D�finissez la valeur � faire figurer comme valeur par d�faut dans tous les nouveaux enregistrements.\\Si le champ ne doit pas adopter de valeur par d�faut, choisissez la cha�ne vide.";
    Text[ swedish ] = "V�lj ett v�rde som skall visas som standard i varje ny infogad datapost.\nV�lj den tomma str�ngen om f�ltet inte skall ha n�got standardv�rde.";
    Text[ dutch ] = "Kies een waarde die in iedere nieuw ingevoegd record als standaard moet verschijnen.\nKies een lege string als u niet wilt dat het veld de standaardwaarde krijgt toegewezen.";
    Text[ spanish ] = "Elija el valor que deba aparecer como est�ndar en cada registro de datos que se\ninserte de nuevo. Elija la secuencia vac�a si el campo no ha de contener tal valor est�ndar.";
    Text[ english_us ] = "Select a value that is to appear in all new records as default.\nIf the field is not to have a default value, select the empty string.";
    Text[ chinese_simplified ] = "��ѡ��һ������ÿ����������Ŀ�ı�׼��ֵ��\n����ֶβ�Ӧ���������׼��ֵ������ѡ��һ���հ׵��ִ���";
    Text[ russian ] = "�������� ��������, ������� ������ ���������� � ������ ����� ��������� ������ ��� �����������.\n�������� ������ ������, ���� ���� �� ������ ��������� ������ ��������.";
    Text[ polish ] = "Wybierz warto��, kt�ra w ka�dym nowo wstawionym rekordzie b�dzie warto�ci� domy�ln�.\nWybierz pusty ci�g znak�w, je�li pole nie ma mie� domy�lnej warto�ci.";
    Text[ japanese ] = "�V����ں��ނ�}������Ƃ��ɕ\\�������W���l��I�����܂��B\n�܂�̨���ނɕW���l�ݒ�����Ȃ��Ƃ��́A�󔒂̂܂܂ɂ��Ă����܂��B";
    Text[ chinese_traditional ] = "�п�ܤ@�ӥΩ�C�@�ӷs�W��Ʊ��ت��зǼƭȡC\n�Y��줣���ӧt���o�ӼзǼƭȡA�N��ܤ@�ӪŦr��C";
    Text[ arabic ] = "������ ������ ������ ���� ��� �� ���� ����� �������� �� �� ��� ���� ��� ������.\n��� ��� ���� ��� ���� ��� ��� ������ ���������ɡ ������ ����";
    Text[ dutch ] = "Kies een waarde die in iedere nieuw ingevoegd record als standaard moet verschijnen.\nKies een lege string als u niet wilt dat het veld de standaardwaarde krijgt toegewezen.";
    Text[ chinese_simplified ] = "��ѡ��һ������ÿ����������Ŀ�ı�׼��ֵ��\n����ֶβ�Ӧ���������׼��ֵ������ѡ��һ���հ׵��ִ���";
    Text[ greek ] = "�������� ��� ����, � ����� �� ����������� �� ���������� �� ���� ��� ������� ��� �� ����������.\n�� ��� ���������� �� ������� ������ ����, ��� ";
    Text[ korean ] = "��� �� ���ڵ带 ���� �ʱⰪ�� �����Ͻʽÿ�.\n�ʵ尡 �̷��� �ʱⰪ�� ���� �ʾƾ� �� ���, �� ���ڿ��� �����Ͻʽÿ�.";
    Text[ turkish ] = "Yeni eklenen her kay�tta standart olarak bulunacak bir de�er se�in.\nAlan i�in bu t�r bir standart de�er belirlenmeyecekse bo� dizilim se�in.";
    Text[ language_user1 ] = " ";
    Text[ catalan ] = "Elija el valor que deba aparecer como est�ndar en cada registro de datos que se\ninserte de nuevo. Elija la secuencia vac�a si el campo no ha de contener tal valor est�ndar.";
    Text[ finnish ] = "W�hlen Sie einen Wert, der in jedem neu eingef�gten Datensatz als Standard erscheinen soll.\nW�hlen Sie den leeren String, wenn das Feld keinen solchen Standardwert haben soll.";
};
String STR_HELP_DEFAULT_VALUE
{
    Text = "Geben Sie hier einen Standardwert f�r das Feld an.\n\nWenn Sie sp�ter Daten in die Tabelle eingeben, wird in jedem neuen Datensatz diese Zeichenkette f�r das aktuelle Feld verwendet. Sie sollte deshalb der weiter unten einzugebenden Zellenformatierung gen�gen." ;
    Text [ english ] = "Enter a default value for this field.\n\nThis string, for the field currently selected is entered into each new record when data is entered into the table. It should, therefore, correspond to the cell format that needs to be entered below." ;
    Text [ english_us ] = "Enter a default value for this field.\n\nWhen you later enter data in the table, this string will be used in each new record for the field selected. It should, therefore, correspond to the cell format that needs to be entered below." ;
    Text [ portuguese_brazilian ] = "Geben Sie hier einen Standardwert fuer das Feld an." ;
    Text [ swedish ] = "Ange ett standardv�rde f�r f�ltet h�r.\n\nN�r du matar in data i tabellen senare anv�nds den h�r teckenstr�ngen f�r det aktuella f�ltet i varje ny datapost. Den b�r d�rf�r motsvara cellformateringen som skall matas in nedan." ;
    Text [ danish ] = "Angiv her en standardv�rdi for dette felt.\n\nN�r du senere indtaster data i denne tabel, bliver denne streng brugt i det aktuelle felt i hver ny datapost. Du b�r derfor tage hensyn til den celleformatering der indtastes nedenfor." ;
    Text [ italian ] = "Specificate qui un valore standard per il campo.\n\nDigitando in seguito dei dati nella tabella, in ogni record di dati nuovo verr� utilizzata questa stringa per il campo attuale. Per questo motivo � necessario che corrisponda al formato della cella da specificare qui di seguito." ;
    Text [ spanish ] = "Especifique aqu� un valor predeterminado para el campo.\n\nSi posteriormente introduce datos en la tabla, en cada registro nuevo se usar� esta cadena de carecteres para el campo actual. Por esta raz�n debe corresponder al formato de celda a introducir m�s abajo." ;
    Text [ french ] = "Saisissez une valeur par d�faut pour le champ.\n\nIl s'agit de la cha�ne de caract�res qui sera utilis�e dans chaque nouvel enregistrement pour le champ actif lorsque vous saisirez des donn�es dans la table. Elle doit donc correspondre au format de cellule � saisir plus bas." ;
    Text [ dutch ] = "Geef hier een standaardwaarde voor het veld aan.\n\nAls u dan later gegevens invoert in de tabel dan wordt deze tekenreeks in iedere nieuwe record gebruikt voor het actuele veld en moet corresponderen met de hierna te defini�ren celopmaak." ;
    Text [ portuguese ] = "Indique um valor padr�o para este campo.\n\nEsta cadeia de caracteres ser� utilizada para todos os novos registos de dados que introduzir no campo activo da tabela. Por esta raz�o, ela deve corresponder ao formato de c�lula a indicar mais abaixo." ;
    Text[ chinese_simplified ] = "���ڴ�Ϊ����ֶ�����һ��Ĭ��ֵ��\n\n������Ժ��ڱ������������ݣ�ÿ���µ�������Ŀ�����������ݸ�ʽ���������趨�����������µĵ�Ԫ���ʽ��Ҫ��";
    Text[ russian ] = "������� �������� �� ��������� ��� ����� ����.\n\n���� �� ����� ������� ������ � �������, �� ��� �������� ���� � ������ ����� ������ ����� �������������� ������ ������ ��������. ������� ��� ������ ��������������� ������� �����, ��������� ����.";
    Text[ polish ] = "Nale�y poda� warto�� domy�ln� pola.\n\nW trakcie p�niejszego wpisywania danych do tabeli, dany ci�g znak�w u�yty zostanie w ka�dym nowym rekordzie odno�nie aktualnego pola. Format ci�gu znak�w powinien zgadza� si� z podanym poni�ej formatem kom�rek.";
    Text[ japanese ] = "������̨���ނ̕W���l����͂��܂��B\n\n���Ƃ����ް���ð��قɓ��͂���ƁA���݂�̨���ނ̕����񂪐V����ں��ނɎg���܂��B�����œ��͂���ق̏����ƍ��킹�Ă����܂��B";
    Text[ chinese_traditional ] = "�бz���o������J�@���q�{�ȡC\n\n�b�o����줧�U��J��L��ƮɴN�|�۰ʱĥγo���x�s�檺�榡�C";
    Text[ arabic ] = "������ ����� ���� �������� ���� �����.\n\n����� ���� ������ ������ �� ������ �� ��� ���ޡ ��� ��� ������� ����� ������ ��� �� �� ��� ����.����";
    Text[ dutch ] = "Geef hier een standaardwaarde voor het veld aan.\n\nAls u dan later gegevens invoert in de tabel dan wordt deze tekenreeks in iedere nieuwe record gebruikt voor het actuele veld en moet corresponderen met de hierna te defini�ren celopmaak.";
    Text[ chinese_simplified ] = "���ڴ�Ϊ����ֶ�����һ��Ĭ��ֵ��\n\n������Ժ��ڱ������������ݣ�ÿ���µ�������Ŀ�����������ݸ�ʽ���������趨�����������µĵ�Ԫ���ʽ��Ҫ��";
    Text[ greek ] = "�������� ��� ���� ����������� ��� �� �����.\n\n�� �������� �������� �� �������� �������� ���� ������ �� �������������� ���� � ���� ��� ���� ? ";
    Text[ korean ] = "�� �ʵ带 ���� �⺻���� �Է��Ͻʽÿ�.\n\n���߿� ���̺��� �����͸� �Է��ϰ� �Ǹ� ��� �� ���ڵ忡�� Ȱ��ȭ�� �ʵ带 ���� �� ���ڿ��� ���� ���Դϴ�. ���� ���ڿ��� �Ʒ��� �Է��� �� ���˿� �����ؾ� �մϴ�.";
    Text[ turkish ] = "Alan i�in bir standart de�er girin.\n\nDaha sonra tabloya veri giri�i yapt���n�zda, her yeni veri k�mesinde, y�r�rl�kteki alan i�in bu dize kullan�l�r. Dize bu nedenle a�a��da girilmesi gereken h�cre format�na uygun olmal�d�r.";
    Text[ language_user1 ] = " ";
    Text[ catalan ] = "Especifique aqu� un valor predeterminado para el campo.\n\nSi posteriormente introduce datos en la tabla, en cada registro nuevo se usar� esta cadena de carecteres para el campo actual. Por esta raz�n debe corresponder al formato de celda a introducir m�s abajo.";
    Text[ finnish ] = "Geben Sie hier einen Standardwert f�r das Feld an.\n\nWenn Sie sp�ter Daten in die Tabelle eingeben, wird in jedem neuen Datensatz diese Zeichenkette f�r das aktuelle Feld verwendet. Sie sollte deshalb der weiter unten einzugebenden Zellenformatierung gen�gen.";
};
String STR_HELP_FIELD_REQUIRED
{
    Text = "Aktivieren Sie diese Option, wenn in diesem Feld keine NULL-Werte erlaubt sind, der Benutzer also immer Daten eingeben muss." ;
    Text [ ENGLISH ] = "Must this field not contain any entries that are empty?" ;
    Text [ english_us ] = "Activate this option if this field cannot contain NULL values, i.e. the user must always enter data." ;
    Text [ portuguese_brazilian ] = "Geben Sie an, ob der Benutzer fuer dieses Feld immer Daten eingeben mu?." ;
    Text [ swedish ] = "Aktivera det h�r alternativet om inga NULL-v�rden �r till�tna i det h�r f�ltet och anv�ndaren allts� alltid m�ste mata in data." ;
    Text [ danish ] = "Aktiver denne indstilling n�r NULL-v�rdier ikke er tilladt i dette felt, dvs. brugeren altid skal indtaste data." ;
    Text [ italian ] = "Attivate questa opzione se nel campo non sono ammessi valori ZERO, ossia se l'utente deve sempre inserire dei dati." ;
    Text [ spanish ] = "Active esta opci�n si no est�n permitidos valores null en este campo, es decir, si el usuario debe introducir los datos siempre." ;
    Text [ french ] = "Activez cette option si ce champ n'accepte aucune valeur NULL et si l'utilisateur doit donc toujours y saisir des donn�es." ;
    Text [ dutch ] = "Activeer deze optie als in dit veld geen NUL-waarde is toegestaan, d.w.z. dat de gebruiker hier altijd iets moet invullen." ;
    Text [ portuguese ] = "Active esta op��o se n�o forem permitidos valores NULL neste campo, tendo o utilizador que introduzir sempre os dados." ;
    Text[ chinese_simplified ] = "�������ֶ��ڲ�����ʹ����ֵ������Ҫ���������ݣ���ѡ��ʹ�����ѡ�";
    Text[ russian ] = "����������� ��� �����, ���� � ���� ���� �� ����������� �������� ����, �.�. ������������ ������ ��������� ������� � ���� ������.";
    Text[ polish ] = "Uaktywnij t� opcj�, je�li niedozwolone s� w tym polu warto�ci ZEROWE, w wi�c je�li u�ytkownik musi zawsze wpisywa� dane.";
    Text[ japanese ] = "����̨���ނɾ�ےl�͎g�킸�A���հ�ް���ް�����͂���悤�ȏꍇ�́A���̵�߼�݂�è�ނɂ��܂��B";
    Text[ chinese_traditional ] = "�p�G�n�]�w�o����줺���i�H��J�s�Ȧӥ�����J���ļƭȮɡA�z�N�����ĥγo�ӿﶵ�C";
    Text[ arabic ] = "�� ������ ��� �����ѡ ��� ���� ����� ������� ������ �� ��� ����� �� ��� ��� ��� �������� ����� ������ ������.";
    Text[ dutch ] = "Activeer deze optie als in dit veld geen NUL-waarde is toegestaan, d.w.z. dat de gebruiker hier altijd iets moet invullen.";
    Text[ chinese_simplified ] = "�������ֶ��ڲ�����ʹ����ֵ������Ҫ���������ݣ���ѡ��ʹ�����ѡ�";
    Text[ greek ] = "������������� ���� ��� ������� ���� ��� ������������ ��������� ����� �� ���� �� �����, ���. ���� � ������� ������ ����������� �� ������� �� ";
    Text[ korean ] = "�� �ʵ忡 �ΰ��� ���Ǿ� ���� �ʾ� ����ڰ� �׻� �����͸� �Է��ؾ� �� ���, �� �ɼ��� Ȱ��ȭ�Ͻʽÿ�.";
    Text[ turkish ] = "Bu se�ene�i, bu alana BO� de�er girilememesi, yani kullan�c�n�n daima vergi girmek zorunda olmas� halinde etkinle�tiriniz.";
    Text[ language_user1 ] = " ";
    Text[ catalan ] = "Active esta opci�n si no est�n permitidos valores null en este campo, es decir, si el usuario debe introducir los datos siempre.";
    Text[ finnish ] = "Aktivieren Sie diese Option, wenn in diesem Feld keine NULL-Werte erlaubt sind, der Benutzer also immer Daten eingeben muss.";
};
String STR_HELP_TEXT_LENGTH
{
    Text = "Geben Sie die maximal zul�ssige Textl�nge an." ;
    Text [ ENGLISH ] = "Enter the maximum of characters in a textfield." ;
    Text [ english_us ] = "Enter the maximum text length permittted." ;
    Text [ portuguese_brazilian ] = "Geben Sie die maximal zulaessige Textl?nge an." ;
    Text [ swedish ] = "Ange den maximalt till�tna textl�ngden." ;
    Text [ danish ] = "Angiv den maksimal tilladte tekstl�ngde." ;
    Text [ italian ] = "Digitare la lunghezza massima ammessa per il testo." ;
    Text [ spanish ] = "Especifique la longitud m�xima permitida de texto." ;
    Text [ french ] = "Indiquez la longueur maximum autoris�e pour le texte." ;
    Text [ dutch ] = "Geef de maximaal toelaatbare tekstlengte aan." ;
    Text [ portuguese ] = "Indique o comprimento m�ximo permitido para o texto." ;
    Text[ chinese_simplified ] = "���趨�����ĵ���ȡ�";
    Text[ russian ] = "������� ����������� ���������� ����� ������.";
    Text[ polish ] = "Podaj maksymalnie dopuszczaln� d�ugo�� tekstu.";
    Text[ japanese ] = "���͂ł���ō����������w�肵�܂��B";
    Text[ chinese_traditional ] = "�г]�w��J��r���̪��ƥءC";
    Text[ arabic ] = "�� ������ ���� ������ �� ������ ������� ��� �� ��� ��.";
    Text[ dutch ] = "Geef de maximaal toelaatbare tekstlengte aan.";
    Text[ chinese_simplified ] = "���趨�����ĵ���ȡ�";
    Text[ greek ] = "�������� ��� �������� ������������� ������ ��� ��������.";
    Text[ korean ] = "�ִ� ��� �ؽ�Ʈ���̸� �Է��Ͻʽÿ�.";
    Text[ turkish ] = "�zin verilen azami metin uzunlu�unu giriniz.";
    Text[ language_user1 ] = " ";
    Text[ catalan ] = "Especifique la longitud m�xima permitida de texto.";
    Text[ finnish ] = "Geben Sie die maximal zul�ssige Textl�nge an.";
};
String STR_HELP_NUMERIC_TYPE
{
    Text = "Legen Sie hier fest, welchen Typ die Zahl haben soll." ;
    Text [ ENGLISH ] = "Enter the number format." ;
    Text [ english_us ] = "Enter the number format." ;
    Text [ portuguese_brazilian ] = "Geben Sie den Zahlentyp an." ;
    Text [ swedish ] = "Definiera typ f�r talet h�r." ;
    Text [ danish ] = "Definer her tallets type." ;
    Text [ italian ] = "Digitate il tipo di numero." ;
    Text [ spanish ] = "Especifique aqu� el formato num�rico." ;
    Text [ french ] = "Sp�cifiez le type de nombre." ;
    Text [ dutch ] = "Geef de getalnotatie aan." ;
    Text [ portuguese ] = "Defina o formato num�rico." ;
    Text[ chinese_simplified ] = "�����ڴ��趨�������͡�";
    Text[ russian ] = "������� ��� �����.";
    Text[ polish ] = "Tutaj nale�y ustali� typ liczby.";
    Text[ japanese ] = "���̏������w�肵�܂��B";
    Text[ chinese_traditional ] = "�г]�w�Ʀr�����C";
    Text[ arabic ] = "�� ������ ��� ����� ���.";
    Text[ dutch ] = "Geef de getalnotatie aan.";
    Text[ chinese_simplified ] = "�����ڴ��趨�������͡�";
    Text[ greek ] = "��������� ��� ����� ��� �������.";
    Text[ korean ] = "���� ������ �����Ͻʽÿ�.";
    Text[ turkish ] = "Rakam tipini belirleyiniz.";
    Text[ language_user1 ] = " ";
    Text[ catalan ] = "Especifique aqu� el formato num�rico.";
    Text[ finnish ] = "Legen Sie hier fest, welchen Typ die Zahl haben soll.";
};
String STR_HELP_LENGTH
{
    Text = "Geben Sie die L�nge f�r Daten in diesem Feld an.\n\nF�r Dezimal-Felder ist das die maximale L�nge der eingegebenen Zahl, f�r Bin�rfelder die L�nge des Datenblockes.\nWenn der Wert gr��er ist als der maximal f�r diese Datenbank zul�ssige, wird er entsprechend korrigiert." ;
    Text [ english_us ] = "Determine the length data can have in this field.\n\nIf decimal fields, then the maximum length of the number to be entered, if binary fields, then the length of the data block.\nThe value will be corrected accordingly when it exceeds the maximum for this database." ;
    Text [ portuguese_brazilian ] = "Geben Sie die L?nge dieses Feldtyps an." ;
    Text [ swedish ] = "Ange l�ngden f�r data i det h�r f�ltet.\n\nF�r decimalf�lt �r det den maximala l�ngden p� det inmatade talet, f�r bin�ra f�lt l�ngden p� datablocket.\nOm v�rdet �r st�rre �n vad som maximalt �r till�tet f�r den h�r databasen, korrigeras det." ;
    Text [ danish ] = "Angiv l�ngden for data i dette felt.\n\nFor decimalfelter er det tallets maksimale l�ngde, for bin�rfelter er det datablokkens l�ngde.\nHvis v�rdien er st�rre en den maksimal tilladte for denne database, bliver den rettet tilsvarende." ;
    Text [ italian ] = "Digitate la lunghezza di questo tipo di campo.\n\nPer i campi decimali la lunghezza massima ammessa � il numero dato, per i campi binari � la lunghezza del blocco dati.\nSe il valore � maggiore di quello ammesso dal database attuale verr� corretto automaticamente." ;
    Text [ spanish ] = "Especifique la longitud de los datos en este tipo de campo.\n\nPara campos decimales ser� la longitud m�xima del n�mero introducido; para campos binarios, la longitud del bloque de datos.\nSi el valor fuera mayor que el m�ximo permitido para esta base de datos, se corregir� correspondientemente." ;
    Text [ french ] = "Indiquez la longueur pour les donn�es de ce champ.\n\n� savoir : pour les champs de type D�cimal, la longueur maximale du nombre � saisir et pour les champs de type Binaire la longueur du bloc de donn�es.\nLa valeur sera corrig�e automatiquement si elle devait d�passer le maximum autoris� pour cette base de donn�es." ;
    Text [ dutch ] = "Geef de lengte van dit veldtype aan.\n\nVoor decimale velden is dit de maximale lengte van het in te vullen getal, voor binaire velden de lengte van het gegevensblok.\nAls het veld langer is dan voor deze database maximaal is toegestaan dan wordt de lengte gecorrigeerd." ;
    Text [ portuguese ] = "Defina o comprimento para os dados deste campo.\n\nPara campos decimais este � o comprimento m�ximo do n�mero indicado; para campos bin�rios � o comprimento do bloco de dados.\nEste valor ser� devidamente corrigido se for superior ao m�ximo permitido para esta base de dados." ;
    Text[ chinese_simplified ] = "�����趨����ֶ��е����ݳ��ȡ�\n\n��ʮ�����ֶ����趨����������󳤶ȣ��ڶ������ֶ����趨�������ݿ鳤�ȡ�\n��������ֵ�������ݿ����������ֵ�����ݿ�ͻ���Ӧ�ظ��������ֵ��";
    Text[ russian ] = "������� ����� ������ ��� ����� ����.\n\n��� ���������� ����� - ��� ������������ ����� ���������� �����, ��� �������� ����� - ��� ����� ����� ������.\n���� �������� �������� ����� ������ ����������� ����������� ��� ���� ���� ������, �� ��� ����� �������������� ����������.";
    Text[ polish ] = "Podaj ��dan� d�ugo�� danych w tym polu.\n\nW przypadku p�l dziesi�tnych okre�la ona maksymaln� d�ugo�� wpisanych liczb, w przypadku p�l birarnych okre�la ona d�ugo�� bloku danych.\nJe�eli warto�� b�dzie przekracza� dopuszczaln� dla tego pola warto�� maksymaln�, zostanie ona odpowiednio skorygowana.";
    Text[ japanese ] = "����̨���ނɓ��͂����ް��̒������w�肵�܂��B\n\n�\\�i�@̨���ނɂ͓��͒l�̍ő包���A��i�@̨���ނɂ��ް���ۯ��̒������w�肵�܂��B\n���͒l�������ް��ް��̍ő���𒴂����ꍇ�́A�C������܂��B";
    Text[ chinese_traditional ] = "�г]�w�o��������������סC\n\n�Q�i�������w���O��J�Ʀr���̪��ƥءA�G�i�����O����ưϰ쪺���סC\n�p�G��J�ƾڶW�L�]�w�d��A�{���N�|�۰ʭץ��C";
    Text[ arabic ] = "������ ����� ��� �������� �� ��� �����.\n\n������� ������ ������� ���� �� ����� ������ ����� ������� ��� ������� ������ �������� ��� ��� ���� ��������.\n��� ���� ������ ���� �� ���� ������ ������� �� �� ����� �������� ��� ���� ��� ������� ������ �������.";
    Text[ dutch ] = "Geef de lengte van dit veldtype aan.\n\nVoor decimale velden is dit de maximale lengte van het in te vullen getal, voor binaire velden de lengte van het gegevensblok.\nAls het veld langer is dan voor deze database maximaal is toegestaan dan wordt de lengte gecorrigeerd.";
    Text[ chinese_simplified ] = "�����趨����ֶ��е����ݳ��ȡ�\n\n��ʮ�����ֶ����趨����������󳤶ȣ��ڶ������ֶ����趨�������ݿ鳤�ȡ�\n��������ֵ�������ݿ����������ֵ�����ݿ�ͻ���Ӧ�ظ��������ֵ��";
    Text[ greek ] = "�������� �� ����� ��� ��������� ��� ���� �� �����.\n\n�� ����� ���� ����� ��� �� ����� ��������� �� ������� ����� ��� ���������� �������, ��� ��� �� ����� �������� �� ����� ���� ����� ���������.\n�� ���� � ���� ����� ���������� ��� ��� ������� ������������ ���� ��� ����� ���������, ���� �� ��������� �������.";
    Text[ korean ] = "�� �ʵ��� ������ ���̸� �����Ͻʽÿ�.\n\n10�� �ʵ��� ��쿡�� �Էµ� ���� �ִ� ����, ���� �ʵ��� ��쿡�� ������ ������ ���̸� �Է��մϴ�.\n���� �� �����ͺ��̽��� �ִ������� ���� ������ ũ�� ������ �����˴ϴ�.";
    Text[ turkish ] = "Bu alandaki veri uzunlu�unu giriniz.\n\nBu uzunluk, ondal�k alanlar i�in girilen say�n�n azami uzunlu�u, ikili alanlar i�in ise veri blo�u uzunlu�udur.\nS�z konusu de�er, bu veritaban� i�in azami olarak izin verilenden daha b�y�k olmas� halinde uygun bir �ekilde d�zeltilecektir.";
    Text[ language_user1 ] = " ";
    Text[ catalan ] = "Especifique la longitud de los datos en este tipo de campo.\n\nPara campos decimales ser� la longitud m�xima del n�mero introducido; para campos binarios, la longitud del bloque de datos.\nSi el valor fuera mayor que el m�ximo permitido para esta base de datos, se corregir� correspondientemente.";
    Text[ finnish ] = "Geben Sie die L�nge f�r Daten in diesem Feld an.\n\nF�r Dezimal-Felder ist das die maximale L�nge der eingegebenen Zahl, f�r Bin�rfelder die L�nge des Datenblockes.\nWenn der Wert gr��er ist als der maximal f�r diese Datenbank zul�ssige, wird er entsprechend korrigiert.";
};
String STR_HELP_SCALE
{
    Text = "Geben Sie an, wie viel Nachkommastellen die Zahlen in diesem Feld enthalten sollen." ;
    Text [ ENGLISH ] = "Enter the number of decimals." ;
    Text [ english_us ] = "Specify the number of decimal places permitted in this field." ;
    Text [ portuguese_brazilian ] = "Geben Sie die Zahl der Nachkommastellen an." ;
    Text [ swedish ] = "Ange hur m�nga decimalpositioner det h�r f�ltet skall inneh�lla." ;
    Text [ danish ] = "Angiv her, hvormange decimaler dette felt skal indeholde." ;
    Text [ italian ] = "Digitate il numero di cifre dopo la virgola." ;
    Text [ spanish ] = "Especifique el n�mero de decimales que deban contener los n�meros en este campo." ;
    Text [ french ] = "Sp�cifiez le nombre de d�cimales pour les nombres de ce champ." ;
    Text [ dutch ] = "Geef het aantal plaatsen achter de komma aan." ;
    Text [ portuguese ] = "Defina o n�mero de casas decimais para este campo." ;
    Text[ chinese_simplified ] = "��Ϊ����ֶ��ڵ������趨С����λ����";
    Text[ russian ] = "������� ���������� �����, ������� ����� �������.";
    Text[ polish ] = "Podaj liczb� miejsc po przecinku, ��dan� w polu.";
    Text[ japanese ] = "����̨���ނň��������_�ȉ��̌�������͂��܂��B";
    Text[ chinese_traditional ] = "�г]�w��줹�\\��J���p���I�Ʀ�C";
    Text[ arabic ] = "�� ������ ��� ������� ������� ���� ��� �� ����� ����� ������� �������� �� ��� �����.";
    Text[ dutch ] = "Geef het aantal plaatsen achter de komma aan.";
    Text[ chinese_simplified ] = "��Ϊ����ֶ��ڵ������趨С����λ����";
    Text[ greek ] = "��������� �� ������ ��� ��������� ������ ��� ������� ����� ��� ������.";
    Text[ korean ] = "�� �ʵ��� ���ڰ� �Ҽ����� �� �ڸ��� �����ؾ� ���� ���Ͻʽÿ�.";
    Text[ turkish ] = "Bu alandaki say�lar�n sahip olmas� gereken ondal�k basamak say�s�n� belirleyiniz.";
    Text[ language_user1 ] = " ";
    Text[ catalan ] = "Especifique el n�mero de decimales que deban contener los n�meros en este campo.";
    Text[ finnish ] = "Geben Sie an, wie viel Nachkommastellen die Zahlen in diesem Feld enthalten sollen.";
};
String STR_HELP_FORMAT_CODE
{
    Text = "Hier sehen Sie, wie die Daten der aktuellen Spalte mit dem aktuell eingestellten Format - das Sie mittels des nebenstehenden Buttons �ndern k�nnen - formatiert werden w�rden.";
    Text[ ENGLISH ] = "Hier sehen Sie, wie die Daten der aktuellen Spalte mit dem aktuell eingestellten Format - das Sie mittels des nebenstehenden Buttons �ndern k�nnen - formatiert werden w�rden.";
    Text[ italian ] = "Qui vedete come � possibile formattare i dati dell'attuale colonna con il formato corrente che potete cambiare con il bottone che si trova qui a fianco.";
    Text[ portuguese_brazilian ] = "Der Format-Code der aktuellen Spalte. Diese Einstellung k?nen Sie nicht direkt, sondern nur mittels des nebenstehenden Buttons ?dern.";
    Text[ portuguese ] = "Aqui pode ver como os dados da coluna actual seriam formatados se utilizasse o formato definido. Para o modificar, clique no bot�o ao lado.";
    Text[ danish ] = "Her vises, hvorledes den aktuelle kolonnes data vil komme til at se ud med det aktuelt indstillede format (brug knapperne til at �ndre formatet).";
    Text[ french ] = "Voici comment les donn�es de la colonne concern�e seront format�es si vous utilisez le format actuellement param�tr�. Pour modifier ce format, cliquez sur le bouton appropri� situ� � c�t�.";
    Text[ swedish ] = "H�r ser du hur data i den aktuella kolumnen skulle formateras med det nu inst�llda formatet, som du kan �ndra med hj�lp av knapparna som finns bredvid.";
    Text[ dutch ] = "Hier ziet u hoe de gegevens in de actuele kolom eruit zouden zien met de actueel ingestelde opmaak. Deze instelling kunt u veranderen met de nevenstaande buttons.";
    Text[ spanish ] = "Aqu� puede ver c�mo ser�an formateados los datos de la columna actual con el formato definido actualmente, que puede modificar con el bot�n que se encuentra al lado.";
    Text[ english_us ] = "This is where you see how the data would be displayed in the current format (use the button on the right to modify the format).";
    Text[ chinese_simplified ] = "�������ܹ�ͨ������Աߵİ�ť�������ĵ�ǰ�е����ݸ�ʽ��";
    Text[ russian ] = "����� �� ������ �������, ��� ����� ��������������� ������ ������� ������� � ��������� ������������� �������, ������� �� ������ �������� ��� ������ ����� ������� ������.";
    Text[ polish ] = "Tutaj wy�wietlony zostanie podgl�d sformatowanych danych aktualnej kolumny. Format mo�na zmieni� klikni�ciem przycisku znajduj�cego si� obok.";
    Text[ japanese ] = "����ް����A���ݐݒ肳�ꂽ�����łǂ��ς�������A�����Ō���܂��B���ɂ������݂��g���ƁA�����̕ύX���ł��܂��B";
    Text[ chinese_traditional ] = "�b�o�رz����ݨ�z�L���@�U���䪺���s���ܧ���e���椺��Ʈ榡�C";
    Text[ arabic ] = "����� ��� ���� ������� ���� ��� ���� �� �������� ��� ������� ������� ������� ������ (����� ����� ��� ������� ������ ������� �������).";
    Text[ dutch ] = "Hier ziet u hoe de gegevens in de actuele kolom eruit zouden zien met de actueel ingestelde opmaak. Deze instelling kunt u veranderen met de nevenstaande buttons.";
    Text[ chinese_simplified ] = "�������ܹ�ͨ������Աߵİ�ť�������ĵ�ǰ�е����ݸ�ʽ��";
    Text[ greek ] = "��� ������� ��� ��� ��� ��������� ��� ��������� ������ �� ����������� � �������� ����� (�������������� �� ������� ����� ��� ��� ������� ��? ";
    Text[ korean ] = "���⿡�� ���� ������ �������� �� ���� ���� ������ (���� �ִ� ��ư�� �̿��Ͽ� ������ ������ �� �ִ�)�� ���˵Ǵ� ���� �� �� �ֽ��ϴ�.";
    Text[ turkish ] = "Burada, se�ili s�tundaki verilerin - yandaki d��me ile de�i�tirebilece�iniz - y�r�rl�kteki ayarlar ile nas�l formatlanaca��n� g�rebilirsiniz.";
    Text[ language_user1 ] = " ";
    Text[ catalan ] = "Aqu� puede ver c�mo ser�an formateados los datos de la columna actual con el formato definido actualmente, que puede modificar con el bot�n que se encuentra al lado.";
    Text[ finnish ] = "Hier sehen Sie, wie die Daten der aktuellen Spalte mit dem aktuell eingestellten Format - das Sie mittels des nebenstehenden Buttons �ndern k�nnen - formatiert werden w�rden.";
};
String STR_HELP_FORMAT_BUTTON
{
    Text = "Hiermit k�nnen Sie festlegen, wie die Daten der Tabelle bei der Ausgabe formatiert werden sollen.";
    Text [ ENGLISH ] = "Hiermit k�nnen Sie festlegen, wie die Daten der Tabelle bei der Ausgabe formatiert werden sollen.";
    Text[ italian ] = "In questo modo potete determinare la formattazione dei dati della tabella all'uscita.";
    Text[ portuguese_brazilian ] = "Hiermit k?nen Sie festlegen, wie die Daten der Tabelle bei der Ausgabe formatiert werden sollen.";
    Text[ portuguese ] = "Permite-lhe definir o formato para a impress�o dos dados da tabela.";
    Text[ danish ] = "Her kan du definere et outputformat for tabellens data.";
    Text[ french ] = "Permet de d�finir le format de sortie des donn�es de la table.";
    Text[ swedish ] = "H�r kan du best�mma hur tabellernas data skall formateras vid utmatning.";
    Text[ dutch ] = "Hiermee kunt u instellen hoe u de gegevens in de tabel wilt opmaken.";
    Text[ spanish ] = "Aqu� puede determinar el tipo de formateado para la salida de los datos de la tabla.";
    Text[ english_us ] = "This is where you determine the output format of the data.";
    Text[ chinese_simplified ] = "���ܹ��������趨����Ĵ�ӡ��ʽ��";
    Text[ russian ] = "����� �� ������ ���������� ������ ������ ������ �������.";
    Text[ polish ] = "Tutaj mo�na ustawi� wyj�ciowy format tabeli.";
    Text[ japanese ] = "�����ŁAð��ق��ް����o�͂���Ƃ��̏������w��ł��܂��B";
    Text[ chinese_traditional ] = "�z����b�o�ų]�w����ƾڪ��C�L�榡�C";
    Text[ arabic ] = "����� ��� ����� ����� ����� ������ ������.";
    Text[ dutch ] = "Hiermee kunt u instellen hoe u de gegevens in de tabel wilt opmaken.";
    Text[ chinese_simplified ] = "���ܹ��������趨����Ĵ�ӡ��ʽ��";
    Text[ greek ] = "��� ����� �� ���������� �� ������� �� ����� ��� �� ���������� ��� �������� ��� ������ ���� ��� ������� ����.";
    Text[ korean ] = "�̷ν� ��½� ���̺��� �����Ͱ� ��� ���˵Ǿ�� �ϴ����� ������ �� �ֽ��ϴ�.";
    Text[ turkish ] = "Burada tablo verilerinin ��kt� format�n� belirleyebilirsiniz.";
    Text[ language_user1 ] = " ";
    Text[ catalan ] = "Aqu� puede determinar el tipo de formateado para la salida de los datos de la tabla.";
    Text[ finnish ] = "Hiermit k�nnen Sie festlegen, wie die Daten der Tabelle bei der Ausgabe formatiert werden sollen.";
};
String STR_HELP_AUTOINCREMENT
{
    Text = "W�hlen Sie, ob dieses Feld Auto-Inkrement-Werte enthalten soll.\n\nSie k�nnen in ihm dann keine Daten direkt eingeben, sondern jeder neue Datensatz bekommt automatisch einen eigenen Wert (der sich durch Inkrementieren aus dem des vorigen Datensatzes ergibt) zugewiesen." ;
    Text [ english_us ] = "Choose if this field should contain AutoIncrement values.\n\nYou can not enter data in fields of this type. An intrinsic value will be assigned to each new record automatically (resulting from the increment of the previous record)." ;
    Text[ italian ] = "Scegliete se questo campo deve contenere valori automatici d'incremento.\n\nIn questo campo non sar� possibile digitare alcun dato direttamente. Ogni nuovo record di dati riceve automaticamente un valore proprio (che risulta dall'incremento del precedente).";
    Text[ portuguese_brazilian ] = "W?hlen Sie, ob dieses Feld ein Auto-Inkrement-Wert sein soll.\n\nSie k?nen in diese Spalte dann keine Daten direkt eingeben, sondern jeder neue Datensatz bekommt automatisch einen eigenen Wert (der sich aus dem Inkrementieren des vorigen ergibt) zugewiesen.";
    Text[ portuguese ] = "Indique se este campo deve conter valores de incremento autom�tico ou n�o.\n\nN�o ser� ent�o poss�vel introduzir dados directamente nesse campo. Cada novo registo de dados obter� automaticamente um valor pr�prio (valor este que resulta por incremento do valor do registo de dados anterior).";
    Text[ danish ] = "V�lg her, om dette felt skal indeholde AutoInkrement-v�rdier.\n\nDet er da ikke muligt at indtaste data direkte. Hver ny datapost f�r automatisk tildelt en egen v�rdi, som genereres ved inkrementering af den forrige datapost.";
    Text[ french ] = "Choisissez si le champ doit contenir des valeurs d'incr�ment automatique.\n\nDans ce cas, vous ne pourrez pas saisir directement des donn�es : tous les nouveaux enregistrements obtiendront automatiquement leur propre valeur (� savoir la valeur incr�ment�e � partir de l'enregistrement pr�c�dent).";
    Text[ swedish ] = "V�lj om det h�r f�ltet skall inneh�lla Auto-Inkrementv�rden.\n\nDu kan i s� fall inte mata in n�gra data direkt i f�ltet, utan varje ny datapost tilldelas automatiskt ett eget v�rde (vilket best�ms av inkrementering fr�n den f�rra dataposten).";
    Text[ dutch ] = "U kunt dit veld een auto increment-waarde toewijzen.\n\nIn dat geval kunt u hierin geen gegevens typen, maar iedere nieuwe record krijgt automatisch een eigen waarde toegewezen, die het resultaat is van het incrementeren van de vorige.";
    Text[ spanish ] = "Defina si este campo debe contener valores de incremento autom�tico.\n\nEn este caso no podr� escribir datos directamente, sino que a cada nuevo registro de datos se le asignar� autom�ticamente un valor propio (que resulta del incremento proveniente del registro anterior).";
    Text[ chinese_simplified ] = "��ѡ������ֶ��Ƿ�Ӧ�ú����Զ���������ֵ��\n\n�������ֶ��������ݣ���Ϊÿ������������Զ��õ�һ���Լ�����ֵ(����֮ǰ����������ͨ��������ʽ�õ�)��";
    Text[ russian ] = "������, ������ �� ��� ���� ��������� �������������� �������� ����������.\n\n����� �� �� ������� ��������������� ������� � ���� ������, ��������� ������ ����� ������ ����� ������������� ��������� ���������� �������� (������� ��������� ��������� ����������������� �� ���������� ������).";
    Text[ polish ] = "Nale�y ustali�, czy pole to ma zawiera� warto�ci autoinkrementu.\n\nDo tego pola nie mo�na wprowadzi� danych bezpo�rednio. Ka�demu rekordowi zostanie przypisana automatycznie w�asna warto�� (kt�ra wyniknie z inkrementacji poprzedniego rekordu).";
    Text[ japanese ] = "����̨���ނ������������͒l�ɂ��邩�A�I�����܂��B\n\n�I������ƁA�����֒��ڂ��ް�����͂ł��Ȃ��Ȃ�A�����I�ɐV����ں��ނɂ͑O��ں��ނ̐��l����ɑ����Z�o���ꂽ���ʒl�����͂���܂��B";
    Text[ chinese_traditional ] = "�бz��ܳo�����O�_���ӧt���۰ʻ��W���ƭȡC\n\n�z���ઽ����J��ơM�]���C�ӷs��Ʋշ|�۰ʱo��@�Ӧۤv���ƭ�(�q�����e����Ʋդ��q�L���W�o�X)�C";
    Text[ arabic ] = "������ ������ �� ��� ��� ���� �� ����� ��� ����� ��� ��� ��� ����� ������.\n\n�� ��� ������ �� ����� ����� �������� ��� ���� ����ѡ �� ��� ����";
    Text[ dutch ] = "U kunt dit veld een auto increment-waarde toewijzen.\n\nIn dat geval kunt u hierin geen gegevens typen, maar iedere nieuwe record krijgt automatisch een eigen waarde toegewezen, die het resultaat is van het incrementeren van de vorige.";
    Text[ chinese_simplified ] = "��ѡ������ֶ��Ƿ�Ӧ�ú����Զ���������ֵ��\n\n�������ֶ��������ݣ���Ϊÿ������������Զ��õ�һ���Լ�����ֵ(����֮ǰ����������ͨ��������ʽ�õ�)��";
    Text[ greek ] = "��������� �� �� ����� �� �������� ����� ��������� �����������.\n\n��� ��������� ���� ��� �� ��������� �� �������� ��������� �������� �� ���� �� �����, ���� ���� ��� ������� �� ������� ��������� ������ ����� ��� ���� (� ����� �� ��������� ��� ��� ���������� ��� ������������ ��������).";
    Text[ korean ] = "�� �ʵ尡 �ڵ��������� �����ؾ��� ���� �����Ͻʽÿ�.\n\n�̷��� �ʵ忡�� �����͸� ���� �Է��� �� ������ �� ���ڵ�� ��� �ڵ������� ������ (������ ���ڵ带 ������Ŵ���ν� ������)�� �Ҵ�ް� �˴ϴ�.";
    Text[ turkish ] = "Bu alana, otomatik art�� de�erleri konulup konulmayaca��n� se�iniz.\n\nBu alana art�k do�rudan veri giri�i yapamazs�n�z. Bunun yerine her yeni kay�t i�in otomatik olarak (bir �nceki kayd�n art���ndan olu�an) �zel bir de�er atan�r.";
    Text[ language_user1 ] = " ";
    Text[ catalan ] = "Defina si este campo debe contener valores de incremento autom�tico.\n\nEn este caso no podr� escribir datos directamente, sino que a cada nuevo registro de datos se le asignar� autom�ticamente un valor propio (que resulta del incremento proveniente del registro anterior).";
    Text[ finnish ] = "W�hlen Sie, ob dieses Feld Auto-Inkrement-Werte enthalten soll.\n\nSie k�nnen in ihm dann keine Daten direkt eingeben, sondern jeder neue Datensatz bekommt automatisch einen eigenen Wert (der sich durch Inkrementieren aus dem des vorigen Datensatzes ergibt) zugewiesen.";
};
PushButton PB_FORMAT
{
    TabStop = TRUE ;
    Text = "..." ;
    Text [ ENGLISH ] = "..." ;
    Text[ italian ] = "...";
    Text[ portuguese_brazilian ] = "Format...";
    Text[ portuguese ] = "...";
    Text[ danish ] = "...";
    Text[ french ] = "...";
    Text[ swedish ] = "...";
    Text[ dutch ] = "...";
    Text[ spanish ] = "...";
    Text[ english_us ] = "...";
    Text[ chinese_simplified ] = "...";
    Text[ russian ] = "...";
    Text[ polish ] = "...";
    Text[ japanese ] = "...";
    Text[ chinese_traditional ] = "...";
    Text[ arabic ] = "...";
    Text[ dutch ] = "...";
    Text[ chinese_simplified ] = "...";
    Text[ greek ] = "...";
    Text[ korean ] = "...";
    Text[ turkish ] = "...";
    Text[ language_user1 ] = " ";
    Text[ catalan ] = "...";
    Text[ finnish ] = "...";
};
String STR_TABLEDESIGN_DUPLICATE_NAME
{
    Text = "Die Tabelle kann nicht gespeichert werden, da der Spaltenname \"$column$\" doppelt vergeben wurde.";
    Text [ english_us ] = "The table cannot be saved because column name \"$column$\" was assigned twice.";
    Text[ portuguese ] = "Imposs�vel guardar a tabela. O nome da coluna \"$column$\" foi atribu�do duas vezes.";
    Text[ russian ] = "��������� ������� ����������, �.�. ��� ������� \"$column$\" ��������� ������.";
    Text[ greek ] = "��� ����� ������� �� ����� � ���������� ��� ������ ������ ����� ����� ����� ��� �������� ������ \"$column$\".";
    Text[ dutch ] = "De tabel kan niet worden opgeslagen daar de kolomnaam \"$column$\" reeds bestaat.";
    Text[ french ] = "Impossible d'enregistrer la table : le nom de colonne \"$column$\" a �t� attribu� deux fois.";
    Text[ spanish ] = "No se puede guardar la tabla porque el nombre de columna \"$column$\" ha sido asignado dos veces.";
    Text[ italian ] = "Non � stato possibile salvare la tabella in quanto il nome della colonna \"$column$\" � stato gi� assegnato.";
    Text[ danish ] = "Det er ikke muligt at gemme tabellen, fordi kolonnenavnet \"$column$\" er blevet tildelt to gange.";
    Text[ swedish ] = "Tabellen kan inte sparas eftersom kolumnnamnet \"$column$\" har tilldelats dubbelt.";
    Text[ polish ] = "Tabeli nie mo�na zapisa�, poniew� nazwa kolumny \"$column$\" zosta�a ju� raz nadana.";
    Text[ portuguese_brazilian ] = "The table can't be saved as the column name \"$column$\" is used twice.";
    Text[ japanese ] = "\"$column$\" �̗񖼂��d�����Ă��āAð��ق̕ۑ����ł��܂���B";
    Text[ korean ] = "�� �̸�\"$column$\"�� �ߺ� �Ҵ�Ǿ� �ֱ� ������ ���̺��� ������ �� �����ϴ�.";
    Text[ chinese_simplified ] = "��Ϊ�ظ�ʹ��������\"$column$\"�������޷������������";
    Text[ chinese_traditional ] = "�L�k�x�s�o�Ӫ���A�]�����W�� \"$column$\" �w�g�s�b�C";
    Text[ arabic ] = "�� ���� ��� ������ ���� �������� ��� ������ \"$column$\" �����.";
    Text[ turkish ] = "\"$column$\" s�tun ad� daha �nce kullan�ld��� i�in tablo kaydedilemiyor.";
    Text[ catalan ] = "No se puede guardar la tabla porque el nombre de columna \"$column$\" ha sido asignado dos veces.";
    Text[ finnish ] = "Die Tabelle kann nicht gespeichert werden, da der Spaltenname \"$column$\" doppelt vergeben wurde.";
};
String STR_TBL_COLUMN_IS_KEYCOLUMN
{
    Text = "Die Spalten \"$column$\" geh�rt zum Prim�rschl�ssel. Falls sie gel�scht wird, wird auch der Prim�rschl�ssel gel�scht.Wollen Sie sie fortfahren?";
    Text [ english_us ] = "The column \"$column$\" belongs to the primary key. If the column is deleted, the primary key will also be deleted. Do you really want to continue?";
    Text[ portuguese ] = "A coluna \"$column$\" pertence � chave prim�ria. Se a eliminar, a chave prim�ria tamb�m ser� eliminada. Mesmo assim, eliminar?";
    Text[ russian ] = "������� \"$column$\" ��������� � ���������� �����. ������ ��, �� ������� ��������� ����. �� ������������� ������ ������� ��� �������?";
    Text[ greek ] = "�� ������� \"$column$\" ������� ��� �������� ������. ���� ��������� ��� ���������� �����, �� ��������� ��� �� �������� ������. ������ �� ��������� ";
    Text[ dutch ] = "De kolom \"$column$\" behoort tot de primaire sleutel. Wist u deze kolom dan wordt ook de primaire sleutel gewist. Wilt u de kolom werkelijk wissen?";
    Text[ french ] = "La colonne \"$column$\" appartient � la cl� primaire. Sa suppression entra�nera �galement la suppression de la cl� primaire. Continuer ?";
    Text[ spanish ] = "La columna \"$column$\" pertenece a la llave primaria. En caso de que la elimine, eliminar� tambi�n la llave primaria. �Desea continuar?";
    Text[ italian ] = "La colonna \"$column$\" appartiene alla chiave primaria. Se la colonna viene eliminata, si canceller� anche la chiave primaria. Volete proseguire comunque?";
    Text[ danish ] = "The column \"$column$\" belongs to the primary key. If the column will be deleted the primary key will be deleted as well. Do you really want to delete the column?";
    Text[ swedish ] = "Kolumnen \"$column$\" h�r till prim�rnyckeln. Om kolumnen raderas kommer �ven prim�rnyckeln att raderas. Vill du forts�tta?";
    Text[ polish ] = "Kolumna \"$column$\" nale�y do klucza g��wnego. Je�li zostanie usuni�ta, razem z ni� usuni�ty zostanie r�wnie� klucz g��wny. Czy na pewno j� usun��?";
    Text[ portuguese_brazilian ] = "The column \"$column$\" belongs to the primary key. If the column will be deleted the primary key will be deleted as well. Do you really want to delete the column?";
    Text[ japanese ] = "�� \"$column$\" ����ײ�ط��ɑ����܂��B������폜����ƁA��ײ�ط����폜����Ă��܂��܂��B�폜���Ă����܂��܂��񂩁B";
    Text[ korean ] = "�� \"$column$\"��(��) 1�� Ű�� ���մϴ�. �� ���� �����Ǹ� 1�� Ű�� �����˴ϴ�. ������ ����Ͻðڽ��ϱ�?";
    Text[ chinese_simplified ] = "����ֶ� \"$column$\" �������ؼ��֡������ɾ������ֶΣ�Ҳ�ͻ�һ��ɾ�����ؼ��֡�Ҫɾ������ֶΣ�";
    Text[ chinese_traditional ] = "�o���� \"$column$\" �ݩ�D����r�C�p�G�z�R���o�����A�]�N�|�@�_�R���D����r�C�n�R���o�����H";
    Text[ turkish ] = "The column \"$column$\" belongs to the primary key. If the column will be deleted the primary key will be deleted as well. Do you really want to delete the column?";
    Text[ arabic ] = "����� ������ \"$column$\" ��� ������� �������. ��� �� ���� ���� ��� ��� ������� ������� �����. �� ���� ������ ��� ��� �����Ͽ";
    Text[ catalan ] = "La columna \"$column$\" pertenece a la llave primaria. En caso de que la elimine, eliminar� tambi�n la llave primaria. �Desea eliminarla realmente?";
    Text[ finnish ] = "Die Spalten \"$column$\" geh�rt zum Prim�rschl�ssel. Falls sie gel�scht wird, wird auch der Prim�rschl�ssel gel�scht.Wollen Sie sie fortfahren?";
};
String STR_TBL_COLUMN_IS_KEYCOLUMN_TITLE
{
    Text = "Prim�rschl�ssel betroffen";
    Text [ english_us ] = "Primary Key Effected";
    Text[ portuguese ] = "Chave prim�ria relacionada";
    Text[ russian ] = "��������� � ���������� �����";
    Text[ greek ] = "�������� ������ betroffen";
    Text[ dutch ] = "primaire sleutel betroffen";
    Text[ french ] = "Cl� primaire concern�e";
    Text[ spanish ] = "Relativo a la llave primaria";
    Text[ italian ] = "Relativo alla chiave primaria";
    Text[ danish ] = "primary key related";
    Text[ swedish ] = "Prim�rnyckelrelaterad";
    Text[ polish ] = "Dotyczy klucza g��wnego";
    Text[ portuguese_brazilian ] = "primary key related";
    Text[ japanese ] = "��ײ�ط��Ɋ֘A";
    Text[ korean ] = "�⺻ Ű �ش�";
    Text[ chinese_simplified ] = "�����ؼ��ֹ���";
    Text[ chinese_traditional ] = "�M�D����r���p";
    Text[ turkish ] = "primary key related";
    Text[ arabic ] = "����� ��� ������� �������";
    Text[ catalan ] = "Relativo a la llave primaria";
    Text[ finnish ] = "Prim�rschl�ssel betroffen";
};
String STR_COLUMN_NAME
{
    Text = "Spalte" ;
    Text [ ENGLISH ] = "column" ;
    Text[ english_us ] = "Column";
    Text[ portuguese ] = "Coluna";
    Text[ greek ] = "�����";
    Text[ dutch ] = "Kolom";
    Text[ french ] = "Colonne";
    Text[ spanish ] = "Columna";
    Text[ swedish ] = "Kolumn";
    Text[ russian ] = "�������";
    Text[ italian ] = "Colonna";
    Text[ danish ] = "Kolonne";
    Text[ polish ] = "Kolumna";
    Text[ portuguese_brazilian ] = "column";
    Text[ japanese ] = "��";
    Text[ korean ] = "��";
    Text[ chinese_simplified ] = "��";
    Text[ chinese_traditional ] = "���";
    Text[ arabic ] = "����";
    Text[ turkish ] = "S�tun";
    Text[ catalan ] = "Columna";
    Text[ finnish ] = "Sar";
};
String STR_QRY_CONTINUE
{
    Text = "Wollen Sie trotzdem fortfahren?" ;
    Text [ ENGLISH ] = "Continue?" ;
    Text [ english_us ] = "Continue anyway?" ;
    Text [ portuguese ] = "Deseja continuar?" ;
    Text [ portuguese_brazilian ] = "Wollen Sie trotzdem fortfahren?" ;
    Text [ swedish ] = "Vill du �nd� forts�tta?" ;
    Text [ danish ] = "Vil du forts�tte alligevel?" ;
    Text [ italian ] = "Volete continuare lo stesso?" ;
    Text [ spanish ] = "�Desea continuar de todos modos?" ;
    Text [ french ] = "Voulez-vous vraiment poursuivre ?" ;
    Text [ dutch ] = "Wilt u toch doorgaan?" ;
    Text[ chinese_simplified ] = "������Ҫ������";
    Text[ russian ] = "����������?";
    Text[ polish ] = "Czy mimo to kontynuowa�?";
    Text[ japanese ] = "���s���Ă��܂��܂��񂩁B";
    Text[ chinese_traditional ] = "�~��H";
    Text[ arabic ] = "�� ���� �������� ��� ����� �� ��߿";
    Text[ dutch ] = "Wilt u toch doorgaan?";
    Text[ chinese_simplified ] = "������Ҫ������";
    Text[ greek ] = "������ �� ����������;";
    Text[ korean ] = "����Ͻðڽ��ϱ�?";
    Text[ turkish ] = "Yine de devam etmek istiyor musunuz?";
    Text[ catalan ] = "�Desea continuar de todos modos?";
    Text[ finnish ] = "Wollen Sie trotzdem fortfahren?";
};
String STR_STAT_WARNING
{
    Text = "Warnung!" ;
    Text [ ENGLISH ] = "Warning!" ;
    Text [ english_us ] = "Warning!" ;
    Text [ portuguese ] = "Advert�ncia!" ;
    Text [ portuguese_brazilian ] = "Warnung!" ;
    Text [ swedish ] = "Varning!" ;
    Text [ danish ] = "Advarsel!" ;
    Text [ italian ] = "Attenzione!" ;
    Text [ spanish ] = "�Advertencia!" ;
    Text [ french ] = "Avertissement !" ;
    Text [ dutch ] = "Waarschuwing!" ;
    Text[ chinese_simplified ] = "���棡";
    Text[ russian ] = "��������������!";
    Text[ polish ] = "Ostrze�enie!";
    Text[ japanese ] = "�x��";
    Text[ chinese_traditional ] = "ĵ�i�I";
    Text[ arabic ] = "�����!";
    Text[ dutch ] = "Waarschuwing!";
    Text[ chinese_simplified ] = "���棡";
    Text[ greek ] = "�������������!";
    Text[ korean ] = "���!";
    Text[ turkish ] = "Uyar�!";
    Text[ catalan ] = "�Advertencia!";
    Text[ finnish ] = "Varoitus!";
};
QueryBox TABLE_DESIGN_SAVEMODIFIED
{
    Buttons = WB_YES_NO_CANCEL ;
    DefButton = WB_DEF_YES ;
    Message = "Die Tabelle wurde ge�ndert.\nSollen die �nderungen gespeichert werden?" ;
    Message [ English ] = "The table has been modified.\nDo you want to save your changes?" ;
    Message [ english_us ] = "The table has been changed.\nDo you want to save the changes?" ;
    Message[ portuguese ] = "A tabela foi modificada.\nGuardar modifica��es?";
    Message[ russian ] = "������ ������� ��������.\n��������� ��� ���������?";
    Message[ greek ] = "� ������� �������������.\n������ �� ������������ �� �������;";
    Message[ dutch ] = "De tabel werd gewijzigd.\nWilt u de wijzigingen opslaan?";
    Message[ french ] = "La table a �t� modifi�e.\nVoulez-vous enregistrer les modifications ?";
    Message[ spanish ] = "Se ha modificado esta tabla.\n�Desea guardar los cambios?";
    Message[ italian ] = "La tabella � cambiata.\nVolete salvare le modifiche?";
    Message[ danish ] = "The table has been changed.\nDo you want to save the changes?";
    Message[ swedish ] = "Tabellen har �ndrats.\nSka �ndringarna sparas?";
    Message[ polish ] = "Tabela zosta�a zmieniona.\nZapisa� zmiany?";
    Message[ portuguese_brazilian ] = "The table has been changed.\nDo you want to save the changes?";
    Message[ japanese ] = "ð��ق͕ύX����Ă��܂��B\n�ύX��ۑ����܂����B";
    Message[ korean ] = "���̺��� ����Ǿ����ϴ�.\n��������� �����Ͻðڽ��ϱ�?";
    Message[ chinese_simplified ] = "�����Ѿ����ġ�\nҪ���̸��ĵ����ݣ�";
    Message[ chinese_traditional ] = "�o�Ӫ���w�g�ܧ�C\n�z�n�x�s�o���ܧ󤺮e�H";
    Message[ turkish ] = "The table has been changed.\nDo you want to save the changes?";
    Message[ arabic ] = "�� ����� ������.\n�� ���� ��� ��������ʿ";
    Message[ catalan ] = "Se ha modificado esta tabla.\n�Desea guardar los cambios?";
    Message[ finnish ] = "Die Tabelle wurde ge�ndert.\nSollen die �nderungen gespeichert werden?";
};
QueryBox TABLE_QUERY_CONNECTION_LOST
{
    Buttons = WB_YES_NO ;
    Message = "Die Verbindung zur Datenbank wurde gel�scht! Ohne sie kann der Tabellenentwurf nur eingeschr�nkt benutzt werden.\nSoll die Verbindung zur Datenbank wieder aufgebaut werden?" ;
    Message [ English ] = "The connection to the database was lost! The tabledesign can only be used with limited functionality without a connection.\nReconnect?" ;
    Message [ english_us ] = "The connection to the database was lost! The table design can only be used with limited functionality without a connection.\nReconnect?" ;
    Message[ portuguese ] = "A liga��o � base de dados foi cancelada! Sem esta, o esbo�o da tabela pode ser utilizado apenas de forma limitada.\nRetomar a liga��o?";
    Message[ russian ] = "����� � ����� ������ �������! ��� ��� ������������� ������� ������� ����������.\n������������ ����� � ����� ������?";
    Message[ greek ] = "� ������� �� ��� ���� ��������� ������! ����� ��� ������� � ���������� ������� ��� ������ �� �������������� ������.\n�� ����� � �����������? ";
    Message[ dutch ] = "De verbinding met de database is verwijderd! Zonder deze verbinding kan de ontwerp-tabel slechts beperkt worden gebruikt.\nWilt u de verbinding met de database weer tot stand brengen?";
    Message[ french ] = "La connexion � la base de donn�es a �t� interrompue ! Ceci entra�ne une perte de fonctionnalit� dans l'utilisation de l'�bauche de table.\nReconnecter ?";
    Message[ spanish ] = "�Se ha cancelado la conexi�n a la base de datos! Sin ella, el dise�o de tabla solo se puede usar de forma limitada.\n�Desea reanudar la conexi�n?";
    Message[ italian ] = "Il collegamento al database � stato annullato. Senza il collegamento la bozza tabella pu� essere utilizzata solo in modo limitato:\nVolete ripristinare il collegamento con il database?";
    Message[ danish ] = "The connection to the database was lost! The tabledesign can only be used with limited functionality without a connection.\nReconnect?";
    Message[ swedish ] = "F�rbindelsen till databasen har raderats! Utan den kan bara tabellutkastet anv�ndas begr�nsat.\nSka f�rbindelsen till databasen uppr�ttas igen?";
    Message[ polish ] = "Przerwano po��czenie z baz� danych! Bez po��czenia z baz� danych mo�liwo�� korzystania z projektu tabeli b�dzie ograniczona.\nPo��czy� ponownie z baz� danych?";
    Message[ portuguese_brazilian ] = "The connection to the database was lost! The tabledesign can only be used with limited functionality without a connection.\nReconnect?";
    Message[ japanese ] = "�ް��ް��ւ̐ڑ����폜����܂����B���̐ڑ����Ȃ���΁Að��ق��޻޲݂͐������ꂽ�g�p�����ł��܂���B\n�ڑ����Ȃ����܂����B";
    Message[ korean ] = "�����ͺ��̽����� ������ ���������ϴ�! ������ ������ ���¿����� ���̺� �������� ���������θ� �̿��� �� �ֽ��ϴ�.\n�����ͺ��̽��� �ٽ� �����ұ��?";
    Message[ chinese_simplified ] = "�����ݿ�������Ѿ��رգ���ֻ�����޵�ʹ�ñ�����ƵĹ��ܡ�\nҪ�����ݿ��ؽ����ӣ�";
    Message[ chinese_traditional ] = "�M��Ʈw���s���w�g�Q�R���I�z�u�঳���a�ϥΪ���]�p���\\��C\n�n�M��Ʈw���سs���H";
    Message[ turkish ] = "The connection to the database was lost! The tabledesign can only be used with limited functionality without a connection.\nReconnect?";
    Message[ arabic ] = "�� ��� ������� ������ ��������! ���� ��� ������� �� ���� ������� ����� ������� ��� ���� �����.\n�� ���� ����� ������� ������ �������ʿ";
    Message[ catalan ] = "The connection to the database was lost! The tabledesign can only be used with limited functionality without a connection.\nReconnect?";
    Message[ finnish ] = "Die Verbindung zur Datenbank wurde gel�scht! Ohne sie kann der Tabellenentwurf nur eingeschr�nkt benutzt werden.\nSoll die Verbindung zur Datenbank wieder aufgebaut werden?";
};
String STR_TABLEDESIGN_CONNECTION_MISSING
{
    Text = "Die Tabelle konnte nicht gespeichert werden, da keine Verbindung zur Datenbank hergestellt werden konnte.";
    Text [ english_us ] = "The table could not be saved due to problems connecting to the database.";
    Text [ english ] = "The table couldn't be saved due to connection problems.";
    Text[ portuguese ] = "Imposs�vel guardar a tabela. N�o foi poss�vel estabelecer liga��o � base de dados.";
    Text[ russian ] = "��������� ������� ����������, ��������� �� ������� ������� ����� � ����� ������.";
    Text[ greek ] = "��� ���� ������� �� ����������� � ������� �������� ����������� �������� �� ��� ���� ���������.";
    Text[ dutch ] = "De tabel kon niet worden opgeslagen daar de koppeling met de database niet tot stand kon worden gebracht.";
    Text[ french ] = "Impossible d'�tablir une connexion � la base de donn�es : la table n'a pas pu �tre enregistr�e.";
    Text[ spanish ] = "No ha sido posible guardar la tabla porque no se pudo efectuar una conexi�n a la base de datos.";
    Text[ italian ] = "Impossibile salvare la tabella: il collegamento al database non � stato realizzato.";
    Text[ danish ] = "The table couldn't be saved due to connection problems.";
    Text[ swedish ] = "Tabellen kunde inte sparas eftersom det inte gick att uppr�tta en f�rbindelse till databasen.";
    Text[ polish ] = "Zapisanie tabeli nie by�o mo�liwe z powodu braku po��czenia z baz� danych.";
    Text[ portuguese_brazilian ] = "The table couldn't be saved due to connection problems.";
    Text[ japanese ] = "�ް��ް��֐ڑ��ł��Ȃ��������߁Að��ق�ۑ��ł��܂���ł����B";
    Text[ korean ] = "�����ͺ��̽����� ������ ������� �ʾұ� ������, ���̺��� ������ �� �������ϴ�.";
    Text[ chinese_simplified ] = "δ�ܹ������ݿ⽨�����ӣ�����޷����̱���";
    Text[ chinese_traditional ] = "������M��Ʈw�إ߳s���A�]���L�k�x�s����C";
    Text[ turkish ] = "The table couldn't be saved due to connection problems.";
    Text[ arabic ] = "���� ��� ������ ����� ���� ������� ������ ��������.";
    Text[ catalan ] = "The table couldn't be saved due to connection problems.";
    Text[ finnish ] = "Die Tabelle konnte nicht gespeichert werden, da keine Verbindung zur Datenbank hergestellt werden konnte.";
};
FixedText FIXED_NO_CONNECTION
{
    Pos                 = MAP_APPFONT ( 0,0 ) ;
    Size                = MAP_APPFONT ( 120 , 10 ) ;
    Text                = "Keine Verbindung" ;
    Text [ English ]    = "no connection" ;
    Text [ english_us ] = "No connection" ;
    Text[ portuguese ] = "Sem liga��o";
    Text[ russian ] = "��� ����������";
    Text[ greek ] = "��� ������� �������";
    Text[ dutch ] = "geen verbinding";
    Text[ french ] = "Aucune connexion";
    Text[ spanish ] = "Sin conexi�n";
    Text[ italian ] = "nessun collegamento";
    Text[ danish ] = "no connection";
    Text[ swedish ] = "Ingen f�rbindelse";
    Text[ polish ] = "Brak po��czenia";
    Text[ portuguese_brazilian ] = "no connection";
    Text[ japanese ] = "�ڑ��Ȃ�";
    Text[ korean ] = "������� ����";
    Text[ chinese_simplified ] = "�޷�����";
    Text[ chinese_traditional ] = "�S���s�u";
    Text[ turkish ] = "no connection";
    Text[ arabic ] = "�� ���� �����";
    Text[ catalan ] = "no connection";
    Text[ finnish ] = "Keine Verbindung";
};
QueryBox QUERY_SAVE_TABLE_EDIT_INDEXES
{
    Message = "Bevor Sie die Indizies einer Tabelle �ndern k�nnen, muss diese gespeichert werden.\n"
        "Wollen Sie Ihre �nderungen an der Tabellenstruktur jetzt speichern?";
    Message [ english ] = "Before you can edit the indexes of a table, it must be saved.\n"
        "Do you want to save your changes now?";
    Message [ english_us ] = "Before you can edit the indexes of a table, you have to save it.\nDo you want to save the changes now?";

    Buttons = WB_YES_NO ;
    Message[ portuguese ] = "Antes de modificar os �ndices de uma tabela ter� que a guardar.\nGuardar as modifica��es?";
    Message[ russian ] = "������ ��� �������� ������� �������, ��� ������� ���������� ���������.\n�� ������ ��������� ��������� � ��������� �������?";
    Message[ greek ] = "� ������� ������ �� ����������� ����� ��� �� ��������� �� ������������� �� ��������� ���.\n�� ����������� � ���� ��� ������ ����;";
    Message[ dutch ] = "Voordat u de indices van een tabel kunt veranderen moeten deze worden opgeslagen.\nWilt u de wijzigingen in de tabelstructuur nu opslaan?";
    Message[ french ] = "Avant de pouvoir modifier les index d'une table, vous devez l'enregistrer.\nVoulez-vous enregistrer les modifications apport�es � la structure de la table ?";
    Message[ spanish ] = "Antes de modificar los �ndices de una tabla, �sta debe estar guardada.\n�Desea guardar ahora las modificaciones en la estructura de la tabla?";
    Message[ italian ] = "Prima di modificare gli indici di una tabella � necessario salvare prima la tabella.\nVolete salvare adesso le modifiche alla struttura della tabella?";
    Message[ danish ] = "Before you can edit the indexes of a table, it must be saved.\nDo you want to save your changes now?";
    Message[ swedish ] = "Innan du kan �ndra indexen till en tabell m�ste du spara den.\nVill du spara dina �ndringar av tabellstrukturen nu?";
    Message[ polish ] = "Przed zmodyfikowaniem indeks�w tabeli nale�y tabel� zapisa�.\nZapisa� teraz zmiany dokonane na strukturze tabeli?";
    Message[ portuguese_brazilian ] = "Before you can edit the indexes of a table, it must be saved.\nDo you want to save your changes now?";
    Message[ japanese ] = "ð��ق̲��ޯ����ҏW����ɂ́A���̑O�ɂ܂������ۑ����Ă����K�v������܂��B\nð��ٍ\\���̕ύX�����܂����ۑ����܂����B";
    Message[ korean ] = "���̺��� ������ �����ϱ� ����, �̸� �ݵ�� �����ؾ� �մϴ�.\n���̺� �������� ����� ������ �����Ͻðڽ��ϱ�?";
    Message[ chinese_simplified ] = "���޸�һ�����������֮ǰ�����ȴ��̱���\nҪ���̱���ṹ�ĸ������ݣ�";
    Message[ chinese_traditional ] = "�b�ܧ�@�Ӫ��檺���ޤ��e�������x�s����C\n�n�x�s���浲�۪��ܧ󤺮e�H";
    Message[ turkish ] = "Before you can edit the indexes of a table, it must be saved.\nDo you want to save your changes now?";
    Message[ arabic ] = "��� ����� �� ����� ����� ������ ��� ����� �� ���� ���� ��� ������.\n�� ���� ���� ��� ��������� �� ���� ������";
    Message[ catalan ] = "Before you can edit the indexes of a table, it must be saved.\nDo you want to save your changes now?";
    Message[ finnish ] = "Bevor Sie die Indizies einer Tabelle �ndern k�nnen, muss diese gespeichert werden.\nWollen Sie Ihre �nderungen an der Tabellenstruktur jetzt speichern?";
};
String STR_TABLEDESIGN_NO_PRIM_KEY_HEAD
{
    Text = "Kein Prim�rschl�ssel" ;
    Text [ ENGLISH ] = "No primary key" ;
    Text [ english_us ] = "No primary key" ;
    Text [ portuguese_brazilian ] = "Kein Prim?rschl?sel" ;
    Text [ swedish ] = "Ingen prim�rnyckel" ;
    Text [ danish ] = "Ingen prim�rn�gle" ;
    Text [ italian ] = "Nessuna chiave primaria" ;
    Text [ spanish ] = "Ninguna llave primaria" ;
    Text [ french ] = "Pas de cl� primaire" ;
    Text [ dutch ] = "Geen primaire sleutel" ;
    Text [ portuguese ] = "Sem chave prim�ria" ;
    Text[ chinese_simplified ] = "û�����ؼ���";
    Text[ russian ] = "��� ���������� �����";
    Text[ polish ] = "Brak klucza g��wnego";
    Text[ japanese ] = "��ײ�ط�������܂���B";
    Text[ chinese_traditional ] = "�L�D����r";
    Text[ arabic ] = "���� ����� �����";
    Text[ dutch ] = "Geen primaire sleutel";
    Text[ chinese_simplified ] = "û�����ؼ���";
    Text[ greek ] = "������ �������� ������";
    Text[ korean ] = "1�� Ű ����";
    Text[ turkish ] = "Birinci anahtar yok";
    Text[ catalan ] = "No primary key";
    Text[ finnish ] = "Kein Prim�rschl�ssel";
};
String STR_TABLEDESIGN_NO_PRIM_KEY
{
    Text = "In dieser Datenbank wird zur Datensatz-Identifizierung ein eindeutiger Index oder ein Prim�rschl�ssel ben�tigt.\nSie werden erst dann Daten in die Tabelle eingeben k�nnen, wenn sie eine dieser beiden Struktur-Bedingungen erf�llt.\n\nSoll jetzt ein Prim�rschl�ssel erzeugt werden ?" ;
    Text [ ENGLISH ] = "The table has no primary key.\nShould Starbase create a key for you?" ;
    Text [ english_us ] = "A unique index or primary key is required for data record identification in this database.\nYou can only enter data into this table when one of these two structural conditions has been met.\n\nShould a primary key be created now?" ;
    Text [ portuguese_brazilian ] = "Beim Anlegen der Tabelle wurde kein Prim?rschl?sel angegeben.\nSoll jetzt ein Prim?rschl?sel erzeugt werden?" ;
    Text [ swedish ] = "Ett entydigt index eller en prim�rnyckel kr�vs f�r identifiering av dataposter i den h�r databasen.\nData kan f�rst matas in i tabellen om de uppfyller en av dessa b�da strukturvillkor.\n\nSkall en prim�rnyckel skapas nu?" ;
    Text [ danish ] = "Denne database kr�ver et entydigt indeks eller en prim�rn�gle til datapost-identifikation.\nDu kan f�rst indtaste data i tabellen, n�r disse to strukturbetingelser er opfyldt.\n\nVil du oprette en prim�rn�gle nu?" ;
    Text [ italian ] = "Per l'identificazione del record di dati nel database attuale � necessario un indice univoco o una chiave primaria.\nSolo dopo aver soddisfatto una di queste condizioni sar� possibile introdurre dati nella tabella.\n\nVolete creare adesso una chiave primaria?" ;
    Text [ spanish ] = "Para la identificaci�n de registros en esta base de datos se necesita un �ndice un�voco o una llave primaria.\nSolo cuando haya cumplido una de estas condiciones podr� introducir datos en la tabla.\n\n�Desea crear ahora una llave primaria?" ;
    Text [ french ] = "Un index univoque ou une cl� primaire est n�cessaire pour l'identification d'enregistrement dans cette base de donn�es.\nVous ne pourrez saisir des donn�es dans la table que si celle-ci remplit une de ces deux conditions de structure.\n\nCr�er une cl� primaire ?" ;
    Text [ dutch ] = "In deze database wordt een index of een primaire sleutel verlangd ter identificatie van records.\nU kunt alleen gegevens invoeren in de tabel als u voldoet aan een van deze beide criteria.\nWilt u nu een primaire sleutel defini�ren?" ;
    Text [ portuguese ] = "Esta base de dados precisa de um �ndice �nico ou de uma chave prim�ria para identifica��o do registo de dados.\nS� poder� introduzir os dados na tabela depois de esta preencher uma destas condi��es de estrutura.\n\nCriar agora uma chave prim�ria" ;
    Text[ chinese_simplified ] = "ʶ�����ݿ��е�������ĿҪ��ʹ����ȷ�����������ؼ��֣�\n���趨ֻ������ڱ������������ݡ�\n\n����Ҫ����һ�����ؼ��֣�";
    Text[ russian ] = "��� ������������� ������ �� ���� ���� ������ �������� ����������� ������ ��� ��������� ����.\n�� ������� ������ ������ � ������� ���� ����� ����, ��� ��������� ���� �� ���� �������.\n\n������� ��������� ����?";
    Text[ polish ] = "W tej bazie danych wymagany jest w celu identyfikacji rekordu jednoznaczny indeks lub klucz g��wny.\nDane b�dzie mo�na dopiero wtedy wpisa� do tabeli, gdy b�dzie ona spe�nia� jedno z tych dw�ch kryteri�w.\n\nCzy utworzy� teraz klucz g��wny?";
    Text[ japanese ] = "�����ް��ް��ł́Aں��ގ��ʂɖ��m�Ȳ��ޯ�����邢����ײ�ط����K�v�ł��B\n���̍\\�������̂����ǂ��炩�ЂƂ‚����������ƁAð��ق��ް����͂ł��܂��B\n\n��ײ�ط����쐬���܂����B";
    Text[ chinese_traditional ] = "�b�o�Ӹ�Ʈw�ѧO��ƭn�D���@�ө��T�����ޱ��ةΤ@�ӥD����r�C\n�u�������o�ӱ���ɱz�~����b���椺��J��ơC\n\n�{�b�n�إߤ@�ӥD����r�S";
    Text[ arabic ] = "������ ��� ��� �� ����� �������� ��� ����� ���� ���� �� ����� �����.\n�� ����� ����� ������ �� ������ ��� ��� ��� ��� ���� �������.\n\n�� ���� ";
    Text[ dutch ] = "In deze database wordt een index of een primaire sleutel verlangd ter identificatie van records.\nU kunt alleen gegevens invoeren in de tabel als u voldoet aan een van deze beide criteria.\nWilt u nu een primaire sleutel defini�ren?";
    Text[ chinese_simplified ] = "ʶ�����ݿ��е�������ĿҪ��ʹ����ȷ�����������ؼ��֣�\n���趨ֻ������ڱ������������ݡ�\n\n����Ҫ����һ�����ؼ��֣�";
    Text[ greek ] = "��� ��� ���������� ��� �������� �� ���� �� ���� ��������� ���������� ��� �������� ��������� � ��� �������� ������.\n�������� �� �������� �� �������� ���� ������ ����� ������ ���������� ��� ��� ��� ��� ����� �������� �����.\n\n������ �� ������������ ���� ��� �������� ������;";
    Text[ korean ] = "�� �����ͺ��̽������� ������ ���ڵ� �ĺ��� ���� ���� �ε����� 1�� Ű�� �ʿ��մϴ�.\n�� �� ���� ���� ��� �� ������ �����Ǿ�߸� �����͸� ���̺��� �Է��� �� �ֽ��ϴ�.\n\n���� 1�� Ű�� ������?";
    Text[ turkish ] = "Bu veritaban�nda, kay�t tan�mlama i�in benzersiz bir dizin ya da birinci anahtar� gerekiyor.\nBu tabloya veri giri�i yapabilmek i�in bu yap�sal ko�ullardan en az biri yerine getirilmelidir.\n\n�imdi bir birinci anahtar olu�turulsun mu?";
    Text[ catalan ] = "A unique index or primary key is required for data record identification in this database.\nYou can only enter data into this table if one of these two structural conditions has been met.\n\nShould a primary key be created now?";
    Text[ finnish ] = "In dieser Datenbank wird zur Datensatz-Identifizierung ein eindeutiger Index oder ein Prim�rschl�ssel ben�tigt.\nSie werden erst dann Daten in die Tabelle eingeben k�nnen, wenn sie eine dieser beiden Struktur-Bedingungen erf�llt.\n\nSoll jetzt ein Prim�rschl�ssel erzeugt werden ?";
};
String STR_TABLEDESIGN_TITLE
{
    Text = "Tabellen Entwurf";
    Text [ ENGLISH ] = "table design";
    Text[ english_us ] = "Table Design";
    Text[ portuguese ] = "Esbo�ar tabela";
    Text[ russian ] = "������ �������";
    Text[ greek ] = "���������� ������";
    Text[ dutch ] = "Tabelontwerp";
    Text[ french ] = "�bauche de table";
    Text[ spanish ] = "Dise�o de tabla";
    Text[ italian ] = "Struttura tabella";
    Text[ danish ] = "table design";
    Text[ swedish ] = "Tabellutkast";
    Text[ polish ] = "Projekt tabeli";
    Text[ portuguese_brazilian ] = "table design";
    Text[ japanese ] = "ð����޻޲�";
    Text[ korean ] = "ǥ ������";
    Text[ chinese_simplified ] = "�������";
    Text[ chinese_traditional ] = "����]�p";
    Text[ turkish ] = "table design";
    Text[ arabic ] = "table design";
    Text[ catalan ] = "table design";
    Text[ finnish ] = "Tabellen Entwurf";
};

Menu RID_TABLE_DESIGN_MAIN_MENU
{
    ItemList =
    {
    MenuItem
    {
        ITEM_FILE_PICKLIST
        SubMenu = Menu
        {
        ItemList =
        {
            MenuItem
            {
                ITEM_FILE_NEWDOC
            };
            MenuItem
            {
                ITEM_FILE_OPENDOC
            };
            ITEM_FILE_AUTOPILOT
            MenuItem
            {
                Separator = TRUE ;
            };
            MenuItem
            {
                ITEM_FILE_CLOSEDOC
                Command = ".uno:DB/Close";
            };
            MenuItem
            {
                ITEM_FILE_SAVEDOCS //!!muss fuer andere geoeffnete Tasks drinbleiben
            };
            MenuItem
            {
                ITEM_FILE_SAVEDOC
                Command = ".uno:Save";
            };
            MenuItem
            {
                ITEM_FILE_SAVEASDOC
                Command = ".uno:SaveAsDoc";
            };
            MenuItem
            {
                Separator = TRUE ;
            };
            MenuItem
            {
                ITEM_FILE_QUITAPP
            };
        };
        };
    };
    MenuItem
    {
        Identifier = MN_EDIT ;
        HelpID = MN_EDIT ;
        Text = "~Bearbeiten" ;
        Text [ English ] = "~Edit" ;
        Text [ norwegian ] = "~Rediger" ;
        Text [ italian ] = "~Modifica" ;
        Text [ portuguese_brazilian ] = "~Editar" ;
        Text [ portuguese ] = "~Editar" ;
        Text [ finnish ] = "~Muokkaa" ;
        Text [ danish ] = "~Rediger" ;
        Text [ french ] = "~�dition" ;
        Text [ swedish ] = "R~edigera" ;
        Text [ dutch ] = "Be~werken" ;
        Text [ spanish ] = "~Editar" ;
        Text [ english_us ] = "~Edit" ;
        SubMenu = Menu
        {
            ItemList =
            {
                MenuItem
                {
                    Identifier = SID_UNDO ;
                    HelpId = SID_UNDO ;
                    Command = ".uno:Undo";
                    Text = "R�ckg�ngig" ;
                    Text [ ENGLISH ] = "Undo" ;
                    Text[ english_us ] = "Undo";
                    Text[ portuguese ] = "Anular";
                    Text[ russian ] = "��������";
                    Text[ greek ] = "��������";
                    Text[ dutch ] = "Ongedaan";
                    Text[ french ] = "Annuler";
                    Text[ spanish ] = "Deshacer";
                    Text[ italian ] = "Annulla";
                    Text[ danish ] = "Undo";
                    Text[ swedish ] = "�ngra";
                    Text[ polish ] = "Cofnij";
                    Text[ portuguese_brazilian ] = "Undo";
                    Text[ japanese ] = "���ɖ߂�";
                    Text[ korean ] = "���� ���";
                    Text[ chinese_simplified ] = "��������";
                    Text[ chinese_traditional ] = "�_��";
                    Text[ turkish ] = "Undo";
                    Text[ arabic ] = "�����";
                    Text[ catalan ] = "Undo";
                        Text[ finnish ] = "peruuta";
                    };
                MenuItem
                {
                    Identifier = SID_REDO ;
                    HelpId = SID_REDO ;
                    Command = ".uno:Redo";
                    Text = "Wiederherstellen" ;
                    Text [ ENGLISH ] = "Redo" ;

                    Text[ english_us ] = "Redo";
                    Text[ portuguese ] = "Restaurar";
                    Text[ russian ] = "������������";
                    Text[ greek ] = "���������";
                    Text[ dutch ] = "Herstellen";
                    Text[ french ] = "Restaurer";
                    Text[ spanish ] = "Restaurar";
                    Text[ italian ] = "Ripristina";
                    Text[ danish ] = "Redo";
                    Text[ swedish ] = "�terst�ll";
                    Text[ polish ] = "Przywr��";
                    Text[ portuguese_brazilian ] = "Redo";
                    Text[ japanese ] = "��蒼��";
                    Text[ korean ] = "���� ���";
                    Text[ chinese_simplified ] = "�ָ���������";
                    Text[ chinese_traditional ] = "��_�M�����O";
                    Text[ turkish ] = "Redo";
                    Text[ arabic ] = "�����";
                    Text[ catalan ] = "Redo";
                        Text[ finnish ] = "Toista";
                    };
                MenuItem
                {
                    Separator = TRUE ;
                };
                MenuItem
                {
                    ITEM_EDIT_CUT
                    Command = ".uno:Cut";
                };
                MenuItem
                {
                    ITEM_EDIT_COPY
                    Command = ".uno:Copy";
                };
                MenuItem
                {
                    ITEM_EDIT_PASTE
                    Command = ".uno:Paste";
                };
            };
        };
        Text[ russian ] = "~������";
            Text[ polish ] = "~Edytuj";
            Text[ japanese ] = "�ҏW(~E)";
            Text[ chinese_simplified ] = "�༭(~E)";
            Text[ chinese_traditional ] = "�s��(~E)";
            Text[ arabic ] = "~�����";
            Text[ greek ] = "�~����������";
            Text[ korean ] = "����(~E)";
            Text[ turkish ] = "~D�zenle";
            Text[ language_user1 ] = " ";
            Text[ catalan ] = "~Edit";
        };

    MenuItem
    {
        Identifier = MN_EXTRA ;
        HelpID = MN_EXTRA ;
        Text = "E~xtras" ;
        Text [ English ] = "T~ools" ;
        Text [ norwegian ] = "Verk~t�y" ;
        Text [ italian ] = "~Strumenti" ;
        Text [ portuguese_brazilian ] = "F~erramentas" ;
        Text [ portuguese ] = "~Ferramentas" ;
        Text [ finnish ] = "~Ty�kalut" ;
        Text [ danish ] = "Fun~ktioner" ;
        Text [ french ] = "~Outils" ;
        Text [ swedish ] = "~Verktyg" ;
        Text [ dutch ] = "E~xtra" ;
        Text [ spanish ] = "~Herramientas" ;
        Text [ english_us ] = "~Tools" ;
        SubMenu = Menu
        {
            ItemList =
            {
                ITEM_DATASOURCE_ADMINISTRATION
                MenuItem
                {
                    Separator = TRUE ;
                };
                MenuItem
                {
                    ITEM_TOOLS_BASICCHOOSER
                };
                ITEM_MN_OPTIONS
                MenuItem
                {
                    Separator = TRUE ;
                };
                MenuItem
                {
                    MID_INDEXDESIGN
                    Command = ".uno:DB/IndexDesign";
                };
            };
        };
            Text[ russian ] = "~������";
            Text[ greek ] = "�~�������";
            Text[ polish ] = "~Narz�dzia";
            Text[ japanese ] = "°�(~T)";
            Text[ korean ] = "�ɼ�(~T)";
            Text[ chinese_simplified ] = "����(~T)";
            Text[ chinese_traditional ] = "�u��(~T)";
            Text[ arabic ] = "�~����";
            Text[ turkish ] = "~Ara�lar";
            Text[ language_user1 ] = " ";
            Text[ catalan ] = "~Tools";
        };
    ITEM_WINDOW_MENU
    ITEM_HELP_MENU
    };
};

String STR_TABLEDESIGN_ALTER_ERROR
{
    Text = "Die Spalte \"\$column\$\" konnte nicht ge�ndert werden. Soll sie statt dessen gel�scht und das neue Format angeh�ngt werden?" ;
    Text [ english_us ] = "The column \"\\$column\\$\" could not be changed. Should the column instead be deleted and the new format appended?" ;
    Text[ portuguese ] = "The column \"\\$column\\$\" could not be changed. Should instead the column definition be appended?";
    Text[ russian ] = "The column \"\\$column\\$\" could not be changed. Should instead the column definition be appended?";
    Text[ greek ] = "The column \"\\$column\\$\" could not be changed. Should instead the column definition be appended?";
    Text[ dutch ] = "The column \"\\$column\\$\" could not be changed. Should instead the column definition be appended?";
    Text[ french ] = "The column \"\\$column\\$\" could not be changed. Should instead the column definition be appended?";
    Text[ spanish ] = "The column \"\\$column\\$\" could not be changed. Should instead the column definition be appended?";
    Text[ finnish ] = "The column \"\\$column\\$\" could not be changed. Should instead the column definition be appended?";
    Text[ italian ] = "The column \"\\$column\\$\" could not be changed. Should instead the column definition be appended?";
    Text[ danish ] = "The column \"\\$column\\$\" could not be changed. Should instead the column definition be appended?";
    Text[ swedish ] = "Det gick inte att �ndra kolumnen \"\\$column\\$\". Ska den i st�llet raderas och det nya formatet bifogas?";
    Text[ polish ] = "Modyfikacja kolumny \"\\$column\\$\" nie powiod�a si�. Usun�� j� i za��czy� nowy format?";
    Text[ portuguese_brazilian ] = "The column \"\\$column\\$\" could not be changed. Should instead the column definition be appended?";
    Text[ japanese ] = "The column \"\\$column\\$\" could not be changed. Should instead the column definition be appended?";
    Text[ korean ] = "The column \"\\$column\\$\" could not be changed. Should instead the column definition be appended?";
    Text[ chinese_simplified ] = "The column \"\\$column\\$\" could not be changed. Should instead the column definition be appended?";
    Text[ chinese_traditional ] = "The column \"\\$column\\$\" could not be changed. Should instead the column definition be appended?";
    Text[ turkish ] = "The column \"\\$column\\$\" could not be changed. Should instead the column definition be appended?";
    Text[ arabic ] = "The column \"\\$column\\$\" could not be changed. Should instead the column definition be appended?";
    Text[ catalan ] = "The column \"\\$column\\$\" could not be changed. Should instead the column definition be appended?";
};