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 2357 2358 2359 2360 2361 2362 2363 2364 2365 2366 2367 2368 2369 2370 2371 2372 2373 2374 2375 2376 2377 2378 2379 2380 2381 2382 2383 2384 2385 2386 2387 2388 2389 2390 2391 2392 2393 2394 2395 2396 2397 2398 2399 2400 2401 2402 2403 2404 2405 2406 2407 2408 2409 2410 2411 2412 2413 2414 2415 2416 2417 2418 2419 2420 2421 2422 2423 2424 2425 2426 2427 2428 2429 2430 2431 2432 2433 2434 2435 2436 2437 2438 2439 2440 2441 2442 2443 2444 2445 2446 2447 2448 2449 2450 2451 2452 2453 2454 2455 2456 2457 2458
|
# SOME DESCRIPTIVE TITLE.
# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
# This file is distributed under the same license as the PACKAGE package.
# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
#
#, fuzzy
msgid ""
msgstr ""
"#-#-#-#-# ..\\res\\linux\\po\\mysql-gui-common.po (PACKAGE VERSION) #-#-#-"
"#-#\n"
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2004-07-28 13:40-0300\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"#-#-#-#-# ..\\res\\windows\\po\\default.po (PACKAGE VERSION) #-#-#-#-#\n"
"Project-Id-Version: PACKAGE VERSION\n"
"POT-Creation-Date: 2004-07-28 23:29\n"
"PO-Revision-Date: 2004-07-28 23:29\n"
"Last-Translator: Somebody <your.email@address.com>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Generator: dxgettext 1.2 beta 5\n"
#: MySQLResultSet.pas:887
msgid "%d rows fetched so far."
msgstr ""
#: MySQLResultSet.pas:927
msgid "%d rows in set."
msgstr ""
#. OptionsForm..OptionPageControl..EditorsTabSheet..GroupBox4..EdTblPKAutoNamingEd....Items.Strings
#: OptionsEditor.dfm:740
msgid "%tablename%_id"
msgstr ""
#. OptionsForm..OptionPageControl..EditorsTabSheet..GroupBox4..EdTblPKAutoNamingEd....Items.Strings
#: OptionsEditor.dfm:739
msgid "%tablename%id"
msgstr ""
#. EditorTableForm..TableEditorPnl..GirdOptionPnl..MainPageControl..ColumnTabSheet..ColumnsPageControl..TntTabSheet2..TntGroupBox1..TntLabel9..Caption
#: EditorTable.dfm:451
msgid "(Use Drag'n'Drop)"
msgstr ""
#: source/linux/MGConnectDialog.cc:386
msgid "(last connection)"
msgstr ""
#: po/glade_files.c:8 po/glade_files.c:42 po/glade_files.c:58
msgid "*"
msgstr ""
#. AboutForm..CopyrightLbl..Caption_UTF7
#: About.dfm:71
msgid "+AKk Copyright 2004 by MySQL AB. All rights reserved."
msgstr ""
#: po/glade_files.c:25
msgid "<small>Administrator</small>"
msgstr ""
#: po/glade_files.c:27
msgid "<small>Connections</small>"
msgstr ""
#: po/glade_files.c:26
msgid "<small>General Options</small>"
msgstr ""
#: po/glade_files.c:100
msgid ""
"<small>Use right click drag to add columns\n"
"to the list above.</small>"
msgstr ""
#: MyxError.pas:76
msgid "A connection to the server cannot be stablished."
msgstr ""
#: EditorTable.pas:2205
msgid "A primary key has already been defined."
msgstr ""
#: About.pas:82
msgid "About"
msgstr ""
#: source/linux/MGAboutPanel.cc:83
#, c-format
msgid "About %s"
msgstr ""
#. AboutForm..Caption
#: About.dfm:6
msgid "About MySQL Administrator"
msgstr ""
#. ProgressForm..ProgressGBox..ActionCaptionLbl..Caption
#: Progress.dfm:44
msgid "Action:"
msgstr ""
#: po/glade_files.c:165
msgid ""
"Activate this option if you want MySQL to maintain a live\n"
"checksum for all rows. This makes the table a little slower to\n"
"update, but also makes it easier to find corrupted tables."
msgstr ""
#. EditorTableForm..TableEditorPnl..GirdOptionPnl..MainPageControl..AdvTableOptionsSheet..AdvancedOptionsScrollBox..TntGroupBox8..TntLabel60....AutoSize
#: EditorTable.dfm:1234
msgid ""
"Activate this option if you want MySQL to maintain a live checksum for all "
"rows. This makes the table a little slower to update, but also makes it "
"easier to find corrupted tables."
msgstr ""
#: EditorTable.pas:2278
msgid "Add Foreign Key"
msgstr ""
#: EditorTable.pas:2149
msgid "Add Index"
msgstr ""
#. ConnectToInstanceForm..AdvancedOptionsGBox..AdvancedOptionsPageControl..AdvancedOptionsGeneralTabSheet..AdvancedOptionsBottomPnl..AdvancedOptionsBottomRightPnl..AdvancedOptionsAddBtn..Hint
#: ConnectToInstance.dfm:818
msgid "Add Option"
msgstr ""
#. OptionsForm..OptionPageControl..ConnectionsTabSheet..AddConnectionBtn..Caption
#: OptionsEditor.dfm:645
msgid "Add new Connection"
msgstr ""
#. ConnectToInstanceForm..AdvancedOptionsGBox..Caption
#: ConnectToInstance.dfm:687
msgid "Advanced Connection Options"
msgstr ""
#. #-#-#-#-# ..\res\windows\po\default.po (PACKAGE VERSION) #-#-#-#-#
#. EditorTableForm..TableEditorPnl..GirdOptionPnl..MainPageControl..AdvTableOptionsSheet..Caption
#: po/glade_files.c:18 po/glade_files.c:53 po/glade_files.c:208
#: EditorTable.dfm:1092
msgid "Advanced Options"
msgstr ""
#. OptionsForm..OptionPageControl..ConnectionsTabSheet..ConnectionPageControl..ConnAdvTabSheet..Caption
#. OptionsForm..OptionPageControl..ConnectionsTabSheet..ConnectionPageControl..ConnAdvTabSheet..Label5..Caption
#: OptionsEditor.dfm:613
OptionsEditor.dfm:620
msgid "Advanced Parameters"
msgstr ""
#. ConnectToInstanceForm..AdvancedOptionsGBox..AdvancedOptionsPageControl..AdvancedOptionsGeneralTabSheet..Caption
#: ConnectToInstance.dfm:763
msgid "AdvancedOptionsGeneralTabSheet"
msgstr ""
#. SchemataFrame..SchemaSearchPopupMenu..AllcatalogsMI..Caption
#: SchemataTreeView.dfm:81
msgid "All catalogs"
msgstr ""
#. OptionsForm..OptionPageControl..EditorsTabSheet..GroupBox4..EdTblAllColsNotNullCBox..Caption
#: OptionsEditor.dfm:723
msgid "All columns Not Null per default"
msgstr ""
#. OptionsForm..OptionPageControl..EditorsTabSheet..GroupBox4..EdTblAllIntUnsignedCBox..Caption
#: OptionsEditor.dfm:747
msgid "All integer columns unsigned per default"
msgstr ""
#. ConnectToInstanceForm..ConnectToHostPnl..ConnectionCBox..Hint
#: ConnectToInstance.dfm:573
msgid "All stored connections"
msgstr ""
#: MyxError.pas:84
msgid "An SQL error occured."
msgstr ""
#: po/glade_files.c:168
msgid ""
"An approximation of the average row length for your table.\n"
"You need to set this only for large tables with variable-size records."
msgstr ""
#. EditorTableForm..TableEditorPnl..GirdOptionPnl..MainPageControl..AdvTableOptionsSheet..AdvancedOptionsScrollBox..TntGroupBox8..TntLabel61....AutoSize
#: EditorTable.dfm:1246
msgid ""
"An approximation of the average row length for your table. You need to set "
"this only for large tables with variable-size records."
msgstr ""
#: MyxError.pas:78
msgid "An error occured while parsing the XML file %s."
msgstr ""
#: MyxError.pas:80
msgid "An error occured while validating the XML file %s."
msgstr ""
#: po/glade_files.c:31
msgid "Append timestamp to backup file names."
msgstr ""
#. OptionsForm..OptionPageControl..GeneralTabSheet..GroupBox2..Label2..Caption
#: OptionsEditor.dfm:315
msgid "Application Font:"
msgstr ""
#. OptionsForm..OptionPageControl..GeneralTabSheet..GroupBox1..Caption
#: OptionsEditor.dfm:279
msgid "Applications Startup"
msgstr ""
#. EditorTableForm..TableEditorPnl..BottomPnl..ApplyChangesBtn..Caption
#: EditorTable.dfm:142
MySQLResultSetControls.pas:1616
msgid "Apply Changes"
msgstr ""
#. OptionsForm..ApplyChangesBtn..Caption
#: OptionsEditor.dfm:825
msgid "Apply changes"
msgstr ""
#: EditorTable.pas:1579
msgid "Are you sure you want to delete the selected columns?"
msgstr ""
#: SchemataTreeView.pas:937
msgid ""
"Are you sure you want to delete the selected schema %s?\n"
"\n"
"Please note that this action cannot be rolled back."
msgstr ""
#: SchemataTreeView.pas:972
msgid "Are you sure you want to drop the table %s?"
msgstr ""
#: EditorTable.pas:2579
msgid ""
"Are you sure you want to execute the following SQL command to apply the "
"changes to the table?"
msgstr ""
#: EditorTable.pas:2676
msgid ""
"Are you sure you want to quit the table editor without applying the changes?"
msgstr ""
#. #-#-#-#-# ..\res\windows\po\default.po (PACKAGE VERSION) #-#-#-#-#
#. EditorTableForm..TableEditorPnl..GirdOptionPnl..MainPageControl..ColumnTabSheet..ColumnsPageControl..TntTabSheet1..TntGroupBox5..ColumnAutoIncCBox..Caption
#: po/glade_files.c:70
EditorTable.dfm:841
msgid "Auto Increment"
msgstr ""
#. #-#-#-#-# ..\res\windows\po\default.po (PACKAGE VERSION) #-#-#-#-#
#. EditorTableForm..TableEditorPnl..GirdOptionPnl..MainPageControl..AdvTableOptionsSheet..AdvancedOptionsScrollBox..TntGroupBox9..TntLabel20..Caption
#: po/glade_files.c:143
EditorTable.dfm:1449
msgid "Auto Increment:"
msgstr ""
#. EditorTableForm..TableEditorPnl..GirdOptionPnl..MainPageControl..AdvTableOptionsSheet..AdvancedOptionsScrollBox..TntGroupBox8..TntLabel22..Caption
#: EditorTable.dfm:1189
msgid "Avg Row Length:"
msgstr ""
#: po/glade_files.c:158
msgid "Avg. Row Length:"
msgstr ""
#. OptionsForm..OptionPageControl..GeneralTabSheet..GroupBox2..CharsetCBox....Items.Strings
#: OptionsEditor.dfm:367
msgid "BALTIC_CHARSET"
msgstr ""
#: po/glade_files.c:108
msgid "BDB"
msgstr ""
#. EditorTableForm..TableEditorPnl..GirdOptionPnl..MainPageControl..TabSheet2..TableOptionScrollBox..StorageEngineGBox..BDBRBtn..Caption
#: EditorTable.dfm:1075
msgid "BDB Storage Engine"
msgstr ""
#: po/glade_files.c:87
msgid "BTREE"
msgstr ""
#: source/linux/MGTableEditor.cc:263
msgid "Back"
msgstr ""
#: po/glade_files.c:32
msgid "Backup"
msgstr ""
#: po/glade_files.c:97
msgid "CASCADE"
msgstr ""
#: source/linux/myg_utils.cc:201
msgid "Can't connect to server instance."
msgstr ""
#: source/linux/myg_utils.cc:200
msgid "Can't open file."
msgstr ""
#: source/linux/MGConnectDialog.cc:230
msgid ""
"Can't show connection dialog.\n"
"Software installation might be incorrect or corrupted."
msgstr ""
#. #-#-#-#-# ..\res\windows\po\default.po (PACKAGE VERSION) #-#-#-#-#
#. ConnectToInstanceForm..BottomPnl..CancelBtn..Caption
#. SchemaSelectionForm..BottomPnl..CancelBtn..Caption
#: po/glade_files.c:20
ConnectToInstance.dfm:469 SchemaSelection.dfm:104
msgid "Cancel"
msgstr ""
#: SchemataTreeView.pas:931
msgid "Cannot Drop MySQL Schema"
msgstr ""
#: EditorTable.pas:722
msgid "Cannot fetch charset information."
msgstr ""
#: EditorTable.pas:709
msgid "Cannot fetch datatype information."
msgstr ""
#. Get current table
#: EditorTable.pas:2553
msgid "Cannot fetch table information for diff."
msgstr ""
#: EditorTable.pas:737
msgid "Cannot fetch table information."
msgstr ""
#: EditorTable.pas:2561
msgid "Cannot generate the diff between the edited and the existing table."
msgstr ""
#: source/linux/myg_utils.cc:209
msgid "Cannot read from file."
msgstr ""
#: EditorTable.pas:494
msgid "Cascade"
msgstr ""
#. #-#-#-#-# ..\res\windows\po\default.po (PACKAGE VERSION) #-#-#-#-#
#. OptionsForm..Panel1..Caption
#: po/glade_files.c:24
OptionsEditor.dfm:857
msgid "Category"
msgstr ""
#: source/linux/MGFileBrowserList.cc:49
msgid "Change Path..."
msgstr ""
#. EditorTableForm..TableEditorPnl..GirdOptionPnl..MainPageControl..TabSheet2..TableOptionScrollBox..TntGroupBox6..Caption
#: EditorTable.dfm:880
msgid "Character Set"
msgstr ""
#: po/glade_files.c:64
msgid "Character Set:"
msgstr ""
#. EditorTableForm..TableEditorPnl..GirdOptionPnl..MainPageControl..TabSheet2..TableOptionScrollBox..TntGroupBox6..TableCharsetCaptionLbl..Caption
#. OptionsForm..OptionPageControl..GeneralTabSheet..GroupBox2..Label4..Caption
#: EditorTable.dfm:887
OptionsEditor.dfm:324
msgid "Charset:"
msgstr ""
#: po/glade_files.c:194
msgid "Chunk Size:"
msgstr ""
#. EditorTableForm..TableEditorPnl..GirdOptionPnl..MainPageControl..AdvTableOptionsSheet..AdvancedOptionsScrollBox..TntGroupBox4..ChunkSizeCaptionEd..Caption
#: EditorTable.dfm:1337
msgid "Chunksize:"
msgstr ""
#. ConnectToInstanceForm..BottomPnl..ClearFieldsBtn..Caption
#: ConnectToInstance.dfm:481
msgid "Clear"
msgstr ""
#. ConnectToInstanceForm..BottomPnl..CancelBtn..Hint
#: ConnectToInstance.dfm:468
msgid "Click this button to cancel the connection"
msgstr ""
#. ConnectToInstanceForm..BottomPnl..ClearFieldsBtn..Hint
#: ConnectToInstance.dfm:480
msgid "Click this button to clear all fields"
msgstr ""
#. ConnectToInstanceForm..BottomPnl..OKBtn..Hint
#: ConnectToInstance.dfm:454
msgid "Click this button to connect"
msgstr ""
#. EditorTableForm..TableEditorPnl..BottomPnl..CloseBtn..Caption
#. OptionsForm..CloseBtn..Caption
#: EditorTable.dfm:153
OptionsEditor.dfm:815
msgid "Close"
msgstr ""
#: po/glade_files.c:130
msgid ""
"Collation method that is used to compare text\n"
"and sort columns."
msgstr ""
#. EditorTableForm..TableEditorPnl..GirdOptionPnl..MainPageControl..TabSheet2..TableOptionScrollBox..TntGroupBox6..TableCollationDescLbl..Caption
#: EditorTable.dfm:914
msgid "Collation method that is used to compare text and sort columns."
msgstr ""
#. #-#-#-#-# ..\res\windows\po\default.po (PACKAGE VERSION) #-#-#-#-#
#. EditorTableForm..TableEditorPnl..GirdOptionPnl..MainPageControl..TabSheet2..TableOptionScrollBox..TntGroupBox6..TableCollationCaptionLbl..Caption
#: po/glade_files.c:65
EditorTable.dfm:894
msgid "Collation:"
msgstr ""
#: po/glade_files.c:122
msgid ""
"Collection of MyISAM tables with identical column and index information.\n"
" Recommended storage engine for log tables or tables with archived data. \n"
"Note that the list of union tables and insert method has to be defined."
msgstr ""
#. EditorTableForm..TableEditorPnl..GirdOptionPnl..MainPageControl..TabSheet2..TableOptionScrollBox..StorageEngineGBox..TntLabel18....AutoSize
#: EditorTable.dfm:1002
msgid ""
"Collection of MyISAM tables with identical column and index information. "
"Recommended storage engine for log tables or tables with archived data. Note "
"that the list of union tables and insert method has to be defined."
msgstr ""
#. #-#-#-#-# ..\res\windows\po\default.po (PACKAGE VERSION) #-#-#-#-#
#. EditorTableForm..TableEditorPnl..GirdOptionPnl..MainPageControl..ColumnTabSheet..ColumnsPageControl..TntTabSheet8..TntGroupBox2..FKColsVST......WideText
#: source/linux/MGTableEditor.cc:157
EditorTable.dfm:632
msgid "Column"
msgstr ""
#. EditorTableForm..TableEditorPnl..GirdOptionPnl..MainPageControl..ColumnTabSheet..ColumnsPageControl..TntTabSheet1..TntLabel36..Caption
#: EditorTable.dfm:736
msgid "Column Charset:"
msgstr ""
#. EditorTableForm..TableEditorPnl..GirdOptionPnl..MainPageControl..ColumnTabSheet..ColumnsPageControl..TntTabSheet1..TntLabel37..Caption
#: EditorTable.dfm:743
msgid "Column Collate:"
msgstr ""
#. #-#-#-#-# ..\res\windows\po\default.po (PACKAGE VERSION) #-#-#-#-#
#. EditorTableForm..TableEditorPnl..GirdOptionPnl..MainPageControl..ColumnTabSheet..ColumnsPageControl..TntTabSheet1..Caption
#: po/glade_files.c:72
EditorTable.dfm:692
msgid "Column Details"
msgstr ""
#. #-#-#-#-# ..\res\windows\po\default.po (PACKAGE VERSION) #-#-#-#-#
#. EditorTableForm..TableEditorPnl..GirdOptionPnl..MainPageControl..ColumnTabSheet..ColumnVST......WideText
#: source/linux/MGTableEditor.cc:169
EditorTable.dfm:240
msgid "Column Name"
msgstr ""
#. #-#-#-#-# ..\res\windows\po\default.po (PACKAGE VERSION) #-#-#-#-#
#. EditorTableForm..TableEditorPnl..GirdOptionPnl..MainPageControl..ColumnTabSheet..ColumnsPageControl..TntTabSheet1..TntGroupBox5..Caption
#: po/glade_files.c:71
EditorTable.dfm:816
msgid "Column Options"
msgstr ""
#. #-#-#-#-# ..\res\windows\po\default.po (PACKAGE VERSION) #-#-#-#-#
#. EditorTableForm..TableEditorPnl..GirdOptionPnl..MainPageControl..ColumnTabSheet..Caption
#: po/glade_files.c:104
EditorTable.dfm:187
msgid "Columns and Indices"
msgstr ""
#. #-#-#-#-# ..\res\windows\po\default.po (PACKAGE VERSION) #-#-#-#-#
#. EditorTableForm..TableEditorPnl..GirdOptionPnl..MainPageControl..ColumnTabSheet..ColumnVST......WideText
#: po/glade_files.c:60
EditorTable.dfm:273
msgid "Comment"
msgstr ""
#. #-#-#-#-# ..\res\windows\po\default.po (PACKAGE VERSION) #-#-#-#-#
#. EditorTableForm..TableEditorPnl..HeaderPnl..TntLabel3..Caption
#. EditorTableForm..TableEditorPnl..GirdOptionPnl..MainPageControl..ColumnTabSheet..ColumnsPageControl..TntTabSheet1..TntLabel8..Caption
#: po/glade_files.c:66
EditorTable.dfm:65 EditorTable.dfm:729
msgid "Comment:"
msgstr ""
#: source/linux/MGTableEditor.cc:186
msgid "Comments"
msgstr ""
#: po/glade_files.c:15 po/glade_files.c:50
msgid "Compress connection data"
msgstr ""
#: po/glade_files.c:156
EditorTable.pas:486
msgid "Compressed"
msgstr ""
#: po/glade_files.c:215 source/linux/MGTableEditor.cc:1963
msgid "Confirm Table Changes"
msgstr ""
#: source/linux/MGTableEditor.cc:1961
msgid "Confirm Table Creation"
msgstr ""
#: EditorTable.pas:2577
msgid "Confirm Table Edit"
msgstr ""
#: po/glade_files.c:22 source/linux/MGConnectDialog.cc:93
#: source/linux/MGConnectDialog.cc:902
msgid "Connect"
msgstr ""
#: po/glade_files.c:1
msgid "Connect MySQL Database"
msgstr ""
#: po/glade_files.c:17 po/glade_files.c:52
msgid "Connect Using Socket File"
msgstr ""
#. #-#-#-#-# ..\res\windows\po\default.po (PACKAGE VERSION) #-#-#-#-#
#. ConnectToInstanceForm..ConnectToHostPnl..Caption
#: po/glade_files.c:14
ConnectToInstance.dfm:502
msgid "Connect to MySQL Server Instance"
msgstr ""
#: po/glade_files.c:39
msgid "Connection Name"
msgstr ""
#. OptionsForm..OptionPageControl..ConnectionsTabSheet..ConnectionPageControl..ConnGeneralTabSheet..Caption
#: OptionsEditor.dfm:462
msgid "Connection Parameters"
msgstr ""
#. OptionsForm..OptionPageControl..GeneralTabSheet..GroupBox5..Caption
#: OptionsEditor.dfm:405
msgid "Connection Password Storage"
msgstr ""
#. #-#-#-#-# ..\res\windows\po\default.po (PACKAGE VERSION) #-#-#-#-#
#. ConnectToInstanceForm..ConnectToHostPnl..ConnectionLbl..Caption
#. OptionsForm..OptionPageControl..ConnectionsTabSheet..ConnectionPageControl..ConnGeneralTabSheet..ConnectionLbl..Caption
#: po/glade_files.c:2
ConnectToInstance.dfm:510 OptionsEditor.dfm:469
msgid "Connection:"
msgstr ""
#. #-#-#-#-# ..\res\windows\po\default.po (PACKAGE VERSION) #-#-#-#-#
#. OptionsForm..OptionPageControl..ConnectionsTabSheet..Caption
#: source/linux/MGPreferencesEditor.cc:228
#: source/linux/MGPreferencesEditor.cc:412 OptionsEditor.dfm:437
msgid "Connections"
msgstr ""
#: MyxError.pas:103
msgid "Continue"
msgstr ""
#. Create PopupMenu
#: MySQLResultSetControls.pas:1766
msgid "Copy Message Text"
msgstr ""
#: source/linux/MGConnectDialog.cc:640
#, c-format
msgid ""
"Could not connect to host '%s'.\n"
"MySQL Error Nr. %i\n"
"%s\n"
"\n"
"Click the 'Ping' button to see if there is a networking problem."
msgstr ""
#: MySQLConnection.pas:352
msgid "Could not connect to the specified host."
msgstr ""
#: source/linux/MGFileBrowserList.cc:36 source/linux/MGPreferences.cc:35
#, c-format
msgid "Could not create directory %s: %s"
msgstr ""
#: source/linux/MGTableEditor.cc:1987
#, c-format
msgid "Could not create file '%s'."
msgstr ""
#: source/linux/MGFileBrowserList.cc:182
#, c-format
msgid "Could not erase file '%s': %s"
msgstr ""
#: source/linux/MGConnectDialog.cc:694
msgid "Could not execute ping\n"
msgstr ""
#: SchemataTreeView.pas:513
msgid "Could not fetch Catalogs/Schemata data."
msgstr ""
#: source/linux/MGTableEditor.cc:1902
msgid ""
"Could not generate differences between original table and modified table."
msgstr ""
#: source/linux/MGTableEditor.cc:832
#, c-format
msgid "Could not load data files '%s' for table editor."
msgstr ""
#: source/linux/MGFileBrowserList.cc:168
#, c-format
msgid "Could not rename file '%s' to '%s': %s"
msgstr ""
#: source/linux/MGTableEditor.cc:849
msgid ""
"Could not retrieve available character set information for table editor."
msgstr ""
#: source/linux/MGTableEditor.cc:1485
#, c-format
msgid "Could not retrieve information for table '%s.%s'"
msgstr ""
#: source/linux/MGTableEditor.cc:1886 source/linux/MGTableEditor.cc:1890
#, c-format
msgid "Could not retrieve information for table '%s.%s' to perform table diff."
msgstr ""
#: source/linux/MGTableEditor.cc:1992
#, c-format
msgid "Could not save to file '%s'."
msgstr ""
#. SchemataFrame..SchemaTreeViewPopupMenu..CreateNewSchemaMI..Caption
#: SchemataTreeView.dfm:99
SchemataTreeView.pas:953
msgid "Create new Schema"
msgstr ""
#. SchemataFrame..SchemaTreeViewPopupMenu..CreateNewTableMI..Caption
#: SchemataTreeView.dfm:103
msgid "Create new Table"
msgstr ""
#. #-#-#-#-# ..\res\windows\po\default.po (PACKAGE VERSION) #-#-#-#-#
#. AboutForm..CreditsBtn..Caption
#: source/linux/MGAboutPanel.cc:44
About.dfm:115 About.pas:91
msgid "Credits"
msgstr ""
#: MyxError.pas:99
msgid "Critical Error"
msgstr ""
#: po/glade_files.c:86
msgid "DEFAULT"
msgstr ""
#. OptionsForm..OptionPageControl..GeneralTabSheet..GroupBox2..CharsetCBox..Text
#. OptionsForm..OptionPageControl..GeneralTabSheet..GroupBox2..CharsetCBox....Items.Strings
#: OptionsEditor.dfm:363
OptionsEditor.dfm:365
msgid "DEFAULT_CHARSET"
msgstr ""
#. #-#-#-#-# ..\res\windows\po\default.po (PACKAGE VERSION) #-#-#-#-#
#. EditorTableForm..TableEditorPnl..GirdOptionPnl..MainPageControl..AdvTableOptionsSheet..AdvancedOptionsScrollBox..TntGroupBox7..TntLabel27..Caption
#: po/glade_files.c:177
EditorTable.dfm:1128
msgid "Data Directory:"
msgstr ""
#: source/linux/MGTableEditor.cc:181
msgid "Data Type"
msgstr ""
#: po/glade_files.c:61
msgid "Data Type:"
msgstr ""
#: po/glade_files.c:59
msgid "Database"
msgstr ""
#. EditorTableForm..TableEditorPnl..HeaderPnl..TntLabel2..Caption
#: EditorTable.dfm:58
msgid "Database:"
msgstr ""
#. EditorTableForm..TableEditorPnl..GirdOptionPnl..MainPageControl..ColumnTabSheet..ColumnVST......WideText
#: EditorTable.dfm:245
msgid "Datatype"
msgstr ""
#. EditorTableForm..TableEditorPnl..GirdOptionPnl..MainPageControl..ColumnTabSheet..ColumnsPageControl..TntTabSheet1..TntLabel5..Caption
#: EditorTable.dfm:708
msgid "Datatype:"
msgstr ""
#. OptionsForm..OptionPageControl..EditorsTabSheet..GroupBox4..Label10..Caption
#: OptionsEditor.dfm:707
msgid "Def. Datatype:"
msgstr ""
#. #-#-#-#-# ..\res\windows\po\default.po (PACKAGE VERSION) #-#-#-#-#
#. Fill Charsets
#: po/glade_files.c:135
EditorTable.pas:478 EditorTable.pas:483
#: EditorTable.pas:931 EditorTable.pas:1337
msgid "Default"
msgstr ""
#: po/glade_files.c:132
msgid "Default Character Set"
msgstr ""
#. #-#-#-#-# ..\res\windows\po\default.po (PACKAGE VERSION) #-#-#-#-#
#. EditorTableForm..TableEditorPnl..GirdOptionPnl..MainPageControl..ColumnTabSheet..ColumnVST......WideText
#: source/linux/MGTableEditor.cc:185
EditorTable.dfm:267
msgid "Default Value"
msgstr ""
#. #-#-#-#-# ..\res\windows\po\default.po (PACKAGE VERSION) #-#-#-#-#
#. EditorTableForm..TableEditorPnl..GirdOptionPnl..MainPageControl..ColumnTabSheet..ColumnsPageControl..TntTabSheet1..TntLabel7..Caption
#: po/glade_files.c:62
EditorTable.dfm:722
msgid "Default Value:"
msgstr ""
#: po/glade_files.c:161
msgid ""
"Defines how the rows in MyISAM tables should be stored.\n"
"The option value can be Fixed or Dynamic for static or \n"
"variable-length row format. The utility myisampack can be used\n"
"to set the type to Compressed."
msgstr ""
#. EditorTableForm..TableEditorPnl..GirdOptionPnl..MainPageControl..AdvTableOptionsSheet..AdvancedOptionsScrollBox..TntGroupBox8..TntLabel39....AutoSize
#: EditorTable.dfm:1222
msgid ""
"Defines how the rows in MyISAM tables should be stored. The option value can "
"FIXED or DYNAMIC for static or variable-length row format. The utility "
"myisampack can be used to set the type to COMPRESSED."
msgstr ""
#. EditorTableForm..TableEditorPnl..GirdOptionPnl..MainPageControl..AdvTableOptionsSheet..AdvancedOptionsScrollBox..TntGroupBox9..DelayKeyUpdatesCBox..Caption
#: EditorTable.dfm:1534
msgid "Delay Key Updates"
msgstr ""
#: po/glade_files.c:144
msgid "Delay Key Updates Until Table is Closed"
msgstr ""
#. OptionsForm..OptionPageControl..ConnectionsTabSheet..DeleteConnectionBtn..Caption
#: OptionsEditor.dfm:654
msgid "Delete"
msgstr ""
#: EditorTable.pas:1580
msgid ""
"Delete\n"
"Chancel"
msgstr ""
#: SchemataTreeView.pas:935
msgid "Delete Schema"
msgstr ""
#. EditorTableForm..ColumnPopupMenu..DeleteTableColumnsMI..Caption
#: EditorTable.dfm:1918
msgid "Delete Table Columns"
msgstr ""
#: EditorTable.pas:1578
msgid "Deleting Columns"
msgstr ""
#. #-#-#-#-# ..\res\windows\po\default.po (PACKAGE VERSION) #-#-#-#-#
#. EditorTableForm..TableEditorPnl..GirdOptionPnl..MainPageControl..DescTabSheet..Caption
#: po/glade_files.c:212
EditorTable.dfm:1622 MySQLResultSetControls.pas:1738
msgid "Description"
msgstr ""
#. ConnectToInstanceForm..BottomPnl..DetailsBtn..Caption
#. EditorTableForm..TableEditorPnl..BottomPnl..DetailsBtn..Caption
#: ConnectToInstance.dfm:492
EditorTable.dfm:162
msgid "Details >>"
msgstr ""
#: source/linux/MGPreferences.cc:42
#, c-format
msgid "Directory %s does not exist"
msgstr ""
#: po/glade_files.c:178
msgid ""
"Directory where to put the tables data file.\n"
"This works only for MyISAM tables only and\n"
"not on some operating systems (Windows)."
msgstr ""
#. EditorTableForm..TableEditorPnl..GirdOptionPnl..MainPageControl..AdvTableOptionsSheet..AdvancedOptionsScrollBox..TntGroupBox7..TntLabel55....AutoSize
#: EditorTable.dfm:1145
msgid ""
"Directory where to put the tables data file. This works only for MyISAM "
"tables only and not on some operating systems (Windows)."
msgstr ""
#: po/glade_files.c:174
msgid ""
"Directory where to put the tables index file.\n"
"This works only for MyISAM tables only and\n"
"not on some operating systems (Windows)."
msgstr ""
#. EditorTableForm..TableEditorPnl..GirdOptionPnl..MainPageControl..AdvTableOptionsSheet..AdvancedOptionsScrollBox..TntGroupBox7..TntLabel56....AutoSize
#: EditorTable.dfm:1157
msgid ""
"Directory where to put the tables index file. This works only for MyISAM "
"tables only and not on some operating systems (Windows)."
msgstr ""
#. EditorTableForm..TableEditorPnl..BottomPnl..DiscardChangesBtn..Caption
#: EditorTable.dfm:131
MySQLResultSetControls.pas:1613
msgid "Discard Changes"
msgstr ""
#. OptionsForm..DiscardChangesBtn..Caption
#: OptionsEditor.dfm:836
EditorTable.pas:2674
msgid "Discard changes"
msgstr ""
#: MySQLResultSet.pas:669
msgid "Do you really want to discard all changes?"
msgstr ""
#. SchemataFrame..SchemaTreeViewPopupMenu..DropSchemaMI..Caption
#: SchemataTreeView.dfm:110
msgid "Drop Schema"
msgstr ""
#. SchemataFrame..SchemaTreeViewPopupMenu..DropTableMI..Caption
#: SchemataTreeView.dfm:114
SchemataTreeView.pas:971
msgid "Drop Table"
msgstr ""
#: po/glade_files.c:154
EditorTable.pas:484
msgid "Dynamic"
msgstr ""
#: MySQLResultSetControls.pas:1619
msgid "Edit"
msgstr ""
#. SchemataFrame..SchemaTreeViewPopupMenu..EditTableMI..Caption
#: SchemataTreeView.dfm:92
msgid "Edit Table"
msgstr ""
#. OptionsForm..OptionPageControl..EditorsTabSheet..Caption
#: OptionsEditor.dfm:660
msgid "Editors"
msgstr ""
#. ConnectToInstanceForm..AdvancedOptionsGBox..AdvancedOptionsPageControl..MySQLOptionsTabSheet..CheckBox5..Caption
#: ConnectToInstance.dfm:749
msgid "Enable LOAD DATA LOCAL handling"
msgstr ""
#: po/glade_files.c:16 po/glade_files.c:51
msgid "Encrypt connection (use SSL)"
msgstr ""
#. OptionsForm..OptionPageControl..GeneralTabSheet..GroupBox3..LanguageCBox..Text
#. OptionsForm..OptionPageControl..GeneralTabSheet..GroupBox3..LanguageCBox....Items.Strings
#: OptionsEditor.dfm:394
OptionsEditor.dfm:397
msgid "English"
msgstr ""
#. ConnectToInstanceForm..ConnectToHostPnl..UsernameCBox....Height
#: ConnectToInstance.dfm:647
msgid ""
"Enter a username of a user account which has privileges to connect to the "
"instance"
msgstr ""
#. ConnectToInstanceForm..ConnectToHostPnl..HostnameCBox....Height
#: ConnectToInstance.dfm:663
msgid "Enter the Hostname to connect to. Can be a network name or IP address"
msgstr ""
#: po/glade_files.c:7
msgid "Enter the database username to connect to use for connecting."
msgstr ""
#: po/glade_files.c:10
msgid "Enter the host name for the database server."
msgstr ""
#: po/glade_files.c:9
msgid "Enter the password for the above user."
msgstr ""
#. ConnectToInstanceForm..ConnectToHostPnl..PasswordEd..Hint
#. OptionsForm..OptionPageControl..ConnectionsTabSheet..ConnectionPageControl..ConnGeneralTabSheet..PasswordEd..Hint
#: ConnectToInstance.dfm:590
OptionsEditor.dfm:532
msgid "Enter the password of the user account"
msgstr ""
#: po/glade_files.c:13
msgid "Enter the port where the database server is running."
msgstr ""
#. ConnectToInstanceForm..ConnectToHostPnl..SchemataEd..Hint
#. OptionsForm..OptionPageControl..ConnectionsTabSheet..ConnectionPageControl..ConnGeneralTabSheet..SchemataEd..Hint
#: ConnectToInstance.dfm:633
OptionsEditor.dfm:573
msgid "Enter the schema to select after the connection is established"
msgstr ""
#: MySQLResultSet.pas:560
msgid "Enter the string you are searching for."
msgstr ""
#. #-#-#-#-# ..\res\windows\po\default.po (PACKAGE VERSION) #-#-#-#-#
#. Initialize PMySQL
#. Connect to instance
#: source/linux/MGConnectDialog.cc:631
MySQLConnection.pas:316
#: MySQLConnection.pas:336 MySQLConnection.pas:351
#: MySQLResultSetControls.pas:350
msgid "Error"
msgstr ""
#: source/linux/myg_utils.cc:210
msgid "Error during character set conversion."
msgstr ""
#: source/linux/myg_utils.cc:205
msgid "Error executing SQL command."
msgstr ""
#: source/linux/MGTableEditor.cc:1928
msgid "Error executing SQL commands to create table."
msgstr ""
#: source/linux/MGTableEditor.cc:1930
msgid "Error executing SQL commands to update table."
msgstr ""
#: source/linux/myg_utils.cc:203
msgid "Error parsing XML file (bad document)."
msgstr ""
#: source/linux/myg_utils.cc:204
msgid "Error parsing XML file (empty document)."
msgstr ""
#: source/linux/myg_utils.cc:202
msgid "Error parsing XML file."
msgstr ""
#: source/linux/MGTableEditor.cc:1489
#, c-format
msgid "Error retrieving information for table '%s.%s'"
msgstr ""
#. When the user is in the middle of a transaction, don't create a new connection
#: MySQLResultSet.pas:767
msgid "Error while allocating memory for MySQL Struct in Query Execute Thread."
msgstr ""
#: MySQLConnection.pas:317
msgid "Error while allocating memory for MySQL Struct."
msgstr ""
#: MySQLResultSet.pas:638
msgid "Error while applying changes."
msgstr ""
#. Fetch connections from library
#: MySQLConnection.pas:257
msgid "Error while loading stored connections."
msgstr ""
#: MySQLResultSetControls.pas:1740
msgid "ErrorNr."
msgstr ""
#: EditorTable.pas:2580
msgid ""
"Execute\n"
"Cancel"
msgstr ""
#: source/linux/myg_utils.cc:206
msgid "Executing stopped."
msgstr ""
#: po/glade_files.c:119
msgid ""
"Extremly fast memory based storage engine that uses hash indices.\n"
" Recommended storage engine for temporary data that can be lost in case\n"
"of a server shutdown."
msgstr ""
#. EditorTableForm..TableEditorPnl..GirdOptionPnl..MainPageControl..TabSheet2..TableOptionScrollBox..StorageEngineGBox..TntLabel45....AutoSize
#: EditorTable.dfm:989
msgid ""
"Extremly fast memory based storage engine that uses hash indices. "
"Recommended storage engine for temporary data that can be lost in case of a "
"server shutdown."
msgstr ""
#. OptionsForm..OptionPageControl..EditorsTabSheet..GroupBox4..Label8..Caption
#: OptionsEditor.dfm:691
msgid "FK Naming:"
msgstr ""
#. OptionsForm..OptionPageControl..EditorsTabSheet..GroupBox4..EdTblFKNamingEd....Items.Strings
#: OptionsEditor.dfm:776
msgid "FK%tablename%%nr%"
msgstr ""
#. OptionsForm..OptionPageControl..EditorsTabSheet..GroupBox4..EdTblFKNamingEd..Text
#. OptionsForm..OptionPageControl..EditorsTabSheet..GroupBox4..EdTblFKNamingEd....Items.Strings
#: OptionsEditor.dfm:772
OptionsEditor.dfm:775
msgid "FK_%tablename%_%nr%"
msgstr ""
#: po/glade_files.c:84
msgid "FULLTEXT"
msgstr ""
#. (Re-)load CatalogList
#: SchemataTreeView.pas:492
msgid "Fetching Catalogs/Schemata data ..."
msgstr ""
#. SchemaSelectionForm..SchemataFrame..CatalogVST..WideDefaultText
#. SchemataFrame..CatalogVST..WideDefaultText
#: SchemaSelection.dfm:34
SchemataTreeView.dfm:36
msgid "Fetching Data ..."
msgstr ""
#: MySQLResultSetControls.pas:1605
msgid "First"
msgstr ""
#: po/glade_files.c:155
EditorTable.pas:485
msgid "Fixed"
msgstr ""
#. #-#-#-#-# ..\res\windows\po\default.po (PACKAGE VERSION) #-#-#-#-#
#. EditorTableForm..TableEditorPnl..GirdOptionPnl..MainPageControl..ColumnTabSheet..ColumnVST......WideText
#: source/linux/MGTableEditor.cc:184
EditorTable.dfm:262
msgid "Flags"
msgstr ""
#. #-#-#-#-# ..\res\windows\po\default.po (PACKAGE VERSION) #-#-#-#-#
#. EditorTableForm..TableEditorPnl..GirdOptionPnl..MainPageControl..ColumnTabSheet..ColumnsPageControl..TntTabSheet1..TntLabel6..Caption
#: po/glade_files.c:63
EditorTable.dfm:715
msgid "Flags:"
msgstr ""
#. OptionsForm..OptionPageControl..GeneralTabSheet..GroupBox2..Caption
#: OptionsEditor.dfm:307
msgid "Font"
msgstr ""
#. #-#-#-#-# ..\res\windows\po\default.po (PACKAGE VERSION) #-#-#-#-#
#. EditorTableForm..TableEditorPnl..GirdOptionPnl..MainPageControl..ColumnTabSheet..ColumnsPageControl..TntTabSheet8..TntGroupBox2..Caption
#: po/glade_files.c:102
EditorTable.dfm:549
msgid "Foreign Key Settings"
msgstr ""
#. #-#-#-#-# ..\res\windows\po\default.po (PACKAGE VERSION) #-#-#-#-#
#. EditorTableForm..TableEditorPnl..GirdOptionPnl..MainPageControl..ColumnTabSheet..ColumnsPageControl..TntTabSheet8..Caption
#: po/glade_files.c:103
EditorTable.dfm:505
msgid "Foreign Keys"
msgstr ""
#. #-#-#-#-# ..\res\windows\po\default.po (PACKAGE VERSION) #-#-#-#-#
#. OptionsForm..HeaderPnl..TitleLbl..Caption
#. OptionsForm..OptionPageControl..GeneralTabSheet..Caption
#: po/glade_files.c:49
OptionsEditor.dfm:251 OptionsEditor.dfm:273
msgid "General"
msgstr ""
#: source/linux/MGPreferencesEditor.cc:225
msgid "General Options"
msgstr ""
#: po/glade_files.c:88
msgid "HASH"
msgstr ""
#: source/linux/MGPreferencesEditor.cc:418
msgid "History"
msgstr ""
#: po/glade_files.c:43
msgid "Hostname"
msgstr ""
#. #-#-#-#-# ..\res\windows\po\default.po (PACKAGE VERSION) #-#-#-#-#
#. ConnectToInstanceForm..ConnectToHostPnl..HostnameLbl..Caption
#. OptionsForm..OptionPageControl..ConnectionsTabSheet..ConnectionPageControl..ConnGeneralTabSheet..HostnameLbl..Caption
#: po/glade_files.c:5
ConnectToInstance.dfm:548 OptionsEditor.dfm:501
msgid "Hostname:"
msgstr ""
#: po/glade_files.c:81
msgid "INDEX"
msgstr ""
#. OptionsForm..OptionPageControl..EditorsTabSheet..GroupBox4..EdTblPKDatatypeEd..Text
#: OptionsEditor.dfm:785
msgid "INTEGER"
msgstr ""
#: po/glade_files.c:111
msgid "ISAM (deprecated)"
msgstr ""
#. EditorTableForm..TableEditorPnl..GirdOptionPnl..MainPageControl..TabSheet2..TableOptionScrollBox..StorageEngineGBox..ISAMRBtn..Caption
#: EditorTable.dfm:1084
msgid "ISAM Storage Engine"
msgstr ""
#. ConnectToInstanceForm..AdvancedOptionsGBox..AdvancedOptionsPageControl..MySQLOptionsTabSheet..CheckBox3..Caption
#: ConnectToInstance.dfm:740
msgid "Ignore spaces after function names, make them reserved words"
msgstr ""
#. EditorTableForm..TableEditorPnl..GirdOptionPnl..MainPageControl..ColumnTabSheet..ColumnsPageControl..TntTabSheet2..TntGroupBox1..TntLabel12..Caption
#: EditorTable.dfm:380
msgid "Index Columns"
msgstr ""
#: po/glade_files.c:73
msgid ""
"Index Columns:\n"
"<small>Use shift drag\n"
"from the column list\n"
"and drop in the list\n"
"to add.</small>."
msgstr ""
#. #-#-#-#-# ..\res\windows\po\default.po (PACKAGE VERSION) #-#-#-#-#
#. EditorTableForm..TableEditorPnl..GirdOptionPnl..MainPageControl..AdvTableOptionsSheet..AdvancedOptionsScrollBox..TntGroupBox7..TntLabel28..Caption
#: po/glade_files.c:173
EditorTable.dfm:1135
msgid "Index Directory:"
msgstr ""
#. #-#-#-#-# ..\res\windows\po\default.po (PACKAGE VERSION) #-#-#-#-#
#. EditorTableForm..TableEditorPnl..GirdOptionPnl..MainPageControl..ColumnTabSheet..ColumnsPageControl..TntTabSheet2..TntGroupBox1..IndexKindLbl..Caption
#: po/glade_files.c:79
EditorTable.dfm:373
msgid "Index Kind:"
msgstr ""
#: po/glade_files.c:78
msgid "Index Name:"
msgstr ""
#. OptionsForm..OptionPageControl..EditorsTabSheet..GroupBox4..Label7..Caption
#: OptionsEditor.dfm:683
msgid "Index Naming:"
msgstr ""
#. #-#-#-#-# ..\res\windows\po\default.po (PACKAGE VERSION) #-#-#-#-#
#. EditorTableForm..TableEditorPnl..GirdOptionPnl..MainPageControl..ColumnTabSheet..ColumnsPageControl..TntTabSheet2..TntGroupBox1..Caption
#: po/glade_files.c:90
EditorTable.dfm:356
msgid "Index Settings"
msgstr ""
#. #-#-#-#-# ..\res\windows\po\default.po (PACKAGE VERSION) #-#-#-#-#
#. EditorTableForm..TableEditorPnl..GirdOptionPnl..MainPageControl..ColumnTabSheet..ColumnsPageControl..TntTabSheet2..TntGroupBox1..IndexTypeLbl..Caption
#: po/glade_files.c:80
EditorTable.dfm:388
msgid "Index Type:"
msgstr ""
#. #-#-#-#-# ..\res\windows\po\default.po (PACKAGE VERSION) #-#-#-#-#
#. EditorTableForm..TableEditorPnl..GirdOptionPnl..MainPageControl..ColumnTabSheet..ColumnsPageControl..TntTabSheet2..Caption
#: po/glade_files.c:91 source/linux/MGSchemaBrowserList.cc:218
#: EditorTable.dfm:286 SchemataTreeView.pas:1122
msgid "Indices"
msgstr ""
#: po/glade_files.c:106
msgid "InnoDB"
msgstr ""
#. EditorTableForm..TableEditorPnl..GirdOptionPnl..MainPageControl..TabSheet2..TableOptionScrollBox..StorageEngineGBox..InnoDBRBtn..Caption
#: EditorTable.dfm:1048
msgid "InnoDB Storage Engine"
msgstr ""
#. #-#-#-#-# ..\res\windows\po\default.po (PACKAGE VERSION) #-#-#-#-#
#. EditorTableForm..TableEditorPnl..GirdOptionPnl..MainPageControl..AdvTableOptionsSheet..AdvancedOptionsScrollBox..MergeOptionGBox..MergeInsertMethodCapionLbl..Caption
#: po/glade_files.c:184
EditorTable.dfm:1551
msgid "Insert Method:"
msgstr ""
#: po/glade_files.c:188
msgid "Insert into first table"
msgstr ""
#: po/glade_files.c:189
msgid "Insert into last table"
msgstr ""
#: EditorTable.pas:474
msgid "Inserts into first table"
msgstr ""
#: EditorTable.pas:475
msgid "Inserts into last table"
msgstr ""
#: source/linux/myg_utils.cc:207
msgid "Internal error in libxml (could not change memory allocators)."
msgstr ""
#: source/linux/myg_utils.cc:211
msgid "Invalid character set specified."
msgstr ""
#. #-#-#-#-# ..\res\windows\po\default.po (PACKAGE VERSION) #-#-#-#-#
#. EditorTableForm..TableEditorPnl..GirdOptionPnl..MainPageControl..ColumnTabSheet..ColumnsPageControl..TntTabSheet8..TntGroupBox2..TntLabel14..Caption
#: po/glade_files.c:92
EditorTable.dfm:559
msgid "Key Name:"
msgstr ""
#. OptionsForm..OptionPageControl..GeneralTabSheet..GroupBox3..Caption
#: OptionsEditor.dfm:375
msgid "Language"
msgstr ""
#. OptionsForm..OptionPageControl..GeneralTabSheet..GroupBox3..Label3..Caption
#: OptionsEditor.dfm:383
msgid "Language:"
msgstr ""
#: MySQLResultSetControls.pas:1601
msgid "Last"
msgstr ""
#: source/linux/MGTableEditor.cc:158
msgid "Length"
msgstr ""
#: MyxError.pas:128
msgid "Library Error"
msgstr ""
#: MyxError.pas:130
msgid ""
"Library Error Nr.%d\n"
"%s"
msgstr ""
#: po/glade_files.c:185
msgid ""
"List of MyISAM tables that should be used\n"
"by the MERGE table."
msgstr ""
#. EditorTableForm..TableEditorPnl..GirdOptionPnl..MainPageControl..AdvTableOptionsSheet..AdvancedOptionsScrollBox..MergeOptionGBox..UnionTablesDescLbl..Caption
#: EditorTable.dfm:1566
msgid "List of MyISAM tables that should be used by the MERGE table."
msgstr ""
#: po/glade_files.c:109
msgid "MEMORY (HEAP)"
msgstr ""
#: po/glade_files.c:110
msgid "MERGE"
msgstr ""
#. EditorTableForm..TableEditorPnl..GirdOptionPnl..MainPageControl..TabSheet2..TableOptionScrollBox..StorageEngineGBox..MergeRBtn..Caption
#: EditorTable.dfm:1066
msgid "MERGE Storage Engine"
msgstr ""
#. OptionsForm..OptionPageControl..GeneralTabSheet..GroupBox2..FontEd..Text
#: OptionsEditor.dfm:336
msgid "MS Sans Serif, 8"
msgstr ""
#. #-#-#-#-# ..\res\windows\po\default.po (PACKAGE VERSION) #-#-#-#-#
#. EditorTableForm..TableEditorPnl..GirdOptionPnl..MainPageControl..AdvTableOptionsSheet..AdvancedOptionsScrollBox..TntGroupBox8..TntLabel25..Caption
#: po/glade_files.c:160
EditorTable.dfm:1203
msgid "Max Rows:"
msgstr ""
#. EditorTableForm..TableEditorPnl..GirdOptionPnl..MainPageControl..TabSheet2..TableOptionScrollBox..StorageEngineGBox..MemoryRBtn..Caption
#: EditorTable.dfm:1057
msgid "Memory Storage Engine"
msgstr ""
#. #-#-#-#-# ..\res\windows\po\default.po (PACKAGE VERSION) #-#-#-#-#
#. EditorTableForm..TableEditorPnl..GirdOptionPnl..MainPageControl..AdvTableOptionsSheet..AdvancedOptionsScrollBox..MergeOptionGBox..Caption
#: po/glade_files.c:191
EditorTable.dfm:1544
msgid "Merge Table Options"
msgstr ""
#. OptionsForm..OptionPageControl..GeneralTabSheet..GroupBox5..PasswordStorageTypeLbl..Caption
#: OptionsEditor.dfm:413
msgid "Method:"
msgstr ""
#. #-#-#-#-# ..\res\windows\po\default.po (PACKAGE VERSION) #-#-#-#-#
#. EditorTableForm..TableEditorPnl..GirdOptionPnl..MainPageControl..AdvTableOptionsSheet..AdvancedOptionsScrollBox..TntGroupBox8..TntLabel24..Caption
#: po/glade_files.c:159
EditorTable.dfm:1196
msgid "Min Rows:"
msgstr ""
#: po/glade_files.c:152
msgid "Miscelaneous Options"
msgstr ""
#: po/glade_files.c:105
msgid "MyISAM"
msgstr ""
#. EditorTableForm..TableEditorPnl..GirdOptionPnl..MainPageControl..TabSheet2..TableOptionScrollBox..StorageEngineGBox..MyISAMRBtn..Caption
#: EditorTable.dfm:1039
msgid "MyISAM Storage Engine"
msgstr ""
#. #-#-#-#-# ..\res\windows\po\default.po (PACKAGE VERSION) #-#-#-#-#
#. ConnectToInstanceForm..ConnectToHostPnl..TypeCBox..Text
#. ConnectToInstanceForm..ConnectToHostPnl..TypeCBox....Items.Strings
#. OptionsForm..OptionPageControl..ConnectionsTabSheet..ConnectionPageControl..ConnGeneralTabSheet..TypeCBox....Items.Strings
#: po/glade_files.c:47
ConnectToInstance.dfm:621 ConnectToInstance.dfm:624
#: OptionsEditor.dfm:564
msgid "MySQL"
msgstr ""
#. ConnectToInstanceForm..Caption
#: ConnectToInstance.dfm:7
msgid "MySQL Administrator"
msgstr ""
#: source/linux/MGPreferencesEditor.cc:222
msgid "MySQL Administrator Options"
msgstr ""
#: po/glade_files.c:112
msgid ""
"MySQL Cluster storage engine. Transaction safe, memory based with row "
"locking.\n"
"Recommended storage engine for high performance, real time critical "
"applications."
msgstr ""
#. EditorTableForm..TableEditorPnl..GirdOptionPnl..MainPageControl..TabSheet2..TableOptionScrollBox..StorageEngineGBox..TntLabel50....AutoSize
#: EditorTable.dfm:954
msgid ""
"MySQL Cluster storage engine. Transaction safe, memory based with row "
"locking. Recommended storage engine for high performance, real time critical "
"applications."
msgstr ""
#: MySQLConnection.pas:353
msgid ""
"MySQL Error Nr.%d\n"
"%s"
msgstr ""
#: MyxError.pas:116
msgid ""
"MySQL Error Nr.%s\n"
"%s"
msgstr ""
#. EditorTableForm..Caption
#: EditorTable.dfm:8
msgid "MySQL Table Editor"
msgstr ""
#: MySQLResultSet.pas:330
msgid "MySQL connection not set."
msgstr ""
#. ConnectToInstanceForm..AdvancedOptionsGBox..AdvancedOptionsPageControl..MySQLOptionsTabSheet..Caption
#: ConnectToInstance.dfm:707
msgid "MySQLOptionsTabSheet"
msgstr ""
#: po/glade_files.c:107
msgid "NDB"
msgstr ""
#. EditorTableForm..TableEditorPnl..GirdOptionPnl..MainPageControl..TabSheet2..TableOptionScrollBox..StorageEngineGBox..NDBRBtn..Caption
#: EditorTable.dfm:1030
msgid "NDB Storage Engine"
msgstr ""
#: po/glade_files.c:96
msgid "NO ACTION"
msgstr ""
#. #-#-#-#-# ..\res\windows\po\default.po (PACKAGE VERSION) #-#-#-#-#
#. EditorTableForm..TableEditorPnl..GirdOptionPnl..MainPageControl..ColumnTabSheet..ColumnsPageControl..TntTabSheet1..TntLabel4..Caption
#: po/glade_files.c:67
EditorTable.dfm:701
msgid "Name:"
msgstr ""
#: EditorTable.pas:493
msgid "No Action"
msgstr ""
#. Execute Script
#: EditorTable.pas:2591
msgid "No Changes"
msgstr ""
#: po/glade_files.c:187
EditorTable.pas:473
msgid "No Inserts"
msgstr ""
#: MySQLResultSet.pas:322
msgid "No SQL Command"
msgstr ""
#: source/linux/MGTableEditor.cc:1906
msgid "No modifications to be applied."
msgstr ""
#: po/glade_files.c:195
EditorTable.pas:489
msgid "None"
msgstr ""
#: po/glade_files.c:69
msgid "Not NULL"
msgstr ""
#. EditorTableForm..TableEditorPnl..GirdOptionPnl..MainPageControl..ColumnTabSheet..ColumnsPageControl..TntTabSheet1..TntGroupBox5..ColumnNotNullCBox..Caption
#: EditorTable.dfm:832
msgid "Not Null"
msgstr ""
#: po/glade_files.c:48
msgid "Notes"
msgstr ""
#. OptionsForm..OptionPageControl..ConnectionsTabSheet..ConnectionPageControl..ConnGeneralTabSheet..Label1..Caption
#: OptionsEditor.dfm:525
msgid "Notes:"
msgstr ""
#. #-#-#-#-# ..\res\windows\po\default.po (PACKAGE VERSION) #-#-#-#-#
#. EditorTableForm..TableEditorPnl..GirdOptionPnl..MainPageControl..AdvTableOptionsSheet..AdvancedOptionsScrollBox..TntGroupBox4..NumberOfChunksCaptionLbl..Caption
#: po/glade_files.c:193
EditorTable.dfm:1330
msgid "Number of Chunks:"
msgstr ""
#: po/glade_files.c:202
msgid ""
"Number of chunks to create, the maximum value is 255.\n"
"For each chunk there will be a subdirectory created named\n"
"'00', '01', ... and a 'tbl_name.MYD' file will be created in each directory."
msgstr ""
#. EditorTableForm..TableEditorPnl..GirdOptionPnl..MainPageControl..AdvTableOptionsSheet..AdvancedOptionsScrollBox..TntGroupBox4..NumberOfChunksDescLbl....AutoSize
#: EditorTable.dfm:1369
msgid ""
"Number of chunks to create, the maximum value is 255. For each chunk there "
"will be a subdirectory created named '00', '01', ... and a 'tbl_name.MYD' "
"file will be created in each directory."
msgstr ""
#. ConnectToInstanceForm..AdvancedOptionsGBox..AdvancedOptionsPageControl..MySQLOptionsTabSheet..Label1..Caption
#: ConnectToInstance.dfm:713
msgid "Number of seconds of inactivity allowed before disconnect"
msgstr ""
#. ConnectToInstanceForm..ConnectToHostPnl..TypeCBox....Items.Strings
#. OptionsForm..OptionPageControl..ConnectionsTabSheet..ConnectionPageControl..ConnGeneralTabSheet..TypeCBox....Items.Strings
#: ConnectToInstance.dfm:626
OptionsEditor.dfm:566
msgid "ODBC"
msgstr ""
#. #-#-#-#-# ..\res\windows\po\default.po (PACKAGE VERSION) #-#-#-#-#
#. AboutForm..CloseBtn..Caption
#. ConnectToInstanceForm..BottomPnl..OKBtn..Caption
#. SchemaSelectionForm..BottomPnl..OKBtn..Caption
#: source/linux/MGAboutPanel.cc:44
About.dfm:105 ConnectToInstance.dfm:455
#: SchemaSelection.dfm:113 EditorTable.pas:2206 EditorTable.pas:2593
#: MyxError.pas:118 MyxError.pas:124 MyxError.pas:132
msgid "OK"
msgstr ""
#: po/glade_files.c:35
msgid "Obscured"
msgstr ""
#: MySQLResultSet.pas:325
msgid "Ok"
msgstr ""
#. #-#-#-#-# ..\res\windows\po\default.po (PACKAGE VERSION) #-#-#-#-#
#. EditorTableForm..TableEditorPnl..GirdOptionPnl..MainPageControl..ColumnTabSheet..ColumnsPageControl..TntTabSheet8..TntGroupBox2..TntLabel15..Caption
#: po/glade_files.c:93
EditorTable.dfm:566
msgid "On Delete:"
msgstr ""
#. #-#-#-#-# ..\res\windows\po\default.po (PACKAGE VERSION) #-#-#-#-#
#. EditorTableForm..TableEditorPnl..GirdOptionPnl..MainPageControl..ColumnTabSheet..ColumnsPageControl..TntTabSheet8..TntGroupBox2..TntLabel16..Caption
#: po/glade_files.c:94
EditorTable.dfm:573
msgid "On Update:"
msgstr ""
#: MySQLResultSet.pas:277
msgid ""
"Only controls that implement the IMySQLRSControlInterface can be connected "
"to the resultset."
msgstr ""
#. There can only be one PRIMARY index
#: EditorTable.pas:2204
msgid "Only one Primary Key"
msgstr ""
#: source/linux/MGConnectDialog.cc:416
msgid "Open Connection Editor"
msgstr ""
#. OptionsForm..Caption
#: OptionsEditor.dfm:5
msgid "Options"
msgstr ""
#. ConnectToInstanceForm..ConnectToHostPnl..TypeCBox....Items.Strings
#. OptionsForm..OptionPageControl..ConnectionsTabSheet..ConnectionPageControl..ConnGeneralTabSheet..TypeCBox....Items.Strings
#: ConnectToInstance.dfm:625
OptionsEditor.dfm:565
msgid "Oracle"
msgstr ""
#. OptionsForm..OptionPageControl..EditorsTabSheet..GroupBox4..Label9..Caption
#: OptionsEditor.dfm:699
msgid "PK Datatype:"
msgstr ""
#. OptionsForm..OptionPageControl..EditorsTabSheet..GroupBox4..Label6..Caption
#: OptionsEditor.dfm:675
msgid "PK Naming:"
msgstr ""
#: po/glade_files.c:82
msgid "PRIMARY"
msgstr ""
#: po/glade_files.c:137
EditorTable.pas:480
msgid "Pack All"
msgstr ""
#. #-#-#-#-# ..\res\windows\po\default.po (PACKAGE VERSION) #-#-#-#-#
#. EditorTableForm..TableEditorPnl..GirdOptionPnl..MainPageControl..AdvTableOptionsSheet..AdvancedOptionsScrollBox..TntGroupBox9..TntLabel19..Caption
#: po/glade_files.c:134
EditorTable.dfm:1442
msgid "Pack Keys:"
msgstr ""
#: po/glade_files.c:136
EditorTable.pas:479
msgid "Pack None"
msgstr ""
#. OptionsForm..OptionPageControl..ConnectionsTabSheet..ConnectionPageControl..ConnAdvTabSheet..ConnValueListEditor....TitleCaptions.Strings
#: OptionsEditor.dfm:631
msgid "Parameter"
msgstr ""
#: po/glade_files.c:41
msgid "Password"
msgstr ""
#: po/glade_files.c:145
msgid ""
"Password to encrypt the table definition file. \n"
"This option doesn't do anything in the standard\n"
"MySQL version."
msgstr ""
#. EditorTableForm..TableEditorPnl..GirdOptionPnl..MainPageControl..AdvTableOptionsSheet..AdvancedOptionsScrollBox..TntGroupBox9..TntLabel52....AutoSize
#: EditorTable.dfm:1478
msgid ""
"Password to encrypt the table definition file. This option doesn't do "
"anything in the standard MySQL version."
msgstr ""
#. #-#-#-#-# ..\res\windows\po\default.po (PACKAGE VERSION) #-#-#-#-#
#. ConnectToInstanceForm..ConnectToHostPnl..PasswordLbl..Caption
#. OptionsForm..OptionPageControl..ConnectionsTabSheet..ConnectionPageControl..ConnGeneralTabSheet..PasswordLbl..Caption
#: po/glade_files.c:4
ConnectToInstance.dfm:526 OptionsEditor.dfm:485
msgid "Password:"
msgstr ""
#: po/glade_files.c:34
msgid "Plain Text"
msgstr ""
#: source/linux/MGTableEditor.cc:950 source/linux/MGTableEditor.cc:1025
#, c-format
msgid "Please confirm deletion of column '%s'."
msgstr ""
#: SchemataTreeView.pas:954
msgid "Please enter a name for the new schema."
msgstr ""
#: EditorTable.pas:2279
msgid "Please enter the name of the new foreign key."
msgstr ""
#: EditorTable.pas:2150
msgid "Please enter the name of the new index."
msgstr ""
#. SchemaSelectionForm..HeaderPnl..Label2..Caption
#: SchemaSelection.dfm:75
msgid "Please select a schema from the schema list "
msgstr ""
#: po/glade_files.c:44
msgid "Port"
msgstr ""
#. #-#-#-#-# ..\res\windows\po\default.po (PACKAGE VERSION) #-#-#-#-#
#. ConnectToInstanceForm..ConnectToHostPnl..PortLbl..Caption
#. OptionsForm..OptionPageControl..ConnectionsTabSheet..ConnectionPageControl..ConnGeneralTabSheet..PortLbl..Caption
#: po/glade_files.c:6
ConnectToInstance.dfm:540 OptionsEditor.dfm:493
msgid "Port:"
msgstr ""
#: po/glade_files.c:23
msgid "Preferences"
msgstr ""
#. #-#-#-#-# ..\res\windows\po\default.po (PACKAGE VERSION) #-#-#-#-#
#. EditorTableForm..TableEditorPnl..GirdOptionPnl..MainPageControl..ColumnTabSheet..ColumnsPageControl..TntTabSheet1..TntGroupBox5..ColumnPKCBox..Caption
#: po/glade_files.c:68
EditorTable.dfm:823
msgid "Primary Key"
msgstr ""
#. ProgressForm..ProgressGBox..Caption
#: Progress.dfm:37
msgid "Progress"
msgstr ""
#. ProgressForm..Caption
#: Progress.dfm:6
msgid "Progress ..."
msgstr ""
#: MySQLResultSet.pas:773
msgid "Query Execute Thread cannot connect to MySQL"
msgstr ""
#: MySQLResultSet.pas:941
msgid "Query aborted. %d rows fetched so far."
msgstr ""
#. #-#-#-#-# ..\res\windows\po\default.po (PACKAGE VERSION) #-#-#-#-#
#. EditorTableForm..TableEditorPnl..GirdOptionPnl..MainPageControl..AdvTableOptionsSheet..AdvancedOptionsScrollBox..TntGroupBox4..TntLabel29..Caption
#: po/glade_files.c:192
EditorTable.dfm:1323
msgid "RAID Type:"
msgstr ""
#: po/glade_files.c:99
msgid "RESTRICT"
msgstr ""
#: po/glade_files.c:89
msgid "RTREE"
msgstr ""
#. EditorTableForm..TableEditorPnl..GirdOptionPnl..MainPageControl..ColumnTabSheet..ColumnsPageControl..TntTabSheet8..TntGroupBox2..TntLabel17..Caption
#: EditorTable.dfm:580
msgid "Ref. Table:"
msgstr ""
#. EditorTableForm..TableEditorPnl..GirdOptionPnl..MainPageControl..ColumnTabSheet..ColumnsPageControl..TntTabSheet8..TntGroupBox2..FKColsVST......WideText
#: EditorTable.dfm:638
msgid "Reference Column"
msgstr ""
#: po/glade_files.c:95
msgid "Referenced Table:"
msgstr ""
#. SchemataFrame..SchemaTreeViewPopupMenu..RefreshCatalogsSchemataListMI..Caption
#: SchemataTreeView.dfm:121
msgid "Refresh Schemata List"
msgstr ""
#. ConnectToInstanceForm..AdvancedOptionsGBox..AdvancedOptionsPageControl..AdvancedOptionsGeneralTabSheet..AdvancedOptionsBottomPnl..AdvancedOptionsBottomRightPnl..AdvancedOptionsDelBtn..Hint
#: ConnectToInstance.dfm:799
msgid "Remove Option"
msgstr ""
#. ConnectToInstanceForm..AdvancedOptionsGBox..AdvancedOptionsPageControl..AdvancedOptionsGeneralTabSheet..AdvancedOptionsBottomPnl..AdvancedOptionsBottomRightPnl..AdvancedOptionsResetBtn..Hint
#: ConnectToInstance.dfm:837
msgid "Reset Options to Defaul Values"
msgstr ""
#: MyxError.pas:103
msgid "Restart"
msgstr ""
#: EditorTable.pas:496
msgid "Restrict"
msgstr ""
#. ConnectToInstanceForm..AdvancedOptionsGBox..AdvancedOptionsPageControl..MySQLOptionsTabSheet..CheckBox2..Caption
#: ConnectToInstance.dfm:731
msgid "Return number of found rows, not number of affected rows"
msgstr ""
#. #-#-#-#-# ..\res\windows\po\default.po (PACKAGE VERSION) #-#-#-#-#
#. EditorTableForm..TableEditorPnl..GirdOptionPnl..MainPageControl..AdvTableOptionsSheet..AdvancedOptionsScrollBox..TntGroupBox8..TntLabel26..Caption
#: po/glade_files.c:153
EditorTable.dfm:1210
msgid "Row Format:"
msgstr ""
#. #-#-#-#-# ..\res\windows\po\default.po (PACKAGE VERSION) #-#-#-#-#
#. EditorTableForm..TableEditorPnl..GirdOptionPnl..MainPageControl..AdvTableOptionsSheet..AdvancedOptionsScrollBox..TntGroupBox8..Caption
#: po/glade_files.c:172
EditorTable.dfm:1182
msgid "Row Options"
msgstr ""
#: po/glade_files.c:98
msgid "SET NULL"
msgstr ""
#: po/glade_files.c:85
msgid "SPATIAL"
msgstr ""
#: MyxError.pas:115
msgid "SQL Error"
msgstr ""
#: po/glade_files.c:209
msgid "SQL Insert Statements"
msgstr ""
#. EditorTableForm..TableEditorPnl..GirdOptionPnl..MainPageControl..StdInsertsTabSheet..TntLabel40..Caption
#: EditorTable.dfm:1610
msgid "SQL Inserts"
msgstr ""
#: source/linux/MGConnectDialog.cc:555 source/linux/MGConnectDialog.cc:565
msgid "Save Connection"
msgstr ""
#: source/linux/MGTableEditor.cc:1977
msgid "Save SQL Script"
msgstr ""
#: source/linux/MGConnectDialog.cc:413
msgid "Save This Connection..."
msgstr ""
#: po/glade_files.c:45
msgid "Schema"
msgstr ""
#. SchemaSelectionForm..Caption
#. SchemaSelectionForm..HeaderPnl..Label1..Caption
#: SchemaSelection.dfm:8
SchemaSelection.dfm:62
msgid "Schema Selection"
msgstr ""
#: SchemataTreeView.pas:956
msgid "Schema name:"
msgstr ""
#. #-#-#-#-# ..\res\windows\po\default.po (PACKAGE VERSION) #-#-#-#-#
#. ConnectToInstanceForm..ConnectToHostPnl..SchemataEdLbl..Caption
#. OptionsForm..OptionPageControl..ConnectionsTabSheet..ConnectionPageControl..ConnGeneralTabSheet..SchemataEdLbl..Caption
#: po/glade_files.c:11
ConnectToInstance.dfm:565 OptionsEditor.dfm:517
msgid "Schema:"
msgstr ""
#. SchemataFrame..TopPnl..SchemataLbl..Caption
#: SchemataTreeView.dfm:51
msgid "Schemata"
msgstr ""
#: MySQLResultSetControls.pas:1598
msgid "Search"
msgstr ""
#: MySQLResultSet.pas:561
msgid ""
"Search\n"
"Cancel"
msgstr ""
#: MySQLResultSet.pas:559
msgid "Search Resultset"
msgstr ""
#: MySQLResultSet.pas:562
msgid "Search for:"
msgstr ""
#: source/linux/MGFileBrowserList.cc:192
msgid "Select Backup File Directory"
msgstr ""
#: po/glade_files.c:12
msgid "Select the database schema name."
msgstr ""
#. ConnectToInstanceForm..ConnectToHostPnl..TypeCBox..Hint
#. OptionsForm..OptionPageControl..ConnectionsTabSheet..ConnectionPageControl..ConnGeneralTabSheet..TypeCBox..Hint
#: ConnectToInstance.dfm:614
OptionsEditor.dfm:556
msgid "Select the type of database connection"
msgstr ""
#. EditorTableForm..IndexColumnPopupMenu..SetIndexColumnLengthMI..Caption
#: EditorTable.dfm:1910
msgid "Set Index Column Length"
msgstr ""
#: EditorTable.pas:495
msgid "Set Null"
msgstr ""
#: po/glade_files.c:181
msgid "Set..."
msgstr ""
#. OptionsForm..OptionPageControl..EditorsTabSheet..GroupBox4..EdTblShowSQLBeforeApplyingCBox..Caption
#: OptionsEditor.dfm:714
msgid "Show SQL command before applying changes"
msgstr ""
#. OptionsForm..OptionPageControl..GeneralTabSheet..GroupBox1..ShowTipOfDayCBox..Caption
#: OptionsEditor.dfm:286
msgid "Show Tip of Day"
msgstr ""
#: po/glade_files.c:28
msgid "Show global privilege editor"
msgstr ""
#: po/glade_files.c:29
msgid "Show table/column privileges editor "
msgstr ""
#: po/glade_files.c:205
msgid ""
"Size of chunk that will be written to first file, to the next file and so on."
msgstr ""
#. EditorTableForm..TableEditorPnl..GirdOptionPnl..MainPageControl..AdvTableOptionsSheet..AdvancedOptionsScrollBox..TntGroupBox4..ChunkSizeDescLbl....AutoSize
#: EditorTable.dfm:1380
msgid ""
"Size of chunk that will be written to first file, to the next file, and so "
"on."
msgstr ""
#: source/linux/MGConnectDialog.cc:80
msgid "Skip"
msgstr ""
#. ConnectToInstanceForm..ConnectToHostPnl..PortEd..Hint
#. OptionsForm..OptionPageControl..ConnectionsTabSheet..ConnectionPageControl..ConnGeneralTabSheet..PortEd..Hint
#: ConnectToInstance.dfm:602
OptionsEditor.dfm:544
msgid "Specify the TCP/IP port to connect to"
msgstr ""
#. #-#-#-#-# ..\res\windows\po\default.po (PACKAGE VERSION) #-#-#-#-#
#. EditorTableForm..TableEditorPnl..GirdOptionPnl..MainPageControl..StdInsertsTabSheet..Caption
#: po/glade_files.c:210
EditorTable.dfm:1600
msgid "Standard Inserts"
msgstr ""
#. ProgressForm..StopBtn..Caption
#: Progress.dfm:73
msgid "Stop"
msgstr ""
#: source/linux/MGConnectDialog.cc:702
msgid "Stop _Ping"
msgstr ""
#. ProgressForm..StoppingLbl..Caption
#: Progress.dfm:29
msgid "Stopping process ..."
msgstr ""
#. #-#-#-#-# ..\res\windows\po\default.po (PACKAGE VERSION) #-#-#-#-#
#. EditorTableForm..TableEditorPnl..GirdOptionPnl..MainPageControl..TabSheet2..TableOptionScrollBox..StorageEngineGBox..Caption
#: po/glade_files.c:126
EditorTable.dfm:943
msgid "Storage Engine"
msgstr ""
#: po/glade_files.c:33
msgid "Storage Method"
msgstr ""
#. #-#-#-#-# ..\res\windows\po\default.po (PACKAGE VERSION) #-#-#-#-#
#. EditorTableForm..TableEditorPnl..GirdOptionPnl..MainPageControl..AdvTableOptionsSheet..AdvancedOptionsScrollBox..TntGroupBox7..Caption
#: po/glade_files.c:182
EditorTable.dfm:1121
msgid "Storage Options"
msgstr ""
#. OptionsForm..OptionPageControl..GeneralTabSheet..GroupBox1..StoreWindowsPosCBox..Caption
#: OptionsEditor.dfm:296
msgid "Store Windows Positions"
msgstr ""
#: po/glade_files.c:36
msgid "Store connection passwords"
msgstr ""
#. OptionsForm..OptionPageControl..GeneralTabSheet..GroupBox5..StorePasswordCBox..Caption
#: OptionsEditor.dfm:420
msgid "Store passwords"
msgstr ""
#: po/glade_files.c:196
EditorTable.pas:490
msgid "Striped"
msgstr ""
#: MyxError.pas:122
msgid "System Error"
msgstr ""
#. #-#-#-#-# ..\res\windows\po\default.po (PACKAGE VERSION) #-#-#-#-#
#. EditorTableForm..TableEditorPnl..GirdOptionPnl..MainPageControl..DescTabSheet..TntLabel41..Caption
#: po/glade_files.c:211
EditorTable.dfm:1632
msgid "Table Description"
msgstr ""
#. #-#-#-#-# ..\res\windows\po\default.po (PACKAGE VERSION) #-#-#-#-#
#. EditorTableForm..TableEditorPnl..DockedHeaderPnl..TntLabel1..Caption
#. OptionsForm..OptionPageControl..EditorsTabSheet..GroupBox4..Caption
#: po/glade_files.c:56
EditorTable.dfm:1677 OptionsEditor.dfm:667
msgid "Table Editor"
msgstr ""
#: po/glade_files.c:57
msgid "Table Name"
msgstr ""
#. EditorTableForm..TableEditorPnl..HeaderPnl..TableNameLbl..Caption
#: EditorTable.dfm:51
msgid "Table Name:"
msgstr ""
#. #-#-#-#-# ..\res\windows\po\default.po (PACKAGE VERSION) #-#-#-#-#
#. EditorTableForm..TableEditorPnl..GirdOptionPnl..MainPageControl..TabSheet2..Caption
#: po/glade_files.c:133
EditorTable.dfm:850
msgid "Table Options"
msgstr ""
#. #-#-#-#-# ..\res\windows\po\default.po (PACKAGE VERSION) #-#-#-#-#
#. EditorTableForm..TableEditorPnl..GirdOptionPnl..MainPageControl..AdvTableOptionsSheet..AdvancedOptionsScrollBox..TntGroupBox9..TntLabel21..Caption
#: po/glade_files.c:142
EditorTable.dfm:1456
msgid "Table Password:"
msgstr ""
#. #-#-#-#-# ..\res\windows\po\default.po (PACKAGE VERSION) #-#-#-#-#
#. EditorTableForm..TableEditorPnl..GirdOptionPnl..MainPageControl..AdvTableOptionsSheet..AdvancedOptionsScrollBox..TntGroupBox4..Caption
#: po/glade_files.c:207
EditorTable.dfm:1316
msgid "Table RAID Settings"
msgstr ""
#: source/linux/MGSchemaBrowserList.cc:155
SchemataTreeView.pas:1120
msgid "Tables"
msgstr ""
#: EditorTable.pas:607
msgid "Tables Overview"
msgstr ""
#: MyxError.pas:103
msgid "Terminate"
msgstr ""
#: MyxError.pas:74
msgid "The File %s cannot be opened."
msgstr ""
#: po/glade_files.c:197
msgid ""
"The RAID functionality can be used to exceed the 2GB/4GB\n"
"limit for MyISAM data files on operating systems that do not \n"
"support big files. It is unrecommended for operating systems that do.\n"
"When the RAID type is set to STRIPED the table data file will \n"
"automatically be splitted into a number for chunks."
msgstr ""
#. EditorTableForm..TableEditorPnl..GirdOptionPnl..MainPageControl..AdvTableOptionsSheet..AdvancedOptionsScrollBox..TntGroupBox4..TntLabel57....AutoSize
#: EditorTable.dfm:1357
msgid ""
"The RAID functionality can be used to exceed the 2GB/4GB limit for MyISAM "
"data files on operating systems that do not support big files. It is "
"unrecommended for operating systems that do. When the RAID type is set to "
"STRIPED the table data file will automatically be splitted into a number for "
"chunks."
msgstr ""
#: MyxError.pas:82
msgid "The XML file %s is empty."
msgstr ""
#: EditorTable.pas:2592
msgid "The changes you made did not result in the need to alter the table."
msgstr ""
#: po/glade_files.c:127
msgid ""
"The default character set that is used for the table. \n"
"Starting from MySQL 4.1 you can specify an\n"
" individual character set for each column."
msgstr ""
#. EditorTableForm..TableEditorPnl..GirdOptionPnl..MainPageControl..TabSheet2..TableOptionScrollBox..TntGroupBox6..TableCharsetDescLbl....AutoSize
#: EditorTable.dfm:905
msgid ""
"The default character set that is used for the table. Starting from MySQL "
"4.1 you can specify an individual character set for each column."
msgstr ""
#: MyxError.pas:86
msgid "The execution was stopped."
msgstr ""
#: MyxError.pas:102
msgid ""
"The following Exception occurred:\n"
"%s\n"
"\n"
"Please choose whether to continue %s, terminate the application or restart "
"the program."
msgstr ""
#: po/glade_files.c:216
msgid ""
"The following SQL commands will be executed to update the \n"
"edited table. Please review it and press the Execute button to apply it."
msgstr ""
#: po/glade_files.c:148
msgid ""
"The initial AUTO_INCREMENT value for the table.\n"
"This works for MyISAM only."
msgstr ""
#. EditorTableForm..TableEditorPnl..GirdOptionPnl..MainPageControl..AdvTableOptionsSheet..AdvancedOptionsScrollBox..TntGroupBox9..TntLabel53....AutoSize
#: EditorTable.dfm:1489
msgid ""
"The initial AUTO_INCREMENT value for the table. This works for MyISAM only."
msgstr ""
#. #-#-#-#-# ..\res\windows\po\default.po (PACKAGE VERSION) #-#-#-#-#
#. EditorTableForm..TableEditorPnl..GirdOptionPnl..MainPageControl..AdvTableOptionsSheet..AdvancedOptionsScrollBox..TntGroupBox8..TntLabel63..Caption
#: po/glade_files.c:171
EditorTable.dfm:1264
msgid "The maximum number of rows you plan to store in the table."
msgstr ""
#. #-#-#-#-# ..\res\windows\po\default.po (PACKAGE VERSION) #-#-#-#-#
#. EditorTableForm..TableEditorPnl..GirdOptionPnl..MainPageControl..AdvTableOptionsSheet..AdvancedOptionsScrollBox..TntGroupBox8..TntLabel62..Caption
#: po/glade_files.c:170
EditorTable.dfm:1255
msgid "The minimum number of rows you plan to store in the table."
msgstr ""
#: source/linux/myg_utils.cc:208
msgid "The object was not found in the database."
msgstr ""
#. Check if ExceptionMsg is set
#: MySQLResultSet.pas:959
msgid "The query could not be executed."
msgstr ""
#: MySQLConnection.pas:337
msgid "The schema %s cannot be selected."
msgstr ""
#. #-#-#-#-# ..\res\windows\po\default.po (PACKAGE VERSION) #-#-#-#-#
#. EditorTableForm..TableEditorPnl..GirdOptionPnl..MainPageControl..AdvTableOptionsSheet..AdvancedOptionsScrollBox..MergeOptionGBox..MergeInsertMethodDescLbl..Caption
#: po/glade_files.c:190
EditorTable.dfm:1575
msgid "The union table which should be used for inserts."
msgstr ""
#: source/linux/MGConnectDialog.cc:566
msgid ""
"There is already a connection saved with the supplied name.\n"
"Type in another name for the connection to be saved."
msgstr ""
#. AboutForm..LicenceLbl....AutoSize
#: About.dfm:83
msgid ""
"This software is released under the GNU General Public License (GPL), which "
"is probably the best known Open Source license. The formal terms of the GPL "
"license can be found at http://www.fsf.org/licenses/."
msgstr ""
#. #-#-#-#-# ..\res\windows\po\default.po (PACKAGE VERSION) #-#-#-#-#
#. EditorTableForm..TableEditorPnl..GirdOptionPnl..MainPageControl..TabSheet2..TableOptionScrollBox..StorageEngineGBox..TntLabel64..Caption
#: po/glade_files.c:125
EditorTable.dfm:1022
msgid "This storage engine was replaced by the MyISAM storage engine."
msgstr ""
#: po/glade_files.c:118
msgid ""
"Transaction safe storage engine with page locking. Also called Berkeley DB."
msgstr ""
#. EditorTableForm..TableEditorPnl..GirdOptionPnl..MainPageControl..TabSheet2..TableOptionScrollBox..StorageEngineGBox..TntLabel42....AutoSize
#: EditorTable.dfm:1013
msgid ""
"Transaction safe storage engine with page locking. Also called Berkeley DB."
msgstr ""
#: po/glade_files.c:116
msgid ""
"Transaction safe, disk based storage engine with row locking.\n"
" Recommended engine for tables that need support for transactions."
msgstr ""
#. EditorTableForm..TableEditorPnl..GirdOptionPnl..MainPageControl..TabSheet2..TableOptionScrollBox..StorageEngineGBox..TntLabel44....AutoSize
#: EditorTable.dfm:977
msgid ""
"Transaction safe, disk based storage engine with row locking. Recommended "
"engine for tables that need support for transactions."
msgstr ""
#: po/glade_files.c:46
msgid "Type"
msgstr ""
#: source/linux/MGConnectDialog.cc:556
msgid "Type in a name for the connection to be saved."
msgstr ""
#. ConnectToInstanceForm..ConnectToHostPnl..TypeLbl..Caption
#. OptionsForm..OptionPageControl..ConnectionsTabSheet..ConnectionPageControl..ConnGeneralTabSheet..TypeLbl..Caption
#: ConnectToInstance.dfm:556
OptionsEditor.dfm:509
msgid "Type:"
msgstr ""
#: po/glade_files.c:83
msgid "UNIQUE"
msgstr ""
#. #-#-#-#-# ..\res\windows\po\default.po (PACKAGE VERSION) #-#-#-#-#
#. EditorTableForm..TableEditorPnl..GirdOptionPnl..MainPageControl..AdvTableOptionsSheet..AdvancedOptionsScrollBox..MergeOptionGBox..UnionTablesCaptionLbl..Caption
#: po/glade_files.c:183
EditorTable.dfm:1558
msgid "Union Tables:"
msgstr ""
#. #-#-#-#-# ..\res\windows\po\default.po (PACKAGE VERSION) #-#-#-#-#
#. EditorTableForm..TableEditorPnl..GirdOptionPnl..MainPageControl..AdvTableOptionsSheet..AdvancedOptionsScrollBox..TntGroupBox8..UseChecksumCBox..Caption
#: po/glade_files.c:157
EditorTable.dfm:1296
msgid "Use Checksum"
msgstr ""
#. ConnectToInstanceForm..AdvancedOptionsGBox..AdvancedOptionsPageControl..MySQLOptionsTabSheet..UseCompressionCBox..Caption
#: ConnectToInstance.dfm:721
msgid "Use compression protocol"
msgstr ""
#. EditorTableForm..TableEditorPnl..DockedHeaderPnl..TntLabel10..Caption
#: EditorTable.dfm:1690
msgid "Use this editor to create or alter tables."
msgstr ""
#: po/glade_files.c:150
msgid ""
"Use this option to delay the key updates untill the table\n"
"is closed. This works for MyISAM only."
msgstr ""
#. EditorTableForm..TableEditorPnl..GirdOptionPnl..MainPageControl..AdvTableOptionsSheet..AdvancedOptionsScrollBox..TntGroupBox9..TntLabel54....AutoSize
#: EditorTable.dfm:1500
msgid ""
"Use this option to delay the key updates untill the table is closed. This "
"works for MyISAM only."
msgstr ""
#: po/glade_files.c:138
msgid ""
"Use this option to generate smaller indices.\n"
"This usually makes updates slower and reads faster.\n"
"Setting it to Default tells the storage engine to only\n"
"pack long CHAR/VARCHAR columns."
msgstr ""
#. EditorTableForm..TableEditorPnl..GirdOptionPnl..MainPageControl..AdvTableOptionsSheet..AdvancedOptionsScrollBox..TntGroupBox9..TntLabel51....AutoSize
#: EditorTable.dfm:1467
msgid ""
"Use this option to generate smaller indices. This usually makes updates "
"slower and reads faster. Setting it to DEFAULT tells the storage engine to "
"only pack long CHAR/VARCHAR columns."
msgstr ""
#: po/glade_files.c:30
msgid "User Administration"
msgstr ""
#: po/glade_files.c:40
msgid "Username"
msgstr ""
#. #-#-#-#-# ..\res\windows\po\default.po (PACKAGE VERSION) #-#-#-#-#
#. ConnectToInstanceForm..ConnectToHostPnl..UsernameLbl..Caption
#. OptionsForm..OptionPageControl..ConnectionsTabSheet..ConnectionPageControl..ConnGeneralTabSheet..UsernameLbl..Caption
#: po/glade_files.c:3
ConnectToInstance.dfm:518 OptionsEditor.dfm:477
msgid "Username:"
msgstr ""
#: SchemataTreeView.pas:1124
msgid "Users"
msgstr ""
#. OptionsForm..OptionPageControl..ConnectionsTabSheet..ConnectionPageControl..ConnAdvTabSheet..ConnValueListEditor....TitleCaptions.Strings
#: OptionsEditor.dfm:632
msgid "Value"
msgstr ""
#. EditorTableForm..TableEditorPnl..GirdOptionPnl..MainPageControl..AdvTableOptionsSheet..AdvancedOptionsScrollBox..TntGroupBox9..Caption
#: EditorTable.dfm:1435
msgid "Various"
msgstr ""
#: po/glade_files.c:114
msgid ""
"Very fast, disk based storage engine without support for transactions.\n"
"Offers fulltext search, packed keys, and is the default storage engine."
msgstr ""
#. EditorTableForm..TableEditorPnl..GirdOptionPnl..MainPageControl..TabSheet2..TableOptionScrollBox..StorageEngineGBox..TntLabel43....AutoSize
#: EditorTable.dfm:966
msgid ""
"Very fast, disk based storage engine without support for transactions. "
"Offers fulltext search, packed keys, and is the default storage engine."
msgstr ""
#: MySQLResultSetControls.pas:351
msgid "You can split the panel only in one direction."
msgstr ""
#: SchemataTreeView.pas:932
msgid "You cannot drop the MySQL schema"
msgstr ""
#: MySQLResultSet.pas:324
msgid ""
"You tried to execute and empty string. Please type a SQL command into the "
"SQL edit field and execute again."
msgstr ""
#: po/glade_files.c:37
msgid "_Add Connection"
msgstr ""
#: po/glade_files.c:54 po/glade_files.c:214
msgid "_Apply Changes"
msgstr ""
#: po/glade_files.c:21
msgid "_Clear"
msgstr ""
#: source/linux/MGConnectDialog.cc:954
msgid "_Details <<"
msgstr ""
#: po/glade_files.c:19 source/linux/MGConnectDialog.cc:947
msgid "_Details >>"
msgstr ""
#: po/glade_files.c:55 po/glade_files.c:213
msgid "_Discard Changes"
msgstr ""
#: source/linux/MGConnectDialog.cc:652 source/linux/MGConnectDialog.cc:659
msgid "_Ping Host"
msgstr ""
#: po/glade_files.c:38
msgid "_Remove"
msgstr ""
#. OptionsForm..OptionPageControl..EditorsTabSheet..GroupBox4..EdTblPKAutoNamingEd..Text
#. OptionsForm..OptionPageControl..EditorsTabSheet..GroupBox4..EdTblPKAutoNamingEd....Items.Strings
#: OptionsEditor.dfm:734
OptionsEditor.dfm:737
msgid "id%tablename%"
msgstr ""
#. OptionsForm..OptionPageControl..EditorsTabSheet..GroupBox4..EdTblPKAutoNamingEd....Items.Strings
#: OptionsEditor.dfm:738
msgid "id_%tablename%"
msgstr ""
#. OptionsForm..OptionPageControl..EditorsTabSheet..GroupBox4..EdTblIndexNamingEd....Items.Strings
#: OptionsEditor.dfm:763
msgid "ind_%tablename%_%nr%"
msgstr ""
#. OptionsForm..OptionPageControl..EditorsTabSheet..GroupBox4..EdTblIndexNamingEd....Items.Strings
#: OptionsEditor.dfm:762
msgid "index%nr%"
msgstr ""
#. OptionsForm..OptionPageControl..EditorsTabSheet..GroupBox4..EdTblIndexNamingEd..Text
#. OptionsForm..OptionPageControl..EditorsTabSheet..GroupBox4..EdTblIndexNamingEd....Items.Strings
#: OptionsEditor.dfm:758
OptionsEditor.dfm:761
msgid "index_%nr%"
msgstr ""
#. #-#-#-#-# ..\res\windows\po\default.po (PACKAGE VERSION) #-#-#-#-#
#. EditorTableForm..TableEditorPnl..GirdOptionPnl..MainPageControl..AdvTableOptionsSheet..AdvancedOptionsScrollBox..TntGroupBox4..ChunkSizeUnitLbl..Caption
#: po/glade_files.c:206
EditorTable.dfm:1344
msgid "kB"
msgstr ""
#: CommonFuncs.pas:59
msgid "version"
msgstr ""
#. AboutForm..VersionLbl..Caption
#: About.dfm:48
msgid "version 1.0.7 BETA"
msgstr ""
|