summaryrefslogtreecommitdiff
path: root/dbaccess/source/ui/dlg/dbadmin.src
blob: 2ef4e73c41b92ee6db240670cd1c691e0b00b9e0 (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
/*************************************************************************
 *
 *  $RCSfile: dbadmin.src,v $
 *
 *  $Revision: 1.22 $
 *
 *  last change: $Author: fs $ $Date: 2000-12-14 08:52:10 $
 *
 *  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 EXPRESS 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 _DBA_DBACCESS_HELPID_HRC_
#include "dbaccess_helpid.hrc"
#endif

#ifndef _DBU_RESOURCE_HRC_
#include "dbu_resource.hrc"
#endif

#ifndef _DBAUI_DBADMIN_HRC_
#include "dbadmin.hrc"
#endif

//-------------------------------------------------------------------------
TabDialog DLG_DATABASE_ADMINISTRATION
{
    OutputSize = TRUE ;
    SVLook = TRUE ;
    Moveable = TRUE ;
    Closeable = TRUE ;
    Hide = TRUE;
    HelpId = HID_DSADMIN_DIALOG;

    Window WND_DATASOURCESELECTOR
    {
        Pos = MAP_APPFONT ( 0, 0 ) ;
        Size = MAP_APPFONT ( 80, 200 ) ;
        ClipChildren = TRUE;
        HelpId = HID_DSADMIN_DATASOURCE_SELECTOR;

        PushButton PB_NEW_DATASOURCE
        {
            Pos = MAP_APPFONT ( 0, 0 ) ;
            Size = MAP_APPFONT ( 56, 14 ) ;
            Border = TRUE;
            SVLook = TRUE;
            TabStop = TRUE ;
            HelpId = HID_DSADMIN_DATASOURCE_NEWDS;

            Text = "Neue Datenquelle";
            Text [ english ] = "Ne~w data source";
            Text [ english_us ] = "New data source";
            Text[ portuguese ] = "Nova fonte de dados";
            Text[ russian ] = "  ";
            Text[ greek ] = "  ";
            Text[ dutch ] = "Nieuwe gegevensbron";
            Text[ french ] = "Nouvelle source de donnes";
            Text[ spanish ] = "Nueva fuente de datos";
            Text[ italian ] = "Nuova sorgente dati";
            Text[ danish ] = "Ny datakilde";
            Text[ swedish ] = "Ny dataklla";
            Text[ polish ] = "Nowe rdo danych";
            Text[ portuguese_brazilian ] = "New data source";
            Text[ japanese ] = "Vް";
            Text[ korean ] = "ο  ҽ";
            Text[ chinese_simplified ] = "Դ";
            Text[ chinese_traditional ] = "sƷ";
            Text[ turkish ] = "New data source";
            Text[ arabic ] = "  ";
        };
        ListBox LB_DATASOURCES
        {
            Border = TRUE;
            SVLook = TRUE;
            AutoHScroll = TRUE;
            TabStop = TRUE ;
            Pos = MAP_APPFONT ( 2, 22 ) ;
            Size = MAP_APPFONT ( 56, 196 ) ;
            HelpId = HID_DSADMIN_DATASOURCE_DSLIST;
        };
    };

    TabControl 1
    {
        OutputSize = TRUE ;
        HelpId = HID_DSADMIN_TABCONTROL;
    };

    Text = "Datenquellen verwalten" ;
    Text [ english ] = "Data source administration" ;
    Text [ english_us ] = "Data Source Administration" ;

    //.........................................................................
    String STR_PAGETITLE_GENERAL
    {
        Text = "Allgemein" ;
        Text [ english ] = "General" ;
        Text [ norwegian ] = "Generell" ;
        Text [ italian ] = "Generale" ;
        Text [ portuguese_brazilian ] = "Geral" ;
        Text [ portuguese ] = "Geral" ;
        Text [ finnish ] = "Yleiset" ;
        Text [ danish ] = "Generelt" ;
        Text [ french ] = "Gnral" ;
        Text [ swedish ] = "Allmnt" ;
        Text [ dutch ] = "Algemeen" ;
        Text [ spanish ] = "General" ;
        Text [ english_us ] = "General" ;
        Text[ chinese_simplified ] = "";
        Text[ russian ] = "";
        Text[ polish ] = "Oglne";
        Text[ japanese ] = "S";
        Text[ chinese_traditional ] = "@";
        Text[ arabic ] = "";
        Text[ greek ] = "";
        Text[ korean ] = "Ϲ";
        Text[ turkish ] = "Genel";
        Text[ language_user1 ] = " ";
    };
    String STR_PAGETITLE_DBASE
    {
        Text = "dBase" ;
        Text [ ENGLISH ] = "dBase" ;
        Text [ norwegian ] = "dBase" ;
        Text [ italian ] = "dBase" ;
        Text [ portuguese_brazilian ] = "dBase" ;
        Text [ portuguese ] = "dBase" ;
        Text [ finnish ] = "dBase" ;
        Text [ danish ] = "dBase" ;
        Text [ french ] = "dBase" ;
        Text [ swedish ] = "dBase" ;
        Text [ dutch ] = "dBase" ;
        Text [ spanish ] = "dBase" ;
        Text [ english_us ] = "dBase" ;
        Text[ chinese_simplified ] = "dBase";
        Text[ russian ] = "dBase";
        Text[ polish ] = "dBase";
        Text[ japanese ] = "dBase";
        Text[ chinese_traditional ] = "dBase";
        Text[ arabic ] = "dBase";
        Text[ greek ] = "dBase";
        Text[ korean ] = "dBase";
        Text[ turkish ] = "dBase";
        Text[ language_user1 ] = " ";
    };
    String STR_PAGETITLE_JDBC
    {
        Text = "JDBC" ;
        Text [ ENGLISH ] = "JDBC" ;
        Text [ norwegian ] = "JDBC" ;
        Text [ italian ] = "JDBC" ;
        Text [ portuguese_brazilian ] = "JDBC" ;
        Text [ portuguese ] = "JDBC" ;
        Text [ finnish ] = "JDBC" ;
        Text [ danish ] = "JDBC" ;
        Text [ french ] = "JDBC" ;
        Text [ swedish ] = "JDBC" ;
        Text [ dutch ] = "JDBC" ;
        Text [ spanish ] = "JDBC" ;
        Text [ english_us ] = "JDBC" ;
        Text[ chinese_simplified ] = "JDBC";
        Text[ russian ] = "JDBC";
        Text[ polish ] = "JDBC";
        Text[ japanese ] = "JDBC";
        Text[ chinese_traditional ] = "JDBC";
        Text[ arabic ] = "JDBC";
        Text[ greek ] = "JDBC";
        Text[ korean ] = "JDBC";
        Text[ turkish ] = "JDBC";
        Text[ language_user1 ] = " ";
    };
    String STR_PAGETITLE_ODBC
    {
        Text = "ODBC" ;
        Text [ ENGLISH ] = "ODBC" ;
        Text [ norwegian ] = "ODBC" ;
        Text [ italian ] = "ODBC" ;
        Text [ portuguese_brazilian ] = "ODBC" ;
        Text [ portuguese ] = "ODBC" ;
        Text [ finnish ] = "ODBC" ;
        Text [ danish ] = "ODBC" ;
        Text [ french ] = "ODBC" ;
        Text [ swedish ] = "ODBC" ;
        Text [ dutch ] = "ODBC" ;
        Text [ spanish ] = "ODBC" ;
        Text [ english_us ] = "ODBC" ;
        Text[ chinese_simplified ] = "ODBC";
        Text[ russian ] = "ODBC";
        Text[ polish ] = "ODBC";
        Text[ japanese ] = "ODBC";
        Text[ chinese_traditional ] = "ODBC";
        Text[ arabic ] = "ODBC";
        Text[ greek ] = "ODBC";
        Text[ korean ] = "ODBC";
        Text[ turkish ] = "ODBC";
        Text[ language_user1 ] = " ";
    };
    String STR_PAGETITLE_ADABAS
    {
        Text = "Adabas D" ;
        Text[ENGLISH] = "Adabas D" ;
        Text[ english_us ] = "Adabas D";
        Text[ portuguese ] = "Adabas D";
        Text[ russian ] = "Adabas D";
        Text[ greek ] = "Adabas D";
        Text[ dutch ] = "Adabas D";
        Text[ french ] = "Adabas D";
        Text[ spanish ] = "Adabas D";
        Text[ italian ] = "Adabas D";
        Text[ danish ] = "Adabas D";
        Text[ swedish ] = "Adabas D";
        Text[ polish ] = "Adabas D";
        Text[ portuguese_brazilian ] = "Adabas D";
        Text[ japanese ] = "Adabas D";
        Text[ korean ] = "Adabas D";
        Text[ chinese_simplified ] = "Adabas D";
        Text[ chinese_traditional ] = "Adabas D";
        Text[ arabic ] = "Adabas D";
        Text[ turkish ] = "Adabas D";
    };
    String STR_PAGETITLE_TEXT
    {
        Text = "Text" ;
        Text [ ENGLISH ] = "Text" ;
        Text [ norwegian ] = "Text" ;
        Text [ italian ] = "Testo" ;
        Text [ portuguese_brazilian ] = "Texto" ;
        Text [ portuguese ] = "Texto" ;
        Text [ finnish ] = "Teksti" ;
        Text [ danish ] = "Tekst" ;
        Text [ french ] = "Texte" ;
        Text [ swedish ] = "Text" ;
        Text [ dutch ] = "Tekst" ;
        Text [ spanish ] = "Texto" ;
        Text [ english_us ] = "Text" ;
        Text[ chinese_simplified ] = "";
        Text[ russian ] = "";
        Text[ polish ] = "Tekst";
        Text[ japanese ] = "÷";
        Text[ chinese_traditional ] = "r";
        Text[ arabic ] = "";
        Text[ greek ] = "";
        Text[ korean ] = "ؽƮ";
        Text[ turkish ] = "Metin";
        Text[ language_user1 ] = " ";
    };
    String STR_PAGETITLE_TABLESUBSCRIPTION
    {
        Text = "Tabellen" ;
        Text [ ENGLISH ] = "Tables" ;
        Text [ english_us ] = "Tables" ;
        Text[ portuguese ] = "Tabelas";
        Text[ russian ] = "";
        Text[ greek ] = "";
        Text[ dutch ] = "Tabellen";
        Text[ french ] = "Tables";
        Text[ spanish ] = "Tablas";
        Text[ italian ] = "Tabelle";
        Text[ danish ] = "Tabeller";
        Text[ swedish ] = "Tabeller";
        Text[ polish ] = "Tabele";
        Text[ portuguese_brazilian ] = "Tabellen";
        Text[ japanese ] = "ð";
        Text[ korean ] = "ǥ";
        Text[ chinese_simplified ] = "";
        Text[ chinese_traditional ] = "";
        Text[ turkish ] = "Tablolar";
        Text[ arabic ] = "";
    };
    Text[ portuguese ] = "Gerir fontes de dados";
    Text[ russian ] = "  ";
    Text[ greek ] = "  ";
    Text[ dutch ] = "Gegevensbron beheren";
    Text[ french ] = "Gestion des sources de donnes";
    Text[ spanish ] = "Administracin de fuentes de datos";
    Text[ italian ] = "Gestire sorgente dati";
    Text[ danish ] = "Administrer datakilde";
    Text[ swedish ] = "Administrera datakllor";
    Text[ polish ] = "Zarzdzaj rdem danych";
    Text[ portuguese_brazilian ] = "Datasource administration";
    Text[ japanese ] = "ް̊Ǘ";
    Text[ korean ] = " ҽ ";
    Text[ chinese_simplified ] = "Դ";
    Text[ chinese_traditional ] = "޲zƷ";
    Text[ turkish ] = "Datasource administration";
    Text[ arabic ] = "  ";
};

//-------------------------------------------------------------------------
Image IMG_DATABASE
{
    ImageBitmap = Bitmap { File = "db.bmp"; };
    MaskColor = Color { Red = 0xff00 ; Green = 0x0000 ; Blue = 0xff00 ; };
};
Image IMG_DATABASE_MODIFIED
{
    ImageBitmap = Bitmap { File = "db_modified.bmp"; };
    MaskColor = Color { Red = 0xff00 ; Green = 0x0000 ; Blue = 0xff00 ; };
};
Image IMG_DATABASE_NEW
{
    ImageBitmap = Bitmap { File = "db_new.bmp"; };
    MaskColor = Color { Red = 0xff00 ; Green = 0x0000 ; Blue = 0xff00 ; };
};
Image IMG_DATABASE_DELETED
{
    ImageBitmap = Bitmap { File = "db_deleted.bmp"; };
    MaskColor = Color { Red = 0xff00 ; Green = 0x0000 ; Blue = 0xff00 ; };
};

//-------------------------------------------------------------------------
TabPage PAGE_GENERAL
{
    SVLook = TRUE ;
    Size = MAP_APPFONT ( 260 , 135 ) ;
    Hide = TRUE;
    HelpId = HID_DSADMIN_PAGE_GENERAL;

    FixedText FT_DATASOURCENAME
    {
        Pos = MAP_APPFONT ( 6 , 7 ) ;
        Size = MAP_APPFONT ( 74 , 10 ) ;
        Text = "~Name:";
        Text [ english ] = "~Name:";
        Text [ english_us ] = "~Name:";
        Text[ portuguese ] = "~Nome:";
        Text[ russian ] = "~:";
        Text[ greek ] = "~:";
        Text[ dutch ] = "~Naam:";
        Text[ french ] = "~Nom :";
        Text[ spanish ] = "~Nombre:";
        Text[ italian ] = "~Nome:";
        Text[ danish ] = "Navn:";
        Text[ swedish ] = "~Namn:";
        Text[ polish ] = "~Nazwa:";
        Text[ portuguese_brazilian ] = "~Name:";
        Text[ japanese ] = "O(~N):";
        Text[ korean ] = "̸:";
        Text[ chinese_simplified ] = "(~N)";
        Text[ chinese_traditional ] = "W(~N)G";
        Text[ turkish ] = "~Name:";
        Text[ arabic ] = ":";
    };

    Edit ET_DATASOURCENAME
    {
        HelpId = HID_DSADMIN_DSNAME;
        Pos = MAP_APPFONT ( 90 , 6 ) ;
        Size = MAP_APPFONT ( 164 , 12 ) ;
        TabStop = TRUE ;
        Border = TRUE ;
    };

    GroupBox GB_CONNECTION
    {
        Pos = MAP_APPFONT ( 6 , 23 ) ;
        Size = MAP_APPFONT ( 248 , 48 ) ;
        Text = "Verbindung" ;
        Text [ english ] = "Connection" ;
        Text [ english_us ] = "Connection" ;
        Text[ portuguese ] = "Ligao";
        Text[ russian ] = "";
        Text[ greek ] = "";
        Text[ dutch ] = "Verbinding";
        Text[ french ] = "Connection";
        Text[ spanish ] = "Conexin";
        Text[ italian ] = "Collegamento";
        Text[ danish ] = "Forbindelse";
        Text[ swedish ] = "Frbindelse";
        Text[ polish ] = "Poczenie";
        Text[ portuguese_brazilian ] = "Connection";
        Text[ japanese ] = "ڑ";
        Text[ korean ] = "";
        Text[ chinese_simplified ] = "";
        Text[ chinese_traditional ] = "su";
        Text[ turkish ] = "Connection";
        Text[ arabic ] = "";
    };

    FixedText FT_DATATYPE
    {
        Pos = MAP_APPFONT ( 10 , 35 ) ;
        Size = MAP_APPFONT ( 70 , 10 ) ;
        Text = "Datenbank~typ:" ;
        Text [ english ] = "Database ~type:" ;
        Text [ english_us ] = "Database ~type:" ;
        Text [ dutch ] = "Database~type:" ;
        Text [ italian ] = "Tipo di database:" ;
        Text [ spanish ] = "Tipo de base de datos:" ;
        Text [ french ] = "~Type de B.D.:" ;
        Text [ swedish ] = "Databas~typ:" ;
        Text [ danish ] = "Databasetype:" ;
        Text [ portuguese ] = "~Tipo da base de dados:" ;
        Text [ portuguese_brazilian ] = "Datenbanktyp:" ;
        Text [ chinese_simplified ] = "ݿ(~T)";
        Text [ russian ] = "  ";
        Text [ polish ] = "Typ bazy danych";
        Text [ japanese ] = "ްް̎(~T):";
        Text [ chinese_traditional ] = "Ʈw(~T)G";
        Text [ arabic ] = "  :";
        Text [ greek ] = "~  ";
        Text [ korean ] = "ͺ̽ Ÿ";
        Text [ turkish ] = "Veritaban tipi";
        Text [ language_user1 ] = " ";
    };
    ListBox LB_DATATYPE
    {
        HelpId = HID_DSADMIN_DSTYPE;
        Pos = MAP_APPFONT ( 90, 33 ) ;
        Size = MAP_APPFONT ( 60, 60 ) ;
        Border = TRUE ;
        TabStop = TRUE ;
        DropDown = TRUE ;
    };
    FixedText FT_CONNECTURL
    {
        HelpId = HID_DSADMIN_URL_GENERAL;
        Pos = MAP_APPFONT ( 10 , 53 ) ;
        Size = MAP_APPFONT ( 70 , 10 ) ;
        Text = "D~atenquelle URL:" ;
        Text [ english ] = "~Data source URL:" ;
        Text [ english_us ] = "~Data source URL:" ;
        Text[ portuguese ] = "~Fonte de dados URL:";
        Text[ russian ] = "~  URL:";
        Text[ greek ] = "URL   :";
        Text[ dutch ] = "~Gegevensbron URL:";
        Text[ french ] = "URL de la ~source de donnes :";
        Text[ spanish ] = "~Fuente de datos URL:";
        Text[ italian ] = "Fonte di dati URL:";
        Text[ danish ] = "Datakilde URL:";
        Text[ swedish ] = "D~ataklla URL:";
        Text[ polish ] = "rdo danych URL";
        Text[ portuguese_brazilian ] = "~Data source URL:";
        Text[ japanese ] = "ް URL(~D):";
        Text[ korean ] = " ҽ URL:";
        Text[ chinese_simplified ] = "Դ URL(~D)";
        Text[ chinese_traditional ] = "Ʒ URL(~D)G";
        Text[ turkish ] = "~Data source URL:";
        Text[ arabic ] = " URL  :";
    };
    Edit ET_CONNECTURL
    {
        Pos = MAP_APPFONT ( 90 , 52 ) ;
        Size = MAP_APPFONT ( 142 , 12 ) ;
        TabStop = TRUE ;
        Border = TRUE ;
    };
    PushButton PB_BROWSECONNECTION
    {
        TabStop = TRUE ;
        Pos = MAP_APPFONT ( 236 , 51 ) ;
        Size = MAP_APPFONT ( 12 , 14 ) ;
        HelpId = HID_DSADMIN_BROWSECONN;
        Text = "..." ;
        Text [ english ] = "..." ;
        Text [ english_us ] = "..." ;
        Text[ portuguese ] = "...";
        Text[ russian ] = "...";
        Text[ greek ] = "...";
        Text[ dutch ] = "...";
        Text[ french ] = "...";
        Text[ spanish ] = "...";
        Text[ italian ] = "...";
        Text[ danish ] = "Gennemse...";
        Text[ swedish ] = "...";
        Text[ polish ] = "...";
        Text[ portuguese_brazilian ] = "Durchsuchen...";
        Text[ japanese ] = "...";
        Text[ korean ] = "...";
        Text[ chinese_simplified ] = "...";
        Text[ chinese_traditional ] = "...";
        Text[ turkish ] = "Tara...";
        Text[ arabic ] = "...";
    };
    FixedText FT_LOGINTIMEOUT
    {
        Pos = MAP_APPFONT ( 10 , 69 ) ;
        Size = MAP_APPFONT ( 70 , 10 ) ;
        Text = "Abfallzeit:";
        Text [ english ] = "Timeout:" ;
        Text [ english_us ] = "Timeout:" ;
        Text[ portuguese ] = "Tempo limite:";
        Text[ russian ] = "-:";
        Text[ greek ] = " :";
        Text[ dutch ] = "Timeout:";
        Text[ french ] = "Time out :";
        Text[ spanish ] = "Desconexin temporal:";
        Text[ italian ] = "Timeout:";
        Text[ danish ] = "Timeout:";
        Text[ swedish ] = "Timeout:";
        Text[ polish ] = "Chwilowa przerwa:";
        Text[ portuguese_brazilian ] = "Timeout:";
        Text[ japanese ] = "ѱ:";
        Text[ korean ] = "ŸӾƿ:";
        Text[ chinese_simplified ] = "ʱޣ";
        Text[ chinese_traditional ] = "WLɭG";
        Text[ turkish ] = "Timeout:";
        Text[ arabic ] = " :";
    };
    Edit ET_TIMEOUT_NUMBER
    {
        Pos = MAP_APPFONT ( 90 , 68 ) ;
        Size = MAP_APPFONT ( 30 , 12 ) ;
        HelpId = HID_DSADMIN_LOGINTIMEOUT_NUMBER;
        TabStop = TRUE ;
        Border = TRUE ;
    };
    ListBox LB_TIMEOUT_UNIT
    {
        Pos = MAP_APPFONT ( 123 , 68 ) ;
        Size = MAP_APPFONT ( 50 , 14 ) ;
        HelpId = HID_DSADMIN_LOGINTIMEOUT_UNIT;
        Border = TRUE ;
        TabStop = TRUE ;
        DropDown = TRUE ;
    };
    FixedText FT_SPECIAL_MESSAGE
    {
        Pos = MAP_APPFONT ( 6, 112 );
        Size = MAP_APPFONT ( 248, 20 );
        WordBreak = TRUE;
        HelpId = HID_DSADMIN_SPECIAL_MESSAGE;
    };
    String STR_NAMEINVALID
    {
        Text =  "Es existiert schon eine andere Datenquelle mit diesem Namen. Da Datenquellennamen global eindeutig sein "
            "mssen, sollten sie einen anderen whlen.";
        Text [ english ] = "There already is another data source with this name. Since data source names have to be "
                "globally unique, you have to choose another one.";
        Text [ english_us ] = "Another data source already has this name. As data sources have to have globally unique names, please choose another one.";
        Text[ portuguese ] = "J existe uma fonte de dados com este nome. Os nomes das fontes de dados devem ser nicos, por esta razo  recomendvel seleccionar outro nome.";
        Text[ russian ] = "       .       ,    .";
        Text[ greek ] = "        .                    .";
        Text[ dutch ] = "Er bestaat reeds een andere gegevensbron met deze naam. Kies een andere naam.";
        Text[ french ] = "Ce nom a dj t attribu  une autre source de donnes. tant donn que les sources de donnes doivent avoir des noms globalement uniques, vous devez en choisir un autre.";
        Text[ spanish ] = "Ya existe otra fuente de datos con este nombre. Debe elegir otro ya que el nombre de la fuente de datos debe ser globalmente nico.";
        Text[ italian ] = "Esiste gi una sorgente dati con questo nome. Poich il nome delle sorgenti di dati dev'essere univoco,  necesario scegliere un altro nome.";
        Text[ danish ] = "There already is another data source with this name. Since data source names have to be globally unique, you have to choose another one.";
        Text[ swedish ] = "Det finns redan en dataklla med det hr namnet. Eftersom namn p datakllor mste vara globalt unika br Du vlja ett annat namn.";
        Text[ polish ] = "Istnieje inne rdo danych o tej samej nazwie. Poniewa nazwy rode danych musz by globalnie jednoznaczne, naley wybra inn nazw.";
        Text[ portuguese_brazilian ] = "There already is another data source with this name. Since data source names have to be globally unique, you have to choose another one.";
        Text[ japanese ] = "̖O̕tʂްłɂ܂Bް͂Ƌʂ邽߂ɂ́Aق̖OIKv܂B";
        Text[ korean ] = " ̸   ̹ մϴ.  ҽ ̸   ؾ ϹǷ,  ٸ ̸ ؾ  մϴ.";
        Text[ chinese_simplified ] = "ѾһͬԴΪԴƱһͨõЧƣһơ";
        Text[ chinese_traditional ] = "wgsb@ӦPWƷC]@ӸƷW٥qΩ̡AбzĥΥt~@ӦĪW١C";
        Text[ turkish ] = "There already is another data source with this name. Since data source names have to be globally unique, you have to choose another one.";
        Text[ arabic ] = "       .          ɡ    .";
    };
    String STR_DATASOURCEDELETED
    {
        Text =  "Diese Datenquelle haben Sie gelscht.";
        Text [ english ] = "This data source is scheduled to be deleted.";
        Text [ english_us ] = "You have deleted this data source.";
        Text[ portuguese ] = "Esta fonte de dados foi eliminada.";
        Text[ russian ] = "   .";
        Text[ greek ] = "     .";
        Text[ dutch ] = "U heeft deze gegevensbron gewist.";
        Text[ french ] = "Vous avez supprim cette source de donnes.";
        Text[ spanish ] = "Ha eliminado esta fuente de datos.";
        Text[ italian ] = "La sorgente dati  stata cancellata.";
        Text[ danish ] = "This data source is scheduled to be deleted.";
        Text[ swedish ] = "Du har raderat den hr datakllan.";
        Text[ polish ] = "To rdo danych zostao usunite.";
        Text[ portuguese_brazilian ] = "This data source is scheduled to be deleted.";
        Text[ japanese ] = "ްհްɂč폜Ă܂B";
        Text[ korean ] = "ϴ ͼҽ Ͽϴ.";
        Text[ chinese_simplified ] = "ѾɾԴ";
        Text[ chinese_traditional ] = "zwgRFoӸƷC";
        Text[ turkish ] = "This data source is scheduled to be deleted.";
        Text[ arabic ] = "     .";
    };
    String STR_COULDNOTLOAD_ODBCLIB
    {
        Text = "Die Programmbibliothek #lib# konnte nicht geladen werden oder ist defekt. Die ODBC-Datenquellen-Auswahl ist nicht verfgbar.";
        Text [ english ] = "The program library #lib# could not be loaded or is corrupted. The ODBC data source selection is not available.";
        Text [ english_us ] = "Could not load the program library #lib# or it is corrupted. The ODBC data source selection is not available.";
        Text[ portuguese ] = "Ou foi impossvel carregar a biblioteca #lib# do programa ou esta est com defeito. A seleco da fonte de dados ODBC no est disponvel.";
        Text[ russian ] = "  #lib#     .    ODBC  .";
        Text[ greek ] = "    #lib#        .        ODBC   .";
        Text[ dutch ] = "De programmabibliotheek #lib# kon niet worden geladen of is defect. De functie ODBC gegevensbronnen kiezen is niet beschikbaar.";
        Text[ french ] = "La bibliothque de programme #lib# n'a pas pu tre charge ou est dfectueuse. La slection de la source de donnes ODBC n'est pas disponible.";
        Text[ spanish ] = "No se pudo cargar la biblioteca de programa #lib#, quizs est daada. La seleccin de fuente de datos ODBC no est disponible.";
        Text[ italian ] = "Impossibile caricare la program library  #lib# oppure  difettosa. La selezione della sorgente dati ODBC non  disponibile.";
        Text[ danish ] = "The program library #lib# could not be loaded or is corrupted. The ODBC data source selection is not available.";
        Text[ swedish ] = "Det gick inte att ladda programbiblioteket #lib# eller s r det defekt. Urvalet av ODBC-datakllor r inte tillgngligt.";
        Text[ polish ] = "Zaadowanie biblioteki programu #lib# nie byo moliwe. Jest ona by moe uszkodzona. Wybr rda danych ODBC nie jest moliwy.";
        Text[ portuguese_brazilian ] = "The program library #lib# could not be loaded or is corrupted. The ODBC data source selection is not available.";
        Text[ japanese ] = "#lib# ۸ײ؂ǂݍ߂ȂA܂͂ꎩ̂ق܂B ODBC ް͑Ił܂B";
        Text[ korean ] = "α׷ ̺귯 #lib# ε  ų Ǵ Դϴ. ODBC  ҽ   ʽϴ.";
        Text[ chinese_simplified ] = "޷װ #lib# Ѿ𻵡޷ѡ ODBC Դ";
        Text[ chinese_traditional ] = "LkŪ{w #lib# ΤwgwglCLk ODBC ƷC";
        Text[ turkish ] = "The program library #lib# could not be loaded or is corrupted. The ODBC data source selection is not available.";
        Text[ arabic ] = "      #lib#   .    ODBC  .";
    };
    String STR_NO_ADABASE_DATASOURCES
    {
        Text = "Auf Ihrem System wurden keine Adabas-Datenquellen gefunden.";
        Text [ english ] = "No Adabas data sources have been found on your system.";
        Text [ english_us ] = "There are no Adabas data sources on your system.";
        Text[ portuguese ] = "No seu sistema no existe nenhuma fonte de dados Adabas.";
        Text[ russian ] = "  Adabas     .";
        Text[ greek ] = "      Adabas   .";
        Text[ dutch ] = "Op uw systeem werden geen Adabas-gegevensbronnen gevonden.";
        Text[ french ] = "Aucune source de donnes Adabas n'a t dtecte dans votre systme.";
        Text[ spanish ] = "No se han encontrado fuentes de datos Adabas en su sistema.";
        Text[ italian ] = "Impossibile trovare una sorgente dati Adabas nel sistema";
        Text[ danish ] = "No Adabas data sources have been found on your system.";
        Text[ swedish ] = "Inga Adabasdatakllor har hittats p Ditt system.";
        Text[ polish ] = "W systemie komputera uytkownika nie znaleziono rde danych Adabas.";
        Text[ portuguese_brazilian ] = "No Adabas data sources have been found on your system.";
        Text[ japanese ] = "g̼я Adabas ް͌‚܂B";
        Text[ korean ] = " ýۿ Adabas  ҽ ã ߽ϴ.";
        Text[ chinese_simplified ] = "ϵͳûаװ Adabas ݿ⡣";
        Text[ chinese_traditional ] = "bztΤWSw Adabas ƷC";
        Text[ turkish ] = "No Adabas data sources have been found on your system.";
        Text[ arabic ] = "     Adabas  .";
    };
};

//.........................................................................
TabPage PAGE_DBASE
{
    SVLook = TRUE ;
    Hide = TRUE;
    Pos = MAP_APPFONT ( 0 , 0 ) ;
    Size = MAP_APPFONT ( 260 , 135 ) ;
    HelpId = HID_DSADMIN_PAGE_DBASE;

    GroupBox GB_DBASE_MAIN
    {
        Pos = MAP_APPFONT ( 6 , 6 ) ;
        Size = MAP_APPFONT ( 248 , 37 ) ;
    };

    CheckBox CB_SHOWDELETEDROWS
    {
        Pos = MAP_APPFONT ( 76 , 12 ) ;
        Size = MAP_APPFONT ( 127 , 10 ) ;
        TabStop = TRUE ;
        HelpId = HID_DSADMIN_SHOWDELETED;
        Text = "I~naktive Datenstze anzeigen" ;
        Text [ english ] = "Show deleted records" ;
        Text [ NORWEGIAN ] = "Show deleted records" ;
        Text [ DANISH ] = "Vis inaktive dataposter" ;
        Text [ ENGLISH_US ] = "Display i~nactive records" ;
        Text [ SPANISH ] = "Mostrar registros inacti~vos" ;
        Text [ FINNISH ] = "Nyt poistetut tietueet" ;
        Text [ FRENCH ] = "Afficher les enregistrements ~dsactivs" ;
        Text [ ITALIAN ] = "~Mostra record inattivi" ;
        Text [ DUTCH ] = "I~nactieve records weergeven" ;
        Text [ PORTUGUESE_BRAZILIAN ] = "Mostrar registros apagados" ;
        Text [ SWEDISH ] = "Visa i~naktiva dataposter" ;
        Text [ PORTUGUESE ] = "Mostrar registos i~nactivos" ;
        Text[ chinese_simplified ] = "ʾݼ¼(~N)";
        Text[ russian ] = "  ";
        Text[ polish ] = "Poka nieaktywne rekordy";
        Text[ japanese ] = "èނłȂںނ\\";
        Text[ chinese_traditional ] = "Jƶ";
        Text[ arabic ] = "   ";
        Text[ greek ] = "~   ";
        Text[ korean ] = "Ȱ ڵ ÷";
        Text[ turkish ] = "Etkin olmayan kaytlar grntle";
        Text[ language_user1 ] = " ";
    };
    FixedText FT_CHARSET
    {
        Pos = MAP_APPFONT ( 12 , 27 ) ;
        Size = MAP_APPFONT ( 57 , 10 ) ;
        Text = "~Zeichensatz" ;
        Text [ english ] = "~Character set" ;
        Text [ NORWEGIAN ] = "~Character set" ;
        Text [ DANISH ] = "Tegnst" ;
        Text [ ENGLISH_US ] = "~Character set" ;
        Text [ SPANISH ] = "J~uego de caracteres" ;
        Text [ FINNISH ] = "~Merkist" ;
        Text [ FRENCH ] = "~Jeu de caractres" ;
        Text [ ITALIAN ] = "~Tipo di carattere" ;
        Text [ DUTCH ] = "~Tekenset" ;
        Text [ PORTUGUESE_BRAZILIAN ] = "~Conjunto de caracteres" ;
        Text [ SWEDISH ] = "Te~ckenuppsttning" ;
        Text [ PORTUGUESE ] = "~Conjunto de caracteres" ;
        Text[ chinese_simplified ] = "(~C)";
        Text[ russian ] = " ";
        Text[ polish ] = "Zbir znakw";
        Text[ japanese ] = "(~C)";
        Text[ chinese_traditional ] = "r(~C)";
        Text[ arabic ] = " ";
        Text[ greek ] = " ";
        Text[ korean ] = " (~C)";
        Text[ turkish ] = "Karakter kmesi";
        Text[ language_user1 ] = " ";
    };
    ListBox LB_CHARSET
    {
        Border = TRUE ;
        Pos = MAP_APPFONT ( 76 , 25 ) ;
        Size = MAP_APPFONT ( 105 , 60 ) ;
        TabStop = TRUE ;
        DropDown = TRUE ;
        CurPos = 0 ;
        HelpId = HID_DSADMIN_CHARSET_DBASE;
    };
    PushButton PB_INDICIES
    {
        Pos = MAP_APPFONT ( 199 , 115 ) ;
        Size = MAP_APPFONT ( 55 , 14 ) ;
        TabStop = TRUE ;
        HelpId = HID_DSADMIN_DBASE_INDICIES;
        Text= "~Indizes...";
        Text [ english ] = "Indexes..." ;
        Text[ chinese_traditional ] = "лx...";
        Text[ arabic ] = "...";
        Text[ greek ] = "~...";
        Text[ korean ] = "";
        Text[ turkish ] = "Dizinler...";
        Text[ language_user1 ] = " ";
        Text[ italian ] = "I~ndici...";
        Text[ portuguese_brazilian ] = "Indizes";
        Text[ portuguese ] = "~ndices...";
        Text[ danish ] = "Indeks...";
        Text[ french ] = "~Index...";
        Text[ swedish ] = "~Index...";
        Text[ dutch ] = "~Indices...";
        Text[ spanish ] = "~ndices...";
        Text[ english_us ] = "Indexes...";
        Text[ chinese_simplified ] = "־...";
        Text[ russian ] = "...";
        Text[ polish ] = "Indeksy...";
        Text[ japanese ] = "ޯ...";
    };
};

//.........................................................................
TabPage PAGE_JDBC
{
    SVLook = TRUE ;
    Pos = MAP_APPFONT ( 0 , 0 ) ;
    Size = MAP_APPFONT ( 260 , 135 ) ;
    Hide = TRUE;
    HelpId = HID_DSADMIN_PAGE_JDBC;

    FixedText FT_JDBCDRIVERCLASS
    {
        Pos = MAP_APPFONT ( 6 , 7 ) ;
        Size = MAP_APPFONT ( 71 , 10 ) ;
        Text = "~JDBC Treiberklasse" ;
        Text [ ENGLISH ] = "~JDBC driverclass" ;
        Text [ english_us ] = "~JDBC driver class" ;
        Text [ portuguese_brazilian ] = "~JDBC Treiberklasse" ;
        Text [ swedish ] = "~JDBC-drivrutinsklass" ;
        Text [ danish ] = "JDBC-driverklasse" ;
        Text [ italian ] = "~Classe di driver JDBC" ;
        Text [ spanish ] = "~Clase de controlador JDBC" ;
        Text [ french ] = "~Classe du pilote JDBC" ;
        Text [ dutch ] = "Driverklasse ~JDBC" ;
        Text [ portuguese ] = "Classe do controlador ~JDBC" ;
        Text[ chinese_simplified ] = "~JDBC ";
        Text[ russian ] = "  ~JDBC";
        Text[ polish ] = "Klasa sterownika JDBC";
        Text[ japanese ] = "~JDBC ײ޸׽";
        Text[ chinese_traditional ] = "~JDBC Xʵ{";
        Text[ arabic ] = "   JDBC";
        Text[ greek ] = "  ~JDBC";
        Text[ korean ] = "JDBC ̹ Ŭ(~J)";
        Text[ turkish ] = "~JDBC src snf";
        Text[ language_user1 ] = " ";
    };
    Edit ET_JDBCDRIVERCLASS
    {
        Border = TRUE ;
        Pos = MAP_APPFONT ( 90 , 6 ) ;
        Size = MAP_APPFONT ( 105 , 12 ) ;
        TabStop = TRUE ;
        HelpId = HID_DSADMIN_DRIVERCLASS;
    };
    FixedText FT_CONNECTURL
    {
        Pos = MAP_APPFONT ( 6 , 22 ) ;
        Size = MAP_APPFONT ( 51 , 10 ) ;
        Text = "U~RL" ;
        Text [ ENGLISH ] = "U~RL" ;
        Text [ english_us ] = "U~RL" ;
        Text [ portuguese_brazilian ] = "U~RL" ;
        Text [ swedish ] = "U~RL" ;
        Text [ danish ] = "URL" ;
        Text [ italian ] = "U~RL" ;
        Text [ spanish ] = "U~RL" ;
        Text [ french ] = "U~RL" ;
        Text [ dutch ] = "U~RL" ;
        Text [ portuguese ] = "U~RL" ;
        Text[ chinese_simplified ] = "U~RL";
        Text[ russian ] = "U~RL";
        Text[ polish ] = "URL";
        Text[ japanese ] = "U~RL";
        Text[ chinese_traditional ] = "U~RL";
        Text[ arabic ] = "U~RL";
        Text[ greek ] = "U~RL";
        Text[ korean ] = "URL(~R)";
        Text[ turkish ] = "U~RL";
        Text[ language_user1 ] = " ";
    };
    Edit ET_CONNECTURL
    {
        Border = TRUE ;
        Pos = MAP_APPFONT ( 90 , 21 ) ;
        Size = MAP_APPFONT ( 105 , 12 ) ;
        TabStop = TRUE ;
        HelpId = HID_DSADMIN_CONNURL_JDBCPAGE;
            // special help id here: though this is the usual ConnectURL field, it's placed on the JDBC page
            // (not as usual on the general page), so the documentation may want to write other help texts here.
    };
    FixedText FT_USERNAME
    {
        Pos = MAP_APPFONT ( 6 , 37 ) ;
        Size = MAP_APPFONT ( 51 , 10 ) ;
        Text = "~Benutzername" ;
        Text [ ENGLISH ] = "~Username" ;
        Text [ NORWEGIAN ] = "~Username" ;
        Text [ DANISH ] = "Brugernavn" ;
        Text [ ENGLISH_US ] = "~User name" ;
        Text [ SPANISH ] = "N~ombre del usuario" ;
        Text [ FINNISH ] = "~Kyttjtunnus" ;
        Text [ FRENCH ] = "Nom d'~utilisateur" ;
        Text [ ITALIAN ] = "Nome ~utente" ;
        Text [ DUTCH ] = "Naam ~gebruiker" ;
        Text [ SWEDISH ] = "~Anvndarnamn" ;
        Text [ PORTUGUESE ] = "Nome do ~utilizador" ;
        Text [ portuguese_brazilian ] = "~Benutzername" ;
        Text[ chinese_simplified ] = "ʹ(~U)";
        Text[ russian ] = " ";
        Text[ polish ] = "Nazwisko uytk.";
        Text[ japanese ] = "հް(~U)";
        Text[ chinese_traditional ] = "ϥΪ(~U)";
        Text[ arabic ] = " ";
        Text[ greek ] = " ";
        Text[ korean ] = " ̸(~U)";
        Text[ turkish ] = "Kullanc ad";
        Text[ language_user1 ] = " ";
    };
    Edit ET_USERNAME
    {
        Border = TRUE ;
        Pos = MAP_APPFONT ( 90 , 36 ) ;
        Size = MAP_APPFONT ( 105 , 12 ) ;
        TabStop = TRUE ;
        HelpId = HID_DSADMIN_USER_JDBC;
    };
    CheckBox CB_PASSWORD_REQUIRED
    {
        Pos = MAP_APPFONT ( 90 , 51 ) ;
        Size = MAP_APPFONT ( 105 , 10 ) ;
        HelpId = HID_DSADMIN_PWDREC_JDBC;
        Text = "Passwort erforderlich";
        Text [ english ] = "Password required";
        Text [ english_us ] = "Password required";
        Text[ portuguese ] = "Necessrio senha";
        Text[ russian ] = " ";
        Text[ greek ] = "  ";
        Text[ dutch ] = "Wachtwoord verlangd";
        Text[ french ] = "Mot de passe requis";
        Text[ spanish ] = "Se requiere una contrasea";
        Text[ italian ] = "Password necessaria";
        Text[ danish ] = "sprg ved bning";
        Text[ swedish ] = "Lsenord krvs";
        Text[ polish ] = "Wymagane jest haso";
        Text[ portuguese_brazilian ] = "beim ffnen ~fragen";
        Text[ japanese ] = "߽ܰނKv";
        Text[ korean ] = "н尡 ʿմϴ";
        Text[ chinese_simplified ] = "";
        Text[ chinese_traditional ] = "JKX";
        Text[ turkish ] = "Aarken sor";
        Text[ arabic ] = "  ";
    };
    FixedLine FL_SEPARATOR1
    {
        Pos = MAP_APPFONT ( 6 , 64 ) ;
        Size = MAP_APPFONT ( 248 , 1 ) ;
    };
    FixedText FT_CHARSET
    {
        Pos = MAP_APPFONT ( 6 , 70 ) ;
        Size = MAP_APPFONT ( 51 , 10 ) ;
        Text = "~Zeichensatz" ;
        Text [ ENGLISH ] = "~Character set" ;
        Text [ NORWEGIAN ] = "~Character set" ;
        Text [ DANISH ] = "Tegnst" ;
        Text [ ENGLISH_US ] = "~Character set" ;
        Text [ SPANISH ] = "J~uego de caracteres" ;
        Text [ FINNISH ] = "~Merkist" ;
        Text [ FRENCH ] = "~Jeu de caractres" ;
        Text [ ITALIAN ] = "Ti~po di carattere" ;
        Text [ DUTCH ] = "~Tekenset" ;
        Text [ PORTUGUESE_BRAZILIAN ] = "~Conjunto de caracteres" ;
        Text [ SWEDISH ] = "Te~ckenuppsttning" ;
        Text [ PORTUGUESE ] = "~Conjunto de caracteres" ;
        Text[ chinese_simplified ] = "(~C)";
        Text[ russian ] = " ";
        Text[ polish ] = "Zbir znakw";
        Text[ japanese ] = "(~C)";
        Text[ chinese_traditional ] = "r(~C)";
        Text[ arabic ] = " ";
        Text[ greek ] = " ";
        Text[ korean ] = " (~C)";
        Text[ turkish ] = "Karakter kmesi";
        Text[ language_user1 ] = " ";
    };
    ListBox LB_CHARSET
    {
        Border = TRUE ;
        Pos = MAP_APPFONT ( 90 , 70 ) ;
        Size = MAP_APPFONT ( 105 , 60 ) ;
        TabStop = TRUE ;
        DropDown = TRUE ;
        CurPos = 0 ;
        HelpId = HID_DSADMIN_CHARSET_JDBC;
    };
};

//.........................................................................
TabPage PAGE_ODBC
{
    SVLook = TRUE ;
    Pos = MAP_APPFONT ( 0 , 0 ) ;
    Size = MAP_APPFONT ( 260 , 135 ) ;
    Hide = TRUE;
    HelpId = HID_DSADMIN_PAGE_ODBC;

    FixedText FT_USERNAME
    {
        Pos = MAP_APPFONT ( 6 , 7 ) ;
        Size = MAP_APPFONT ( 80 , 10 ) ;
        Text = "~Benutzername" ;
        Text [ ENGLISH ] = "~Username" ;
        Text [ NORWEGIAN ] = "~Username" ;
        Text [ DANISH ] = "Brugernavn" ;
        Text [ ENGLISH_US ] = "~User name" ;
        Text [ SPANISH ] = "N~ombre del usuario" ;
        Text [ FINNISH ] = "~Kyttjtunnus" ;
        Text [ FRENCH ] = "Nom d'~utilisateur" ;
        Text [ ITALIAN ] = "Nome ~utente" ;
        Text [ DUTCH ] = "Naam ~gebruiker" ;
        Text [ SWEDISH ] = "~Anvndarnamn" ;
        Text [ PORTUGUESE ] = "Nome do ~utilizador" ;
        Text [ portuguese_brazilian ] = "~Benutzername" ;
        Text[ chinese_simplified ] = "ʹ(~U)";
        Text[ russian ] = " ";
        Text[ polish ] = "Nazwisko uytk.";
        Text[ japanese ] = "հް(~U)";
        Text[ chinese_traditional ] = "ϥΪ(~U)";
        Text[ arabic ] = " ";
        Text[ greek ] = " ";
        Text[ korean ] = " ̸(~U)";
        Text[ turkish ] = "Kullanc ad";
        Text[ language_user1 ] = " ";
    };
    Edit ET_USERNAME
    {
        Border = TRUE ;
        Pos = MAP_APPFONT ( 90 , 6 ) ;
        Size = MAP_APPFONT ( 105 , 12 ) ;
        TabStop = TRUE ;
        HelpId = HID_DSADMIN_USER_ODBC;
    };
    CheckBox CB_PASSWORD_REQUIRED
    {
        Pos = MAP_APPFONT ( 90 , 21 ) ;
        Size = MAP_APPFONT ( 105 , 10 ) ;
        Text = "Passwort erforderlich";
        Text [ english ] = "Password required";
        Text [ english_us ] = "Password required";
        HelpId = HID_DSADMIN_PWDREC_ODBC;
        Text[ portuguese ] = "Necessria senha";
        Text[ russian ] = " ";
        Text[ greek ] = "  ";
        Text[ dutch ] = "Wachtwoord verlangd";
        Text[ french ] = "Mot de passe requis";
        Text[ spanish ] = "Se necesita una contrasea";
        Text[ italian ] = "Password necessaria";
        Text[ danish ] = "Adgangskode pkrvet";
        Text[ swedish ] = "Lsenord krvs";
        Text[ polish ] = "Podaj haso";
        Text[ portuguese_brazilian ] = "Password required";
        Text[ japanese ] = "߽ܰނKv";
        Text[ korean ] = "н尡 ʿմϴ";
        Text[ chinese_simplified ] = "";
        Text[ chinese_traditional ] = "JKX";
        Text[ turkish ] = "Password required";
        Text[ arabic ] = "  ";
    };
    FixedLine FL_SEPARATOR1
    {
        Pos = MAP_APPFONT ( 6 , 34 ) ;
        Size = MAP_APPFONT ( 248 , 1 ) ;
    };
    FixedText FT_OPTIONS
    {
        Pos = MAP_APPFONT ( 6 , 40 ) ;
        Size = MAP_APPFONT ( 80 , 10 ) ;
        Text = "~Treibereinstellungen" ;
        Text [ ENGLISH ] = "ODBC ~options" ;
        Text [ NORWEGIAN ] = "ODBC ~options" ;
        Text [ DANISH ] = "Driverindstillinger" ;
        Text [ ENGLISH_US ] = "Driver settings" ;
        Text [ SPANISH ] = "Opciones del ~controlador" ;
        Text [ FINNISH ] = "ODBC-~mritykset" ;
        Text [ FRENCH ] = "~Paramtres du pilote" ;
        Text [ ITALIAN ] = "Imposta~zioni drive" ;
        Text [ DUTCH ] = "~Driveropties" ;
        Text [ PORTUGUESE_BRAZILIAN ] = "ODBC opes" ;
        Text [ SWEDISH ] = "Drivru~tinsinstllningar" ;
        Text [ PORTUGUESE ] = "Opes do ~controlador" ;
        Text[ chinese_simplified ] = "趨";
        Text[ russian ] = " ";
        Text[ polish ] = "Opcje sterownika";
        Text[ japanese ] = "ײނ̐ݒ";
        Text[ chinese_traditional ] = "]wXʵ{";
        Text[ arabic ] = "  ";
        Text[ greek ] = " ~ ";
        Text[ korean ] = "̹ ";
        Text[ turkish ] = "Src ayarlar";
        Text[ language_user1 ] = " ";
    };
    Edit ET_OPTIONS
    {
        Border = TRUE ;
        Pos = MAP_APPFONT ( 91 , 39 ) ;
        Size = MAP_APPFONT ( 105 , 12 ) ;
        TabStop = TRUE ;
        HelpId = HID_DSADMIN_ODBC_OPTIONS;
    };
    FixedText FT_CHARSET
    {
        Pos = MAP_APPFONT ( 6 , 55 ) ;
        Size = MAP_APPFONT ( 80 , 10 ) ;
        Text = "~Zeichensatz" ;
        Text [ ENGLISH ] = "~Character set" ;
        Text [ NORWEGIAN ] = "~Character set" ;
        Text [ DANISH ] = "Tegnst" ;
        Text [ ENGLISH_US ] = "~Character set" ;
        Text [ SPANISH ] = "J~uego de caracteres" ;
        Text [ FINNISH ] = "~Merkist" ;
        Text [ FRENCH ] = "~Jeu de caractres" ;
        Text [ ITALIAN ] = "~Tipo di carattere" ;
        Text [ DUTCH ] = "~Tekenset" ;
        Text [ PORTUGUESE_BRAZILIAN ] = "~Conjunto de caracteres" ;
        Text [ SWEDISH ] = "~Teckenuppsttning" ;
        Text [ PORTUGUESE ] = "~Conjunto de caracteres" ;
        Text[ chinese_simplified ] = "(~C)";
        Text[ russian ] = " ";
        Text[ polish ] = "Zbir znakw";
        Text[ japanese ] = "(~C)";
        Text[ chinese_traditional ] = "r(~C)";
        Text[ arabic ] = " ";
        Text[ greek ] = " ";
        Text[ korean ] = " (~C)";
        Text[ turkish ] = "Karakter kmesi";
        Text[ language_user1 ] = " ";
    };
    ListBox LB_CHARSET
    {
        Border = TRUE ;
        Pos = MAP_APPFONT ( 91 , 54 ) ;
        Size = MAP_APPFONT ( 105 , 60 ) ;
        TabStop = TRUE ;
        DropDown = TRUE ;
        CurPos = 0 ;
        HelpId = HID_DSADMIN_CHARSET_ODBC;
    };
};

//.........................................................................
TabPage PAGE_TEXT
{
    SVLook = TRUE ;
    Hide = TRUE;
    Pos = MAP_APPFONT ( 0 , 0 ) ;
    Size = MAP_APPFONT ( 260 , 135 ) ;
    HelpId = HID_DSADMIN_PAGE_TEXT;

    CheckBox CB_HEADER
    {
        TabStop = TRUE ;
        Pos = MAP_APPFONT ( 125 , 6 ) ;
        Size = MAP_APPFONT ( 150 , 10 ) ;
        HelpId = HID_DSADMIN_TEXT_HEADER;
        Text = "~Text beinhaltet Kopfzeile" ;
        Text [ ENGLISH ] = "Header record" ;
        Text [ NORWEGIAN ] = "Header record" ;
        Text [ DANISH ] = "Teksten indeholder sidehoved" ;
        Text [ ENGLISH_US ] = "~Text contains headers" ;
        Text [ SPANISH ] = "Te~xto contiene encabezamiento" ;
        Text [ FINNISH ] = "Otsikkotietue" ;
        Text [ FRENCH ] = "~Texte avec en-tte" ;
        Text [ ITALIAN ] = "T~esto contiene riga d'intestazione" ;
        Text [ DUTCH ] = "~Tekst bevat koptekst" ;
        Text [ PORTUGUESE_BRAZILIAN ] = "Registro do cabealho" ;
        Text [ SWEDISH ] = "~Text innehller sidhuvud" ;
        Text [ PORTUGUESE ] = "~Texto tem cabealho" ;
        Text[ chinese_simplified ] = "ĺҳü(~T)";
        Text[ russian ] = "   ";
        Text[ polish ] = "Tekst zawiera nagwek";
        Text[ japanese ] = "ͯނ܂";
        Text[ chinese_traditional ] = "t";
        Text[ arabic ] = "    ";
        Text[ greek ] = "   ";
        Text[ korean ] = "Ӹ ԵǾ ִ ؽƮ";
        Text[ turkish ] = "Metin stbilgi ieriyor";
        Text[ language_user1 ] = " ";
    };
    FixedText FT_FIELDSEPARATOR
    {
        Pos = MAP_APPFONT ( 6 , 21 ) ;
        Size = MAP_APPFONT ( 119 , 10 ) ;
        Text = "~Feldtrenner" ;
        Text [ ENGLISH ] = "Field delimiter" ;
        Text [ NORWEGIAN ] = "Field delimiter" ;
        Text [ DANISH ] = "Feltseparator" ;
        Text [ ENGLISH_US ] = "Field separator" ;
        Text [ SPANISH ] = "~Separador de campo" ;
        Text [ FINNISH ] = "Kenttien erotin" ;
        Text [ FRENCH ] = "Sparateur de ~champ" ;
        Text [ ITALIAN ] = "~Separatore di campo" ;
        Text [ DUTCH ] = "~Veldscheidingsteken" ;
        Text [ PORTUGUESE_BRAZILIAN ] = "Delimitador de campo" ;
        Text [ SWEDISH ] = "~Fltavgrnsare" ;
        Text [ PORTUGUESE ] = "~Separador de campo" ;
        Text[ chinese_simplified ] = "ֶηָ";
        Text[ russian ] = " ";
        Text[ polish ] = "Separator pola";
        Text[ japanese ] = "̨ނ̋؂L";
        Text[ chinese_traditional ] = "j";
        Text[ arabic ] = " ";
        Text[ greek ] = " ";
        Text[ korean ] = "ʵ и";
        Text[ turkish ] = "Alan ayrcs";
        Text[ language_user1 ] = " ";
    };
    ComboBox CM_FIELDSEPARATOR
    {
        Pos = MAP_APPFONT ( 125 , 19 ) ;
        Size = MAP_APPFONT ( 48 , 60 ) ;
        Text = ";" ;
        TabStop = TRUE ;
        DropDown = TRUE ;
        HelpId = HID_DSADMIN_FIELD_SEPARATOR;
    };
    FixedText FT_TEXTSEPARATOR
    {
        Pos = MAP_APPFONT ( 6 , 38 ) ;
        Size = MAP_APPFONT ( 119 , 10 ) ;
        Text = "T~exttrenner" ;
        Text [ ENGLISH ] = "String delimiter" ;
        Text [ NORWEGIAN ] = "String delimiter" ;
        Text [ DANISH ] = "Tekstseparator" ;
        Text [ ENGLISH_US ] = "Text separator" ;
        Text [ SPANISH ] = "Separador de te~xto" ;
        Text [ FINNISH ] = "Merkkijonojen erotin" ;
        Text [ FRENCH ] = "Sparateur de ~texte" ;
        Text [ ITALIAN ] = "S~eparatore di testo" ;
        Text [ DUTCH ] = "T~ekstafbrekingsteken" ;
        Text [ PORTUGUESE_BRAZILIAN ] = "Delimitador de cadeia" ;
        Text [ SWEDISH ] = "T~extavgrnsare" ;
        Text [ PORTUGUESE ] = "Separador de t~exto" ;
        Text[ chinese_simplified ] = "ַָ";
        Text[ russian ] = " ";
        Text[ polish ] = "Separator tekstu";
        Text[ japanese ] = "÷Ă̋؂L";
        Text[ chinese_traditional ] = "rj";
        Text[ arabic ] = " ";
        Text[ greek ] = " ~";
        Text[ korean ] = "ؽƮ  и";
        Text[ turkish ] = "Metin ayrcs";
        Text[ language_user1 ] = " ";
    };
    ComboBox CM_TEXTSEPARATOR
    {
        Pos = MAP_APPFONT ( 125 , 36 ) ;
        Size = MAP_APPFONT ( 48 , 60 ) ;
        Text = "\"" ;
        TabStop = TRUE ;
        DropDown = TRUE ;
        HelpId = HID_DSADMIN_TEXT_SEPARATOR;
    };
    FixedText FT_DECIMALSEPARATOR
    {
        Pos = MAP_APPFONT ( 6 , 55 ) ;
        Size = MAP_APPFONT ( 119 , 10 ) ;
        Text = "~Dezimaltrennzeichen" ;
        Text [ ENGLISH ] = "~Decimal point" ;
        Text [ NORWEGIAN ] = "~Decimal point" ;
        Text [ DANISH ] = "Decimalkomma" ;
        Text [ ENGLISH_US ] = "Decimal separator" ;
        Text [ SPANISH ] = "Separa~dor decimal" ;
        Text [ FINNISH ] = "~Desimaalierotin" ;
        Text [ FRENCH ] = "Sparateur de ~dcimale" ;
        Text [ ITALIAN ] = "Car. di separaz. decimali" ;
        Text [ DUTCH ] = "~Decimaalteken" ;
        Text [ PORTUGUESE_BRAZILIAN ] = "Ponto decimal" ;
        Text [ SWEDISH ] = "~Decimaltecken" ;
        Text [ PORTUGUESE ] = "Separador de ~decimais" ;
        Text[ chinese_simplified ] = "С";
        Text[ russian ] = " ";
        Text[ polish ] = "Separator dziesitny";
        Text[ japanese ] = "_";
        Text[ language_user1 ] = "LS: Access sagt \"s?arateur d?imal*";
        Text[ chinese_traditional ] = "pIŸ";
        Text[ arabic ] = " ";
        Text[ greek ] = "~ ";
        Text[ korean ] = "Ҽ и";
        Text[ turkish ] = "Ondalk ayrcs";
    };
    ComboBox CM_DECIMALSEPARATOR
    {
        Pos = MAP_APPFONT ( 125 , 53 ) ;
        Size = MAP_APPFONT ( 32 , 60 ) ;
        Text = ";" ;
        TabStop = TRUE ;
        MaxTextLength = 1 ;
        DropDown = TRUE ;
        StringList =
        {
            "." ;
            "," ;
            ";" ;
            ":" ;
        };
        HelpId = HID_DSADMIN_DECIMAL_SEPARATOR;
    };
    FixedText FT_THOUSANDSSEPARATOR
    {
        Pos = MAP_APPFONT ( 6 , 72 ) ;
        Size = MAP_APPFONT ( 119 , 10 ) ;
        Text = "T~ausendertrennzeichen" ;
        Text [ ENGLISH ] = "Decimal point" ;
        Text [ NORWEGIAN ] = "Decimal point" ;
        Text [ DANISH ] = "Tusindtalsseparator" ;
        Text [ ENGLISH_US ] = "Thousands separator" ;
        Text [ SPANISH ] = "Separad~or de miles" ;
        Text [ FINNISH ] = "Desimaalierotin" ;
        Text [ FRENCH ] = "Sparateur de ~milliers" ;
        Text [ ITALIAN ] = "Car. di separaz. migliaia" ;
        Text [ DUTCH ] = "~Scheidingsteken voor duizendtallen" ;
        Text [ PORTUGUESE_BRAZILIAN ] = "Ponto decimal" ;
        Text [ SWEDISH ] = "Tusent~alsavgrnsare" ;
        Text [ PORTUGUESE ] = "Separador de ~milhares" ;
        Text[ chinese_simplified ] = "ǧλָ";
        Text[ russian ] = " ";
        Text[ polish ] = "Separator tysiczny";
        Text[ japanese ] = "猅؂";
        Text[ language_user1 ] = "LS: auch laut Access";
        Text[ chinese_traditional ] = "dj";
        Text[ arabic ] = " ";
        Text[ greek ] = "~ ";
        Text[ korean ] = "õ и";
        Text[ turkish ] = "Binlik ayrcs";
    };
    ComboBox CM_THOUSANDSSEPARATOR
    {
        Pos = MAP_APPFONT ( 125 , 70 ) ;
        Size = MAP_APPFONT ( 32 , 44 ) ;
        Text = "." ;
        TabStop = TRUE ;
        MaxTextLength = 1 ;
        DropDown = TRUE ;
        StringList =
        {
            "," ;
            "." ;
        };
        HelpId = HID_DSADMIN_THOUSANDS_SEPARATOR;
    };
    FixedLine FL_SEPARATOR1
    {
        Pos = MAP_APPFONT ( 6 , 87 ) ;
        Size = MAP_APPFONT ( 248 , 1 ) ;
    };
    FixedText FT_EXTENSION
    {
        Pos = MAP_APPFONT ( 6 , 93 ) ;
        Size = MAP_APPFONT ( 119 , 10 ) ;
        Text = "E~rweiterung" ;
        Text [ ENGLISH ] = "Extension" ;
        Text [ english_us ] = "Extension" ;
        Text [ italian ] = "Est~ensione" ;
        Text [ spanish ] = "E~xtensin" ;
        Text [ french ] = "E~xtension" ;
        Text [ dutch ] = "V~ergroting" ;
        Text [ swedish ] = "Utknin~g" ;
        Text [ danish ] = "Filtypenavn" ;
        Text [ portuguese_brazilian ] = "Erweiterung" ;
        Text [ portuguese ] = "~Extenso" ;
        Text[ chinese_simplified ] = "չ";
        Text[ russian ] = "";
        Text[ polish ] = "Rozszerzenie";
        Text[ japanese ] = "gq";
        Text[ chinese_traditional ] = "ɦW";
        Text[ arabic ] = " ";
        Text[ greek ] = "";
        Text[ korean ] = "Ȯ";
        Text[ turkish ] = "Uzant";
        Text[ language_user1 ] = " ";
    };
    ComboBox CM_EXTENSION
    {
        Pos = MAP_APPFONT ( 125 , 91 ) ;
        Size = MAP_APPFONT ( 32 , 44 ) ;
        Text = "txt" ;
        TabStop = TRUE ;
        MaxTextLength = 3 ;
        DropDown = TRUE ;
        StringList =
        {
            "csv" ;
            "sdf" ;
            "txt" ;
        };
        HelpId = HID_DSADMIN_EXTENSION;
    };
    FixedText FT_CHARSET
    {
        Pos = MAP_APPFONT ( 6 , 110 ) ;
        Size = MAP_APPFONT ( 119 , 10 ) ;
        Text = "~Zeichensatz" ;
        Text [ ENGLISH ] = "~Character set" ;
        Text [ NORWEGIAN ] = "~Character set" ;
        Text [ DANISH ] = "Tegnst" ;
        Text [ ENGLISH_US ] = "~Character set" ;
        Text [ SPANISH ] = "J~uego de caracteres" ;
        Text [ FINNISH ] = "~Merkist" ;
        Text [ FRENCH ] = "~Jeu de caractres" ;
        Text [ ITALIAN ] = "~Tipo di carattere" ;
        Text [ DUTCH ] = "~Tekenset" ;
        Text [ PORTUGUESE_BRAZILIAN ] = "~Conjunto de caracteres" ;
        Text [ SWEDISH ] = "~Teckenuppsttning" ;
        Text [ PORTUGUESE ] = "~Conjunto de caracteres" ;
        Text[ chinese_simplified ] = "(~C)";
        Text[ russian ] = " ";
        Text[ polish ] = "Zbir znakw";
        Text[ japanese ] = "(~C)";
        Text[ chinese_traditional ] = "r(~C)";
        Text[ arabic ] = " ";
        Text[ greek ] = " ";
        Text[ korean ] = " (~C)";
        Text[ turkish ] = "Karakter kmesi";
        Text[ language_user1 ] = " ";
    };
    ListBox LB_CHARSET
    {
        Border = TRUE ;
        Pos = MAP_APPFONT ( 125 , 108 ) ;
        Size = MAP_APPFONT ( 61 , 60 ) ;
        TabStop = TRUE ;
        DropDown = TRUE ;
        CurPos = 0 ;
        HelpId = HID_DSADMIN_CHARSET_TEXT;
    };

    String STR_FIELDSEPARATORLIST
    {
        Text = ";\t59\t,\t44\t:\t58\t{Tab}\t9\t{Leer}\t32" ;
        Text [ ENGLISH ] = ";\t59\t,\t44\t:\t58\t{Tab}\t9\t{Space}\t32" ;
        Text [ NORWEGIAN ] = ";\t59\t,\t44\t:\t58\t{Tab}\t9\t{Space}\t32" ;
        Text [ DANISH ] = ";\t59\t,\t44\t:\t58\t{Tab}\t9\t{tom}\t32" ;
        Text [ ENGLISH_US ] = ";\t59\t,\t44\t:\t58\t{Tab}\t9\t{empty}\t32" ;
        Text [ SPANISH ] = ";\t59\t,\t44\t:\t58\t{Tab}\t9\t{vaco}\t32" ;
        Text [ FINNISH ] = ";\t59\t,\t44\t:\t58\t{Tab}\t9\t{Space}\t32" ;
        Text [ FRENCH ] = ";\t59\t,\t44\t:\t58\t{Tab}\t9\t{Leer}\t32" ;
        Text [ ITALIAN ] = ";\t59\t,\t44\t:\t58\t{tab}\t9\t{spazio}\t32" ;
        Text [ DUTCH ] = ";\t59\t,\t44\t:\t58\t{Tab}\t9\t{leeg}\t32" ;
        Text [ PORTUGUESE_BRAZILIAN ] = ";\t59\t,\t44\t:\t58\t{Tab}\t9\t{Space}\t32" ;
        Text [ SWEDISH ] = ";\t59\t,\t44\t:\t58\t{Tab}\t9\t{tom}\t32" ;
        Text [ PORTUGUESE ] = ";\t59\t,\t44\t:\t58\t{Tab}\t9\t{vazio}\t32" ;
        Text[ chinese_simplified ] = ";\t59\t,\t44\t:\t58\t{Ʊ}\t9\t{հ}\t32";
        Text[ russian ] = ";\t59\t,\t44\t:\t58\t{Ta}\t9\t{}\t32";
        Text[ polish ] = ";\t59\t,\t44\t:\t58\t{Tab}\t9\t{Pusty}\t32";
        Text[ japanese ] = ";\t59\t,\t44\t:\t58\t{}\t9\t{}\t32";
        Text[ chinese_traditional ] = ";\t59\t,\t44\t:\t58\t{s}\t9\t{ť}\t32";
        Text[ arabic ] = ";\t59\t,\t44\t:\t58\t{ }\t9\t{\t32";
        Text[ greek ] = ";\t59\t,\t44\t:\t58\t{Tab}\t9\t{}\t32";
        Text[ korean ] = ";\t59\t,\t44\t:\t58\t{}\t9\t{}\t32";
        Text[ turkish ] = ";\t59\t,\t44\t:\t58\t{Tab}\t9\t{Bo}\t32";
        Text[ language_user1 ] = " ";
    };
    String STR_TEXTSEPARATORLIST
    {
        Text = "\"\t34\t'\t39" ;
    };
    String STR_DELIMITER_MISSING
    {
        Text = "#1 muss angegeben sein." ;
        Text [ English ] = "#1 must be set." ;
        Text [ english_us ] = "#1 must be set." ;
        Text [ portuguese ] = "#1 tem que ser especificado." ;
        Text [ portuguese_brazilian ] = "#1 mu angegeben sein." ;
        Text [ swedish ] = "#1 mste anges." ;
        Text [ danish ] = "#1 skal vre angivet." ;
        Text [ italian ] = "#1 deve essere digitato." ;
        Text [ spanish ] = "#1 debe indicarse." ;
        Text [ french ] = "#1 doit tre spcifi." ;
        Text [ dutch ] = "#1 moet aangegeven zijn." ;
        Text[ chinese_simplified ] = "ָ #1 ";
        Text[ russian ] = "  #1.";
        Text[ polish ] = "Naley poda #1";
        Text[ japanese ] = "#1w肷Kv܂B";
        Text[ chinese_traditional ] = "w#1 C";
        Text[ arabic ] = "  #1.";
        Text[ greek ] = "#1   .";
        Text[ korean ] = "#1 ()  ݵ Ǿ մϴ.";
        Text[ turkish ] = "#1 belirlenmi olmal.";
        Text[ language_user1 ] = " ";
    };
    String STR_DELIMITER_MUST_DIFFER
    {
        Text = "#1 und #2 mssen unterschiedlich sein." ;
        Text [ English ] = "#1 and #2 delimeter must differ." ;
        Text [ english_us ] = "#1 and #2 must be different." ;
        Text [ portuguese ] = "#1 e #2 tm que ser diferentes." ;
        Text [ portuguese_brazilian ] = "#1 und #2 mssen unterschiedlich sein." ;
        Text [ swedish ] = "#1 och #2 mste vara olika." ;
        Text [ danish ] = "#1 og #2 skal vre forskellige." ;
        Text [ italian ] = "#1 e #2 devono essere diversi." ;
        Text [ spanish ] = "#1 y #2 tienen que ser diferentes." ;
        Text [ french ] = "#1 et #2 doivent tre diffrents." ;
        Text [ dutch ] = "#1 en #2 moeten verschillend zijn." ;
        Text[ chinese_simplified ] = "#1  #2 벻ͬ";
        Text[ russian ] = "#1  #2  .";
        Text[ polish ] = "#1 i #2 musz si rni.";
        Text[ japanese ] = "#1  #2 ł͂܂B";
        Text[ chinese_traditional ] = "#1 M #2 ۦPC";
        Text[ arabic ] = "   #1  #2 .";
        Text[ greek ] = "#1  #2   .";
        Text[ korean ] = "#1 #2 ݵ  ޶ մϴ.";
        Text[ turkish ] = "#1 ve #2 farkl olmal.";
        Text[ language_user1 ] = " ";
    };
    String STR_NO_WILDCARDS
    {
        Text = "Platzhalter wie *,? sind in der #1 nicht mglich." ;
        Text [ English ] = "Wildcards (?,*) in #1 are not allowed." ;
        Text [ english_us ] = "Wildcards such as ?,* are not allowed in #1." ;
        Text [ portuguese ] = "Caracteres polivalentes como *,? no so admitidos emr #1." ;
        Text [ portuguese_brazilian ] = "Platzhalter wie *,? sind in der #1 nicht mglich." ;
            Text [ swedish ] = "Jokertecken som *,? r inte tilltna i #1." ;
        Text [ danish ] = "Jokertegn som *,? er ikke mulige i #1." ;
        Text [ italian ] = "Segnaposto quali *,? non sono possibili in #1." ;
        Text [ spanish ] = "Comodines como *,? no estn permitidos en #1." ;
        Text [ french ] = "Les substituants comme (?,*) ne sont pas permis dans #1." ;
        Text [ dutch ] = "Plaatsvervangers zoals *,? zijn in de #1 niet mogelijk." ;
        Text[ chinese_simplified ] = "#1 ܹͨ '*,?' ";
        Text[ russian ] = "  ,  *,?  #1 .";
        Text[ polish ] = "Symboli wieloznacznych jak *,? nie mona uy w #1.";
        Text[ japanese ] = "*A? ̂悤ܲ޶ނ #1 ł͎g܂B";
        Text[ chinese_traditional ] = "#1 tqt '*,?' C";
        Text[ arabic ] = "     *,?  #1.";
        Text[ greek ] = "       (?,*)  #1.";
        Text[ korean ] = "#1  ϵī ?  *    ϴ.";
        Text[ turkish ] = "*,? gibi deikenler #1 iin kullanlamaz.";
        Text[ language_user1 ] = " ";
    };
};
//.........................................................................
TabPage PAGE_TABLESUBSCRIPTION
{
    SVLook = TRUE ;
    Hide = TRUE;
    Pos = MAP_APPFONT ( 0 , 0 ) ;
    Size = MAP_APPFONT ( 260 , 135 ) ;
    HelpId = HID_DSADMIN_TABLE_SUBSCRIPTION;

    GroupBox GB_TABLESUBSCRIPTION
    {
        Pos = MAP_APPFONT ( 6 , 3 ) ;
        Size = MAP_APPFONT ( 248 , 91 ) ;
        Text = "Filter";
        Text [ english ] = "Filter";
        Text [ english_us ] = "Filter";
        Text[ portuguese ] = "Filtro";
        Text[ russian ] = "";
        Text[ greek ] = "";
        Text[ dutch ] = "Filter";
        Text[ french ] = "Filtre";
        Text[ spanish ] = "Filtro";
        Text[ italian ] = "Filtro";
        Text[ danish ] = "Filter";
        Text[ swedish ] = "Filter";
        Text[ polish ] = "Filtr";
        Text[ portuguese_brazilian ] = "Filter";
        Text[ japanese ] = "̨";
        Text[ korean ] = "";
        Text[ chinese_simplified ] = "ɸѡ";
        Text[ chinese_traditional ] = "z";
        Text[ turkish ] = "Filter";
        Text[ arabic ] = "";
    };
    RadioButton RB_INCLUDEALL
    {
        Pos     = MAP_APPFONT ( 12 , 15 ) ;
        Size    = MAP_APPFONT ( 60 , 12 ) ;
        Group   = TRUE;
        HelpId = HID_DSADMIN_ALL_TABLES;
        Text = "~Alle";
        Text [ english ] = "~All";
        Text [ english_us ] = "~All";
        Text[ portuguese ] = "~Tudo";
        Text[ russian ] = "~";
        Text[ greek ] = "~";
        Text[ dutch ] = "~Alle";
        Text[ french ] = "~Toutes";
        Text[ spanish ] = "~Todas";
        Text[ italian ] = "Tutto";
        Text[ danish ] = "Alle";
        Text[ swedish ] = "~Alla";
        Text[ polish ] = "~Wszystkie";
        Text[ portuguese_brazilian ] = "~All";
        Text[ japanese ] = "ׂ";
        Text[ korean ] = "";
        Text[ chinese_simplified ] = "ȫ(~A)";
        Text[ chinese_traditional ] = "(~A)";
        Text[ turkish ] = "~All";
        Text[ arabic ] = "";
    };
    RadioButton RB_INCLUDENONE
    {
        Pos     = MAP_APPFONT ( 12 , 30 ) ;
        Size    = MAP_APPFONT ( 60 , 12 ) ;
        HelpId = HID_DSADMIN_NO_TABLES;
        Text = "~Keine";
        Text [ english ] = "~None";
        Text [ english_us ] = "~None";
        Text[ portuguese ] = "~Nenhuma";
        Text[ russian ] = "~";
        Text[ greek ] = "~";
        Text[ dutch ] = "~Geen";
        Text[ french ] = "~Aucune";
        Text[ spanish ] = "~Ninguna";
        Text[ italian ] = "Nessuno";
        Text[ danish ] = "Ingen";
        Text[ swedish ] = "I~nga";
        Text[ polish ] = "~Brak";
        Text[ portuguese_brazilian ] = "~None";
        Text[ japanese ] = "Ȃ";
        Text[ korean ] = "";
        Text[ chinese_simplified ] = "(~N)";
        Text[ chinese_traditional ] = "L(~N)";
        Text[ turkish ] = "~None";
        Text[ arabic ] = "";
    };
    RadioButton RB_INCLUDESPECIFIC
    {
        Pos     = MAP_APPFONT ( 12 , 45 ) ;
        Size    = MAP_APPFONT ( 60 , 12 ) ;
        HelpId = HID_DSADMIN_SELECT_TABLES;
        Text = "Aus~wahl";
        Text [ english ] = "~Selection";
        Text [ english_us ] = "~Selection";
        Text[ portuguese ] = "~Seleco";
        Text[ russian ] = "~";
        Text[ greek ] = "";
        Text[ dutch ] = "~Selectie";
        Text[ french ] = "~Slection";
        Text[ spanish ] = "~Seleccin";
        Text[ italian ] = "~Selezione";
        Text[ danish ] = "Udvalg";
        Text[ swedish ] = "Ur~val";
        Text[ polish ] = "~Wybr";
        Text[ portuguese_brazilian ] = "~Selection";
        Text[ japanese ] = "I";
        Text[ korean ] = "";
        Text[ chinese_simplified ] = "ѡ(~S)";
        Text[ chinese_traditional ] = "(~S)";
        Text[ turkish ] = "~Selection";
        Text[ arabic ] = "";
    };
    Control CTL_TABLESUBSCRIPTION
    {
        Pos     = MAP_APPFONT ( 75 , 15 ) ;
        Size    = MAP_APPFONT ( 173 , 72 ) ;
        Group   = TRUE;
        Border  = TRUE ;
        TabStop = TRUE ;
        HelpId = HID_DSADMIN_TABLE_SELECTOR;
    };
    CheckBox CB_SUPPRESVERSIONCL
    {
        Pos     = MAP_APPFONT ( 6 , 102 ) ;
        Size    = MAP_APPFONT ( 200 , 12 ) ;
        Group   = TRUE ;
        TabStop = TRUE ;
        HelpId = HID_DSADMIN_SUPPRESS_VERSIONCL;
        Text = "Versionsspalten anzeigen (wenn verfuegbar)";
        Text [ english ] = "Display version columns (if appliable)";
        Text [ english_us ] = "Display version columns (if appliable)";
    };
};


WarningBox ERR_NOREGISTEREDDATASOURCES
{
    Message = "Es sind augenblicklich keine Datenquellen registriert.";
    Message [ english ] = "Currently, there are no registered data sources.";
    Message [ english_us ] = "There are no registered data sources, at present.";
    Message[ portuguese ] = "De momento, no h fontes de dados registadas.";
    Message[ russian ] = "      .";
    Message[ greek ] = "        .";
    Message[ dutch ] = "Er zijn momenteel geen gegevensbronnen geregistreerd.";
    Message[ french ] = "Aucune source de donnes n'est inscrite pour l'instant.";
    Message[ spanish ] = "En este momento no existen fuentes de datos registradas.";
    Message[ italian ] = "Al momento non sono registrate alcune sorgenti di dati.";
    Message[ danish ] = "For tiden er ingen datakilder registreret.";
    Message[ swedish ] = "Fr nrvarande r inga datakllor registrerade.";
    Message[ polish ] = "W danym momencie brak zarejestrowanych rde danych.";
    Message[ portuguese_brazilian ] = "Currently, there are no registered data sources.";
    Message[ japanese ] = "܂̎_łް͓o^Ă܂B";
    Message[ korean ] = " ϵ  ҽ ϴ.";
    Message[ chinese_simplified ] = "ǰûеǼκԴ";
    Message[ chinese_traditional ] = "esbnOƷC";
    Message[ turkish ] = "Currently, there are no registered data sources.";
    Message[ arabic ] = "      .";
};
ErrorBox ERR_COULDNOTRESTOREDS
{
    Message = "Sie haben schon einer anderen Datenquellen den Namen der gelschten gegeben! Sie mssen erstere umbenennen, um die aktuelle wiederherstellen zu knnen.";
    Message [ english ] = "You already gave another data source the name of the deleted one. You have to rename the first to restore the current one.";
    Message [ english_us ] = "The name of the deleted data source has already been given to another data source. You have to rename the latter before you can restore the former.";
    Message[ portuguese ] = "O nome da fonte de dados eliminada j foi atribudo a outra fonte de dados! Primeiro ter que mudar o nome a esta ltima para poder restaurar a actual.";
    Message[ russian ] = "        .        .";
    Message[ greek ] = "      ,       !                 .";
    Message[ dutch ] = "De naam van de gewiste gegevensbron heeft u reeds gebruikt voor een andere! Wilt u de gewiste gegevensbron weer herstellen dan moet u eerst de naam van de andere wijzigen.";
    Message[ french ] = "Le nom de la source de donnes supprime a dj t attribu  une autre source que vous devez commencer par renommer afin de pouvoir restaurer l'ancienne.";
    Message[ spanish ] = "Ya ha aplicado a otra fuente de datos el nombre de la eliminada! Debe cambiar el nombre a la primera para poder restaurar la actual.";
    Message[ italian ] = "Il nome della sorgente dati eliiminata  gi stato attribuito a un'altra. Prima di procedere,  necessario cambiare nome alla seconda sorgente dati prima di poter ripristinare quella eliminata.";
    Message[ danish ] = "You already gave another data source the name of the deleted one. You have to rename the first to restore the current one.";
    Message[ swedish ] = "Du har redan gett namnet p den raderade datakllan till en annan dataklla! Du mste byta namn p den andra datakllan fr att kunna terstlla den aktuella datakllan.";
    Message[ polish ] = "Nazwa usunitego rda danych przypisana zostaa innemu plikowi! Naley zmieni jego nazw, aby mc odtworzy aktualne rdo danych.";
    Message[ portuguese_brazilian ] = "You already gave another data source the name of the deleted one. You have to rename the first to restore the current one.";
    Message[ japanese ] = "łɍ폜ް̖Oʂްɓ͂܂B݂̂̂𕜌ɂ́A܂ް̖OύXKv܂B";
    Message[ korean ] = "ڴ   ҽ ̸ ̹ ٸ  ҽ οϿϴ. ڸ ϱ ؼ  ̸ ؾ մϴ.";
    Message[ chinese_simplified ] = "ѾһɾԴһԴһԴȻָܻǰԴ";
    Message[ chinese_traditional ] = "zwgt@ӸƷwFoӦW١Iz歫sRWROAMZ~`eƷC";
    Message[ turkish ] = "You already gave another data source the name of the deleted one. You have to rename the first to restore the current one.";
    Message[ arabic ] = "          .        ѡ      .";
};

String STR_ENTER_CONNECTION_PASSWORD
{
    Text = "Die Verbindung zur Datenquelle \"$name$\" erfordert die Eingabe eines Passwortes.";
    Text [ english ] = "Connecting to data source \"$name$\" requires you to enter a password.";
    Text [ english_us ] = "A password is needed to connect to the data source \"$name$\".";
    Text[ portuguese ] = "A ligao  fonte de dados \"$name$\" requere senha.";
    Text[ russian ] = "     \"$name$\"   .";
    Text[ greek ] = "          \"$name$\"      .";
    Text[ dutch ] = "Voor het tot stand brengen van de verbinding met gegevensbron \"$name$\" moet u een wachtwoord aangeven.";
    Text[ french ] = "Vous devez saisir un mot de passe pour la connexion  la source de donnes \"$name$\".";
    Text[ spanish ] = "Debe introducir una contrasea para la conexin a la fuente de datos \"$name$\".";
    Text[ italian ] = "Per il collegamento alla sorgente dati \"$name$\"  necessaria una password.";
    Text[ danish ] = "Forbindelsen til datakilden \"$name$\" krver at du indtaster en adgangskode.";
    Text[ swedish ] = "Frbindelsen till datakllan \"$name$\" krver att Du anger ditt lsenord.";
    Text[ polish ] = "Poczenie ze rdem danych \"$name$\" wymaga wprowadzenia hasa.";
    Text[ portuguese_brazilian ] = "Connecting to data source \"$name$\" requires you to enter a password.";
    Text[ japanese ] = "\"$name$\" ްւ̐ڑɂ߽ܰނ̓͂KvłB";
    Text[ korean ] = " ҽ \"$name$\"  ϱ ؼ н带 Էؾ մϴ.";
    Text[ chinese_simplified ] = "ȡԴ \"$name$\" Ҫ롣";
    Text[ chinese_traditional ] = "suƷ \"$name$\" J@ӱKXC";
    Text[ turkish ] = "Connecting to data source \"$name$\" requires you to enter a password.";
    Text[ arabic ] = "   \"$name$\"    .";
};
String STR_DATASOURCE_DEFAULTNAME
{
    Text = "Datenquelle";
    Text [ english ] = "data source";
    Text [ english_us ] = "Data source";
    Text[ portuguese ] = "Fonte de dados";
    Text[ russian ] = " ";
    Text[ greek ] = " ";
    Text[ dutch ] = "Gegevensbron";
    Text[ french ] = "Source de donnes";
    Text[ spanish ] = "Fuente de datos";
    Text[ italian ] = "Sorgente dati";
    Text[ danish ] = "datas source";
    Text[ swedish ] = "Dataklla";
    Text[ polish ] = "rdo danych";
    Text[ portuguese_brazilian ] = "datas source";
    Text[ japanese ] = "ް";
    Text[ korean ] = " ҽ";
    Text[ chinese_simplified ] = "Դ";
    Text[ chinese_traditional ] = "Ʒ";
    Text[ turkish ] = "datas source";
    Text[ arabic ] = " ";
};
String STR_ERR_EMPTY_DSN_NAME
{
    Text = "Der Datenquellen-Name darf nicht leer sein!";
    Text [ english ] = "The data source name must not be empty!";
    Text [ english_us ] = "The data source name must not be empty!";
    Text[ portuguese ] = "O nome da fonte de dados no pode encontrar-se vazio!";
    Text[ russian ] = "      !";
    Text[ greek ] = "          !";
    Text[ dutch ] = "De naam van de gegevensbron moet worden aangegeven!";
    Text[ french ] = "Le nom de la source de donnes ne peut pas tre vide !";
    Text[ spanish ] = "El nombre de la fuente de datos no puede quedar vaco!";
    Text[ italian ] = "The data source name must not be empty!";
    Text[ danish ] = "The data source name must not be empty!";
    Text[ swedish ] = "Namnet p datakllan fr inte vara tomt!";
    Text[ polish ] = "Nazwa rda danych nie moe by pusta!";
    Text[ portuguese_brazilian ] = "The data source name must not be empty!";
    Text[ japanese ] = "ް󔒂ł͂܂B";
    Text[ korean ] = " ҽ ̸  ־ ȵ˴ϴ!";
    Text[ chinese_simplified ] = "ԴƲԿȱ";
    Text[ chinese_traditional ] = "ƷW٤iHůʡI";
    Text[ turkish ] = "The data source name must not be empty!";
    Text[ arabic ] = "      !";
};
Menu MENU_DATASOURCELIST_POPUP
{
    ItemList =
    {
        MenuItem
        {
            Identifier = MID_NEW_DATASOURCE;
            HelpId = HID_DSADMIN_DSACTIONS_NEWDS;

            Text = "neue Datenquelle" ;
            Text [ english ] = "new data source" ;
            Text [ english_us ] = "New Data Source" ;
            Text[ portuguese ] = "Nova fonte de dados";
            Text[ russian ] = "  ";
            Text[ greek ] = "  ";
            Text[ dutch ] = "nieuwe gegevensbron";
            Text[ french ] = "Nouvelle source de donnes";
            Text[ spanish ] = "nueva fuente de datos";
            Text[ italian ] = "Nuova sorgente dati";
            Text[ danish ] = "new data source";
            Text[ swedish ] = "Ny dataklla";
            Text[ polish ] = "nowe rdo danych";
            Text[ portuguese_brazilian ] = "new data source";
            Text[ japanese ] = "Vް";
            Text[ korean ] = "ο  ҽ";
            Text[ chinese_simplified ] = "µԴ";
            Text[ chinese_traditional ] = "sƷ";
            Text[ turkish ] = "new data source";
            Text[ arabic ] = "  ";
        };
        MenuItem
        {
            Identifier = MID_DELETE_DATASOURCE;
            HelpId = HID_DSADMIN_DSACTIONS_DELETEDS;
            Text = "Datenquelle lschen" ;
            Text [ english ] = "delete data source" ;
            Text [ english_us ] = "Delete Data Source" ;
            Text[ portuguese ] = "Eliminar fonte de dados";
            Text[ russian ] = "  ";
            Text[ greek ] = "  ";
            Text[ dutch ] = "Gegevensbron wissen";
            Text[ french ] = "Source de donnes supprime";
            Text[ spanish ] = "eliminar fuente de datos";
            Text[ italian ] = "Elimina sorgente dati";
            Text[ danish ] = "delete data source";
            Text[ swedish ] = "Radera dataklla";
            Text[ polish ] = "Usu rdo danych";
            Text[ portuguese_brazilian ] = "delete data source";
            Text[ japanese ] = "ް̍폜";
            Text[ korean ] = " ҽ ";
            Text[ chinese_simplified ] = "ɾԴ";
            Text[ chinese_traditional ] = "RƷ";
            Text[ turkish ] = "delete data source";
            Text[ arabic ] = "  ";
        };
        MenuItem
        {
            Identifier = MID_RESTORE_DATASOURCE;
            HelpId = HID_DSADMIN_DSACTIONS_RESTOREDS;
            Text = "Datenquelle wiederherstellen" ;
            Text [ english ] = "restore data source" ;
            Text [ english_us ] = "Restore Data Source" ;
            Text[ portuguese ] = "Restaurar fonte de dados";
            Text[ russian ] = "  ";
            Text[ greek ] = "  ";
            Text[ dutch ] = "Gegevensbron herstellen";
            Text[ french ] = "Restaurer une source de donnes";
            Text[ spanish ] = "Restaurar fuente de datos";
            Text[ italian ] = "Ripristina sorgente dati";
            Text[ danish ] = "restore data source";
            Text[ swedish ] = "terstll dataklla";
            Text[ polish ] = "Odtwrz rdo danych";
            Text[ portuguese_brazilian ] = "restore data source";
            Text[ japanese ] = "ް̕";
            Text[ korean ] = " ҽ ";
            Text[ chinese_simplified ] = "ָԴ";
            Text[ chinese_traditional ] = "`Ʒ";
            Text[ turkish ] = "restore data source";
            Text[ arabic ] = "  ";
        };
    };
};

/*************************************************************************
 * history:
 *  $Log: not supported by cvs2svn $
 *  Revision 1.21  2000/12/11 16:32:49  fs
 *  broaded the data source list
 *
 *  Revision 1.20  2000/12/06 15:13:35  rt
 *  Merge SRC614: 06.12.00 - 16:13:06
 *
 *  Revision 1.19  2000/12/05 15:58:43  fs
 *  #79820# HID_DSADMIN_DIALOG
 *
 *  Revision 1.18  2000/12/05 12:48:48  fs
 *  #80539# removed two obsolete ids
 *
 *  Revision 1.17  2000/12/03 10:30:16  fs
 *  #79820# some new help ids
 *
 *  Revision 1.16  2000/12/01 08:08:42  kz
 *  Merge SRC614: 01.12.00 - 09:07:46
 *
 *  Revision 1.15  2000/11/22 15:44:40  oj
 *  #80269# remove property long names
 *
 *  Revision 1.14  2000/11/15 21:09:13  kz
 *  Merge SRC613: 11/15/00 - 22:08:39 (NoBranch)
 *
 *  Revision 1.13  2000/11/10 17:42:46  fs
 *  +STR_NO_ADABASE_DATASOURCES
 *
 *  Revision 1.12  2000/11/09 12:29:24  kz
 *  Merge SRC612: 09.11.00 - 13:28:47 (NoBranch)
 *
 *  Revision 1.11  2000/11/02 15:20:15  fs
 *  #79380# +STR_ERR_EMPTY_DSN_NAME
 *
 *  Revision 1.10  2000/10/30 15:24:19  fs
 *  no password fields anymore - don't want to have them in and _data source aministration_ dialog
 *
 *  Revision 1.9  2000/10/30 13:48:17  fs
 *  #79820# some help ids
 *
 *  Revision 1.8  2000/10/30 13:01:23  fs
 *  #79823# minor changes
 *
 *  Revision 1.7  2000/10/26 18:19:35  fs
 *  BMP_DATABASE* -> IMG_DATABASE*
 *
 *  Revision 1.6  2000/10/24 12:11:15  fs
 *  functionality added: browsing for system data sources (ODBC/Adabas/dbase/text)
 *
 *  Revision 1.5  2000/10/20 09:53:17  fs
 *  handling for the SuppresVersionColumns property of a data source
 *
 *  Revision 1.4  2000/10/12 16:20:42  fs
 *  new implementations ... still under construction
 *
 *  Revision 1.3  2000/10/11 11:31:03  fs
 *  new implementations - still under construction
 *
 *  Revision 1.2  2000/10/09 12:39:29  fs
 *  some (a lot of) new imlpementations - still under development
 *
 *  Revision 1.1  2000/10/05 10:05:05  fs
 *  initial checkin
 *
 *
 *  Revision 1.0 20.09.00 10:58:47  fs
 ************************************************************************/