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


String STR_TABLEDESIGN_DBFIELDTYPES
{
    //Text = "Unbekannt;Text;Zahl;Datum/Zeit;Datum;Zeit;Ja/Nein;Whrung;Memo;Zhler;Bild;Text (fix);Dezimal;Binrfeld (fix);Binrfeld;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;Whrung;Memo;Zhler;Bild;Text (fix);Dezimal;Binrfeld (fix);Binrfeld;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;Nmero;Data/Hora;Data;Hora;Sim/No;Moeda;Memorando;Contador;Imagem;Texto (fixo);Decimal;CampoBinrio (fixo);CampoBinrio;BigInt;Double;Float;Real;Integer;Small Integer;Tiny Integer;SQL Null;Objekt;Distinct;Estrutura;Campo;BLOB;CLOB;REF;OTHER";
    Text[ russian ] = ";;;/;;;;;;;; (.);; (.);; ;  ;  ;;; ;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;Mmo;Compteur;Image;Texte (fixe);Dcimal;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;Nmero;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 ] = "Ukendt;Tekst;Tal;Dato/Klokkeslt;Dato;Klokkeslt;Ja/Nej;Valuta;Notat;Tller;Billede;Tekst (fix);Decimal;Binrt felt (fix);Binrt felt;Stort heltal;Dobbelt;Flyd;Faktisk;Heltal;Lille heltal;Miniheltal;SQL Nul;Objekt;Distinkt;Struktur;Felt;BLOB;CLOB;REF;ANDET";
    Text[ swedish ] = "Oknd;Text;Tal;Datum/Tid;Datum;Tid;Ja/Nej;Valuta;PM;Rknare;Bild;Text (fast);Decimal;Binrt flt (fast);Binrflt;BigInt;Double;Float;Real;Integer;Small Integer;Tiny Integer;SQL Null;Objekt;Distinct;Struktur;Flt;BLOB;CLOB;REF;OTHER";
    Text[ polish ] = "Nieznany;Tekst;Liczba;Data/Godzina;Data;Godzina;Tak/Nie;Waluta;Memorandum;Licznik;Obraz;Tekst (stay);Dziesitny;Pole binarne (stae);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 ] = "不明;テキスト;数詞;日付/時刻;日付;時刻;はい/いいえ;通貨単位;メモ;カウンタ;イメージ;テキスト(固定);十進法;二進法フィールド(固定);二進法フィールド;BigInt;Double;Float;Real;Integer;Small Integer;Tiny Integer;SQL ゼロ;オブジェクト;Distinct;構造;フィールド;BLOB;CLOB;REF";
    Text[ korean ] = "알 수 없는;텍스트;수;날짜/시간;날짜;시간;예/아니오;화폐;메모;카운터;이미지;텍스트(고정);10진;2진 (고정);2진;BigInt;더블;부동;Real;정수;작은 정수;작은 정수;SQL Null;개체;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 ] = "不明;文字;數字;日期/時間;日期;時間;是/否;貨幣;Memo;計數;影像;文字(固定);十進位;二進位(固定);二進位;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 ] = "Desconegut;Text;Nmero;Data/Hora;Data;Hora;S/No;Moneda;Mem;Comptador;Imatge;Text (fix);Decimal;Binari (fix);Binari;BigInt;Doble;Flotant;Real;Enter;Enter petit;Enter minscul;SQL nul;Objecte;Diferent;Estructura;Camp;BLOB;CLOB;REF;OTHER";
    Text[ finnish ] = "Tuntematon;Teksti;Numero;Pivmr/Kellonaika;Pivmr;Kellonaika;Kyll/Ei;Valuutta;Muistio;Laskin;Kuva;Teksti (kiinte);Desimaali;Binaari (kiinte);Binaari;BigInt;Kaksinkertainen;Liukuluku;Reaali;Kokonaisluku;Pieni (small) kokonaisluku;Pieni (tiny) kokonaisluku;SQL tyhj;Objekti;Erityis;Rakenne;Kentt;BLOB;CLOB;REF;OTHER";
    Text[ thai ] = "ไม่รู้จัก;ข้อความ;จำนวน;วัน/เวลา;วัน;เวลา;ใช่/ไม่ใช่;สกุลเงิน;บันทึก;ตัวนับ;ภาพ;ข้อความ (ซ่อม);ทศนิยม;ฐานสอง (ซ่อม);ฐานสอง;BigInt;คู่;ลอย;จริง;จำนวนเต็ม;จำนวนเต็มน้อย;จำนวนเต็มนิด;SQL ว่าง;วัตถุ;เฉพาะ;โครงสร้าง;เขตข้อมูล;BLOB;CLOB;REF;อื่น ๆ";
};

String STR_TABLEDESIGN_UNDO_PRIMKEY
{
    Text = "Primrschlssel einfgen/entfernen" ;
    Text [ english_us ] = "Insert/remove primary key" ;
    Text [ portuguese_brazilian ] = "Prim?rschl?sel einf?en/entfernen" ;
    Text [ swedish ] = "Infoga/ta bort primrnyckel" ;
    Text [ danish ] = "Indst/fjern primrngle" ;
    Text [ italian ] = "Inserisci/elimina la chiave primaria" ;
    Text [ spanish ] = "Insertar/borrar una clave primaria" ;
    Text [ french ] = "Insrer/supprimer une cl primaire" ;
    Text [ dutch ] = "Primaire sleutel invoegen/verwijderen" ;
    Text [ portuguese ] = "Inserir/remover chave primria" ;
    Text[ chinese_simplified ] = "新增或删除主关键字";
    Text[ russian ] = "/  ";
    Text[ polish ] = "Wstaw /Usu gwny klucz";
    Text[ japanese ] = "プライマリキーの挿入と削除";
    Text[ chinese_traditional ] = "插入或刪除主關鍵字";
    Text[ arabic ] = "/  ";
    Text[ dutch ] = "Primaire sleutel invoegen/verwijderen";
    Text[ chinese_simplified ] = "新增或删除主关键字";
    Text[ greek ] = "/  ";
    Text[ korean ] = "기본키 삽입/제거";
    Text[ turkish ] = "Birinci anahtar ekle/kaldr";
    Text[ language_user1 ] = " ";
    Text[ catalan ] = "Insereix/suprimeix la clau primria";
    Text[ finnish ] = "Lis/poista perusavain";
    Text[ thai ] = "แทรก/เอาคีย์หลักออก";
};

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 ] = "是";
    Text[ arabic ] = "";
    Text[ dutch ] = "Ja";
    Text[ chinese_simplified ] = "是";
    Text[ greek ] = "";
    Text[ korean ] = "예";
    Text[ turkish ] = "Evet";
    Text[ language_user1 ] = " ";
    Text[ catalan ] = "S";
    Text[ finnish ] = "Kyll";
    Text[ thai ] = "ใช่";
};
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 ] = "No" ;
    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 ] = "Hayr";
    Text[ language_user1 ] = " ";
    Text[ catalan ] = "No";
    Text[ finnish ] = "Ei";
    Text[ thai ] = "ไม่ใช่";
};
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 ] = "Rosnco";
    Text[ japanese ] = "昇順";
    Text[ chinese_traditional ] = "向上";
    Text[ arabic ] = "";
    Text[ dutch ] = "Oplopend";
    Text[ chinese_simplified ] = "向上";
    Text[ greek ] = "";
    Text[ korean ] = "오름차순";
    Text[ turkish ] = "Artan";
    Text[ language_user1 ] = " ";
    Text[ catalan ] = "Ascendent";
    Text[ finnish ] = "Nouseva";
    Text[ thai ] = "จากน้อยไปมาก";
};
String STR_VALUE_DESC
{
    Text = "Absteigend" ;
    Text [ ENGLISH ] = "Descending" ;
    Text [ english_us ] = "Descending" ;
    Text [ italian ] = "Decrescente" ;
    Text [ spanish ] = "Descendente" ;
    Text [ french ] = "Dcroissant" ;
    Text [ dutch ] = "Aflopend" ;
    Text [ swedish ] = "Fallande" ;
    Text [ danish ] = "Faldende" ;
    Text [ portuguese_brazilian ] = "Absteigend" ;
    Text [ portuguese ] = "Descendente" ;
    Text[ chinese_simplified ] = "向下";
    Text[ russian ] = " ";
    Text[ polish ] = "Malejco";
    Text[ japanese ] = "降順";
    Text[ chinese_traditional ] = "向下";
    Text[ arabic ] = "";
    Text[ dutch ] = "Aflopend";
    Text[ chinese_simplified ] = "向下";
    Text[ greek ] = "";
    Text[ korean ] = "내림차순";
    Text[ turkish ] = "Azalan";
    Text[ language_user1 ] = " ";
    Text[ catalan ] = "Descendent";
    Text[ finnish ] = "Laskeva";
    Text[ thai ] = "จากมากไปน้อย";
};
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 ] = "<inget>";
    Text[ dutch ] = "<geen>";
    Text[ spanish ] = "<ninguno>";
    Text[ english_us ] = "<none>";
    Text[ chinese_simplified ] = "<无>";
    Text[ russian ] = "<>";
    Text[ polish ] = "<brak>";
    Text[ japanese ] = "<なし>";
    Text[ chinese_traditional ] = "<無>";
    Text[ arabic ] = "<>";
    Text[ dutch ] = "<geen>";
    Text[ chinese_simplified ] = "<无>";
    Text[ greek ] = "<>";
    Text[ korean ] = "<없음>";
    Text[ turkish ] = "<yok>";
    Text[ language_user1 ] = "";
    Text[ catalan ] = "<cap>";
    Text[ finnish ] = "<ei mitn>";
    Text[ thai ] = "<ไม่มี>";
};

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 ] = "Fltnamn" ;
    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 ] = "欄位名稱";
    Text[ arabic ] = " ";
    Text[ dutch ] = "Veldnaam";
    Text[ chinese_simplified ] = "字段名称";
    Text[ greek ] = " ";
    Text[ korean ] = "필드 이름";
    Text[ turkish ] = "Alan ad";
    Text[ language_user1 ] = " ";
    Text[ catalan ] = "Nom del camp";
    Text[ finnish ] = "Kentn nimi";
    Text[ thai ] = "ชื่อเขตข้อมูล";
};
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 ] = "Flttyp" ;
    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 tr";
    Text[ language_user1 ] = " ";
    Text[ catalan ] = "Tipus de camp";
    Text[ finnish ] = "Kentttyyppi";
    Text[ thai ] = "ชนิดเขตข้อมูล";
};
String STR_TAB_FIELD_LENGTH
{
    Text = "Feldlnge" ;
    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 ] = "Fltlngd" ;
    Text [ danish ] = "Feltlngde" ;
    Text [ portuguese_brazilian ] = "Feldl?nge" ;
    Text [ portuguese ] = "Comprimento do campo" ;
    Text[ chinese_simplified ] = "字段长度";
    Text[ russian ] = " ";
    Text[ polish ] = "Dugo pola";
    Text[ japanese ] = "フィールドの長さ";
    Text[ chinese_traditional ] = "欄位長度";
    Text[ arabic ] = " ";
    Text[ dutch ] = "Veldlengte";
    Text[ chinese_simplified ] = "字段长度";
    Text[ greek ] = " ";
    Text[ korean ] = "필드 길이";
    Text[ turkish ] = "Alan uzunluu";
    Text[ language_user1 ] = " ";
    Text[ catalan ] = "Longitud del camp";
    Text[ finnish ] = "Kentn pituus";
    Text[ thai ] = "ความยาวเขตข้อมูล";
};
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 ] = "Descripcin" ;
    Text [ french ] = "Description" ;
    Text [ dutch ] = "Omschrijving" ;
    Text [ portuguese ] = "Descrio" ;
    Text[ chinese_simplified ] = "说明";
    Text[ russian ] = "";
    Text[ polish ] = "Opis";
    Text[ japanese ] = "概要";
    Text[ chinese_traditional ] = "描述";
    Text[ arabic ] = "";
    Text[ dutch ] = "Omschrijving";
    Text[ chinese_simplified ] = "说明";
    Text[ greek ] = "";
    Text[ korean ] = "설명";
    Text[ turkish ] = "Tanm";
    Text[ language_user1 ] = " ";
    Text[ catalan ] = "Descripci";
    Text[ finnish ] = "Kuvaus";
    Text[ thai ] = "คำอธิบาย";
};
String STR_TAB_FIELD_NULLABLE
{
    Text = "Eingabe erforderlich" ;
    Text [ ENGLISH ] = "Input required" ;
    Text [ dutch ] = "Invoer vereist" ;
    Text [ english_us ] = "Input required" ;
    Text [ italian ] = "Digitazione necessaria" ;
    Text [ spanish ] = "Entrada requerida" ;
    Text [ french ] = "Saisie requise" ;
    Text [ swedish ] = "Inmatning krvs" ;
    Text [ danish ] = "Indtastning ndvendig" ;
    Text [ portuguese_brazilian ] = "Eingabe erforderlich" ;
    Text [ portuguese ] = "Entrada necessria" ;
    Text[ chinese_simplified ] = "要求输入";
    Text[ russian ] = " ";
    Text[ polish ] = "Wymagany jest wpis";
    Text[ japanese ] = "入力が必要";
    Text[ chinese_traditional ] = "要求輸入資料";
    Text[ arabic ] = " ";
    Text[ dutch ] = "Invoer vereist";
    Text[ chinese_simplified ] = "要求输入";
    Text[ greek ] = " ";
    Text[ korean ] = "입력 필요";
    Text[ turkish ] = "Veri girii gerekiyor";
    Text[ language_user1 ] = " ";
    Text[ catalan ] = "Es necessita una entrada";
    Text[ finnish ] = "Sytt pakollinen";
    Text[ thai ] = "ต้องการการป้อนเข้า";
};
String STR_FIELD_AUTOINCREMENT
{
    Text = "~Auto-Wert" ;
    Text [ ENGLISH ] = "Auto value" ;
    Text[ italian ] = "Valore ~automatico";
    Text[ portuguese_brazilian ] = "Auto value";
    Text[ portuguese ] = "~Valor automtico";
    Text[ danish ] = "~AutoVrdi";
    Text[ french ] = "A~utoValeur";
    Text[ swedish ] = "~AutoVrde";
    Text[ dutch ] = "~AutoWaarde";
    Text[ spanish ] = "~Valor automtico";
    Text[ english_us ] = "~AutoValue";
    Text[ chinese_simplified ] = "自动数值(~A)";
    Text[ russian ] = "~";
    Text[ polish ] = "Warto automatyczna";
    Text[ japanese ] = "自動入力値(~A)";
    Text[ chinese_traditional ] = "自動數值(~A)";
    Text[ arabic ] = " ";
    Text[ dutch ] = "~AutoWaarde";
    Text[ chinese_simplified ] = "自动数值(~A)";
    Text[ greek ] = "~";
    Text[ korean ] = "자동값(~A)";
    Text[ turkish ] = "~Otomatik deer";
    Text[ language_user1 ] = " ";
    Text[ catalan ] = "~Valor automtic";
    Text[ finnish ] = "~Automaattinen arvo";
    Text[ thai ] = "ค่า~อัตโนมัติ";
};
String STR_TAB_PROPERTIES
{
    Text = "Feldeigenschaften" ;
    Text [ ENGLISH ] = "Field properties" ;
    Text [ english_us ] = "Field Properties" ;
    Text [ portuguese_brazilian ] = "Feldeigenschaften" ;
    Text [ swedish ] = "Fltegenskaper" ;
    Text [ danish ] = "Feltegenskaber" ;
    Text [ italian ] = "Propriet di campo" ;
    Text [ spanish ] = "Propiedades del campo" ;
    Text [ french ] = "Proprits du champ" ;
    Text [ dutch ] = "Veldeigenschappen" ;
    Text [ portuguese ] = "Propriedades do campo" ;
    Text[ chinese_simplified ] = "字段属性";
    Text[ russian ] = " ";
    Text[ polish ] = "Waciwoci 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 ] = "Propietats del camp";
    Text[ finnish ] = "Kentn ominaisuudet";
    Text[ thai ] = "คุณสมบัติเขตข้อมูล";
};
String STR_TABPAGE_GENERAL
{
    Text = "Allgemein" ;
    Text [ ENGLISH ] = "General" ;
    Text [ english_us ] = "General" ;
    Text [ portuguese_brazilian ] = "Allgemein" ;
    Text [ swedish ] = "Allmnt" ;
    Text [ danish ] = "Generelt" ;
    Text [ italian ] = "Generale" ;
    Text [ spanish ] = "General" ;
    Text [ french ] = "Gnral" ;
    Text [ dutch ] = "Algemeen" ;
    Text [ portuguese ] = "Geral" ;
    Text[ chinese_simplified ] = "常规";
    Text[ russian ] = "";
    Text[ polish ] = "Oglne";
    Text[ japanese ] = "全般";
    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 ] = "Yleiset";
    Text[ thai ] = "ทั่วไป";
};
String STR_TAB_TABLE_DESCRIPTION
{
    Text = "Beschreibung :" ;
    Text [ ENGLISH ] = "Description :" ;
    Text[ english_us ] = "Description:";
    Text[ portuguese ] = "Descrio:";
    Text[ greek ] = " :";
    Text[ dutch ] = "Omschrijving:";
    Text[ french ] = "Description :";
    Text[ spanish ] = "Descripcin :";
    Text[ swedish ] = "Beskrivning :";
    Text[ russian ] = ":";
    Text[ italian ] = "Descrizione :";
    Text[ danish ] = "Beskrivelse:";
    Text[ polish ] = "Opis :";
    Text[ portuguese_brazilian ] = "Description :";
    Text[ japanese ] = "概要:";
    Text[ korean ] = "설명:";
    Text[ chinese_simplified ] = "说明:";
    Text[ chinese_traditional ] = "描述:";
    Text[ arabic ] = " :";
    Text[ turkish ] = "Tanm :";
    Text[ catalan ] = "Descripci";
    Text[ finnish ] = "Kuvaus:";
    Text[ thai ] = "คำอธิบาย:";
};

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 ] = "Proprits de la table";
    Text[ spanish ] = "Propiedades de la tabla";
    Text[ swedish ] = "Tabellegenskaper";
    Text[ russian ] = " ";
    Text[ italian ] = "Propriet tabella";
    Text[ danish ] = "Tabelegenskaber";
    Text[ polish ] = "Waciwoci 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 ] = "Propietats de la taula";
    Text[ finnish ] = "Taulun ominaisuudet";
    Text[ thai ] = "คุณสมบัติตาราง";
};

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 ] = "El texto introducido no es un elemento de la lista." ;
    Message [ french ] = "Le texte saisi n'est pas un lment 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 p listen." ;
    Message [ portuguese_brazilian ] = "Der eingegebenen Text ist kein Element der Liste." ;
    Message [ portuguese ] = "O texto digitado no faz parte da lista." ;
    Message[ chinese_simplified ] = "输入的文字不是列单单元。";
    Message[ russian ] = "     .";
    Message[ polish ] = "Wprowadzony tekst nie jest elementem listy.";
    Message[ japanese ] = "入力したテキストはリストの要素ではありません。";
    Message[ chinese_traditional ] = "輸入的文字不是清單單元。";
    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 deil.";
    Message[ language_user1 ] = " ";
    Message[ catalan ] = "El text que heu introdut no s un element de la llista. ";
    Message[ finnish ] = "Sytetty teksti ei ole luetteloelementti. ";
    Message[ thai ] = "ข้อความที่คุณใส่ไม่อยู่ในองค์ประกอบของรายการ ";
};

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 einfgen" ;
        Text [ ENGLISH ] = "Insert rows" ;
        Text [ english_us ] = "Insert Rows" ;
        Text [ portuguese_brazilian ] = "Zeilen einf?en" ;
        Text [ swedish ] = "Infoga rader" ;
        Text [ danish ] = "Indst rkker" ;
        Text [ italian ] = "Inserisci righe" ;
        Text [ spanish ] = "Insertar filas" ;
        Text [ french ] = "Insrer des lignes" ;
        Text [ dutch ] = "Rijen invoegen" ;
        Text [ portuguese ] = "Inserir linhas" ;
        Text[ chinese_simplified ] = "插入行";
            Text[ russian ] = " ";
            Text[ polish ] = "Wstaw wiersze";
            Text[ japanese ] = "行の挿入";
            Text[ chinese_traditional ] = "插入列";
            Text[ arabic ] = " ";
            Text[ dutch ] = "Rijen invoegen";
            Text[ chinese_simplified ] = "插入行";
            Text[ greek ] = " ";
            Text[ korean ] = "행 삽입";
            Text[ turkish ] = "Satr ekle";
            Text[ language_user1 ] = " ";
            Text[ catalan ] = "Insereix files";
            Text[ finnish ] = "Lis rivit";
            Text[ thai ] = "แทรกแถว";
        };
    MenuItem
    {
        Separator = TRUE ;
    };
    MenuItem
    {
        Identifier = SID_TABLEDESIGN_TABED_PRIMARYKEY ;
        HelpID = SID_TABLEDESIGN_TABED_PRIMARYKEY ;
        Checkable = TRUE ;
        Text = "Primrschlssel" ;
        Text [ ENGLISH ] = "Primary key" ;
        Text [ english_us ] = "Primary Key" ;
        Text [ portuguese_brazilian ] = "Prim?rschl?sel" ;
        Text [ swedish ] = "Primrnyckel" ;
        Text [ danish ] = "Primrngle" ;
        Text [ italian ] = "Chiave primaria" ;
        Text [ spanish ] = "Llave primaria" ;
        Text [ french ] = "Cl primaire" ;
        Text [ dutch ] = "Primaire sleutel" ;
        Text [ portuguese ] = "Chave primria" ;
        Text[ chinese_simplified ] = "主关键字";
            Text[ russian ] = " ";
            Text[ polish ] = "Klucz gwny";
            Text[ japanese ] = "プライマリキー";
            Text[ chinese_traditional ] = "主關鍵字";
            Text[ arabic ] = " ";
            Text[ dutch ] = "Primaire sleutel";
            Text[ chinese_simplified ] = "主关键字";
            Text[ greek ] = " ";
            Text[ korean ] = "기본키";
            Text[ turkish ] = "Birinci anahtar";
            Text[ language_user1 ] = " ";
            Text[ catalan ] = "Clau primria";
            Text[ finnish ] = "Perusavain";
            Text[ thai ] = "คีย์หลัก";
        };
    };
};
String STR_TABED_UNDO_CELLMODIFIED
{
    Text = "Zelle ndern" ;
    Text [ english_us ] = "Modify cell" ;
    Text [ portuguese ] = "Modificar clula" ;
    Text [ portuguese_brazilian ] = "Zelle ?ndern" ;
    Text [ swedish ] = "ndra cell" ;
    Text [ danish ] = "Modificer celle" ;
    Text [ italian ] = "Modifica cella" ;
    Text [ spanish ] = "Modificar la celda" ;
    Text [ french ] = "Modifier une cellule" ;
    Text [ dutch ] = "Cel wijzigen" ;
    Text[ chinese_simplified ] = "更改单元格";
    Text[ russian ] = " ";
    Text[ polish ] = "Modyfikuj komrk";
    Text[ japanese ] = "セルの変更";
    Text[ chinese_traditional ] = "修改儲存格";
    Text[ arabic ] = " ";
    Text[ dutch ] = "Cel wijzigen";
    Text[ chinese_simplified ] = "更改单元格";
    Text[ greek ] = " ";
    Text[ korean ] = "셀 변경";
    Text[ turkish ] = "Hcreyi deitir";
    Text[ language_user1 ] = " ";
    Text[ catalan ] = "Modifica la cel.la";
    Text[ finnish ] = "Muuta solua";
    Text[ thai ] = "ดัดแปลงแก้ไขเซลล์";
};
String STR_TABED_UNDO_ROWDELETED
{
    Text = "Zeile lschen" ;
    Text [ english_us ] = "Delete row" ;
    Text [ portuguese_brazilian ] = "Zeile l?chen" ;
    Text [ swedish ] = "Radera rad" ;
    Text [ danish ] = "Slet rkke" ;
    Text [ italian ] = "Elimina riga" ;
    Text [ spanish ] = "Borrar la 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 ] = "行の削除";
    Text[ chinese_traditional ] = "刪除列";
    Text[ arabic ] = " ";
    Text[ dutch ] = "Rij wissen";
    Text[ chinese_simplified ] = "删除行";
    Text[ greek ] = " ";
    Text[ korean ] = "행 삭제";
    Text[ turkish ] = "Satr sil";
    Text[ language_user1 ] = " ";
    Text[ catalan ] = "Suprimeix la fila";
    Text[ finnish ] = "Poista rivi";
    Text[ thai ] = "ลบแถว";
};
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 flttyp";
    Text[ dutch ] = "Veldtype wijzigen";
    Text[ spanish ] = "Modificar el tipo de campo";
    Text[ english_us ] = "Modify Field Type";
    Text[ chinese_simplified ] = "更改字段类型";
    Text[ russian ] = "  ";
    Text[ polish ] = "Zmie typ pola";
    Text[ japanese ] = "フィールドの種類の変更";
    Text[ chinese_traditional ] = "變更欄位類型";
    Text[ arabic ] = "  ";
    Text[ dutch ] = "Veldtype wijzigen";
    Text[ chinese_simplified ] = "更改字段类型";
    Text[ greek ] = "  ";
    Text[ korean ] = "필드 유형 변경";
    Text[ turkish ] = "Alan trn deitir";
    Text[ language_user1 ] = " ";
    Text[ catalan ] = "Modifica el tipus de camp";
    Text[ finnish ] = "Muuta kentttyyppi";
    Text[ thai ] = "ดัดแปลงแก้ไขชนิดเขตข้อมูล";
};
String STR_TABED_UNDO_ROWINSERTED
{
    Text = "Zeile einfgen" ;
    Text [ english_us ] = "Insert row" ;
    Text [ portuguese_brazilian ] = "Zeile einf?en" ;
    Text [ swedish ] = "Infoga rad" ;
    Text [ danish ] = "Indst rkke" ;
    Text [ italian ] = "Inserisci riga" ;
    Text [ spanish ] = "Insertar una fila" ;
    Text [ french ] = "Insrer une ligne" ;
    Text [ dutch ] = "Rij invoegen" ;
    Text [ portuguese ] = "Inserir linha" ;
    Text[ chinese_simplified ] = "插入行";
    Text[ russian ] = " ";
    Text[ polish ] = "Wstaw wiersz";
    Text[ japanese ] = "行の挿入";
    Text[ chinese_traditional ] = "插入列";
    Text[ arabic ] = " ";
    Text[ dutch ] = "Rij invoegen";
    Text[ chinese_simplified ] = "插入行";
    Text[ greek ] = " ";
    Text[ korean ] = "행 삽입";
    Text[ turkish ] = "Satr ekle";
    Text[ language_user1 ] = " ";
    Text[ catalan ] = "Insereix una fila";
    Text[ finnish ] = "Lis rivi";
    Text[ thai ] = "แทรกแถว";
};
String STR_TABED_UNDO_NEWROWINSERTED
{
    Text = "Neue Zeile einfgen" ;
    Text [ english_us ] = "Insert new row" ;
    Text [ portuguese_brazilian ] = "Neue Zeile einf?en" ;
    Text [ swedish ] = "Infoga ny rad" ;
    Text [ danish ] = "Indst ny rkke" ;
    Text [ italian ] = "Inserisci riga nuova" ;
    Text [ spanish ] = "Insertar una fila nueva" ;
    Text [ french ] = "Insrer 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 ] = "新しい行の挿入";
    Text[ chinese_traditional ] = "插入列";
    Text[ arabic ] = "  ";
    Text[ dutch ] = "Nieuwe rij invoegen";
    Text[ chinese_simplified ] = "新增行";
    Text[ greek ] = "  ";
    Text[ korean ] = "새 행을 삽입";
    Text[ turkish ] = "Yeni satr ekle";
    Text[ language_user1 ] = " ";
    Text[ catalan ] = "Insereix una fila nova";
    Text[ finnish ] = "Lis uusi rivi";
    Text[ thai ] = "แทรกแถวใหม่";
};
String STR_TABED_UNDO_PRIMKEY
{
    Text = "Primrschlssel einfgen/entfernen" ;
    Text [ english_us ] = "Insert/remove primary key" ;
    Text [ portuguese_brazilian ] = "Prim?rschl?sel einf?en/entfernen" ;
    Text [ swedish ] = "Infoga/ta bort primrnyckel" ;
    Text [ danish ] = "Indst/fjern primrngle" ;
    Text [ italian ] = "Inserisci/elimina la chiave primaria" ;
    Text [ spanish ] = "Insertar/borrar una clave primaria" ;
    Text [ french ] = "Insrer/supprimer une cl primaire" ;
    Text [ dutch ] = "Primaire sleutel invoegen/verwijderen" ;
    Text [ portuguese ] = "Inserir/remover chave primria" ;
    Text[ chinese_simplified ] = "新增或删除主关键字";
    Text[ russian ] = "/  ";
    Text[ polish ] = "Wstaw /Usu gwny klucz";
    Text[ japanese ] = "プライマリキーの挿入と削除";
    Text[ chinese_traditional ] = "插入或刪除主關鍵字";
    Text[ arabic ] = "/  ";
    Text[ dutch ] = "Primaire sleutel invoegen/verwijderen";
    Text[ chinese_simplified ] = "新增或删除主关键字";
    Text[ greek ] = "/  ";
    Text[ korean ] = "기본키 삽입/제거";
    Text[ turkish ] = "Birinci anahtar ekle/kaldr";
    Text[ language_user1 ] = " ";
    Text[ catalan ] = "Insereix/suprimeix la clau primria";
    Text[ finnish ] = "Lis/poista perusavain";
    Text[ thai ] = "แทรก/เอาคีย์หลักออก";
};

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 ;
            Checkable = TRUE;
            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 ] = "編集";
            Text[ korean ] = "편집";
            Text[ chinese_simplified ] = "编辑";
            Text[ chinese_traditional ] = "編輯";
            Text[ turkish ] = "Dzenle";
            Text[ arabic ] = "";
            Text[ catalan ] = "Edita";
            Text[ finnish ] = "Muokkaa";
            Text[ thai ] = "แก้ไข";
        };
        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 ] = "Gem";
            Text[ swedish ] = "Spara";
            Text[ polish ] = "Zapisz";
            Text[ portuguese_brazilian ] = "Save";
            Text[ japanese ] = "保存";
            Text[ korean ] = "저장";
            Text[ chinese_simplified ] = "存盘";
            Text[ chinese_traditional ] = "儲存";
            Text[ turkish ] = "Save";
            Text[ arabic ] = "";
            Text[ catalan ] = "Desa";
            Text[ finnish ] = "Tallenna";
            Text[ thai ] = "บันทึก";
        };
        ToolBoxItem
        {
            ITEM_FILE_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 ;
            MID_UNDO
        };
        ToolBoxItem
        {
            Identifier = ID_BROWSER_REDO ;
            HelpId = SID_REDO ;
            MID_REDO
        };
        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 ligao";
            Text[ russian ] = " ";
            Text[ greek ] = "  ";
            Text[ dutch ] = "Geen verbinding";
            Text[ french ] = "Aucune connexion";
            Text[ spanish ] = "Sin conexin";
            Text[ italian ] = "Nessun collegamento";
            Text[ danish ] = "Ingen forbindelse";
            Text[ swedish ] = "Ingen frbindelse";
            Text[ polish ] = "Brak poczenia";
            Text[ portuguese_brazilian ] = "No connection";
            Text[ japanese ] = "接続なし";
            Text[ korean ] = "연결 없음";
            Text[ chinese_simplified ] = "无法连接";
            Text[ chinese_traditional ] = "沒有連線";
            Text[ turkish ] = "No connection";
            Text[ arabic ] = "  ";
            Text[ catalan ] = "Sense connexi";
            Text[ finnish ] = "Ei yhteytt";
            Text[ thai ] = "ไม่เชื่อมต่อ";
        };
    };
};
String STR_DEFAULT_VALUE
{
    Text = "~Defaultwert" ;
    Text [ ENGLISH ] = "Default" ;
    Text [ english_us ] = "~Default value" ;
    Text [ portuguese_brazilian ] = "Defaultwert" ;
    Text [ swedish ] = "Stan~dardvrde" ;
    Text [ danish ] = "~Standardvrdi" ;
    Text [ italian ] = "~Valore predefinito" ;
    Text [ spanish ] = "Valor pre~determinado" ;
    Text [ french ] = "Valeur par dfaut" ;
    Text [ dutch ] = "~Standaardwaarde" ;
    Text [ portuguese ] = "~Valor padro" ;
    Text[ chinese_simplified ] = "默认值(~D)";
    Text[ russian ] = "  ";
    Text[ polish ] = "Warto domylna";
    Text[ japanese ] = "標準値(~D)";
    Text[ chinese_traditional ] = "默認值(~D)";
    Text[ arabic ] = " ";
    Text[ dutch ] = "~Standaardwaarde";
    Text[ chinese_simplified ] = "默认值(~D)";
    Text[ greek ] = " ";
    Text[ korean ] = "기본값(~D)";
    Text[ turkish ] = "~Standart deer";
    Text[ language_user1 ] = " ";
    Text[ catalan ] = "Valor per ~defecte";
    Text[ finnish ] = "~Oletusarvo";
    Text[ thai ] = "ค่าเ~ริ่มต้น";
};
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 krvs" ;
    Text [ danish ] = "~Indtastning ndvendig" ;
    Text [ italian ] = "Di~gitazione necessaria" ;
    Text [ spanish ] = "~Entrada requerida" ;
    Text [ french ] = "~Saisie requise" ;
    Text [ dutch ] = "~Invoer vereist" ;
    Text [ portuguese ] = "~Entrada necessria" ;
    Text[ chinese_simplified ] = "要求输入(~E)";
    Text[ russian ] = "";
    Text[ polish ] = "Wymagany jest wpis";
    Text[ japanese ] = "入力が必要(~E)";
    Text[ chinese_traditional ] = "必須輸入資料(~E)";
    Text[ arabic ] = " ";
    Text[ dutch ] = "~Invoer vereist";
    Text[ chinese_simplified ] = "要求输入(~E)";
    Text[ greek ] = "~ ";
    Text[ korean ] = "입력 필요(~E)";
    Text[ turkish ] = "~Giri gerekiyor";
    Text[ language_user1 ] = " ";
    Text[ catalan ] = "Es necessita una ~entrada";
    Text[ finnish ] = "~Merkint pakollinen";
    Text[ thai ] = "ต้องการการ~ป้อนเข้า";
};
String STR_TEXT_LENGTH
{
    Text = "~Lnge" ;
    Text [ ENGLISH ] = "Length" ;
    Text [ english_us ] = "~Length" ;
    Text [ portuguese_brazilian ] = "L?nge" ;
    Text [ swedish ] = "~Lngd" ;
    Text [ danish ] = "~Lngde" ;
    Text [ italian ] = "~Lunghezza" ;
    Text [ spanish ] = "~Longitud" ;
    Text [ french ] = "~Longueur" ;
    Text [ dutch ] = "~Lengte" ;
    Text [ portuguese ] = "~Comprimento" ;
    Text[ chinese_simplified ] = "长度(~L)";
    Text[ russian ] = "";
    Text[ polish ] = "Dugo";
    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";
    Text[ thai ] = "~ความยาว";
};
String STR_NUMERIC_TYPE
{
    Text = "~Typ" ;
    Text [ ENGLISH ] = "Type" ;
    Text [ english_us ] = "~Type" ;
    Text [ portuguese_brazilian ] = "Typ" ;
    Text [ swedish ] = "~Typ" ;
    Text [ danish ] = "Typ~e" ;
    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 ] = "~Tipus";
    Text[ finnish ] = "~Tyyppi";
    Text[ thai ] = "~ชนิด";
};
String STR_LENGTH
{
    Text = "~Lnge" ;
    Text [ ENGLISH ] = "Length" ;
    Text [ english_us ] = "~Length" ;
    Text [ portuguese_brazilian ] = "Tamanho" ;
    Text [ swedish ] = "~Lngd" ;
    Text [ danish ] = "~Lngde" ;
    Text [ italian ] = "Lun~ghezza" ;
    Text [ spanish ] = "Ta~mao" ;
    Text [ french ] = "~Longueur" ;
    Text [ dutch ] = "~Lengte" ;
    Text [ portuguese ] = "~Comprimento" ;
    Text[ chinese_simplified ] = "长度(~L)";
    Text[ russian ] = "";
    Text[ polish ] = "Dugo";
    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";
    Text[ thai ] = "~ความยาว";
};
String STR_SCALE
{
    Text = "~Nachkommastellen" ;
    Text [ ENGLISH ] = "Scale" ;
    Text [ english_us ] = "Decimal ~places" ;
    Text [ portuguese_brazilian ] = "Nachkommastellen" ;
    Text [ swedish ] = "A~ntal decimaler" ;
    Text [ danish ] = "~Antal decimaler" ;
    Text [ italian ] = "Posizio~ni decimali" ;
    Text [ spanish ] = "~Decimales" ;
    Text [ french ] = "Dcimales" ;
    Text [ dutch ] = "Aantal de~cimalen" ;
    Text [ portuguese ] = "Casas ~decimais" ;
    Text[ chinese_simplified ] = "小数点位数(~P)";
    Text[ russian ] = "  ";
    Text[ polish ] = "Miejsca po przecinku";
    Text[ japanese ] = "小数点以下の桁数(~P)";
    Text[ chinese_traditional ] = "小數點位數(~P)";
    Text[ arabic ] = " ";
    Text[ dutch ] = "Aantal de~cimalen";
    Text[ chinese_simplified ] = "小数点位数(~P)";
    Text[ greek ] = " ";
    Text[ korean ] = "소수점 이하 자릿수(~P)";
    Text[ turkish ] = "~Ondalk basamaklar";
    Text[ language_user1 ] = " ";
    Text[ catalan ] = "Llocs ~decimals";
    Text[ finnish ] = "~Desimaaleja";
    Text[ thai ] = "จุด ~ทศนิยม";
};
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 ] = "Przykad formatu";
    Text[ japanese ] = "書式サンプル";
    Text[ chinese_traditional ] = "格式示範";
    Text[ arabic ] = " ";
    Text[ dutch ] = "Opmaakvoorbeeld";
    Text[ chinese_simplified ] = "格式示范";
    Text[ greek ] = " ";
    Text[ korean ] = "서식 예";
    Text[ turkish ] = "Format rnei";
    Text[ catalan ] = "Exemple de format";
    Text[ finnish ] = "Muotoiluesimerkki";
    Text[ thai ] = "ตัวอย่างรูปแบบ";
};
String STR_HELP_BOOL_DEFAULT
{
    Text = "Whlen Sie einen Wert, der in jedem neu eingefgten Datensatz als Standard erscheinen soll.\nWhlen Sie den leeren String, wenn das Feld keinen solchen Standardwert haben soll." ;
    Text [ ENGLISH ] = "Whlen Sie einen Wert, der in jedem neu eingefgten Datensatz als Standard erscheinen soll.\nWhlen 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 padro em cada novo registo de dados introduzido.\nSeleccione a sequncia vazia, se o campo no tiver que apresentar nenhum valor padro.";
    Text[ danish ] = "Vlg en vrdi, der skal vises som standard i alle nyindsatte dataposter.\nVlg den tomme streng, hvis feltet ikke skal have en sdan standardvrdi.";
    Text[ french ] = "Dfinissez la valeur  faire figurer comme valeur par dfaut dans tous les nouveaux enregistrements.\\Si le champ ne doit pas adopter de valeur par dfaut, choisissez la chane vide.";
    Text[ swedish ] = "Vlj ett vrde som skall visas som standard i varje ny infogad datapost.\nVlj den tomma strngen om fltet inte skall ha ngot standardvrde.";
    Text[ dutch ] = "Kies een waarde die in iedere nieuwe 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 predeterminado en cada registro de datos que se\ninserte de nuevo. Elija la secuencia vaca si el campo no ha de contener tal valor predeterminado.";
    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, ktra w kadym nowo wstawionym rekordzie bdzie wartoci domyln.\nWybierz pusty cig znakw, jeli pole nie ma mie domylnej wartoci.";
    Text[ japanese ] = "新しくレコードを挿入するときに表示される標準値を選択します。\nまたフィールドに標準値設定をしないときは、空白のままにしておきます。";
    Text[ chinese_traditional ] = "請選擇一個用於每一個新增資料條目的標準數值。\n若欄位不應該含有這個標準數值,就選擇一個空字串。";
    Text[ arabic ] = "              .\n        ɡ  ";
    Text[ dutch ] = "Kies een waarde die in iedere nieuwe 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 kaytta standart olarak bulunacak bir deer sein.\nAlan iin bu tr bir standart deer belirlenmeyecekse bo dizilim sein.";
    Text[ language_user1 ] = " ";
    Text[ catalan ] = "Seleccioneu un valor que apareixer a tots els registres com a valor per defecte.\nSi el camp no ha de tenir un valor per defecte, seleccioneu la cadena buida.";
    Text[ finnish ] = "Valitse arvo, joka nkyy kaikissa uusissa tietueissa oletuksena.\nJos kenttn ei tule oletusarvoa, valitse tyhj merkkijono.";
    Text[ thai ] = "เลือกค่าที่ปรากฏในระเบียนใหม่ทั้งหมดเป็นค่าเริ่มต้น\nถ้าเขตข้อมูลไม่มีค่าเริ่มต้น, ให้เลือกสายอักขระที่ว่าง";
};
String STR_HELP_DEFAULT_VALUE
{
    Text = "Geben Sie hier einen Standardwert fr das Feld an.\n\nWenn Sie spter Daten in die Tabelle eingeben, wird in jedem neuen Datensatz diese Zeichenkette fr das aktuelle Feld verwendet. Sie sollte deshalb der weiter unten einzugebenden Zellenformatierung gengen." ;
    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 standardvrde fr fltet hr.\n\nNr du matar in data i tabellen senare anvnds den hr teckenstrngen fr det aktuella fltet i varje ny datapost. Den br drfr motsvara cellformateringen som skall matas in nedan." ;
    Text [ danish ] = "Indtast en standardvrdi til feltet her.\n\nNr du senere indtaster data i tabellen, anvendes denne streng til det aktuelle felt i alle nye dataposter. Den br derfor svare til den celleformatering, der indtastes senere." ;
    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 utilizar esta cadena de carecteres para el campo actual. Por esta razn debe corresponder al formato de celda que introducir a continuacin." ;
    Text [ french ] = "Saisissez une valeur par dfaut pour le champ.\n\nIl s'agit de la chane de caractres qui sera utilise dans chaque nouvel enregistrement pour le champ actif lorsque vous saisirez des donnes dans la table. Elle doit donc correspondre au format de cellule  saisir plus bas." ;
    Text [ dutch ] = "Geef hier een standaardwaarde voor het veld op.\n\nAls u later gegevens invoert in de tabel, wordt deze tekenreeks in iedere nieuwe record gebruikt voor het huidige veld en moet deze corresponderen met de hierna te definiren celopmaak." ;
    Text [ portuguese ] = "Indique um valor padro 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 razo, ela deve corresponder ao formato de clula a indicar mais abaixo." ;
    Text[ chinese_simplified ] = "请在此为这个字段输入一个默认值。\n\n如果您以后在表格中输入数据,每个新的数据条目会采用这个数据格式。这样的设定可以满足以下的单元格格式的要求。";
    Text[ russian ] = "      .\n\n    ,        .       ,  .";
    Text[ polish ] = "Naley poda warto domyln pola.\n\nW trakcie pniejszego wpisywania danych do tabeli, dany cig znakw uyty zostanie w kadym nowym rekordzie odnonie aktualnego pola. Format cigu znakw powinien zgadza si z podanym poniej formatem komrek.";
    Text[ japanese ] = "ここにフィールドの標準値を入力します。\n\nこの標準値は、データをテーブルに入力すると変更できます。標準値は、下で指定するセルの書式に対応している必要があります。";
    Text[ chinese_traditional ] = "請您為這個欄位輸入一個默認值。\n\n在這個欄位之下輸入其他資料時就會自動採用這個儲存格的格式。";
    Text[ arabic ] = "     .\n\n        ޡ          .";
    Text[ dutch ] = "Geef hier een standaardwaarde voor het veld op.\n\nAls u later gegevens invoert in de tabel, wordt deze tekenreeks in iedere nieuwe record gebruikt voor het huidige veld en moet deze corresponderen met de hierna te definiren celopmaak.";
    Text[ chinese_simplified ] = "请在此为这个字段输入一个默认值。\n\n如果您以后在表格中输入数据,每个新的数据条目会采用这个数据格式。这样的设定可以满足以下的单元格格式的要求。";
    Text[ greek ] = "      .\n\n               ? ";
    Text[ korean ] = "여기에 필드의 기본값을 입력하십시오.\n\n차후에 테이블에 데이터를 입력하게 되면 모든 새 레코드의 활성화된 필드에서 이 문자열이 사용될 것입니다. 따라서 이 문자열은 아래에 입력할 셀 서식에 적합해야 합니다.";
    Text[ turkish ] = "Alan iin bir standart deer girin.\n\nDaha sonra tabloya veri girii yaptnzda, her yeni veri kmesinde, yrrlkteki alan iin bu dize kullanlr. Dize bu nedenle aada girilmesi gereken hcre formatna uygun olmaldr.";
    Text[ language_user1 ] = " ";
    Text[ catalan ] = "Introduu un valor per defecte per a aquest camp.\n\nQuan introduu les dades en la taula posteriorment, aquesta cadena s'utilitzar en cada registre nou per al camp seleccionat. Hauria de correspondre's, doncs, amb el format de cel.la que cal introduir a sota.";
    Text[ finnish ] = "Syt oletusarvo tt kentt varten.\n\nKun tietoja sytetn tauluun myhemmin, tt merkkijonoa kytetn valitun kentn jokaisessa uudessa tietueessa. Oletusarvon tulee siis vastata solun muotoa, joka sytetn alapuolelle.";
    Text[ thai ] = "ใส่ค่าเริ่มต้นในเขตข้อมูลนี้\n\nต่อมาเมื่อคุณใส่ข้อมูลในตาราง  ใช้สายอักขระนี้ในระเบียนใหม่แต่ละอันสำหรับเขตข้อมูลที่เลือก เนื่องจากมันควรจะตรงกับรูปแบบเซลล์ที่ต้องการใส่ข้างล่าง";
};
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 hr alternativet om inga NULL-vrden r tilltna i det hr fltet och anvndaren allts alltid mste mata in data." ;
    Text [ danish ] = "Aktiver denne indstilling, hvis NUL-vrdier ikke er tilladt i dette felt, s brugeren alts 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 opcin si este campo no acepta ningn valor null. Es decir, si el usuario debe introducir siempre los datos." ;
    Text [ french ] = "Activez cette option si ce champ n'accepte aucune valeur NULL et si l'utilisateur doit donc toujours y saisir des donnes." ;
    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 opo se no forem permitidos valores NULL neste campo, tendo o utilizador que introduzir sempre os dados." ;
    Text[ chinese_simplified ] = "如果这个字段内不允许使用零值而必须要求输入数据,就选择使用这个选项。";
    Text[ russian ] = " \"\",         NULL,       .";
    Text[ polish ] = "Uaktywnij t opcj, jeli niedozwolone s w tym polu wartoci ZEROWE, w wic jeli uytkownik musi zawsze wpisywa dane.";
    Text[ japanese ] = "このフィールドにゼロ値は使わず、常にユーザーがデータを入力するような場合は、このオプションをアクティブにします。";
    Text[ chinese_traditional ] = "如果要設定這個欄位內不可以輸入零值而必須輸入有效數值時,您就必須採用這個選項。";
    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 ] = "이 필드에 0 값이 허용되어 있지 않아서 사용자가 항상 데이터를 입력해야 할 경우 이 옵션을 활성화하십시오.";
    Text[ turkish ] = "Bu seenei, bu alana BO deer girilememesi, yani kullancnn daima vergi girmek zorunda olmas halinde etkinletiriniz.";
    Text[ language_user1 ] = " ";
    Text[ catalan ] = "Activeu aquesta opci en cas que aquest camp no pugui contenir valors NULL. s a dir, l'usuari sempre hi haur d'introduir alguna dada.";
    Text[ finnish ] = "Aktivoi tm asetus, jos kentt ei voi sislt tyhji arvoja, eli jos kyttjn on aina sytettv tietoja.";
    Text[ thai ] = "เรียกใช้งานตัวเลือกนี้ ถ้าเขตข้อมูลนี้ไม่สามารถมีค่าว่างได้ เช่น  ผู้ใช้ต้องใส่ข้อมูลเสมอ";
};
String STR_HELP_TEXT_LENGTH
{
    Text = "Geben Sie die maximal zulssige Textlnge 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 tilltna textlngden." ;
    Text [ danish ] = "Angiv den maksimalt tilladte tekstlngde." ;
    Text [ italian ] = "Digitare la lunghezza massima ammessa per il testo." ;
    Text [ spanish ] = "Especifique la longitud mxima permitida de texto." ;
    Text [ french ] = "Indiquez la longueur maximum autorise pour le texte." ;
    Text [ dutch ] = "Geef de maximaal toelaatbare tekstlengte op." ;
    Text [ portuguese ] = "Indique o comprimento mximo permitido para o texto." ;
    Text[ chinese_simplified ] = "请设定输入文的最长度。";
    Text[ russian ] = "    .";
    Text[ polish ] = "Podaj maksymalnie dopuszczaln dugo tekstu.";
    Text[ japanese ] = "入力できる最高文字数を指定します。";
    Text[ chinese_traditional ] = "請設定輸入文字的最長數目。";
    Text[ arabic ] = "          .";
    Text[ dutch ] = "Geef de maximaal toelaatbare tekstlengte op.";
    Text[ chinese_simplified ] = "请设定输入文的最长度。";
    Text[ greek ] = "      .";
    Text[ korean ] = "최대 허용 텍스트 길이를 입력하십시오.";
    Text[ turkish ] = "zin verilen azami metin uzunluunu giriniz.";
    Text[ language_user1 ] = " ";
    Text[ catalan ] = "Introduu la longitud mxima de text permesa.";
    Text[ finnish ] = "Syt tekstin sallittu enimmispituus.";
    Text[ thai ] = "ใส่ข้อความยาวที่สุดที่สามารถใส่ได้";
};
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 fr talet hr." ;
    Text [ danish ] = "Definer her, hvilken type tallet skal have." ;
    Text [ italian ] = "Digitate il tipo di numero." ;
    Text [ spanish ] = "Especifique aqu el formato numrico." ;
    Text [ french ] = "Spcifiez le type de nombre." ;
    Text [ dutch ] = "Geef de getalnotatie op." ;
    Text [ portuguese ] = "Defina o formato numrico." ;
    Text[ chinese_simplified ] = "请您在此设定数字类型。";
    Text[ russian ] = "  .";
    Text[ polish ] = "Tutaj naley ustali typ liczby.";
    Text[ japanese ] = "数の書式を指定します。";
    Text[ chinese_traditional ] = "請設定數字類型。";
    Text[ arabic ] = "    .";
    Text[ dutch ] = "Geef de getalnotatie op.";
    Text[ chinese_simplified ] = "请您在此设定数字类型。";
    Text[ greek ] = "    .";
    Text[ korean ] = "숫자 유형을 결정하십시오.";
    Text[ turkish ] = "Rakam tipini belirleyiniz.";
    Text[ language_user1 ] = " ";
    Text[ catalan ] = "Introduu el format numric.";
    Text[ finnish ] = "Syt lukumuoto.";
    Text[ thai ] = "ใส่รูปแบบตัวเลข";
};
String STR_HELP_LENGTH
{
    Text = "Geben Sie die Lnge fr Daten in diesem Feld an.\n\nFr Dezimal-Felder ist das die maximale Lnge der eingegebenen Zahl, fr Binrfelder die Lnge des Datenblockes.\nWenn der Wert grer ist als der maximal fr diese Datenbank zulssige, 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 lngden fr data i det hr fltet.\n\nFr decimalflt r det den maximala lngden p det inmatade talet, fr binra flt lngden p datablocket.\nOm vrdet r strre n vad som maximalt r tilltet fr den hr databasen, korrigeras det." ;
    Text [ danish ] = "Angiv lngden for data i dette felt.\n\nFor decimalfelter er dette den maksimale lngde for det indtastede tal, for binre felter lngden p datablokken.\nHvis vrdien er strre end den maksimale vrdi for denne database, korrigeres den i overensstemmelse dermed." ;
    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 mxima del nmero introducido; para campos binarios, la longitud del bloque de datos.\nSi el valor fuera mayor que el mximo permitido para esta base de datos, se corregir correspondientemente." ;
    Text [ french ] = "Indiquez la longueur pour les donnes de ce champ.\n\n savoir : pour les champs de type Dcimal, la longueur maximale du nombre  saisir et pour les champs de type Binaire la longueur du bloc de donnes.\nLa valeur sera corrige automatiquement si elle devait dpasser le maximum autoris pour cette base de donnes." ;
    Text [ dutch ] = "Geef de lengte van dit veldtype op.\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, wordt de lengte gecorrigeerd." ;
    Text [ portuguese ] = "Defina o comprimento para os dados deste campo.\n\nPara campos decimais este  o comprimento mximo do nmero indicado; para campos binrios  o comprimento do bloco de dados.\nEste valor ser devidamente corrigido se for superior ao mximo permitido para esta base de dados." ;
    Text[ chinese_simplified ] = "请您设定这个字段中的数据长度。\n\n在十进制字段中设定的是数据最大长度,在二进制字段中设定的是数据块长度。\n如果这个数值大于数据库允许的最大值,数据库就会相应地更正这个数值。";
    Text[ russian ] = "     .\n\n   -     ,    -    .\n          ,     .";
    Text[ polish ] = "Podaj dan dugo danych w tym polu.\n\nW przypadku pl dziesitnych okrela ona maksymaln dugo wpisanych liczb, w przypadku pl birarnych okrela ona dugo bloku danych.\nJeeli warto bdzie przekracza dopuszczaln dla tego pola warto maksymaln, zostanie ona odpowiednio skorygowana.";
    Text[ japanese ] = "このフィールドに入力するデータの長さを指定します。\n\n十進法フィールドには入力値の最大桁数、二進法フィールドにはデータブロックの長さを指定します。\n入力値がこのデータベースの最大限を超えた場合は、修正されます。";
    Text[ chinese_traditional ] = "請設定這個欄位類型的長度。\n\n十進位欄位指定指是輸入數字的最長數目,二進位欄位是指資料區域的長度。\n如果輸入數據超過設定範圍,程式就會自動修正。";
    Text[ arabic ] = "      .\n\n                .\n                 .";
    Text[ dutch ] = "Geef de lengte van dit veldtype op.\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, 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 uzunluunu giriniz.\n\nBu uzunluk, ondalk alanlar iin girilen saynn azami uzunluu, ikili alanlar iin ise veri blou uzunluudur.\nSz konusu deer, bu veritaban iin azami olarak izin verilenden daha byk olmas halinde uygun bir ekilde dzeltilecektir.";
    Text[ language_user1 ] = " ";
    Text[ catalan ] = "Determineu la longitud que poden tenir les dades d'aquest camp.\n\nSi sn camps decimals, la longitud mxima del nmero que s'ha d'introduir; si sn camps binaris, la longitud del bloc de dades.\nEl valor es corregir consegentment quan excedeixi el mxim perms per a aquesta base de dades.";
    Text[ finnish ] = "Mrit tietojen mahdollinen pituus tss kentss.\n\nJos tiedot ovat desimaalikentti, mrit sytettvn luvun enimmispituus; jos ne ovat binaarikentti, syt tietolohkon enimmispituus.\nArvo korjataan mrityksen mukaan, jos se ylitt tietokannan enimmisarvon.";
    Text[ thai ] = "กำหนดความยาวของข้อมูลที่สามารถมีในเขตข้อมูลนี้ได้\n\nถ้าเขตข้อมูลมีทศนิยมให้ใส่ตัวเลขยาวมากที่สุด  ถ้าเขตข้อมูลมีฐานสองให้ใส่ความยาวบล็อกข้อมูล\nแก้ไขค่าให้ถูกต้องเมื่อมันเกินจำนวนมากที่สุดสำหรับฐานข้อมูลนี้";
};
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 mnga decimaler det hr fltet skall innehlla." ;
    Text [ danish ] = "Angiv, hvor mange decimaler tal i dette felt skal indeholde." ;
    Text [ italian ] = "Digitate il numero di cifre dopo la virgola." ;
    Text [ spanish ] = "Especifique el nmero de decimales que deban contener los nmeros en este campo." ;
    Text [ french ] = "Spcifiez le nombre de dcimales pour les nombres de ce champ." ;
    Text [ dutch ] = "Geef het aantal decimalen op." ;
    Text [ portuguese ] = "Defina o nmero de casas decimais para este campo." ;
    Text[ chinese_simplified ] = "请为这个字段内的数字设定小数点位数。";
    Text[ russian ] = "  ,   .";
    Text[ polish ] = "Podaj liczb miejsc po przecinku, dan w polu.";
    Text[ japanese ] = "このフィールドで扱う小数点以下の桁数を入力します。";
    Text[ chinese_traditional ] = "請設定欄位允許輸入的小數點數位。";
    Text[ arabic ] = "              .";
    Text[ dutch ] = "Geef het aantal decimalen op.";
    Text[ chinese_simplified ] = "请为这个字段内的数字设定小数点位数。";
    Text[ greek ] = "          .";
    Text[ korean ] = "이 필드의 숫자에 포함될 소수점 이하 자릿수를 지정하십시오.";
    Text[ turkish ] = "Bu alandaki saylarn sahip olmas gereken ondalk basamak saysn belirleyiniz.";
    Text[ language_user1 ] = " ";
    Text[ catalan ] = "Indiqueu el nombre de llocs decimals permesos en aquest camp.";
    Text[ finnish ] = "Mrit tss kentss sallittujen desimaalien mr.";
    Text[ thai ] = "ระบุจำนวนจุดทศนิยมที่มีได้ในเขตข้อมูลนี้";
};
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 knnen - formatiert werden wrden.";
    Text[ ENGLISH ] = "Hier sehen Sie, wie die Daten der aktuellen Spalte mit dem aktuell eingestellten Format - das Sie mittels des nebenstehenden Buttons ndern knnen - formatiert werden wrden.";
    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 boto ao lado.";
    Text[ danish ] = "Her ser du, hvordan dataene i den aktuelle kolonne ville komme til at se ud med det aktuelle format - som du kan ndre med knappen ved siden af.";
    Text[ french ] = "Voici comment les donnes de la colonne concerne seront formates si vous utilisez le format actuellement paramtr. Pour modifier ce format, cliquez sur le bouton appropri situ  ct.";
    Text[ swedish ] = "Hr ser du hur data i den aktuella kolumnen skulle formateras med det nu instllda formatet, som du kan ndra med hjlp av knapparna som finns bredvid.";
    Text[ dutch ] = "Hier ziet u hoe de gegevens in de huidige kolom eruit zouden zien met de momenteel ingestelde opmaak. Deze instelling kunt u wijzigen met de nevenstaande knoppen.";
    Text[ spanish ] = "Aqu puede ver cmo se formatearan los datos de la columna actual con el formato definido actualmente (utilice el botn de la derecha para modificar el formato).";
    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 wywietlony zostanie podgld sformatowanych danych aktualnej kolumny. Format mona zmieni klikniciem przycisku znajdujcego si obok.";
    Text[ japanese ] = "列のデータが、現在設定された書式でどう変わったか、ここで見れます。横にあるボタンを使うと、書式の変更ができます。";
    Text[ chinese_traditional ] = "在這裡您能夠看到透過按一下旁邊的按鈕來變更目前的欄內資料格式。";
    Text[ arabic ] = "              (      ).";
    Text[ dutch ] = "Hier ziet u hoe de gegevens in de huidige kolom eruit zouden zien met de momenteel ingestelde opmaak. Deze instelling kunt u wijzigen met de nevenstaande knoppen.";
    Text[ chinese_simplified ] = "您看到能够通过点击旁边的按钮,来更改当前列的数据格式。";
    Text[ greek ] = "              (       ? ";
    Text[ korean ] = "여기에서 데이터가 현재 어떻게 서식이 설정되어 있는 지 볼 수 있습니다. 오른쪽에 있는 버튼을 사용하면 서식을 변경할 수 있습니다.";
    Text[ turkish ] = "Burada, seili stundaki verilerin - yandaki dme ile deitirebileceiniz - yrrlkteki ayarlar ile nasl formatlanacan grebilirsiniz.";
    Text[ language_user1 ] = " ";
    Text[ catalan ] = "Aqu podeu veure com es visualitzarien les dades en el format actual (utilitzeu el bot de la dreta per modificar el format).";
    Text[ finnish ] = "Tiedot nytetn tss kytss olevan muodon mukaan (voit muokata muotoa kyttmll oikeanpuoleista painiketta).";
    Text[ thai ] = "นี้คือที่ที่คุณเห็นว่าข้อมูลแสดงผลได้อย่างไรในรูปแบบปัจจุบัน (ใช้ปุมขวามือเพื่อดัดแปลงแก้ไขรูปแบบ)";
};
String STR_HELP_FORMAT_BUTTON
{
    Text = "Hiermit knnen Sie festlegen, wie die Daten der Tabelle bei der Ausgabe formatiert werden sollen.";
    Text [ ENGLISH ] = "Hiermit knnen 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 impresso dos dados da tabela.";
    Text[ danish ] = "P denne mde kan du definere, hvordan dataene i tabellen skal formateres ved udskrivningen.";
    Text[ french ] = "Dfinition du format de sortie des donnes de la table.";
    Text[ swedish ] = "Hr kan du bestmma 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 mona ustawi wyjciowy format tabeli.";
    Text[ japanese ] = "ここで、テーブルのデータを出力するときの書式を指定できます。";
    Text[ chinese_traditional ] = "您能夠在這�設定表格數據的列印格式。";
    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 formatn belirleyebilirsiniz.";
    Text[ language_user1 ] = " ";
    Text[ catalan ] = "Aqu podeu determinar el format de sortida de les dades.";
    Text[ finnish ] = "Thn voit mritt tietojen tulostusmuodon.";
    Text[ thai ] = "นี้คือที่ที่คุณกำหนดรูปแบบข้อมูลที่ออกไป";
};
String STR_HELP_AUTOINCREMENT
{
    Text = "Whlen Sie, ob dieses Feld Auto-Inkrement-Werte enthalten soll.\n\nSie knnen 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 automtico ou no.\n\nNo ser ento possvel introduzir dados directamente nesse campo. Cada novo registo de dados obter automaticamente um valor prprio (valor este que resulta por incremento do valor do registo de dados anterior).";
    Text[ danish ] = "Vlg, om dette felt skal indeholde automatiske inkrementvrdier.\n\nDu kan ikke indtaste data direkte i feltet, men alle nye dataposter fr automatisk dens egen vrdi (som fremkommer via inkrementmleprincippet ud fra den forudgende datapost).";
    Text[ french ] = "Choisissez si le champ doit contenir des valeurs d'incrment automatique.\n\nDans ce cas, vous ne pourrez pas saisir directement des donnes : tous les nouveaux enregistrements obtiendront automatiquement leur propre valeur ( savoir la valeur incrmente  partir de l'enregistrement prcdent).";
    Text[ swedish ] = "Vlj om det hr fltet skall innehlla Auto-Inkrementvrden.\n\nDu kan i s fall inte mata in ngra data direkt i fltet, utan varje ny datapost tilldelas automatiskt ett eget vrde (vilket bestms av inkrementering frn den frra 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 automtico.\n\nEn este caso no podr introducir los datos directamente, sino que a cada nuevo registro de datos se le asignar automticamente un valor propio (que resulta del incremento proveniente del registro anterior).";
    Text[ chinese_simplified ] = "请选择这个字段是否应该含有自动递增的数值。\n\n您不能手动输入数据,因为每个新数据组会自动得到一个自己的数值(从它之前的数据组中通过递增方式得到)。";
    Text[ russian ] = "  ,      .\n\n  ,        ,             ( ,        ).";
    Text[ polish ] = "Naley ustali, czy pole to ma zawiera wartoci autoinkrementu.\n\nDo tego pola nie mona wprowadzi danych bezporednio. Kademu rekordowi zostanie przypisana automatycznie wasna warto (ktra wyniknie z inkrementacji poprzedniego rekordu).";
    Text[ japanese ] = "このフィールドを自動増加入力値にするか、選択します。\n\n選択すると、そこへ直接にデータを入力できなくなり、自動的に新しいレコードには前のレコードの数値を基に増加算出された結果値が入力されます。";
    Text[ chinese_traditional ] = "請您選擇這個欄位是否應該含有自動遞增的數值。\n\n您不能直接輸入資料﹐因為每個新資料組會自動得到一個自己的數值(從它之前的資料組中通過遞增得出)。";
    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 deerleri konulup konulmayacan seiniz.\n\nBu alana artk dorudan veri girii yapamazsnz. Bunun yerine her yeni kayt iin otomatik olarak (bir nceki kaydn artndan oluan) zel bir deer atanr.";
    Text[ language_user1 ] = " ";
    Text[ catalan ] = "Trieu si aquest camp ha de contenir valors d'increment automtic.\n\nNo podeu introduir dades en aquest tipus de camps. S'assignar un valor intrnsec a cada registre nou de manera automtica (que provindr de l'increment del registre anterior).";
    Text[ finnish ] = "Valitse, tuleeko tmn kentn sislt automaattisen kasvun arvoja.\n\nTmntyyppisiin kenttiin ei voi sytt tietoja. Kullekin tietueelle mritetn automaattisesti sisinen arvo (joka saadaan lismll edellinen tietue).";
    Text[ thai ] = "เลือกเขตข้อมูลนี้ถ้าควรมีค่าส่วนเพิ่มอัตโนมัติ\n\nคุณไม่สามารถใส่ข้อมูลในเขตข้อมูลชนิดนี้ได้  กำหนดค่าที่แท้จริงในแต่ละระเบียนใหม่อัตโนมัติ (ผลจากส่วนเพิ่มของระเบียนก่อน)";
};
PushButton PB_FORMAT
{
    TabStop = TRUE ;
    Text = "~..." ;
    Text [ ENGLISH ] = "~..." ;
    Text[ english_us ] = "~...";
    Text[ portuguese ] = "...";
    Text[ russian ] = "...";
    Text[ greek ] = "...";
    Text[ dutch ] = "~...";
    Text[ french ] = "...";
    Text[ spanish ] = "...";
    Text[ finnish ] = "~...";
    Text[ italian ] = "...";
    Text[ danish ] = "~...";
    Text[ swedish ] = "~...";
    Text[ polish ] = "~...";
    Text[ portuguese_brazilian ] = "Format...";
    Text[ japanese ] = "~...";
    Text[ korean ] = "~...";
    Text[ chinese_simplified ] = "~...";
    Text[ chinese_traditional ] = "~...";
    Text[ turkish ] = "...";
    Text[ arabic ] = "...";
    Text[ catalan ] = "...";
    Text[ thai ] = "...";
};
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 ] = "Impossvel guardar a tabela. O nome da coluna \"$column$\" foi atribudo duas vezes.";
    Text[ russian ] = "  ,     \"$column$\"  .";
    Text[ greek ] = "                \"$column$\".";
    Text[ dutch ] = "De tabel kan niet worden opgeslagen omdat 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 ] = "Tabellen kan ikke gemmes, da kolonnenavnet \"$column$\" findes to gange.";
    Text[ swedish ] = "Tabellen kan inte sparas eftersom kolumnnamnet \"$column$\" har tilldelats dubbelt.";
    Text[ polish ] = "Tabeli nie mona zapisa, poniew nazwa kolumny \"$column$\" zostaa ju raz nadana.";
    Text[ portuguese_brazilian ] = "The table can't be saved as the column name \"$column$\" is used twice.";
    Text[ japanese ] = "\"$column$\" の列名が重複していて、テーブルの保存ができません。";
    Text[ korean ] = "열 이름 \"$column$\"이(가) 중복 지정되어 있어 테이블을 저장할 수 없습니다.";
    Text[ chinese_simplified ] = "因为重复使用列名称\"$column$\",所以无法存盘这个表格。";
    Text[ chinese_traditional ] = "無法儲存這個表格,因為欄位名稱<$column$>已經存在。";
    Text[ arabic ] = "        \"$column$\" .";
    Text[ turkish ] = "\"$column$\" stun ad daha nce kullanld iin tablo kaydedilemiyor.";
    Text[ catalan ] = "No es pot desar la taula perqu el nom de la columna \"$column$\" s'ha assignat dos cops.";
    Text[ finnish ] = "Taulua ei voi tallentaa, koska sarakkeen nimi \"$column$\" mritettiin kahdesti.";
    Text[ thai ] = "ไม่สามารถบันทึกตารางได้เพราะกำหนดชื่อคอลัมน์ \"$column$\" สองครั้ง";
};
String STR_TBL_COLUMN_IS_KEYCOLUMN
{
    Text = "Die Spalten \"$column$\" gehrt zum Primrschlssel. Falls sie gelscht wird, wird auch der Primrschlssel gelscht.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 primria. Se a eliminar, a chave primria tambm 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 entranera galement la suppression de la cl primaire. Continuer ?";
    Text[ spanish ] = "La columna \"$column$\" pertenece a la clave primaria. En caso de borrarla, borrar tambin la clave 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 ] = "Kolonnerne \"$column$\" hrer til primrnglen. Hvis denne kolonne slettes, slettes ogs primrnglen.Vil du fortstte?";
    Text[ swedish ] = "Kolumnen \"$column$\" hr till primrnyckeln. Om kolumnen raderas kommer ven primrnyckeln att raderas. Vill du fortstta?";
    Text[ polish ] = "Kolumna \"$column$\" naley do klucza gwnego. Jeli zostanie usunita, razem z ni usunity zostanie rwnie klucz gwny. 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$\" はプライマリキーに属します。これを削除すると、プライマリキーも削除されてしまいます。削除してもかまいませんか。";
    Text[ korean ] = "열 \"$column$\"은(는) 기본 키에 속합니다. 이 열이 삭제되면 기본 키도 삭제됩니다. 그래도 계속하시겠습니까?";
    Text[ chinese_simplified ] = "这个字段 \"$column$\" 属于主关键字。如果您删除这个字段,也就会一起删除主关键字。要删除这个字段?";
    Text[ chinese_traditional ] = "這個欄<$column$>屬於主關鍵字。如果刪除這個欄位,也就會一起刪除主關鍵字。要刪除這個欄位?";
    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$\" pertany a la clau primria. Si se suprimeix la columna, la clau primria tamb se suprimir. Segur que voleu continuar?";
    Text[ finnish ] = "Sarake \"$column$\" on osa perusavainta. Jos poistat tmn sarakkeen, mys perusavain poistetaan. Haluatko varmasti jatkaa?";
    Text[ thai ] = "คอลัมน์ \"$column$\" เป็นของคีย์หลัก ถ้าลบคอลัมน์, คีย์หลักก็จะถูกลบด้วย คุณต้องการทำต่อหรือไม่?";
};
String STR_TBL_COLUMN_IS_KEYCOLUMN_TITLE
{
    Text = "Primrschlssel betroffen";
    Text [ english_us ] = "Primary Key Effected";
    Text[ portuguese ] = "Chave primria relacionada";
    Text[ russian ] = "   ";
    Text[ greek ] = "  betroffen";
    Text[ dutch ] = "primaire sleutel betroffen";
    Text[ french ] = "Cl primaire concerne";
    Text[ spanish ] = "Relativo a la llave primaria";
    Text[ italian ] = "Relativo alla chiave primaria";
    Text[ danish ] = "Primrngle berrt";
    Text[ swedish ] = "Primrnyckelrelaterad";
    Text[ polish ] = "Dotyczy klucza gwnego";
    Text[ portuguese_brazilian ] = "primary key related";
    Text[ japanese ] = "プライマリキーに関連";
    Text[ korean ] = "기본 키 관련";
    Text[ chinese_simplified ] = "和主关键字关联";
    Text[ chinese_traditional ] = "和主關鍵字關聯";
    Text[ turkish ] = "primary key related";
    Text[ arabic ] = "   ";
    Text[ catalan ] = "S'ha realitzat la clau primria";
    Text[ finnish ] = "Vaikutus kohdistunut perusavaimeen";
    Text[ thai ] = "คีย์หลักมีผล";
};
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 ] = "Stun";
    Text[ catalan ] = "Columna";
    Text[ finnish ] = "Sarake";
    Text[ thai ] = "คอลัมน์";
};
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 fortstta?" ;
    Text [ danish ] = "Vil du fortstte 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 ] = "続行してかまいませんか。";
    Text[ chinese_traditional ] = "繼續?";
    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 ] = "Voleu continuar igualment?";
    Text[ finnish ] = "Jatketaanko kuitenkin?";
    Text[ thai ] = "ทำต่อหรือไม่?";
};
String STR_STAT_WARNING
{
    Text = "Warnung!" ;
    Text [ ENGLISH ] = "Warning!" ;
    Text [ english_us ] = "Warning!" ;
    Text [ portuguese ] = "Advertncia!" ;
    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 ] = "Ostrzeenie!";
    Text[ japanese ] = "警告";
    Text[ chinese_traditional ] = "警告!";
    Text[ arabic ] = "!";
    Text[ dutch ] = "Waarschuwing!";
    Text[ chinese_simplified ] = "警告!";
    Text[ greek ] = "!";
    Text[ korean ] = "경고";
    Text[ turkish ] = "Uyar!";
    Text[ catalan ] = "Avs!";
    Text[ finnish ] = "Varoitus";
    Text[ thai ] = "คำเตือน!";
};
QueryBox TABLE_DESIGN_SAVEMODIFIED
{
    Buttons = WB_YES_NO_CANCEL ;
    DefButton = WB_DEF_YES ;
    Message = "Die Tabelle wurde gendert.\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 modificaes?";
    Message[ russian ] = " .\n ?";
    Message[ greek ] = "  .\n    ;";
    Message[ dutch ] = "De tabel is gewijzigd.\nWilt u de wijzigingen opslaan?";
    Message[ french ] = "La table a t modifie.\nVoulez-vous enregistrer les modifications ?";
    Message[ spanish ] = "Se ha modificado esta tabla.\nDesea guardar los cambios?";
    Message[ italian ] = "La tabella  cambiata.\nVolete salvare le modifiche?";
    Message[ danish ] = "Tabellen er blevet ndret.\nSkal ndringerne gemmes?";
    Message[ swedish ] = "Tabellen har ndrats.\nSka ndringarna sparas?";
    Message[ polish ] = "Tabela zostaa zmieniona.\nZapisa zmiany?";
    Message[ portuguese_brazilian ] = "The table has been changed.\nDo you want to save the changes?";
    Message[ japanese ] = "テーブルは変更されています。\n変更を保存しますか。";
    Message[ korean ] = "테이블이 변경되었습니다.\n변경 내용을 저장하시겠습니까?";
    Message[ chinese_simplified ] = "表格已经更改。\n要存盘更改的内容?";
    Message[ chinese_traditional ] = "這個表格已經變更。\n您要儲存這個變更內容?";
    Message[ turkish ] = "The table has been changed.\nDo you want to save the changes?";
    Message[ arabic ] = "  .\n   ʿ";
    Message[ catalan ] = "S'ha canviat la taula.\nVoleu desar els canvis?";
    Message[ finnish ] = "Taulua on muutettu.\nHaluatko tallentaa muutokset?";
    Message[ thai ] = "ตารางได้เปลี่ยนแปลงแล้ว\nคุณต้องการบันทึกการเปลี่ยนแปลงหรือไม่?";
};
QueryBox TABLE_QUERY_CONNECTION_LOST
{
    Buttons = WB_YES_NO ;
    Message = "Die Verbindung zur Datenbank wurde gelscht! Ohne sie kann der Tabellenentwurf nur eingeschrnkt 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 ligao  base de dados foi cancelada! Sem esta, o esboo da tabela pode ser utilizado apenas de forma limitada.\nRetomar a ligao?";
    Message[ russian ] = "    !       .\n ?";
    Message[ greek ] = "      !           .\n   ? ";
    Message[ dutch ] = "De verbinding met de database is verwijderd! Zonder deze verbinding kan de ontwerptabel slechts beperkt worden gebruikt.\nWilt u de verbinding met de database weer tot stand brengen?";
    Message[ french ] = "La connexion  la base de donnes a t interrompue ! Ceci entrane une perte de fonctionnalit dans l'utilisation de l'bauche de table.\nReconnecter ?";
    Message[ spanish ] = "Se ha cancelado la conexin a la base de datos! Sin ella, el diseo de tabla slo se puede usar de forma limitada.\nDesea reanudar la conexin?";
    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 ] = "Forbindelsen til databasen blev slettet! Uden den kan tabeludkastet kun bruges i begrnset omfang.\nSkal forbindelsen til databasen oprettes igen?";
    Message[ swedish ] = "Frbindelsen till databasen har raderats! Utan den kan bara tabellutkastet anvndas begrnsat.\nSka frbindelsen till databasen upprttas igen?";
    Message[ polish ] = "Przerwano poczenie z baz danych! Bez poczenia z baz danych moliwo korzystania z projektu tabeli bdzie ograniczona.\nPoczy 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 ] = "データベースへの接続が削除されました。この接続がなければ、テーブルのデザインは制限された使用しかできません。\n接続しなおしますか。";
    Message[ korean ] = "데이터베이스와의 연결이 끊어졌습니다. 연결이 끊긴 상태에서는 테이블 디자인을 제한적으로만 사용할 수 있습니다.\n데이터베이스로 다시 연결하시겠습니까?";
    Message[ chinese_simplified ] = "和数据库的连接已经关闭!您只能有限地使用表格设计的功能。\n要和数据库重建连接?";
    Message[ chinese_traditional ] = "和資料庫的連結已經被刪除!您只能有限地使用表格設計的功能。\n要和資料庫重建連結?";
    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 ] = "S'ha perdut la connexi amb la base de dades! Sense connexi el disseny de la taula noms es pot utilitzar amb una funcionalitat limitada.\nVoleu tornar a connectar-vos?";
    Message[ finnish ] = "Yhteys tietokantaan on katkennut. Taulun rakenteen toiminnallisuus on rajallinen ilman yhteytt.\nMuodostetaanko yhteys uudelleen?";
    Message[ thai ] = "การเชื่อมต่อกับฐานข้อมูลขาดหาย! สามารถใช้การออกแบบตารางเท่านั้นกับฟังก์ชั่นจำกัดโดยไม่มีการเชื่อมต่อ\nเชื่อมต่ออีกครั้งหรือไม่?";
};
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 ] = "Impossvel guardar a tabela. No foi possvel estabelecer ligao  base de dados.";
    Text[ russian ] = "  ,       .";
    Text[ greek ] = "             .";
    Text[ dutch ] = "De tabel kan niet worden opgeslagen omdat de koppeling met de database niet tot stand kan worden gebracht.";
    Text[ french ] = "Impossible d'tablir une connexion  la base de donnes : la table n'a pas pu tre enregistre.";
    Text[ spanish ] = "No ha sido posible guardar la tabla porque no se pudo efectuar una conexin a la base de datos.";
    Text[ italian ] = "Impossibile salvare la tabella: il collegamento al database non  stato realizzato.";
    Text[ danish ] = "Tabellen kunne ikke gemmes, da der ikke kunne oprettes forbindelse til databasen.";
    Text[ swedish ] = "Tabellen kunde inte sparas eftersom det inte gick att upprtta en frbindelse till databasen.";
    Text[ polish ] = "Zapisanie tabeli nie byo moliwe z powodu braku poczenia z baz danych.";
    Text[ portuguese_brazilian ] = "The table couldn't be saved due to connection problems.";
    Text[ japanese ] = "データベースへ接続できなかったため、テーブルを保存できませんでした。";
    Text[ korean ] = "데이터베이스와 연결 하지 못해 테이블을 저장하지 못했습니다.";
    Text[ chinese_simplified ] = "未能够和数据库建立连接,因此无法存盘表格。";
    Text[ chinese_traditional ] = "未能夠和資料庫建立連結,因此無法儲存表格。";
    Text[ turkish ] = "The table couldn't be saved due to connection problems.";
    Text[ arabic ] = "       .";
    Text[ catalan ] = "No s'ha pogut desar la taula per problemes de connexi.";
    Text[ finnish ] = "Taulua ei voitu tallentaa, koska tietokantaan ei voitu muodostaa yhteytt.";
    Text[ thai ] = "ไม่สามารถบันทึกตารางได้เนื่องจากปัญหาการเชื่อมต่อกับฐานข้อมูล";
};
String STR_TABLEDESIGN_DATASOURCE_DELETED
{
    Text = "Der Tabellenfilter konnte nicht angepasst werden, da die Datenquelle gelscht wurde.";
    Text [ english_us ] = "The table filter could not be adjusted because the data source has been deleted.";
    Text [ english ] = "The table filter could not be saved because the datasource was deleted before.";
    Text[ portuguese ] = "Foi impossvel ajustar o filtro da tabela porque a fonte de dados foi eliminada.";
    Text[ russian ] = "  ,     .";
    Text[ greek ] = "The table filter could not be saved because the datasource was deleted before.";
    Text[ dutch ] = "De tabellenfilter kan niet worden aangepast omdat de gegevensbron is gewist.";
    Text[ french ] = "Impossible d'adapter le filtre de table : la source de donnes a t supprime.";
    Text[ spanish ] = "No se pudo ajustar el filtro de tablas porque la fuente de datos se ha borrado.";
    Text[ finnish ] = "Taulun suodatusta ei voitu st, koska tietolhde on poistettu.";
    Text[ italian ] = "Impossibile salvare il filtro della tabella poich la sorgente dati  stata eliminata.";
    Text[ danish ] = "Tabelfiltret kunne ikke tilpasses, da datakilden blev slettet.";
    Text[ swedish ] = "Det gick inte att anpassa tabellfiltret eftersom datakllan har raderats.";
    Text[ polish ] = "Dopasowanie filtra tabeli nie jest moliwe, poniewa usunito rdo danych.";
    Text[ portuguese_brazilian ] = "The table filter could not be saved because the datasource was deleted before.";
    Text[ japanese ] = "データソースが削除されてしまっているために、テーブルフィルタを適合できませんでした。";
    Text[ korean ] = "데이터 원본이 삭제된 이유로 테이블 필터를 조정하지 못했습니다.";
    Text[ chinese_simplified ] = "无法调整表格筛选,因为数据源已经被删除。";
    Text[ chinese_traditional ] = "無法調整表格篩選,因爲資料源已經被刪除。";
    Text[ turkish ] = "The table filter could not be saved because the datasource was deleted before.";
    Text[ arabic ] = "The table filter could not be saved because the datasource was deleted before.";
    Text[ catalan ] = "El filtre de la taula no s'ha pogut desar perqu la font de dades s'ha eliminat abans.";
    Text[ thai ] = "ไม่สามารถบันทึกตัวกรองตารางได้เนื่องจากฐานข้อมูลถูกลบก่อนแล้ว";
};

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 ligao";
    Text[ russian ] = " ";
    Text[ greek ] = "  ";
    Text[ dutch ] = "geen verbinding";
    Text[ french ] = "Aucune connexion";
    Text[ spanish ] = "Sin conexin";
    Text[ italian ] = "nessun collegamento";
    Text[ danish ] = "Ingen forbindelse";
    Text[ swedish ] = "Ingen frbindelse";
    Text[ polish ] = "Brak poczenia";
    Text[ portuguese_brazilian ] = "no connection";
    Text[ japanese ] = "接続なし";
    Text[ korean ] = "연결 없음";
    Text[ chinese_simplified ] = "无法连接";
    Text[ chinese_traditional ] = "沒有連線";
    Text[ turkish ] = "no connection";
    Text[ arabic ] = "  ";
    Text[ catalan ] = "sense connexi";
    Text[ finnish ] = "Ei yhteytt";
    Text[ thai ] = "ไม่มีการเชื่อมต่อ";
};
QueryBox QUERY_SAVE_TABLE_EDIT_INDEXES
{
    Message = "Bevor Sie die Indizies einer Tabelle ndern knnen, 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 modificaes?";
    Message[ russian ] = "    ,   .\n ?";
    Message[ greek ] = "             .\n      ;";
    Message[ dutch ] = "Voordat u de indices van een tabel kunt wijzigen, 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 apportes  la structure de la table ?";
    Message[ spanish ] = "Antes de modificar los ndices de una tabla deber guardarla.\nDesea 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 ] = "Fr du kan ndre indeks i en tabel, skal denne gemmes.\nVil du gemme ndringerne af tabelstrukturen nu?";
    Message[ swedish ] = "Innan du kan ndra indexen till en tabell mste du spara den.\nVill du spara dina ndringar av tabellstrukturen nu?";
    Message[ polish ] = "Przed zmodyfikowaniem indeksw tabeli naley 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 ] = "テーブルのインデックスを編集するには、その前にまずこれを保存しておく必要があります。\nテーブル構成の変更をいますぐ保存しますか。";
    Message[ korean ] = "테이블의 색인을 수정하기 전에 반드시 저장해야 합니다.\n테이블 구조의 변경 내용을 저장하시겠습니까?";
    Message[ chinese_simplified ] = "在修改一个表格的索引之前必须先存盘表格。\n要存盘表格结构的更改内容?";
    Message[ chinese_traditional ] = "在變更一個表格的索引之前必須先儲存表格。\n要儲存表格結构的變更內容?";
    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 ] = "S'ha de desar la taula abans de poder editar els ndexs.\nVoleu desar els canvis ara?";
    Message[ finnish ] = "Ennen kuin taulun indeksej voi muokata, taulu on tallennettava.\nTallennetaanko muutokset nyt?";
    Message[ thai ] = "ก่อนที่คุณจะแก้ไขดัชนีของตาราง, คุณต้องบันทึกมันก่อน\nคุณต้องการบันทึกการเปลี่ยนแปลงขณะนี้หรือไม่?";
};
String STR_TABLEDESIGN_NO_PRIM_KEY_HEAD
{
    Text = "Kein Primrschlssel" ;
    Text [ ENGLISH ] = "No primary key" ;
    Text [ english_us ] = "No primary key" ;
    Text [ portuguese_brazilian ] = "Kein Prim?rschl?sel" ;
    Text [ swedish ] = "Ingen primrnyckel" ;
    Text [ danish ] = "Ingen primrngle" ;
    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 primria" ;
    Text[ chinese_simplified ] = "没有主关键字";
    Text[ russian ] = "  ";
    Text[ polish ] = "Brak klucza gwnego";
    Text[ japanese ] = "プライマリキーがありません。";
    Text[ chinese_traditional ] = "無主關鍵字";
    Text[ arabic ] = "  ";
    Text[ dutch ] = "Geen primaire sleutel";
    Text[ chinese_simplified ] = "没有主关键字";
    Text[ greek ] = "  ";
    Text[ korean ] = "기본 키 없음";
    Text[ turkish ] = "Birinci anahtar yok";
    Text[ catalan ] = "Sense clau primria";
    Text[ finnish ] = "Ei perusavainta";
    Text[ thai ] = "ไม่มีคีย์หลัก";
};
String STR_TABLEDESIGN_NO_PRIM_KEY
{
    Text = "In dieser Datenbank wird zur Datensatz-Identifizierung ein eindeutiger Index oder ein Primrschlssel bentigt.\nSie werden erst dann Daten in die Tabelle eingeben knnen, wenn sie eine dieser beiden Struktur-Bedingungen erfllt.\n\nSoll jetzt ein Primrschlssel 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 primrnyckel krvs fr identifiering av dataposter i den hr databasen.\nData kan frst matas in i tabellen om de uppfyller en av dessa bda strukturvillkor.\n\nSkall en primrnyckel skapas nu?" ;
    Text [ danish ] = "I denne database krves et entydigt indeks eller en primrngle til datapostidentificering.\nDu kan frst indtaste data i tabellen, nr den opfylder en af disse to strukturbetingelser.\n\nVil du oprette en primrngle 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 identificacin de registros en esta base de datos se necesita un ndice unvoco o una llave primaria.\nSlo cuando haya cumplido una de estas condiciones podr introducir datos en la tabla.\n\nDesea crear ahora una llave primaria?" ;
    Text [ french ] = "Un index univoque ou une cl primaire est ncessaire pour l'identification d'enregistrement dans cette base de donnes.\nVous ne pourrez saisir des donnes dans la table que si celle-ci remplit une de ces deux conditions de structure.\n\nCrer une cl primaire ?" ;
    Text [ dutch ] = "In deze database is een index of een primaire sleutel vereist 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 definiren?" ;
    Text [ portuguese ] = "Esta base de dados precisa de um ndice nico ou de uma chave primria para identificao do registo de dados.\nS poder introduzir os dados na tabela depois de esta preencher uma destas condies de estrutura.\n\nCriar agora uma chave primria" ;
    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 gwny.\nDane bdzie mona dopiero wtedy wpisa do tabeli, gdy bdzie ona spenia jedno z tych dwch kryteriw.\n\nCzy utworzy teraz klucz gwny?";
    Text[ japanese ] = "このデータベースでは、レコード識別に明確なインデックスあるいはプライマリキーが必要です。\nこの構造条件のうちどちらかひとつが満たされると、テーブルにデータ入力できます。\n\nプライマリキーを作成しますか。";
    Text[ chinese_traditional ] = "在這個資料庫識別資料要求有一個明確的索引條目或一個主關鍵字。\n只有滿足這個條件時您才能夠在表格內輸入資料。\n\n現在要建立一個主關鍵字﹖";
    Text[ arabic ] = "            .\n           .\n\n ";
    Text[ dutch ] = "In deze database is een index of een primaire sleutel vereist 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 definiren?";
    Text[ chinese_simplified ] = "识别数据库中的数据条目要求使用明确的索引或主关键字,\n在设定只会才能在表格中输入数据。\n\n现在要生成一个主关键字?";
    Text[ greek ] = "                 .\n                .\n\n      ;";
    Text[ korean ] = "이 데이터베이스에서 데이터 레코드를 식별하려면 고유 색인이나 기본 키가 필요합니다.\n이 두 가지 구조 조건 중에서 하나가 충족되어야만 데이터를 테이블에 입력할 수 있습니다.\n\n지금 기본 키를 만드시겠습니까?";
    Text[ turkish ] = "Bu veritabannda, kayt tanmlama iin benzersiz bir dizin ya da birinci anahtar gerekiyor.\nBu tabloya veri girii yapabilmek iin bu yapsal koullardan en az biri yerine getirilmelidir.\n\nimdi bir birinci anahtar oluturulsun mu?";
    Text[ catalan ] = "s necessria una clau primria o b un ndex nic per a poder accedir en aquesta base de dades.\nNoms podeu entrar dades en aquesta taula si una d'aquestes dues condicions es compleix.\n\nVoleu crear ara una clau primria?";
    Text[ finnish ] = "Tss tietokannassa on oltava yksilllinen indeksi tai perusavain tietueiden tunnistamista varten.\nThn tauluun voi sytt tietoja vain, jos jompikumpi nist on mritetty.\n\nHaluatko luoda perusavaimen nyt?";
    Text[ thai ] = "ต้องการดัชนีที่ไม่ซ้ำหรือคีย์หลักสำหรับการระบุระเบียนข้อมูลในฐานข้อมูลนี้\nคุณสามารถใส่ข้อมูลในตารางนี้เท่านั้้นเมื่อพบหนึ่งในสองของเงื่อนไขทางโครงสร้าง\n\nจะสร้างคีย์หลักขณะนี้หรือไม่?";
};
String STR_TABLEDESIGN_TITLE
{
    Text = "Tabellenentwurf:";
    Text [ ENGLISH ] = "table design:";
    Text[ english_us ] = "Table Design:";
    Text[ portuguese ] = "Esboar tabela";
    Text[ russian ] = " ";
    Text[ greek ] = " ";
    Text[ dutch ] = "Tabelontwerp";
    Text[ french ] = "bauche de table";
    Text[ spanish ] = "Diseo de tabla";
    Text[ italian ] = "Struttura tabella:";
    Text[ danish ] = "Tabeludkast";
    Text[ swedish ] = "Tabellutkast:";
    Text[ polish ] = "Projekt tabeli";
    Text[ portuguese_brazilian ] = "table design";
    Text[ japanese ] = "テーブルデザイン";
    Text[ korean ] = "테이블 디자인:";
    Text[ chinese_simplified ] = "表格设计:";
    Text[ chinese_traditional ] = "表格設計:";
    Text[ turkish ] = "table design";
    Text[ arabic ] = "table design";
    Text[ catalan ] = "Disseny de la taula";
    Text[ finnish ] = "Taulun rakennenkym";
    Text[ thai ] = "ออกแบบตาราง";
};

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_WINDOW_CLOSEWIN
            };
            MenuItem
            {
                ITEM_FILE_SAVEDOCS //!!muss fuer andere geoeffnete Tasks drinbleiben
            };
            MenuItem
            {
                ITEM_FILE_SAVEDOC
            };
            MenuItem
            {
                ITEM_FILE_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 ;
                    Text = "Rckgngig" ;
                    Text [ ENGLISH ] = "Undo" ;
                    Text[ english_us ] = "Undo";
                    Text[ portuguese ] = "Anular";
                    Text[ russian ] = "";
                    Text[ greek ] = "";
                    Text[ dutch ] = "Ongedaan maken";
                    Text[ french ] = "Annuler";
                    Text[ spanish ] = "Deshacer";
                    Text[ italian ] = "Annulla";
                    Text[ danish ] = "Fortryd";
                    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 ] = "Desfs";
                        Text[ finnish ] = "Kumoa";
                        Text[ thai ] = "เลิกทำ";
                    };
                MenuItem
                {
                    Identifier = SID_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 ] = "Gendan";
                    Text[ swedish ] = "terstll";
                    Text[ polish ] = "Przywr";
                    Text[ portuguese_brazilian ] = "Redo";
                    Text[ japanese ] = "やり直し";
                    Text[ korean ] = "다시 실행";
                    Text[ chinese_simplified ] = "恢复撤消命令";
                    Text[ chinese_traditional ] = "恢復撤消指令";
                    Text[ turkish ] = "Redo";
                    Text[ arabic ] = "";
                    Text[ catalan ] = "Refs";
                        Text[ finnish ] = "Toista";
                        Text[ thai ] = "ทำซ้ำ";
                    };
                MenuItem
                {
                    Separator = TRUE ;
                };
                MenuItem
                {
                    ITEM_EDIT_CUT
                };
                MenuItem
                {
                    ITEM_EDIT_COPY
                };
                MenuItem
                {
                    ITEM_EDIT_PASTE
                };
            };
        };
        Text[ russian ] = "~";
            Text[ polish ] = "~Edytuj";
            Text[ japanese ] = "編集(~E)";
            Text[ chinese_simplified ] = "编辑(~E)";
            Text[ chinese_traditional ] = "編輯(~E)";
            Text[ arabic ] = "~";
            Text[ greek ] = "~";
            Text[ korean ] = "편집(~E)";
            Text[ turkish ] = "~Dzenle";
            Text[ language_user1 ] = " ";
            Text[ catalan ] = "~Edita";
            Text[ thai ] = "แ~ก้ไข";
        };

    MenuItem
    {
        Identifier = ITEM_TOOLS_ID ;
        HelpID = MN_EXTRA ;
        Text = "E~xtras" ;
        Text [ English ] = "T~ools" ;
        Text [ norwegian ] = "Verk~ty" ;
        Text [ italian ] = "~Strumenti" ;
        Text [ portuguese_brazilian ] = "F~erramentas" ;
        Text [ portuguese ] = "~Ferramentas" ;
        Text [ finnish ] = "~Tykalut" ;
        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 ] = "~Narzdzia";
            Text[ japanese ] = "ツール(~T)";
            Text[ korean ] = "도구(~T)";
            Text[ chinese_simplified ] = "工具(~T)";
            Text[ chinese_traditional ] = "工具(~T)";
            Text[ arabic ] = "~";
            Text[ turkish ] = "~Aralar";
            Text[ language_user1 ] = " ";
            Text[ catalan ] = "Ei~nes";
            Text[ thai ] = "เ~ครื่องมือ";
        };
        GLOBLMN_WINMN
        {
            ITEM_WINDOW_MDIWINDOWLIST
            SubMenu = Menu { ItemList =  { }; };
        };
        ITEM_HELP_MENU
    };
};

String STR_TABLEDESIGN_ALTER_ERROR
{
    Text = "Die Spalte \"$column$\" konnte nicht gendert werden. Soll sie statt dessen gelscht und das neue Format angehngt werden?" ;
    Text [ english_us ] = "The column \"$column$\" could not be changed. Should the column instead be deleted and the new format appended?" ;
    Text[ portuguese ] = "Foi impossvel modificar a coluna \"\\$column\\$\". Em lugar disto, elimin-la e anexar o novo formato?";
    Text[ russian ] = "   \"\\$column\\$\".       . ?";
    Text[ greek ] = "The column \"\\$column\\$\" could not be changed. Should instead the column definition be appended?";
    Text[ dutch ] = "De kolom '$column$' kan niet worden gewijzigd. Wilt u de kolom in plaats daarvan wissen en van de nieuwe opmaak voorzien?";
    Text[ french ] = "Impossible de modifier la colonne \"\\$column\\$\". Alternative : suppression de la colonne et application du nouveau format. Continuer ?";
    Text[ spanish ] = "No se pudo modificar la columna \"$column$\". Prefiere borrarla y aplicar el nuevo formato?";
    Text[ finnish ] = "Saraketta \"$column$\" ei voitu muuttaa. Poistetaanko sarake ja kytetn uutta muotoa?";
    Text[ italian ] = "Impossibile cambiare la colonna \"\\$column\\$\". Preferite eliminare la colonna e applicare un nuovo formato?";
    Text[ danish ] = "Kolonnen \"\\$column\\$\" kunne ikke ndres. Skal den i stedet slettes og det nye format vedhftes?";
    Text[ swedish ] = "Det gick inte att ndra kolumnen \"\\$column\\$\". Ska den i stllet raderas och det nya formatet bifogas?";
    Text[ polish ] = "Modyfikacja kolumny \"\\$column\\$\" nie powioda si. Usun j i zaczy nowy format?";
    Text[ portuguese_brazilian ] = "The column \"\\$column\\$\" could not be changed. Should instead the column definition be appended?";
    Text[ japanese ] = "列 \"\\$column\\$\" は変更できませんでした。そのかわりに、削除して新しい書式を添付しますか。";
    Text[ korean ] = "\"\\$column\\$\" 열을(를) 변경하지 못했습니다. 대신에 이 열을 삭제하고 새 서식을 추가하시겠습니까?";
    Text[ chinese_simplified ] = "无法更改列 \"\\$column\\$\" 。要重新设定这个列的格式?";
    Text[ chinese_traditional ] = "無法變更欄 \\$column\\$。要刪除它再重新設定格式?";
    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 ] = "No s'ha pogut modificar la columna \"\\$column\\$\". Voleu eliminar-la i adjuntar el nou format?";
    Text[ thai ] = "ไม่สามารถเปลี่ยนคอลัมน์ \"\\$column\\$\" ได้ จะลบคอลัมน์ที่แทนที่และผนวกรูปแบบใหม่หรือไม่?";
};

QueryBox TABLE_DESIGN_ALL_ROWS_DELETED
{
    Buttons = WB_YES_NO_CANCEL ;
    DefButton = WB_DEF_YES ;
    Message = "Sie versuchen alle Spalten der Tabelle zu lschen. Ohne Spalten kann eine Tabelle nicht bestehen. Soll die Tabelle aus der Datenbank gelscht werden? Falls nicht, bleibt die Tabelle unverndert." ;
    Message [ English ] = "You are trying to delete all columns in the table. A table cannot exist without columns. Should the table be deleted from the database? If not, the table will remain unchanged." ;
    Message[ english_us ] = "You are trying to delete all the columns in the table. A table cannot exist without columns. Should the table be deleted from the database? If not, the table will remain unchanged.";
    Message[ portuguese ] = "You are trying to delete all columns in the table. A table cannot exist without columns. Should the table be deleted from the database? If not, the table will remain unchanged.";
    Message[ russian ] = "You are trying to delete all columns in the table. A table cannot exist without columns. Should the table be deleted from the database? If not, the table will remain unchanged.";
    Message[ greek ] = "You are trying to delete all columns in the table. A table cannot exist without columns. Should the table be deleted from the database? If not, the table will remain unchanged.";
    Message[ dutch ] = "You are trying to delete all columns in the table. A table cannot exist without columns. Should the table be deleted from the database? If not, the table will remain unchanged.";
    Message[ french ] = "Vous tes en train d'essayer de supprimer toutes les colonnes de la table. Or, une table ne peut exister sans colonne. Voulez-vous supprimer la table de la base de donnes ? Si tel n'est pas le cas, la table restera inchange.";
    Message[ spanish ] = "Intenta borrar todas las columnas de la tabla. Una tabla no puede existir sin columnas. Desea borrar la tabla de la base de datos? Si ese no es el caso, la tabla permanecer inalterada. ";
    Message[ finnish ] = "You are trying to delete all columns in the table. A table cannot exist without columns. Should the table be deleted from the database? If not, the table will remain unchanged.";
    Message[ italian ] = "Volete eliminare tutte le colonne della tabella. Una tabella, per essere tale, dev'essere composta anche da colonne. Volete eliminare l'intera tabella dal database? In caso contrario la tabella non subir cambiamenti.";
    Message[ danish ] = "You are trying to delete all columns in the table. A table cannot exist without columns. Should the table be deleted from the database? If not, the table will remain unchanged.";
    Message[ swedish ] = "Du frsker att radera alla kolumner i tabellen. Det gr inte att ha en tabell utan kolumner. Vill du radera tabellen frn databasen? Om inte, kommer tabellen inte att ndras.";
    Message[ polish ] = "You are trying to delete all columns in the table. A table cannot exist without columns. Should the table be deleted from the database? If not, the table will remain unchanged.";
    Message[ japanese ] = "テーブルにあるすべての列を削除しようとしています。列がなくては、テーブルは存在しません。データベースからテーブルを削除しますか。削除しなければ、テーブルはそのまま残ります。";
    Message[ korean ] = "지금 모든 열을 삭제하시려고 합니다. 열이 없으면 테이블을 작성할 수 없습니다. 테이블을 데이터베이스로부터 삭제하시겠습니까? 삭제하지 않는 경우 테이블은 변경없이 유지됩니다.";
    Message[ chinese_simplified ] = "您正在试图删除表格之中的所有的列。一个表格至少必须含有一列。要删除这个表格吗?否则,就不会更改这个表格的内容。";
    Message[ chinese_traditional ] = "您正在試圖刪除表格之中的所有欄位。一個表格至少必須具有一個欄位。您要刪除這個表格嗎?否則,就不會變更這個表格。";
    Message[ turkish ] = "You are trying to delete all columns in the table. A table cannot exist without columns. Should the table be deleted from the database? If not, the table will remain unchanged.";
    Message[ arabic ] = "You are trying to delete all columns in the table. A table cannot exist without columns. Should the table be deleted from the database? If not, the table will remain unchanged.";
};

String STR_AUTOINCREMENT_VALUE
{
    Text = "A~uto-Increment-Ausdruck" ;
    Text [ ENGLISH ] = "A~uto-increment statement" ;
    Text[ english_us ] = "A~uto-increment statement";
    Text[ portuguese ] = "A~uto-increment statement";
    Text[ russian ] = "A~uto-increment statement";
    Text[ greek ] = "A~uto-increment statement";
    Text[ dutch ] = "A~uto-increment statement";
    Text[ french ] = "Expression d'auto-incrment";
    Text[ spanish ] = "Expresin incremento a~utomtico";
    Text[ finnish ] = "A~uto-increment statement";
    Text[ italian ] = "Espressione incremento automatico";
    Text[ danish ] = "A~uto-increment statement";
    Text[ swedish ] = "A~uto-inkrementsats";
    Text[ polish ] = "A~uto-increment statement";
    Text[ portuguese_brazilian ] = "A~uto-increment statement";
    Text[ japanese ] = "オートインクリメント命令文";
    Text[ korean ] = "자동 증분 명령문";
    Text[ chinese_simplified ] = "自动递增陈述";
    Text[ chinese_traditional ] = "自動遞增陳述";
    Text[ turkish ] = "A~uto-increment statement";
    Text[ arabic ] = "A~uto-increment statement";
    Text[ catalan ] = "A~uto-increment statement";
    Text[ thai ] = "A~uto-increment statement";
};
String STR_HELP_AUTOINCREMENT_VALUE
{
    Text = "Geben Sie hier einen SQL Ausdruck fr das Auto-Increment-Feld an.\n\nDieser Ausdruck wird beim Erzeugen der Tabelle direkt an die Datenbank bertragen." ;
    Text [ english ] = "Enter an SQL statement for the auto-increment field.\n\nThis statement will be directly transferred to the database when the table is created." ;
    Text[ english_us ] = "Enter an SQL statement for the auto-increment field.\n\nThis statement will be directly transferred to the database when the table is created.";
    Text[ portuguese ] = "Enter an SQL statement for the auto-increment field.\n\nThis statement will be directly transferred to the database when the table is created.";
    Text[ russian ] = "Enter an SQL statement for the auto-increment field.\n\nThis statement will be directly transferred to the database when the table is created.";
    Text[ greek ] = "Enter an SQL statement for the auto-increment field.\n\nThis statement will be directly transferred to the database when the table is created.";
    Text[ dutch ] = "Enter an SQL statement for the auto-increment field.\n\nThis statement will be directly transferred to the database when the table is created.";
    Text[ french ] = "Saisissez une expression SQL pour le champ d'auto-incrment.\n\nCette expression sera directement transfre vers la base de donnes au moment de la cration de la table.";
    Text[ spanish ] = "Introduzca una expresin SQL para el campo de incremento automtico.\n\nEsta expresin se importar directamente a la base de datos desde que la tabla se cree. ";
    Text[ finnish ] = "Enter an SQL statement for the auto-increment field.\n\nThis statement will be directly transferred to the database when the table is created.";
    Text[ italian ] = "Indicate un'espressione SQL per il campo Incremento automatico.\n\\Questa espressione verr importata direttamente nel database non appena sar creata la tabella.";
    Text[ danish ] = "Enter an SQL statement for the auto-increment field.\n\nThis statement will be directly transferred to the database when the table is created.";
    Text[ swedish ] = "Ange SQL-satsen fr Auto-inkrementfltet hr.\n\nDen hr satsen verfrs direkt till databasen nr tabellen skapas.";
    Text[ polish ] = "Enter an SQL statement for the auto-increment field.\n\nThis statement will be directly transferred to the database when the table is created.";
    Text[ portuguese_brazilian ] = "Enter an SQL statement for the auto-increment field.\n\nThis statement will be directly transferred to the database when the table is created.";
    Text[ japanese ] = "オートインクリメントのフィールドに使う SQL ステートメントをここに入力します。\n\nこのステートメントは、テーブルを作成するときに直接データベースに転送されます。";
    Text[ korean ] = "자동 증분 필드를 위한 SOL 명령문을 여기에 입력해주십시오.\n\n 이 문장은 테이블이 만들어지면 데이터베이스로 곧 전송될 것입니다.";
    Text[ chinese_simplified ] = "在此输入一个用于自动递增字段的 SQL 陈述。\n\n在生成表格的同时,这个陈述就会被直接传给数据库。";
    Text[ chinese_traditional ] = "在此輸入一個用於自動遞增欄位的 SQL 陳述。\n\n在產生表格的同時,這個陳述就會被直接傳給資料庫。";
    Text[ turkish ] = "Enter an SQL statement for the auto-increment field.\n\nThis statement will be directly transferred to the database when the table is created.";
    Text[ arabic ] = "Enter an SQL statement for the auto-increment field.\n\nThis statement will be directly transferred to the database when the table is created.";
    Text[ catalan ] = "Enter an SQL statement for the auto-increment field.\n\nThis statement will be directly transferred to the database when the table is created.";
    Text[ thai ] = "Enter an SQL statement for the auto-increment field.\n\nThis statement will be directly transferred to the database when the table is created.";
};

String STR_NO_TYPE_INFO_AVAILABLE
{
    Text = "Es konnten keine Typinformationen von der Datenbank ermittelt werden.\nDer Tabellenentwurfmodus ist fr diese Datenquelle nicht verfgbar.";
    Text[ english ] = "No type information could be retrieved from the database.\nThe table design mode is not available for this data source.";
    Text[ portuguese ] = "No type information could be retrieved from the database.\nThe table design mode is not available for this data source.";
    Text[ russian ] = "No type information could be retrieved from the database.\nThe table design mode is not available for this data source.";
    Text[ spanish ] = "No se ha podido extraer informacin, relativa al tipo, de la base de datos.\nEl modo diseo de tabla no est disponible para esta fuente de datos. ";
    Text[ italian ] = "Impossibile reperire i tipi di informazione dal database.\\Il modo struttura della tabella non  disponibile per questa sorgente dati.";
    Text[ swedish ] = "Det gick inte att f fram typinformation frn databasen.\nTabellutkastlget r inte tillgngligt fr den hr datakllan.";
    Text[ polish ] = "No type information could be retrieved from the database.\nThe table design mode is not available for this data source.";
    Text[ portuguese_brazilian ] = "No type information could be retrieved from the database.\nThe table design mode is not available for this data source.";
    Text[ japanese ] = "データベースからはタイプ情報は検索できませんでした。\nこのデータソースにはテーブルデザインモードは使用できません。";
    Text[ korean ] = "데이터베이스에서 유형 정보를 찾을 수 없습니다.\\테이블 디자인 모드는 이 데이터 원본용으로 사용할 수 없습니다.";
    Text[ turkish ] = "No type information could be retrieved from the database.\nThe table design mode is not available for this data source.";
    Text[ thai ] = "No type information could be retrieved from the database.\nThe table design mode is not available for this data source.";
    Text[ english_us ] = "No type information could be retrieved from the database.\nThe table design mode is not available for this data source.";
    Text[ greek ] = "No type information could be retrieved from the database.\nThe table design mode is not available for this data source.";
    Text[ dutch ] = "No type information could be retrieved from the database.\nThe table design mode is not available for this data source.";
    Text[ french ] = "Impossible de rcuprer des informations concernant le type dans la base de donnes !\nLe mode bauche de table n'est pas disponible pour cette source de donnes.";
    Text[ finnish ] = "No type information could be retrieved from the database.\nThe table design mode is not available for this data source.";
    Text[ danish ] = "No type information could be retrieved from the database.\nThe table design mode is not available for this data source.";
    Text[ chinese_simplified ] = "无法从数据库获得类型信息。\n不提供此数据源的表格设计模式。";
    Text[ chinese_traditional ] = "無法從資料庫檢索類別資訊。\n這個資料源沒有表格設計模式。";
    Text[ arabic ] = "No type information could be retrieved from the database.\nThe table design mode is not available for this data source.";
    Text[ catalan ] = "No type information could be retrieved from the database.\nThe table design mode is not available for this data source.";
};