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 2459 2460 2461 2462 2463 2464 2465 2466 2467 2468 2469 2470 2471 2472 2473 2474 2475 2476 2477 2478 2479 2480 2481 2482 2483 2484 2485 2486 2487 2488 2489 2490 2491 2492 2493 2494 2495 2496 2497 2498 2499 2500 2501 2502 2503 2504 2505 2506 2507 2508 2509 2510 2511 2512 2513 2514 2515 2516 2517 2518 2519 2520 2521 2522 2523 2524 2525 2526 2527 2528 2529 2530 2531 2532 2533 2534 2535 2536 2537 2538 2539 2540 2541 2542 2543 2544 2545 2546 2547 2548 2549 2550 2551 2552 2553 2554 2555 2556 2557 2558 2559 2560 2561 2562 2563 2564 2565 2566 2567 2568 2569 2570 2571 2572 2573 2574 2575 2576 2577 2578 2579 2580 2581 2582 2583 2584 2585 2586 2587 2588 2589 2590 2591 2592 2593 2594 2595 2596 2597 2598 2599 2600 2601 2602 2603 2604 2605 2606 2607 2608 2609 2610 2611 2612 2613 2614 2615 2616 2617 2618 2619 2620 2621 2622 2623 2624 2625 2626 2627 2628 2629 2630 2631 2632 2633 2634 2635 2636 2637 2638 2639 2640 2641 2642 2643 2644 2645 2646 2647 2648 2649 2650 2651 2652 2653 2654 2655 2656 2657 2658 2659 2660 2661 2662 2663 2664 2665 2666 2667 2668 2669 2670 2671 2672 2673 2674 2675 2676 2677 2678 2679 2680 2681 2682 2683 2684 2685 2686 2687 2688 2689 2690 2691 2692 2693 2694 2695 2696 2697 2698 2699 2700 2701 2702 2703 2704 2705 2706 2707 2708 2709 2710 2711 2712 2713 2714 2715 2716 2717 2718 2719 2720 2721 2722 2723 2724 2725 2726 2727 2728 2729 2730 2731 2732 2733 2734 2735 2736 2737 2738 2739 2740 2741 2742 2743 2744 2745 2746 2747 2748 2749 2750 2751 2752 2753 2754 2755 2756 2757 2758 2759 2760 2761 2762 2763 2764 2765 2766 2767 2768 2769 2770 2771 2772 2773 2774 2775 2776 2777 2778 2779 2780 2781 2782 2783 2784 2785 2786 2787 2788 2789 2790 2791 2792 2793 2794 2795 2796 2797 2798 2799 2800 2801 2802 2803 2804 2805 2806 2807 2808 2809 2810 2811 2812 2813 2814 2815 2816 2817 2818 2819 2820 2821 2822 2823 2824 2825 2826 2827 2828 2829 2830 2831 2832 2833 2834 2835 2836 2837 2838 2839 2840 2841 2842 2843 2844 2845 2846 2847 2848 2849 2850 2851 2852 2853 2854 2855 2856 2857 2858 2859 2860 2861 2862 2863 2864 2865 2866 2867 2868 2869 2870 2871 2872 2873 2874 2875 2876 2877 2878 2879 2880 2881 2882 2883 2884 2885 2886 2887 2888 2889 2890 2891 2892 2893 2894 2895 2896 2897 2898 2899 2900 2901 2902 2903 2904 2905 2906 2907 2908 2909 2910 2911 2912 2913 2914 2915 2916 2917 2918 2919 2920 2921 2922 2923 2924 2925 2926 2927 2928 2929 2930 2931 2932 2933 2934 2935 2936 2937 2938 2939 2940 2941 2942 2943 2944 2945 2946 2947 2948 2949 2950 2951 2952 2953 2954 2955 2956 2957 2958 2959 2960 2961 2962 2963 2964 2965 2966 2967 2968 2969 2970 2971 2972 2973 2974 2975 2976 2977 2978 2979 2980 2981 2982 2983 2984 2985 2986 2987 2988 2989 2990 2991 2992 2993 2994 2995 2996 2997 2998 2999 3000 3001 3002 3003 3004 3005 3006 3007 3008 3009 3010 3011 3012 3013 3014 3015 3016 3017 3018 3019 3020 3021 3022 3023 3024 3025 3026 3027 3028 3029 3030 3031 3032 3033 3034 3035 3036 3037 3038 3039 3040 3041 3042 3043 3044 3045 3046 3047 3048 3049 3050 3051 3052 3053 3054 3055 3056 3057 3058 3059 3060 3061 3062 3063 3064 3065 3066 3067 3068 3069 3070 3071 3072 3073 3074 3075 3076 3077 3078 3079 3080 3081 3082 3083 3084 3085 3086 3087 3088 3089 3090 3091 3092 3093 3094 3095 3096 3097 3098 3099 3100 3101 3102 3103 3104 3105 3106 3107 3108 3109 3110 3111 3112 3113 3114 3115 3116 3117 3118 3119 3120 3121 3122 3123 3124 3125 3126 3127 3128 3129 3130 3131 3132 3133 3134 3135 3136 3137 3138 3139 3140 3141 3142 3143 3144 3145 3146 3147 3148 3149 3150 3151 3152 3153 3154 3155 3156 3157 3158 3159 3160 3161 3162 3163 3164 3165 3166 3167 3168 3169 3170 3171 3172 3173 3174 3175 3176 3177 3178 3179 3180 3181 3182 3183 3184 3185 3186 3187 3188 3189 3190 3191 3192 3193 3194 3195 3196 3197 3198 3199 3200 3201 3202 3203 3204 3205 3206 3207 3208 3209 3210 3211 3212 3213 3214 3215 3216 3217 3218 3219 3220 3221 3222 3223 3224 3225 3226 3227 3228 3229 3230 3231 3232 3233 3234 3235 3236 3237 3238 3239 3240 3241 3242 3243 3244 3245 3246 3247 3248 3249 3250 3251 3252 3253 3254 3255 3256 3257 3258 3259 3260 3261 3262 3263 3264 3265 3266 3267 3268 3269 3270 3271 3272 3273 3274 3275 3276 3277 3278 3279 3280 3281 3282 3283 3284 3285 3286 3287 3288 3289 3290 3291 3292 3293 3294 3295 3296 3297 3298 3299 3300 3301 3302 3303 3304 3305 3306 3307 3308 3309 3310 3311 3312 3313 3314 3315 3316 3317 3318 3319 3320 3321 3322 3323 3324 3325 3326 3327 3328 3329 3330 3331 3332 3333 3334 3335 3336 3337 3338 3339 3340 3341 3342 3343 3344 3345 3346 3347 3348 3349 3350 3351 3352 3353 3354 3355 3356 3357 3358 3359 3360 3361 3362 3363 3364 3365 3366 3367 3368 3369 3370 3371 3372 3373 3374 3375 3376 3377 3378 3379 3380 3381 3382 3383 3384 3385 3386 3387 3388 3389 3390 3391 3392 3393 3394 3395 3396 3397 3398 3399 3400 3401 3402 3403 3404 3405 3406 3407 3408 3409 3410 3411 3412 3413 3414 3415 3416 3417 3418 3419 3420 3421 3422 3423 3424 3425 3426 3427 3428 3429 3430 3431 3432 3433 3434 3435 3436 3437 3438 3439 3440 3441 3442 3443 3444 3445 3446 3447 3448 3449 3450 3451 3452 3453 3454 3455 3456 3457 3458 3459 3460 3461 3462 3463 3464 3465 3466 3467 3468 3469 3470 3471 3472 3473 3474 3475 3476 3477 3478 3479 3480 3481 3482 3483 3484 3485 3486 3487 3488 3489 3490 3491 3492 3493 3494 3495 3496 3497 3498 3499 3500 3501 3502 3503 3504 3505 3506 3507 3508 3509 3510 3511 3512 3513 3514 3515 3516 3517 3518 3519 3520 3521 3522 3523 3524 3525 3526 3527 3528 3529 3530 3531 3532 3533 3534 3535 3536 3537 3538 3539 3540 3541 3542 3543 3544 3545 3546 3547 3548 3549 3550 3551 3552 3553 3554 3555 3556 3557 3558 3559 3560 3561 3562 3563 3564 3565 3566 3567 3568 3569 3570 3571 3572 3573 3574 3575 3576 3577 3578 3579 3580 3581 3582 3583 3584 3585 3586 3587 3588 3589 3590 3591 3592 3593 3594 3595 3596 3597 3598 3599 3600 3601 3602 3603 3604 3605 3606 3607 3608 3609 3610 3611 3612 3613 3614 3615 3616 3617 3618 3619 3620 3621 3622 3623 3624 3625 3626 3627 3628 3629 3630 3631 3632 3633 3634 3635 3636 3637 3638 3639 3640 3641 3642 3643 3644 3645 3646 3647 3648 3649 3650 3651 3652 3653 3654 3655 3656 3657 3658 3659 3660 3661 3662 3663 3664 3665 3666 3667 3668 3669 3670 3671 3672 3673 3674 3675 3676 3677 3678 3679 3680 3681 3682 3683 3684 3685 3686 3687 3688 3689 3690 3691 3692 3693 3694 3695 3696 3697 3698 3699 3700 3701 3702 3703 3704 3705 3706 3707 3708 3709 3710 3711 3712 3713 3714 3715 3716 3717 3718 3719 3720 3721 3722 3723 3724 3725 3726 3727 3728 3729 3730 3731 3732 3733 3734 3735 3736 3737 3738 3739 3740 3741 3742 3743 3744 3745 3746 3747 3748 3749 3750 3751 3752 3753 3754 3755 3756 3757 3758 3759 3760 3761 3762 3763 3764 3765 3766 3767 3768 3769 3770 3771 3772 3773 3774 3775 3776 3777 3778 3779 3780 3781 3782 3783 3784 3785 3786 3787 3788 3789 3790 3791 3792 3793 3794 3795 3796 3797 3798 3799 3800 3801 3802 3803 3804 3805 3806 3807 3808 3809 3810 3811 3812 3813 3814 3815 3816 3817 3818 3819 3820 3821 3822 3823 3824 3825 3826 3827 3828 3829 3830 3831 3832 3833 3834 3835 3836 3837 3838 3839 3840 3841 3842 3843 3844 3845 3846 3847 3848 3849 3850 3851 3852 3853 3854 3855 3856 3857 3858 3859 3860 3861 3862 3863 3864 3865 3866 3867 3868 3869 3870 3871 3872 3873 3874 3875 3876 3877 3878 3879 3880 3881 3882 3883 3884 3885 3886 3887 3888 3889 3890 3891 3892 3893 3894 3895 3896 3897 3898 3899 3900 3901 3902 3903 3904 3905 3906 3907 3908 3909 3910 3911 3912 3913 3914 3915 3916 3917 3918 3919 3920 3921 3922 3923 3924 3925 3926 3927 3928 3929 3930 3931 3932 3933 3934 3935 3936 3937 3938 3939 3940 3941 3942 3943 3944 3945 3946 3947 3948 3949 3950 3951 3952 3953 3954 3955 3956 3957 3958 3959 3960 3961 3962 3963 3964 3965 3966 3967 3968 3969 3970 3971 3972 3973 3974 3975 3976 3977 3978 3979 3980 3981 3982 3983 3984 3985 3986 3987 3988 3989 3990 3991 3992 3993 3994 3995 3996 3997 3998 3999 4000 4001 4002 4003 4004 4005 4006 4007 4008 4009 4010 4011 4012 4013 4014 4015 4016 4017 4018 4019 4020 4021 4022 4023 4024 4025 4026 4027 4028 4029 4030 4031 4032 4033 4034 4035 4036 4037 4038 4039 4040 4041 4042 4043 4044 4045 4046 4047 4048 4049 4050 4051 4052 4053 4054 4055 4056 4057 4058 4059 4060 4061 4062 4063 4064 4065 4066 4067 4068 4069 4070 4071 4072 4073 4074 4075 4076 4077 4078 4079 4080 4081 4082 4083 4084 4085 4086 4087 4088 4089 4090 4091 4092 4093 4094 4095 4096 4097 4098 4099 4100 4101 4102 4103 4104 4105 4106 4107 4108 4109 4110 4111 4112 4113 4114 4115 4116 4117 4118 4119 4120 4121 4122 4123 4124 4125 4126 4127 4128 4129 4130 4131 4132 4133 4134 4135 4136 4137 4138 4139 4140 4141 4142 4143 4144 4145 4146 4147 4148 4149 4150 4151 4152 4153 4154 4155 4156 4157 4158 4159 4160 4161 4162 4163 4164 4165 4166 4167 4168 4169 4170 4171 4172 4173 4174 4175 4176 4177 4178 4179 4180 4181 4182 4183 4184 4185 4186 4187 4188 4189 4190 4191 4192 4193 4194 4195 4196 4197 4198 4199 4200 4201 4202 4203 4204 4205 4206 4207 4208 4209 4210 4211 4212 4213 4214 4215 4216 4217 4218 4219 4220 4221 4222 4223 4224 4225 4226 4227 4228 4229 4230 4231 4232 4233 4234 4235 4236 4237 4238 4239 4240 4241 4242 4243 4244 4245 4246 4247 4248 4249 4250 4251 4252 4253 4254 4255 4256 4257 4258 4259 4260 4261 4262 4263 4264 4265 4266 4267 4268 4269 4270 4271 4272 4273 4274 4275 4276 4277 4278 4279 4280 4281 4282 4283 4284 4285 4286 4287 4288 4289 4290 4291 4292 4293 4294 4295 4296 4297 4298 4299 4300 4301 4302 4303 4304 4305 4306 4307 4308 4309 4310 4311 4312 4313 4314 4315 4316 4317 4318 4319 4320 4321 4322 4323 4324 4325 4326 4327 4328 4329 4330 4331 4332 4333 4334 4335 4336 4337 4338 4339 4340 4341 4342 4343 4344 4345 4346 4347 4348 4349 4350 4351 4352 4353 4354 4355 4356 4357 4358 4359 4360 4361 4362 4363 4364 4365 4366 4367 4368 4369 4370 4371 4372 4373 4374 4375 4376 4377 4378 4379 4380 4381 4382 4383 4384 4385 4386 4387 4388 4389 4390 4391 4392 4393 4394 4395 4396 4397 4398 4399 4400 4401 4402 4403 4404 4405 4406 4407 4408 4409 4410 4411 4412 4413 4414 4415 4416 4417 4418 4419 4420 4421 4422 4423 4424 4425 4426 4427 4428 4429 4430 4431 4432 4433 4434 4435 4436 4437 4438 4439 4440 4441 4442 4443 4444 4445 4446 4447 4448 4449 4450 4451 4452 4453 4454 4455 4456 4457 4458 4459 4460 4461 4462 4463 4464 4465 4466 4467 4468 4469 4470 4471 4472 4473 4474 4475 4476 4477 4478 4479 4480 4481 4482 4483 4484 4485 4486 4487 4488 4489 4490 4491 4492 4493 4494 4495 4496 4497 4498 4499 4500 4501 4502 4503 4504 4505 4506 4507 4508 4509 4510 4511 4512 4513 4514 4515 4516 4517 4518 4519 4520 4521 4522 4523 4524 4525 4526 4527 4528 4529 4530 4531 4532 4533 4534 4535 4536 4537 4538 4539 4540 4541 4542 4543 4544 4545 4546 4547 4548 4549 4550 4551 4552 4553 4554 4555 4556 4557 4558 4559 4560 4561 4562 4563 4564 4565 4566 4567 4568 4569 4570 4571 4572 4573 4574 4575 4576 4577 4578 4579 4580 4581 4582 4583 4584 4585 4586 4587 4588 4589 4590 4591 4592 4593 4594 4595 4596 4597 4598 4599 4600 4601 4602 4603 4604 4605 4606 4607 4608 4609 4610 4611 4612 4613 4614 4615 4616 4617 4618 4619 4620 4621 4622 4623 4624 4625 4626 4627 4628 4629 4630 4631 4632 4633 4634 4635 4636 4637 4638 4639 4640 4641 4642 4643 4644 4645 4646 4647 4648 4649 4650 4651 4652 4653 4654 4655 4656 4657 4658 4659 4660 4661 4662 4663 4664 4665 4666 4667 4668 4669 4670 4671 4672 4673 4674 4675 4676 4677 4678 4679 4680 4681 4682 4683 4684 4685 4686 4687 4688 4689 4690 4691 4692 4693 4694 4695 4696 4697 4698 4699 4700 4701 4702 4703 4704 4705 4706 4707 4708 4709 4710 4711 4712 4713 4714 4715 4716 4717 4718 4719 4720 4721 4722 4723 4724 4725 4726 4727 4728 4729 4730 4731 4732 4733 4734 4735 4736 4737 4738 4739 4740 4741 4742 4743 4744 4745 4746 4747 4748 4749 4750 4751 4752 4753 4754 4755 4756 4757 4758 4759 4760 4761 4762 4763 4764 4765 4766 4767 4768 4769 4770 4771 4772 4773 4774 4775 4776 4777 4778 4779 4780 4781 4782 4783 4784 4785 4786 4787 4788 4789 4790 4791 4792 4793 4794 4795 4796 4797 4798 4799 4800 4801 4802 4803 4804 4805 4806 4807 4808 4809 4810 4811 4812 4813 4814 4815 4816 4817 4818 4819 4820 4821 4822 4823 4824 4825 4826 4827 4828 4829 4830 4831 4832 4833 4834 4835 4836 4837 4838 4839 4840 4841 4842 4843 4844 4845 4846 4847 4848 4849 4850 4851 4852 4853 4854 4855 4856 4857 4858 4859 4860 4861 4862 4863 4864 4865 4866 4867 4868 4869 4870 4871 4872 4873 4874 4875 4876 4877 4878 4879 4880 4881 4882 4883 4884 4885 4886 4887 4888 4889 4890 4891 4892 4893 4894 4895 4896 4897 4898 4899 4900 4901 4902 4903 4904 4905 4906 4907 4908 4909 4910 4911 4912 4913 4914 4915 4916 4917 4918 4919 4920 4921 4922 4923 4924 4925 4926 4927 4928 4929 4930 4931 4932 4933 4934 4935 4936 4937 4938 4939 4940 4941 4942 4943 4944 4945 4946 4947 4948 4949 4950 4951 4952 4953 4954 4955 4956 4957 4958 4959 4960 4961 4962 4963 4964 4965 4966 4967 4968 4969 4970 4971 4972 4973 4974 4975 4976 4977 4978 4979 4980 4981 4982 4983 4984 4985 4986 4987 4988 4989 4990 4991 4992 4993 4994 4995 4996 4997 4998 4999 5000 5001 5002 5003 5004 5005 5006 5007 5008
|
# Common text for MySQL Administrator, QueryBrowser and Migration Toolkit.
# Copyright (C) 2005 MySQL ab
# This file is distributed under the same license as the MySQL Administrator package.
# Gisbert W. Selke <gwselke@gmx.net>, 2005.
# $Id: mysql-gui-common-de.po 329 2006-02-18 23:47:46Z gisbert $
#
msgid ""
msgstr ""
"Project-Id-Version: MySQL GUI Common 1.1.5\n"
"POT-Creation-Date: 2007-02-05 15:54\n"
"PO-Revision-Date: 2007-02-06 10:07+0100\n"
"Last-Translator: Mike Lischke <mikel@mysql.com>\n"
"Language-Team: MySQL GUI Team <gui-tools@lists.mysql.com>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
# RoutineFrame..RoutinePanel..RoutineHeaderPanel..Caption
# RoutineFrame..RoutinePanel..RoutineHeaderPanel..Caption
# RoutineFrame..RoutinePanel..RoutineHeaderPanel..Caption
#. RoutineFrame..RoutinePanel..RoutineHeaderPanel..Caption
#: MyxRoutineEditorFrame.dfm:25
msgid " New Routine"
msgstr "Neue Routine"
#: MySQLResultSet.pas:1662
msgid "%d row%s fetched in %.4fs (%.4fs)"
msgstr "%d Zeile%s in %.4f s (%.4f s) geholt"
#. Add rows.
#: MySQLResultSet.pas:1586
msgid "%d rows fetched so far."
msgstr "%d Zeilen bisher geholt"
#: MyxError.pas:134
msgid ""
"%s\n"
" The following error occured: %s (%d)"
msgstr ""
"%s\n"
" Der folgende Fehler ist aufgetreten: %s (%d)"
#: MySQLResultSet.pas:1673
msgid "%s rows affected by the last command, no resultset returned."
msgstr "%s Zeilen von der letzten Anweisung betroffen, keine Ergebnismenge"
# OptionsForm..OptionPageControl..EditorsTabSheet..GroupBox4..EdTblPKAutoNamingEd....Items.WideStrings
# %tablename% translatable here, or keyword?
# OptionsForm..OptionPageControl..EditorsTabSheet..GroupBox4..EdTblPKAutoNamingEd....Items.WideStrings
#. OptionsForm..OptionPageControl..EditorsTabSheet..GroupBox4..EdTblPKAutoNamingEd....Items.Strings
#: OptionsEditor.dfm:996
msgid "%tablename%_id"
msgstr "%tablename%_id"
# OptionsForm..OptionPageControl..EditorsTabSheet..GroupBox4..EdTblPKAutoNamingEd....Items.WideStrings
# OptionsForm..OptionPageControl..EditorsTabSheet..GroupBox4..EdTblPKAutoNamingEd....Items.WideStrings
# %tablename% translatable here, or keyword?
# OptionsForm..OptionPageControl..EditorsTabSheet..GroupBox4..EdTblPKAutoNamingEd....Items.WideStrings
#. OptionsForm..OptionPageControl..EditorsTabSheet..GroupBox4..EdTblPKAutoNamingEd....Items.Strings
#: OptionsEditor.dfm:995
msgid "%tablename%id"
msgstr "%tablename%id"
#. EditorTableForm..TableEditorPnl..BottomPnl..ApplyChangesBtn..Caption
#: EditorTable.dfm:144
msgid "&Apply Changes"
msgstr "&Übernehmen"
#. EditorTableForm..TableEditorPnl..BottomPnl..CloseBtn..Caption
#: EditorTable.dfm:155
msgid "&Close"
msgstr "&Schließen"
#. ConnectToInstanceForm..BottomPnl..DetailsBtn..Caption
#. EditorTableForm..TableEditorPnl..BottomPnl..DetailsBtn..Caption
#: ConnectToInstance.dfm:503
msgid "&Details >>"
msgstr "&Details >>"
#. EditorTableForm..TableEditorPnl..BottomPnl..DiscardChangesBtn..Caption
#: EditorTable.dfm:133
msgid "&Discard Changes"
msgstr "&Verwerfen"
#. ConnectToInstanceForm..BottomPnl..OKBtn..Caption
#: ConnectToInstance.dfm:465
msgid "&OK"
msgstr "&OK"
#. ConnectToInstanceForm..ConnectToHostPnl..PasswordLbl..Caption
#: ConnectToInstance.dfm:548
msgid "&Password:"
msgstr "&Passwort"
#. ConnectToInstanceForm..ConnectToHostPnl..UsernameLbl..Caption
#: ConnectToInstance.dfm:539
msgid "&Username:"
msgstr "&Nutzername:"
# EditorTableForm..TableEditorPnl..GirdOptionPnl..MainPageControl..ColumnTabSheet..ColumnsPageControl..TntTabSheet2..TntGroupBox1..TntLabel9..Caption
# EditorTableForm..TableEditorPnl..GirdOptionPnl..MainPageControl..ColumnTabSheet..ColumnsPageControl..TntTabSheet2..TntGroupBox1..TntLabel9..Caption
# EditorTableForm..TableEditorPnl..GirdOptionPnl..MainPageControl..ColumnTabSheet..ColumnsPageControl..TntTabSheet2..TntGroupBox1..TntLabel9..Caption
#. EditorTableForm..TableEditorPnl..GirdOptionPnl..MainPageControl..ColumnTabSheet..ColumnsPageControl..IndexTabsheet..TntGroupBox1..TntLabel9..Caption
#: EditorTable.dfm:464
msgid "(Use Drag'n'Drop)"
msgstr "(Nutze drag und drop)"
#: MySQLResultSet.pas:1671
msgid "1 row affected by the last command, no resultset returned."
msgstr "1 Zeile von der letzten Anweisung betroffen, keine Ergebnismenge"
#: ConnectToInstance.pas:689
msgid "<< &Details"
msgstr "<< &Details"
#: MyxConnectionDialog.pas:1087
msgid "<< Advanced"
msgstr "<< Erweitert"
#: TextSearch.pas:334
msgid "<< Details"
msgstr "<< Details"
# MigrationObjMapDetailFrame..ObjectSelGBox..DetailBtn..Caption
# MigrationObjMapDetailFrame..ObjectSelGBox..DetailBtn..Caption
#. MigrationObjMapDetailFrame..ObjectSelGBox..DetailBtn..Caption
#: MigrationObjMapDetail.dfm:137
msgid "<< Hide Detailes"
msgstr "<< Details verbergen"
# MigrationObjSelFilterFrame..ObjectSelGBox..DetailFilterObjectBtn..Caption
# MigrationObjSelFilterFrame..ObjectSelGBox..DetailFilterObjectBtn..Caption
#. MigrationObjSelFilterFrame..ObjectSelGBox..DetailFilterObjectBtn..Caption
#: MigrationObjSelFilter.dfm:228
#: MigrationObjSelFilter.pas:169
msgid "<< Hide Details"
msgstr "<< Details verbergen"
#: MyxConnectionDialog.pas:864
msgid "<New Connection>"
msgstr "<Neue Verbindung>"
#: MyxError.pas:166
msgid ""
"A MySQL error was encountered. The message is:\n"
"%s"
msgstr ""
"Ein MySQL Fehler wurde gemeldet. Die Fehlermeldung ist:\n"
"%s"
#: MyxError.pas:211
msgid "A connection to the server cannot be established."
msgstr "Serververbindung konnte nicht hergestellt werden."
#: ConnectToInstance.pas:1235
msgid ""
"A duplicate connection name was found: \"%s\".\n"
"Please use the connection manager and adjust your connection settings in order to avoid trouble e.g. with backup and restore."
msgstr ""
"A doppelter Verbindungsname wurde gefunden: \"%s\".\n"
"Bitte nutzen Sie den Verbindungsmanager und passen Sie Ihre Verbindungseinstellungen an, um Ärger, z.b. beim Backup und Wiederherstellen zu vermeiden."
#: EditorTable.pas:2622
msgid "A primary key has already been defined."
msgstr "Primärschlüssel existiert bereits."
#: MyxTableEditor.pas:1923
msgid "AUTO INCREMENT"
msgstr "AUTO INCREMENT"
#: MySQLResultSet.pas:535
msgid "Abort"
msgstr "Abbruch"
#: About.pas:85
msgid "About"
msgstr "Über"
#: CommonFuncs.pas:123
msgid "About "
msgstr "Über "
# AboutForm..Caption
# AboutForm..Caption
#. AboutForm..Caption
#: About.dfm:6
msgid "About MySQL Administrator"
msgstr "Über MySQL Administrator"
# ProgressForm..ProgressGBox..ActionCaptionLbl..Caption
# ProgressForm..ProgressGBox..ActionCaptionLbl..Caption
#. ProgressForm..ProgressGBox..ActionCaptionLbl..Caption
#: Progress.dfm:43
msgid "Action:"
msgstr "Aktion:"
# EditorTableForm..TableEditorPnl..GirdOptionPnl..MainPageControl..AdvTableOptionsSheet..AdvancedOptionsScrollBox..RowOptionsGBox..TntLabel60....AutoSize
# EditorTableForm..TableEditorPnl..GirdOptionPnl..MainPageControl..AdvTableOptionsSheet..AdvancedOptionsScrollBox..RowOptionsGBox..TntLabel60....AutoSize
#. EditorTableForm..TableEditorPnl..GirdOptionPnl..MainPageControl..AdvTableOptionsSheet..AdvancedOptionsScrollBox..RowOptionsGBox..TntLabel60....AutoSize
#. MyxTableEditorForm..TablePageControl..TntTabSheet1..AdvancedOptionsSheetPnl..AdvancedOptionsScrollBox..RowOptionsGBox..TntLabel60....AutoSize
#: EditorTable.dfm:1181
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 "Aktivieren Sie diese Einstellung, wenn MySQL stets aktuelle Prüfsummen für alle Zeilen halten soll. Tabellen-Updates sind dann etwas langsamer, defekte Tabellen sind aber leichter zu finden."
#: EditorTable.pas:2715
msgid "Add Foreign Key"
msgstr "Fremdschlüssel hinzufügen"
#: MigrationObjSelFilter.pas:568
msgid "Add Ignore Pattern"
msgstr "Ausschlussmuster hinzufügen"
#: EditorTable.pas:2555
msgid "Add Index"
msgstr "Index hinzufügen"
# ConnectToInstanceForm..AdvancedOptionsGBox..AdvancedOptionsPageControl..AdvancedOptionsGeneralTabSheet..AdvancedOptionsBottomPnl..AdvancedOptionsBottomRightPnl..AdvancedOptionsAddBtn..Hint
# MyxConnectionDialogForm..ParamsMainPnl..ConnectGBox..StoredConnPnl..StoredConnAddBtn..Hint
# ConnectToInstanceForm..AdvancedOptionsGBox..AdvancedOptionsPageControl..AdvancedOptionsGeneralTabSheet..AdvancedOptionsBottomPnl..AdvancedOptionsBottomRightPnl..AdvancedOptionsAddBtn..Hint
# MyxConnectionDialogForm..ParamsMainPnl..ConnectGBox..StoredConnPnl..StoredConnAddBtn..Hint
#. ConnectToInstanceForm..AdvancedOptionsGBox..AdvancedOptionsPageControl..AdvancedOptionsGeneralTabSheet..AdvancedOptionsBottomPnl..AdvancedOptionsBottomRightPnl..AdvancedOptionsAddBtn..Hint
#. MyxConnectionDialogForm..ParamsMainPnl..ConnectGBox..StoredConnPnl..StoredConnAddBtn..Hint
#: ConnectToInstance.dfm:800
msgid "Add Option"
msgstr "Einstellung hinzufügen"
# MigrationObjSelFilterFrame..ObjectSelGBox..DetailFilterPnl..AddIgnoreListExprBtn..Hint
# MigrationObjSelFilterFrame..ObjectSelGBox..DetailFilterPnl..AddIgnoreListExprBtn..Hint
#. MigrationObjSelFilterFrame..ObjectSelGBox..DetailFilterPnl..AddIgnoreListExprBtn..Hint
#: MigrationObjSelFilter.dfm:190
msgid "Add an ignore pattern"
msgstr "Ein Ausschlussmuster hinzufügen"
# MigrationObjSelFilterFrame..ObjectSelGBox..DetailFilterPnl..AddToIgnoreListBtn..Hint
# MigrationObjSelFilterFrame..ObjectSelGBox..DetailFilterPnl..AddAllToIgnoreListBtn..Hint
# MigrationObjSelFilterFrame..ObjectSelGBox..DetailFilterPnl..RemoveAllFromIgnoreListBtn..Hint
# MigrationObjSelFilterFrame..ObjectSelGBox..DetailFilterPnl..AddToIgnoreListBtn..Hint
# MigrationObjSelFilterFrame..ObjectSelGBox..DetailFilterPnl..AddAllToIgnoreListBtn..Hint
# MigrationObjSelFilterFrame..ObjectSelGBox..DetailFilterPnl..RemoveAllFromIgnoreListBtn..Hint
#. MigrationObjSelFilterFrame..ObjectSelGBox..DetailFilterPnl..AddToIgnoreListBtn..Hint
#. MigrationObjSelFilterFrame..ObjectSelGBox..DetailFilterPnl..AddAllToIgnoreListBtn..Hint
#. MigrationObjSelFilterFrame..ObjectSelGBox..DetailFilterPnl..RemoveAllFromIgnoreListBtn..Hint
#: MigrationObjSelFilter.dfm:134
#: MigrationObjSelFilter.dfm:214
msgid "Add selected objects to ignore list"
msgstr "Ausgewählte Objekte der Ausschlussliste hinzufügen"
#: MyxRoutineEditorFrame.pas:206
msgid "Adding new routine"
msgstr "Neue Routiner wird hinzugefügt"
#: MyxRoutineEditorFrame.pas:495
msgid "Adding new trigger"
msgstr "Neuer Trigger wird hinzugefügt"
# MyxConnectionDialogForm..BottomPnl..AdvancedBtn..Caption
# MyxTableEditorForm..DockPanel..BottomPnl..AdvancedBtn..Caption
# MyxConnectionDialogForm..BottomPnl..AdvancedBtn..Caption
# MyxTableEditorForm..DockPanel..BottomPnl..AdvancedBtn..Caption
#. MyxConnectionDialogForm..BottomPnl..AdvancedBtn..Caption
#. MyxTableEditorForm..BottomPnl..AdvancedBtn..Caption
#: MyxConnectionDialog.dfm:305
#: MyxConnectionDialog.pas:1089
#: MyxTableEditor.pas:3340
msgid "Advanced >>"
msgstr "Erweitert >>"
# ConnectToInstanceForm..AdvancedOptionsGBox..Caption
# ConnectToInstanceForm..AdvancedOptionsGBox..Caption
#. ConnectToInstanceForm..AdvancedOptionsGBox..Caption
#: ConnectToInstance.dfm:657
msgid "Advanced Connection Options"
msgstr "Erweiterte Verbindungseinstellungen"
# #-#-#-#-# ..\res\windows\po\default.po (PACKAGE VERSION) #-#-#-#-#
# EditorTableForm..TableEditorPnl..GirdOptionPnl..MainPageControl..AdvTableOptionsSheet..Caption
#. EditorTableForm..TableEditorPnl..GirdOptionPnl..MainPageControl..AdvTableOptionsSheet..Caption
#: EditorTable.dfm:1035
msgid "Advanced Options"
msgstr "Erweiterte Einstellungen"
# MyxConnectionDialogForm..AdvParamsMainPnl..TntGroupBox1..Caption
# OptionsForm..OptionPageControl..ConnectionsTabSheet..ConnectionPageControl..ConnAdvTabSheet..Caption
# OptionsForm..OptionPageControl..ConnectionsTabSheet..ConnectionPageControl..ConnAdvTabSheet..Label5..Caption
#. MyxConnectionDialogForm..AdvParamsMainPnl..TntGroupBox1..Caption
#. OptionsForm..OptionPageControl..ConnectionsTabSheet..ConnectionPageControl..ConnAdvTabSheet..Caption
#. OptionsForm..OptionPageControl..ConnectionsTabSheet..ConnectionPageControl..ConnAdvTabSheet..Label5..Caption
#: MyxConnectionDialog.dfm:242
msgid "Advanced Parameters"
msgstr "Erweiterte Parameter"
# ConnectToInstanceForm..AdvancedOptionsGBox..AdvancedOptionsPageControl..AdvancedOptionsGeneralTabSheet..Caption
# Translation needed?
#. ConnectToInstanceForm..AdvancedOptionsGBox..AdvancedOptionsPageControl..AdvancedOptionsGeneralTabSheet..Caption
#: ConnectToInstance.dfm:741
msgid "AdvancedOptionsGeneralTabSheet"
msgstr "AdvancedOptionsGeneralTabSheet"
# SchemataFrame..SchemaSearchPopupMenu..SearchAllMI..Caption
# SchemataFrame..SchemaSearchPopupMenu..SearchAllMI..Caption
#. SchemataFrame..SchemaSearchPopupMenu..SearchAllMI..Caption
#: SchemataTreeView.dfm:88
msgid "All"
msgstr "Alle"
# OptionsForm..OptionPageControl..EditorsTabSheet..GroupBox4..EdTblAllColsNotNullCBox..Caption
#. OptionsForm..OptionPageControl..EditorsTabSheet..GroupBox4..EdTblAllColsNotNullCBox..Caption
#: OptionsEditor.dfm:978
msgid "All columns Not Null per default"
msgstr "Alle Spalten standardmäßig nicht NULL"
#: MyxConnectionDialog.pas:678
#: MyxConnectionDialog.pas:1322
msgid "All files"
msgstr "Alle Dateien"
# OptionsForm..OptionPageControl..EditorsTabSheet..GroupBox4..EdTblAllIntUnsignedCBox..Caption
#. OptionsForm..OptionPageControl..EditorsTabSheet..GroupBox4..EdTblAllIntUnsignedCBox..Caption
#: OptionsEditor.dfm:1004
msgid "All integer columns unsigned per default"
msgstr "Alle Spalten standardmäßig vorzeichenlos"
# ConnectToInstanceForm..ConnectToHostPnl..ConnectionCBox..Hint
# MyxConnectionDialogForm..ParamsMainPnl..ConnectGBox..StoredConnPnl..StoredConnComboBox..Hint
# MyxConnectionDialogForm..ConnTypeMainPnl..ConnTypeGBox..ConnTypePnl..DriverComboBox..Hint
# MyxConnectionDialogForm..ConnTypeMainPnl..ConnTypeGBox..ConnTypePnl..RdbmsComboBox..Hint
#. ConnectToInstanceForm..ConnectToHostPnl..ConnectionCBox..Hint
#. MyxConnectionDialogForm..ParamsMainPnl..ConnectGBox..StoredConnPnl..StoredConnComboBox..Hint
#. MyxConnectionDialogForm..ConnTypeMainPnl..ConnTypeGBox..ConnTypePnl..DriverComboBox..Hint
#. MyxConnectionDialogForm..ConnTypeMainPnl..ConnTypeGBox..ConnTypePnl..RdbmsComboBox..Hint
#: ConnectToInstance.dfm:589
#: MyxConnectionDialog.dfm:359
#: MyxConnectionDialog.dfm:374
msgid "All stored connections"
msgstr "Alle gespeicherten Verbindungen"
#. OptionsForm..OptionPageControl..EditorsTabSheet..GroupBox3..KeepRoutineEditorOnTopCBox..Caption
#: OptionsEditor.dfm:1092
msgid "Always keep editor windows on top"
msgstr "Editorfenster sollen immer oben stehen"
#: MyxError.pas:219
msgid "An SQL error occured."
msgstr "Ein SQL-Fehler ist aufgetreten."
# EditorTableForm..TableEditorPnl..GirdOptionPnl..MainPageControl..AdvTableOptionsSheet..AdvancedOptionsScrollBox..RowOptionsGBox..TntLabel61....AutoSize
#. EditorTableForm..TableEditorPnl..GirdOptionPnl..MainPageControl..AdvTableOptionsSheet..AdvancedOptionsScrollBox..RowOptionsGBox..TntLabel61....AutoSize
#. MyxTableEditorForm..TablePageControl..TntTabSheet1..AdvancedOptionsSheetPnl..AdvancedOptionsScrollBox..RowOptionsGBox..TntLabel61....AutoSize
#: EditorTable.dfm:1193
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 "Eine Schätzung für die mittlere Zeilenlänge in der Tabelle. Nur nötig für große Tabellen mit verschieden langen Zeilen."
#: MyxError.pas:213
msgid "An error occured while parsing the XML file %s."
msgstr "Fehler beim Parsen der XML-Datei %s"
#: MyxError.pas:215
msgid "An error occured while validating the XML file %s."
msgstr "Fehler beim Validieren der XML-Datei %s"
#: Grt.pas:2288
msgid "An unknown error occured during execution of a GRT function."
msgstr "Unbekannter Fehler bei Ausführung einer GRT-Funktion"
#: MySQLResultSetControls.pas:2761
msgid "Any File"
msgstr "Beliebige Datei"
# OptionsForm..OptionPageControl..GeneralTabSheet..GroupBox2..Caption
#. OptionsForm..OptionPageControl..GeneralTabSheet..GroupBox2..Caption
#: OptionsEditor.dfm:375
msgid "Application Fonts"
msgstr "Schriftarten der Anwendung"
# OptionsForm..OptionPageControl..GeneralTabSheet..GroupBox1..Caption
# "Applications" should be singular?
#. OptionsForm..OptionPageControl..GeneralTabSheet..GroupBox1..Caption
#: OptionsEditor.dfm:290
msgid "Applications Options"
msgstr "Anwendungseinstellungen"
# OptionsForm..ApplyChangesBtn..Caption
#. OptionsForm..ApplyChangesBtn..Caption
#: OptionsEditor.dfm:1132
msgid "Apply"
msgstr "Übernehmen"
#. MyxTableEditorForm..TntActionList..ApplyChangeAndCloseAction..Caption
#: MyxTableEditor.dfm:1852
msgid "Apply Change And Close"
msgstr "Änderungen anwenden und schließen"
# EditorTableForm..TableEditorPnl..BottomPnl..ApplyChangesBtn..Caption
# MyxRoutineGroupEditorForm..BottomPnl..ApplyChangesBtn..Caption
# MyxSchemaEditorForm..BottomPnl..ApplyChangesBtn..Caption
# MyxTableEditorForm..DockPanel..BottomPnl..ApplyChangesBtn..Caption
# MyxViewEditorForm..BottomPnl..ApplyChangesBtn..Caption
#. MyxRoutineGroupEditorForm..TntActionList1..ApplyChangesAction..Caption
#. MyxSchemaEditorForm..BottomPnl..ApplyChangesBtn..Caption
#. MyxTableEditorForm..TntActionList..ApplyChangesAction..Caption
#. MyxViewEditorForm..TntActionList1..ApplyChangesAction..Caption
#: MyxRoutineGroupEditor.dfm:514
#: MyxTableEditor.dfm:1863
#: MyxViewEditor.dfm:837
#: MySQLResultSetControls.pas:3468
#: MyxTabHeader.pas:1072
msgid "Apply Changes"
msgstr "Übernehmen"
# MyxRoutineGroupEditorForm..TntActionList1..ApplyChangesAndCloseAction..Caption
# MyxViewEditorForm..TntActionList1..ApplyChangesAndCloseAction..Caption
# Translation needed?
#. MyxRoutineGroupEditorForm..TntActionList1..ApplyChangesAndCloseAction..Caption
#. MyxViewEditorForm..TntActionList1..ApplyChangesAndCloseAction..Caption
#: MyxRoutineGroupEditor.dfm:509
msgid "ApplyChangesAndCloseAction"
msgstr "ApplyChangesAndCloseAction"
#: OptionsEditor.pas:681
msgid "Are you sure you want to delete the connection?"
msgstr "Sind Sie sicher, dass sie diese Verbindung löschen wollen?"
#. Remove trailing new line. We don't need it here.
#: SchemataTreeView.pas:2241
msgid "Are you sure you want to delete the object"
msgstr "Sind Sie sicher, dass sie dieses Objekt löschen wollen:"
#: EditorTable.pas:1851
msgid "Are you sure you want to delete the selected columns?"
msgstr "Wollen Sie die ausgewählten Spalten wirklich löschen?"
#: MyxConnectionDialog.pas:1254
msgid "Are you sure you want to delete the stored connection?"
msgstr "Wollen Sie die ausgewählte Verbindung wirklich löschen?"
#: SchemataTreeView.pas:2244
msgid "Are you sure you want to delete these objects"
msgstr "Sind Sie sicher, dass sie diese Objekte löschen wollen"
#: EditorTable.pas:717
msgid "Are you sure you want to discard your changes?"
msgstr "Wollen Sie Ihre Änderungen wirklich verwerfen?"
#: EditorTable.pas:757
msgid "Are you sure you want to discard your current changes?"
msgstr "Wollen Sie Ihre aktuellen Änderungen wirklich verwerfen?"
#: EditorTable.pas:3103
msgid "Are you sure you want to execute the following SQL command to apply the changes to the table?"
msgstr "Wollen Sie die folgende SQL-Anweisung wirklich ausführen und so die Änderungen an der Tabelle durchführen?"
#: EditorTable.pas:3222
msgid "Are you sure you want to quit the table editor without applying the changes?"
msgstr "Wollen Sie den Tabelleneditor wirklich beenden, ohne die Änderungen durchzuführen?"
#: MyxRoutineEditorFrame.pas:335
msgid "Are you sure you want to replace the current routine text?"
msgstr "Wollen Sie den aktuellen Routinentext wirklich ersetzen?"
#: MyxTableEditor.pas:2380
msgid "Ascendant"
msgstr "Aufsteigend"
#: SchemataTreeView.pas:2247
msgid "Attention: this action cannot be rolled back!"
msgstr "Achtung: diese Aktion kann nicht rückgängig gemacht werden!"
# #-#-#-#-# ..\res\windows\po\default.po (PACKAGE VERSION) #-#-#-#-#
# EditorTableForm..TableEditorPnl..GirdOptionPnl..MainPageControl..ColumnTabSheet..ColumnsPageControl..TntTabSheet1..TntGroupBox5..ColumnAutoIncCBox..Caption
# #-#-#-#-# glade.pot #-#-#-#-#
# grt_table_editor.glade:GtkCheckButton:autoinc_flag..table_editor.glade:GtkCheckButton:autoinc_check
# #-#-#-#-# mysql-gui-common-template.po (PACKAGE VERSION) #-#-#-#-#
# #-#-#-#-# ..\res\windows\po\default.po (PACKAGE VERSION) #-#-#-#-#
# EditorTableForm..TableEditorPnl..GirdOptionPnl..MainPageControl..ColumnTabSheet..ColumnsPageControl..TntTabSheet1..TntGroupBox5..ColumnAutoIncCBox..Caption
#. EditorTableForm..TableEditorPnl..GirdOptionPnl..MainPageControl..ColumnTabSheet..ColumnsPageControl..TntTabSheet1..TntGroupBox5..ColumnAutoIncCBox..Caption
#: EditorTable.dfm:859
msgid "Auto Increment"
msgstr "Auto Increment"
# #-#-#-#-# ..\res\windows\po\default.po (PACKAGE VERSION) #-#-#-#-#
# EditorTableForm..TableEditorPnl..GirdOptionPnl..MainPageControl..AdvTableOptionsSheet..AdvancedOptionsScrollBox..VariousGBox..TntLabel20..Caption
#. EditorTableForm..TableEditorPnl..GirdOptionPnl..MainPageControl..AdvTableOptionsSheet..AdvancedOptionsScrollBox..VariousGBox..TntLabel20..Caption
#. MyxTableEditorForm..TablePageControl..TntTabSheet1..AdvancedOptionsSheetPnl..AdvancedOptionsScrollBox..VariousGBox..TntLabel20..Caption
#: EditorTable.dfm:1396
msgid "Auto Increment:"
msgstr "Auto Increment:"
# EditorTableForm..TableEditorPnl..GirdOptionPnl..MainPageControl..AdvTableOptionsSheet..AdvancedOptionsScrollBox..RowOptionsGBox..TntLabel22..Caption
#. EditorTableForm..TableEditorPnl..GirdOptionPnl..MainPageControl..AdvTableOptionsSheet..AdvancedOptionsScrollBox..RowOptionsGBox..TntLabel22..Caption
#. MyxTableEditorForm..TablePageControl..TntTabSheet1..AdvancedOptionsSheetPnl..AdvancedOptionsScrollBox..RowOptionsGBox..TntLabel22..Caption
#: EditorTable.dfm:1136
msgid "Avg Row Len:"
msgstr "Mittl. Zeilenlänge:"
# #-#-#-#-# ..\res\windows\po\default.po (PACKAGE VERSION) #-#-#-#-#
# OptionsForm..OptionPageControl..EditorsTabSheet..GroupBox4..DefaultStorageEngineLU....Items.WideStrings
#. OptionsForm..OptionPageControl..EditorsTabSheet..GroupBox4..DefaultStorageEngineLU....Items.Strings
#: OptionsEditor.dfm:1076
msgid "BDB"
msgstr "BDB"
#: MySQLResultSetFieldViewer.pas:197
msgid "BMP"
msgstr "BMP"
# MySQLResultSetFieldViewerForm..PageControl..BinarySheet..Caption
#. MySQLResultSetFieldViewerForm..PageControl..BinarySheet..Caption
#: MySQLResultSetFieldViewer.dfm:173
msgid "Binary"
msgstr "Binär"
#: Grt.pas:1120
msgid "BuildGrtParamList called with unsupported parameter type."
msgstr "BuildGrtParamList mit nicht unterstütztem Parametertyp aufgerufen"
#: MySQLResultSetFieldViewer.pas:148
msgid "Byte"
msgstr "Byte"
#: MySQLResultSetFieldViewer.pas:136
msgid "Bytes"
msgstr "Byte"
#. ConnectToInstanceForm..BottomPnl..CancelBtn..Caption
#: ConnectToInstance.dfm:480
msgid "C&ancel"
msgstr "&Abbrechen"
#: MyxTableEditorFkVTEdit.pas:637
msgid "CASCADE"
msgstr "CASCADE"
#. MyxTableEditorForm..TablePageControl..ColumnSheet..ColumnsContentPnl..ColumnVST....ClipboardFormats.Strings
#: MyxTableEditor.dfm:439
msgid "CSV"
msgstr "CSV"
# #-#-#-#-# ..\res\windows\po\default.po (PACKAGE VERSION) #-#-#-#-#
# ConnectToInstanceForm..BottomPnl..CancelBtn..Caption
# SchemaSelectionForm..BottomPnl..CancelBtn..Caption
# #-#-#-#-# ..\res\windows\po\default.po (PACKAGE VERSION) #-#-#-#-#
# ConnectToInstanceForm..BottomPnl..CancelBtn..Caption
# EditorSqlForm..BottomPnl..CancelBtn..Caption
# ExOpenDialog..MainPanel..FilesPnl..CancelButton..Caption
# MySQLResultSetFieldViewerForm..PageControl..TextSheet..TextSheetBtnPnl..CancelBtn..Caption
# MySQLResultSetFieldViewerForm..PageControl..ImageSheet..ImageSheetBtnPnl..Cancel2Btn..Caption
# MySQLResultSetFieldViewerForm..PageControl..BinarySheet..TntPanel1..Cancel3Btn..Caption
# MyxConnectionDialogForm..BottomPnl..CancelBtn..Caption
# SchemaSelectionForm..BottomPnl..CancelBtn..Caption
#. EditorSqlForm..BottomPnl..CancelBtn..Caption
#. MySQLResultSetFieldViewerForm..PageControl..TextSheet..TextSheetBtnPnl..CancelBtn..Caption
#. MySQLResultSetFieldViewerForm..PageControl..ImageSheet..ImageSheetBtnPnl..Cancel2Btn..Caption
#. MySQLResultSetFieldViewerForm..PageControl..BinarySheet..TntPanel1..Cancel3Btn..Caption
#. MyxConnectionDialogForm..BottomPnl..CancelBtn..Caption
#. SchemaSelectionForm..BottomPnl..CancelBtn..Caption
#: EditorSql.dfm:58
#: MySQLResultSetFieldViewer.dfm:166
#: MySQLResultSetFieldViewer.dfm:896
#: MyxConnectionDialog.dfm:282
#: SchemaSelection.dfm:111
#: ConnectToInstance.pas:1137
#: MigrationObjSelFilter.pas:572
#: MyxConnectionDialog.pas:1187
#: MyxConnectionDialog.pas:1355
#: MyxEditor.pas:112
#: MyxRoutineEditorFrame.pas:336
#: MyxRoutineEditorFrame.pas:356
#: MyxTabHeader.pas:1587
#: OptionsEditor.pas:556
#: SchemataTreeView.pas:1499
#: SchemataTreeView.pas:2248
#: SchemataTreeView.pas:2427
#: TabHeader.pas:1319
msgid "Cancel"
msgstr "Abbrechen"
#: SchemataTreeView.pas:2258
msgid "Cannot Drop MySQL Schema"
msgstr "Kann MySQL-Schema nicht löschen."
#: EditorTable.pas:814
msgid "Cannot fetch charset information."
msgstr "Kann Zeichensatzinformation nicht holen."
#. Read list of all known column datatypes.
#: Options.pas:740
msgid "Cannot fetch datatype information."
msgstr "Kann Datentypinformation nicht holen."
# Get current table
#. Get current table
#: EditorTable.pas:3081
msgid "Cannot fetch table information for diff."
msgstr "Kann Tabelleninformation für Vergleich nicht holen."
#: EditorTable.pas:829
msgid "Cannot fetch table information."
msgstr "Kann Tabelleninformation nicht holen."
#: EditorTable.pas:3089
msgid "Cannot generate the diff between the edited and the existing table."
msgstr "Kann bearbeitete und bestehende Tabelle nicht vergleichen."
# Translation needed?
#: EditorTable.pas:520
msgid "Cascade"
msgstr "CASCADE"
# TextSearchForm..PageControl..OptionsTabSheet..OptionPnl..OptionsGBox..CaseSensitiveCBox..Caption
#. TextSearchForm..PageControl..OptionsTabSheet..OptionPnl..OptionsGBox..CaseSensitiveCBox..Caption
#: TextSearch.dfm:252
msgid "Case sensitive"
msgstr "Groß-/Kleinschreibung"
# #-#-#-#-# ..\res\windows\po\default.po (PACKAGE VERSION) #-#-#-#-#
# OptionsForm..Panel1..Caption
#. OptionsForm..Panel1..Caption
#: OptionsEditor.dfm:1164
msgid "Category"
msgstr "Kategorie"
# EditorTableForm..TableEditorPnl..GirdOptionPnl..MainPageControl..TabSheet2..TableOptionScrollBox..TntGroupBox6..Caption
#. EditorTableForm..TableEditorPnl..GirdOptionPnl..MainPageControl..TabSheet2..TableOptionScrollBox..TntGroupBox6..Caption
#: EditorTable.dfm:935
msgid "Character Set"
msgstr "Zeichensatz"
# EditorTableForm..TableEditorPnl..GirdOptionPnl..MainPageControl..TabSheet2..TableOptionScrollBox..TntGroupBox6..TableCharsetCaptionLbl..Caption
#. EditorTableForm..TableEditorPnl..GirdOptionPnl..MainPageControl..TabSheet2..TableOptionScrollBox..TntGroupBox6..TableCharsetCaptionLbl..Caption
#: EditorTable.dfm:942
msgid "Charset:"
msgstr "Zeichensatz:"
# OptionsForm..OptionPageControl..GeneralTabSheet..GroupBox2..ApplicationFontBtn..Caption
# OptionsForm..OptionPageControl..GeneralTabSheet..GroupBox2..DataFontBtn..Caption
# OptionsForm..OptionPageControl..GeneralTabSheet..GroupBox2..CodeFontBtn..Caption
# OptionsForm..OptionPageControl..GeneralTabSheet..GroupBox2..ApplicationFontBtn..Caption
# OptionsForm..OptionPageControl..GeneralTabSheet..GroupBox2..DataFontBtn..Caption
# OptionsForm..OptionPageControl..GeneralTabSheet..GroupBox2..CodeFontBtn..Caption
#. OptionsForm..OptionPageControl..GeneralTabSheet..GroupBox2..ApplicationFontBtn..Caption
#. OptionsForm..OptionPageControl..GeneralTabSheet..GroupBox2..DataFontBtn..Caption
#. OptionsForm..OptionPageControl..GeneralTabSheet..GroupBox2..CodeFontBtn..Caption
#: OptionsEditor.dfm:462
msgid "Choose ..."
msgstr "Auswahl..."
#: MyxConnectionDialog.pas:1456
msgid "Choose from the list of available drivers for this RDBMS"
msgstr "Wählen Sie aus der Liste der für dieses RDBMS verfügbaren Treiber."
# MigrationObjMapDetailFrame..ObjectSelGBox..DetailsPnl..TntLabel5....AutoSize
#. MigrationObjMapDetailFrame..ObjectSelGBox..DetailsPnl..TntLabel5....AutoSize
#: MigrationObjMapDetail.dfm:88
msgid "Choose this parameter set for tables that contain lots of data which does not need transaction safety. This method is ideal for logging information or statistical data."
msgstr "Wählen Sie diesen Satz von Einstellungen für Tabellen, die viele Daten ohne Bedarf für Transaktionssicherheit enthalten. Diese Methode ist ideal für Protokollinformationen oder statistische Daten."
# EditorTableForm..TableEditorPnl..GirdOptionPnl..MainPageControl..AdvTableOptionsSheet..AdvancedOptionsScrollBox..TntGroupBox4..ChunkSizeCaptionEd..Caption
# EditorTableForm..TableEditorPnl..GirdOptionPnl..MainPageControl..AdvTableOptionsSheet..AdvancedOptionsScrollBox..RaidOptionsGBox..ChunkSizeCaptionEd..Caption
#. EditorTableForm..TableEditorPnl..GirdOptionPnl..MainPageControl..AdvTableOptionsSheet..AdvancedOptionsScrollBox..RaidOptionsGBox..ChunkSizeCaptionEd..Caption
#: EditorTable.dfm:1284
msgid "Chunksize:"
msgstr "Partitionsgröße:"
#. ConnectToInstanceForm..BottomPnl..ClearFieldsBtn..Caption
#: ConnectToInstance.dfm:492
msgid "Clea&r"
msgstr "&Löschen"
# ConnectToInstanceForm..BottomPnl..ClearFieldsBtn..Caption
# ConnectToInstanceForm..BottomPnl..ClearFieldsBtn..Caption
# MyxConnectionDialogForm..BottomPnl..ClearFieldsBtn..Caption
# ConnectToInstanceForm..BottomPnl..ClearFieldsBtn..Caption
# MyxConnectionDialogForm..BottomPnl..ClearFieldsBtn..Caption
#. MyxConnectionDialogForm..BottomPnl..ClearFieldsBtn..Caption
#: MyxConnectionDialog.dfm:294
msgid "Clear"
msgstr "Löschen"
#: MySQLResultSetControls.pas:3677
msgid "Clear Messages"
msgstr "Meldungen löschen"
# ConnectToInstanceForm..BottomPnl..CancelBtn..Hint
# MyxConnectionDialogForm..BottomPnl..CancelBtn..Hint
#. ConnectToInstanceForm..BottomPnl..CancelBtn..Hint
#. MyxConnectionDialogForm..BottomPnl..CancelBtn..Hint
#: ConnectToInstance.dfm:478
msgid "Click this button to cancel the connection"
msgstr "Klicken Sie hier, um die Verbindung abzubrechen."
#: ConnectToInstance.pas:1138
msgid "Click this button to cancel the connection."
msgstr "Klicken Sie auf diese Taste, um die Verbindungsaufnahme abzubrechen."
# ConnectToInstanceForm..BottomPnl..ClearFieldsBtn..Hint
# MyxConnectionDialogForm..BottomPnl..ClearFieldsBtn..Hint
#. ConnectToInstanceForm..BottomPnl..ClearFieldsBtn..Hint
#. MyxConnectionDialogForm..BottomPnl..ClearFieldsBtn..Hint
#: ConnectToInstance.dfm:491
msgid "Click this button to clear all fields"
msgstr "Klicken Sie hier, um alle Felder zu löschen."
# ConnectToInstanceForm..BottomPnl..OKBtn..Hint
# MyxConnectionDialogForm..BottomPnl..OKBtn..Hint
#. ConnectToInstanceForm..BottomPnl..OKBtn..Hint
#. MyxConnectionDialogForm..BottomPnl..OKBtn..Hint
#: ConnectToInstance.dfm:464
msgid "Click this button to connect"
msgstr "Klicken Sie hier, um die Verbindung herzustellen."
# EditorTableForm..TableEditorPnl..BottomPnl..CloseBtn..Caption
# MyxRoutineGroupEditorForm..BottomPnl..CancelBtn..Caption
# MyxSchemaEditorForm..BottomPnl..CancelBtn..Caption
# MyxTableEditorForm..DockPanel..BottomPnl..CancelBtn..Caption
# MyxViewEditorForm..BottomPnl..CancelBtn..Caption
# OptionsForm..CloseBtn..Caption
# TextSearchForm..PageControl..SearchTabSheet..CloseBtn..Caption
# TextSearchForm..PageControl..ReplaceTabSheet..Close2Btn..Caption
#. MyxRoutineGroupEditorForm..BottomPnl..CancelBtn..Caption
#. MyxRoutineGroupEditorForm..TntActionList1..CloseAction..Caption
#. MyxSchemaEditorForm..BottomPnl..CancelBtn..Caption
#. MyxTableEditorForm..TntActionList..CloseAction..Caption
#. MyxViewEditorForm..TntActionList1..CloseAction..Caption
#. OptionsForm..CloseBtn..Caption
#. TextSearchForm..PageControl..SearchTabSheet..CloseBtn..Caption
#. TextSearchForm..PageControl..ReplaceTabSheet..Close2Btn..Caption
#: MyxRoutineGroupEditor.dfm:56
#: MyxSchemaEditor.dfm:117
#: MyxTableEditor.dfm:1875
#: MyxViewEditor.dfm:849
#: OptionsEditor.dfm:1122
#: TextSearch.dfm:79
#: TextSearch.dfm:149
#: MyxConnectionDialog.pas:1355
msgid "Close"
msgstr "Schließen"
# MyxTabHeaderFrame..TabHeaderPopupMenu..CloseTabsheetMI..Caption
# TabHeaderFrame..TabHeaderPopupMenu..CloseTabsheetMI..Caption
#. MyxTabHeaderFrame..TabHeaderPopupMenu..CloseTabsheetMI..Caption
#. TabHeaderFrame..TabHeaderPopupMenu..CloseTabsheetMI..Caption
#: MyxTabHeader.dfm:22
msgid "Close Tabsheet"
msgstr "Registerkarte schließen"
# OptionsForm..OptionPageControl..GeneralTabSheet..GroupBox2..TntLabel2..Caption
#. OptionsForm..OptionPageControl..GeneralTabSheet..GroupBox2..TntLabel2..Caption
#: OptionsEditor.dfm:399
msgid "Code Font:"
msgstr "Code-Zeichens.:"
# EditorTableForm..TableEditorPnl..GirdOptionPnl..MainPageControl..TabSheet2..TableOptionScrollBox..TntGroupBox6..TableCollationDescLbl..Caption
#. EditorTableForm..TableEditorPnl..GirdOptionPnl..MainPageControl..TabSheet2..TableOptionScrollBox..TntGroupBox6..TableCollationDescLbl..Caption
#: EditorTable.dfm:969
msgid "Collation method that is used to compare text and sort columns."
msgstr "Zeichensortierfolge für Textvergleiche und Spaltensortierungen"
# #-#-#-#-# ..\res\windows\po\default.po (PACKAGE VERSION) #-#-#-#-#
# EditorTableForm..TableEditorPnl..GirdOptionPnl..MainPageControl..TabSheet2..TableOptionScrollBox..TntGroupBox6..TableCollationCaptionLbl..Caption
# MyxSchemaEditorForm..HeaderPnl..TntLabel1..Caption
# MyxTableEditorForm..DockPanel..HeaderPnl..TntLabel1..Caption
# MyxTableEditorForm..DockPanel..TablePageControl..ColumnSheet..ColumnsDetailsPnl..ColumnDetailsGroupBox..TntLabel37..Caption
#. EditorTableForm..TableEditorPnl..GirdOptionPnl..MainPageControl..TabSheet2..TableOptionScrollBox..TntGroupBox6..TableCollationCaptionLbl..Caption
#. MyxSchemaEditorForm..HeaderPnl..TntLabel1..Caption
#. MyxTableEditorForm..TablePageControl..TableSheet..TableSheetPnl..TntLabel1..Caption
#. MyxTableEditorForm..TablePageControl..ColumnSheet..ColumnsContentPnl..ColumnsDetailsPnl..ColumnDetailsGroupBox..TntLabel37..Caption
#: EditorTable.dfm:949
#: MyxTableEditor.dfm:321
msgid "Collation:"
msgstr "Sortierfolge:"
# #-#-#-#-# ..\res\windows\po\default.po (PACKAGE VERSION) #-#-#-#-#
# EditorTableForm..TableEditorPnl..GirdOptionPnl..MainPageControl..ColumnTabSheet..ColumnsPageControl..TntTabSheet8..TntGroupBox2..FKColsVST......WideText
# MyxTableEditorForm..DockPanel..TablePageControl..IndicesSheet..IndexColumnVST......WideText
# MyxTableEditorForm..DockPanel..TablePageControl..ForeignKeySheet..ForeignKeyColumnVST......WideText
#. EditorTableForm..TableEditorPnl..GirdOptionPnl..MainPageControl..ColumnTabSheet..ColumnsPageControl..FKTabsheet..TntGroupBox2..FKColsVST......WideText
#. MyxTableEditorForm..TablePageControl..IndicesSheet..IndexContentPnl..IndexColumnVST......WideText
#. MyxTableEditorForm..TablePageControl..ForeignKeySheet..FkSheetPnl..ForeignKeyColumnVST......WideText
#: EditorTable.dfm:650
msgid "Column"
msgstr "Spalte"
# EditorTableForm..TableEditorPnl..GirdOptionPnl..MainPageControl..ColumnTabSheet..ColumnsPageControl..TntTabSheet1..TntLabel36..Caption
#. EditorTableForm..TableEditorPnl..GirdOptionPnl..MainPageControl..ColumnTabSheet..ColumnsPageControl..TntTabSheet1..TntLabel36..Caption
#: EditorTable.dfm:754
msgid "Column Charset:"
msgstr "Zeichensatz:"
# EditorTableForm..TableEditorPnl..GirdOptionPnl..MainPageControl..ColumnTabSheet..ColumnsPageControl..TntTabSheet1..TntLabel37..Caption
#. EditorTableForm..TableEditorPnl..GirdOptionPnl..MainPageControl..ColumnTabSheet..ColumnsPageControl..TntTabSheet1..TntLabel37..Caption
#: EditorTable.dfm:761
msgid "Column Collate:"
msgstr "Sortierfolge:"
# #-#-#-#-# ..\res\windows\po\default.po (PACKAGE VERSION) #-#-#-#-#
# EditorTableForm..TableEditorPnl..GirdOptionPnl..MainPageControl..ColumnTabSheet..ColumnsPageControl..TntTabSheet1..Caption
# MyxTableEditorForm..DockPanel..TablePageControl..ColumnSheet..ColumnsDetailsPnl..ColumnDetailsGroupBox..Caption
#. EditorTableForm..TableEditorPnl..GirdOptionPnl..MainPageControl..ColumnTabSheet..ColumnsPageControl..TntTabSheet1..Caption
#. MyxTableEditorForm..TablePageControl..ColumnSheet..ColumnsContentPnl..ColumnsDetailsPnl..ColumnDetailsGroupBox..Caption
#: EditorTable.dfm:710
msgid "Column Details"
msgstr "Spaltendetails"
# #-#-#-#-# ..\res\windows\po\default.po (PACKAGE VERSION) #-#-#-#-#
# EditorTableForm..TableEditorPnl..GirdOptionPnl..MainPageControl..ColumnTabSheet..ColumnVST......WideText
# MyxTableEditorForm..DockPanel..TablePageControl..ColumnSheet..ColumnVST......WideText
#. EditorTableForm..TableEditorPnl..GirdOptionPnl..MainPageControl..ColumnTabSheet..ColumnVST......WideText
#. MyxTableEditorForm..TablePageControl..ColumnSheet..ColumnsContentPnl..ColumnVST......WideText
#: EditorTable.dfm:245
msgid "Column Name"
msgstr "Spaltenname"
# #-#-#-#-# ..\res\windows\po\default.po (PACKAGE VERSION) #-#-#-#-#
# EditorTableForm..TableEditorPnl..GirdOptionPnl..MainPageControl..ColumnTabSheet..ColumnsPageControl..TntTabSheet1..TntGroupBox5..Caption
#. EditorTableForm..TableEditorPnl..GirdOptionPnl..MainPageControl..ColumnTabSheet..ColumnsPageControl..TntTabSheet1..TntGroupBox5..Caption
#: EditorTable.dfm:834
msgid "Column Options"
msgstr "Spalteneinstellungen"
# MyxTableEditorForm..DockPanel..TablePageControl..ColumnSheet..Caption
# SchemataFrame..SchemaSearchPopupMenu..CustomMI..ColumnsSubMI..Caption
#. MyxTableEditorForm..TablePageControl..ColumnSheet..Caption
#. SchemataFrame..SchemaSearchPopupMenu..CustomMI..ColumnsSubMI..Caption
#: MyxTableEditor.dfm:252
msgid "Columns"
msgstr "Spalten"
# #-#-#-#-# ..\res\windows\po\default.po (PACKAGE VERSION) #-#-#-#-#
# EditorTableForm..TableEditorPnl..GirdOptionPnl..MainPageControl..ColumnTabSheet..Caption
#. EditorTableForm..TableEditorPnl..GirdOptionPnl..MainPageControl..ColumnTabSheet..Caption
#: EditorTable.dfm:191
msgid "Columns and Indices"
msgstr "Spalten und Indizes"
# SchemataFrame..SchemaSearchPopupMenu..SearchColumnsMI..Caption
#. SchemataFrame..SchemaSearchPopupMenu..SearchColumnsMI..Caption
#: SchemataTreeView.dfm:120
msgid "Columns/Indices"
msgstr "Spalten/Indizes"
# #-#-#-#-# ..\res\windows\po\default.po (PACKAGE VERSION) #-#-#-#-#
# EditorTableForm..TableEditorPnl..GirdOptionPnl..MainPageControl..ColumnTabSheet..ColumnVST......WideText
# MyxRoutineGroupEditorForm..PageControl..CommentSheet..Caption
# MyxSchemaEditorForm..PageControl..CommentTabSheet..Caption
# MyxTableEditorForm..DockPanel..TablePageControl..ColumnSheet..ColumnVST......WideText
# MyxTableEditorForm..DockPanel..TablePageControl..IndicesSheet..IndexVST......WideText
# MyxTableEditorForm..DockPanel..TablePageControl..IndicesSheet..IndexColumnVST......WideText
# MyxTableEditorForm..DockPanel..TablePageControl..ForeignKeySheet..ForeignKeyVST......WideText
# MyxTableEditorForm..DockPanel..TablePageControl..CommentTabSheet..Caption
# MyxViewEditorForm..PageControl..CommentTabSheet..Caption
#. EditorTableForm..TableEditorPnl..GirdOptionPnl..MainPageControl..ColumnTabSheet..ColumnVST......WideText
#. MyxRoutineGroupEditorForm..RoutinePageControl..CommentSheet..Caption
#. MyxSchemaEditorForm..PageControl..CommentTabSheet..Caption
#. MyxTableEditorForm..TablePageControl..ColumnSheet..ColumnsContentPnl..ColumnVST......WideText
#. MyxTableEditorForm..TablePageControl..IndicesSheet..IndexContentPnl..IndexVST......WideText
#. MyxTableEditorForm..TablePageControl..IndicesSheet..IndexContentPnl..IndexColumnVST......WideText
#. MyxTableEditorForm..TablePageControl..ForeignKeySheet..FkSheetPnl..ForeignKeyVST......WideText
#. MyxViewEditorForm..ViewPageControl..CommentTabSheet..Caption
#: EditorTable.dfm:278
#: MyxTableEditor.dfm:522
#: MyxTableEditor.dfm:626
#: MyxTableEditor.dfm:680
#: MyxTableEditor.dfm:762
#: MyxViewEditor.dfm:621
msgid "Comment"
msgstr "Kommentar"
# #-#-#-#-# ..\res\windows\po\default.po (PACKAGE VERSION) #-#-#-#-#
# EditorTableForm..TableEditorPnl..HeaderPnl..TntLabel3..Caption
# EditorTableForm..TableEditorPnl..GirdOptionPnl..MainPageControl..ColumnTabSheet..ColumnsPageControl..TntTabSheet1..TntLabel8..Caption
# MyxTableEditorForm..DockPanel..TablePageControl..ColumnSheet..ColumnsDetailsPnl..ColumnDetailsGroupBox..TntLabel8..Caption
#. EditorTableForm..TableEditorPnl..HeaderPnl..TntLabel3..Caption
#. EditorTableForm..TableEditorPnl..GirdOptionPnl..MainPageControl..ColumnTabSheet..ColumnsPageControl..TntTabSheet1..TntLabel8..Caption
#. MyxRoutineGroupEditorForm..RoutinePageControl..CommentSheet..CommentSheetPnl..TntLabel2..Caption
#. MyxTableEditorForm..TablePageControl..TableSheet..TableSheetPnl..TntLabel2..Caption
#. MyxTableEditorForm..TablePageControl..ColumnSheet..ColumnsContentPnl..ColumnsDetailsPnl..ColumnDetailsGroupBox..TntLabel8..Caption
#: EditorTable.dfm:67
#: MyxTableEditor.dfm:165
#: MyxTableEditor.dfm:336
msgid "Comment:"
msgstr "Kommentar:"
#. MyxViewEditorForm..ViewPageControl..CommentTabSheet..CommentSheetPnl..TntLabel2..Caption
#: MyxViewEditor.dfm:776
msgid "Comments:"
msgstr "Kommentare:"
#: MyxTableEditor.pas:624
msgid "Compact"
msgstr "Kompakt"
#: EditorTable.pas:512
msgid "Compressed"
msgstr "Komprimiert"
#: MyxEditor.pas:111
msgid "Confirm"
msgstr "Bestätigen"
#: EditorTable.pas:3101
msgid "Confirm Table Edit"
msgstr "Tabellenänderung bestätigen"
# MyxConnectionDialogForm..Caption
#. MyxConnectionDialogForm..Caption
#: MyxConnectionDialog.dfm:5
msgid "Connect to Database"
msgstr "Mit Datenbank verbinden"
# #-#-#-#-# ..\res\windows\po\default.po (PACKAGE VERSION) #-#-#-#-#
# ConnectToInstanceForm..ConnectToHostPnl..Caption
# #-#-#-#-# ..\res\windows\po\default.po (PACKAGE VERSION) #-#-#-#-#
# ConnectToInstanceForm..ConnectToHostPnl..Caption
# #-#-#-#-# ..\res\windows\po\default.po (PACKAGE VERSION) #-#-#-#-#
# ConnectToInstanceForm..ConnectToHostPnl..Caption
#. ConnectToInstanceForm..ConnectToHostPnl..Caption
#: ConnectToInstance.dfm:513
msgid "Connect to MySQL Server Instance"
msgstr "Mit MySQL-Serverinstanz verbinden"
# Ask the user if he wants to create the given schema
#. Ask the user if he wants to create the given schema
#: ConnectToInstance.pas:977
msgid "Connection Dialog - Default Schema Does Not Exist"
msgstr "Verbindungsdialog - Vorgabeschema existiert nicht."
#: ConnectToInstance.pas:945
msgid "Connection Dialog - MySQL 3.x Server Unsupported"
msgstr "Verbindungsdialog - MySQL-Serverversion 3.x wird nicht unterstützt."
#: ConnectToInstance.pas:959
msgid "Connection Dialog - No Default Schema Specified"
msgstr "Verbindungsdialog - Kein Vorgabeschema angegeben"
# MyxConnectionDialogForm..ParamsMainPnl..ConnectGBox..Caption
# OptionsForm..OptionPageControl..ConnectionsTabSheet..ConnectionPageControl..ConnGeneralTabSheet..Caption
#. MyxConnectionDialogForm..ParamsMainPnl..ConnectGBox..Caption
#. OptionsForm..OptionPageControl..ConnectionsTabSheet..ConnectionPageControl..ConnGeneralTabSheet..Caption
#: MyxConnectionDialog.dfm:126
msgid "Connection Parameters"
msgstr "Verbindungsparameter"
# MyxConnectionDialogForm..ConnTypeMainPnl..ConnTypeGBox..Caption
#. MyxConnectionDialogForm..ConnTypeMainPnl..ConnTypeGBox..Caption
#: MyxConnectionDialog.dfm:328
msgid "Connection Type"
msgstr "Verbindungstyp"
#: MySQLConnection.pas:456
msgid "Connection not found"
msgstr "Verbindung nicht gefunden"
# #-#-#-#-# ..\res\windows\po\default.po (PACKAGE VERSION) #-#-#-#-#
# ConnectToInstanceForm..ConnectToHostPnl..ConnectionLbl..Caption
# OptionsForm..OptionPageControl..ConnectionsTabSheet..ConnectionPageControl..ConnGeneralTabSheet..ConnectionLbl..Caption
# #-#-#-#-# ..\res\windows\po\default.po (PACKAGE VERSION) #-#-#-#-#
# OptionsForm..OptionPageControl..ConnectionsTabSheet..ConnectionPageControl..ConnGeneralTabSheet..ConnectionLbl..Caption
#. EditorTableForm..TableEditorPnl..GirdOptionPnl..MainPageControl..AdvTableOptionsSheet..AdvancedOptionsScrollBox..TntGroupBox3..TntLabel18..Caption
#. OptionsForm..OptionPageControl..ConnectionsTabSheet..ConnectionPageControl..ConnGeneralTabSheet..ConnectionLbl..Caption
#: EditorTable.dfm:1554
msgid "Connection:"
msgstr "Verbindung:"
# #-#-#-#-# ..\res\windows\po\default.po (PACKAGE VERSION) #-#-#-#-#
# OptionsForm..OptionPageControl..ConnectionsTabSheet..Caption
#. OptionsForm..OptionPageControl..ConnectionsTabSheet..Caption
#: OptionsEditor.dfm:666
msgid "Connections"
msgstr "Verbindungen"
#: MyxError.pas:250
msgid "Continue"
msgstr "Fortfahren"
#. SchemataFrame..SchemaTreeViewPopupMenu..CopyAssetSQLMI..Caption
#: SchemataTreeView.dfm:225
msgid "Copy CREATE statement to Clipboard"
msgstr "Kopiere CREATE Anweisung ins Clipboard"
#: MySQLResultSetControls.pas:1076
msgid "Copy Column Names"
msgstr "Spaltennamen kopieren"
#: MySQLResultSetControls.pas:3672
msgid "Copy Message Text"
msgstr "Meldungstext kopieren"
#: OptionsEditor.pas:720
msgid "Copy of "
msgstr "Kopie von "
#. MyxTableEditorForm..TntActionList..CopyToClipboardAction..Caption
#: MyxTableEditor.dfm:1880
msgid "Copy selected columns to clipboard"
msgstr "Kopiere ausgewählte Spalten in die Zwischenablage"
#: MySQLConnection.pas:1310
msgid "Could not connect to embedded server."
msgstr "Konnte nicht mit eingebettetem Server verbinden."
#: MySQLConnection.pas:526
msgid "Could not connect to the specified host."
msgstr "Konnte nicht mit dem angegebenen Host verbinden."
#. ignore ConnectionResult -10 after warning
#: ConnectToInstance.pas:855
msgid ""
"Could not connect to the specified instance. \n"
"\n"
"MySQL Error Number %d\n"
"%s\n"
"\n"
"If you want to check the network connection, please click the Ping button."
msgstr ""
"Konnte keine Verbindung zur angegebenen Instanz aufnehmen. \n"
"\n"
"MySQL Fehlernummer ist %d\n"
"%s\n"
"\n"
"Wenn Sie die Netzwerkverbindung testen wollen, dann klicken Sie bitte die Pingtaste."
#: SchemataTreeView.pas:956
msgid "Could not fetch catalogs/schemata data."
msgstr "Konnte Katalog-/Schemadaten nicht holen."
#: SchemataTreeView.pas:1437
msgid "Could not fetch schema indices."
msgstr "Konnte Schemaindices nicht holen."
#: SchemataTreeView.pas:1229
msgid "Could not fetch schema tables."
msgstr "Konnte Schematabellen nicht holen."
#: SchemataTreeView.pas:1232
msgid "Could not fetch stored procedures."
msgstr "Konnte gespeicherte Prozeduren nicht holen."
#: Grt.pas:795
msgid "Could not initialize the GRT Environment. A timeout occured during the initalization."
msgstr "Konnte GRT-Umgebung nicht initialisieren. Bei der Initialisierung wurde die Zeit überschritten."
#: Grt.pas:2402
msgid "Could not register Delphi modules."
msgstr "Konnte Delphi-Module nicht registrieren."
#: Grt.pas:2428
msgid "Could not register Java module loader."
msgstr "Konnte den Java-Modul-Lader nicht registrieren."
#: Grt.pas:2468
msgid "Could not register Lua module loader."
msgstr "Konnte den Lua-Modul-Lader nicht registrieren."
#: Grt.pas:2450
msgid "Could not register PHP module loader."
msgstr "Konnte den PHP-Modul-Lader nicht registrieren."
#: Grt.pas:2484
msgid "Could not register Python module loader."
msgstr "Konnte Python-Modul-Loader nicht registrieren."
#: ConnectToInstance.pas:723
msgid "Could not resolve hostname"
msgstr "Konnte den Hostnamen nicht auflösen"
# SchemataFrame..SchemaTreeViewPopupMenu..CreateNewStoredProcedureMI..Caption
#. SchemataFrame..SchemaTreeViewPopupMenu..CreateNewStoredProcedureMI..Caption
#: SchemataTreeView.dfm:258
msgid "Create New Procedure / Function"
msgstr "Neue Prozedur/Funktion anlegen"
# SchemataFrame..SchemaTreeViewPopupMenu..CreateNewSchemaMI..Caption
#. SchemataFrame..SchemaTreeViewPopupMenu..CreateNewSchemaMI..Caption
#: SchemataTreeView.dfm:237
msgid "Create New Schema"
msgstr "Neues Schema anlegen"
# SchemataFrame..SchemaTreeViewPopupMenu..CreateNewTableMI..Caption
#. SchemataFrame..SchemaTreeViewPopupMenu..CreateNewTableMI..Caption
#: SchemataTreeView.dfm:244
msgid "Create New Table"
msgstr "Neue Tabelle anlegen"
# SchemataFrame..SchemaTreeViewPopupMenu..CreateNewViewMI..Caption
#. SchemataFrame..SchemaTreeViewPopupMenu..CreateNewViewMI..Caption
#: SchemataTreeView.dfm:251
msgid "Create New View"
msgstr "Neue View anlegen"
#: SchemataTreeView.pas:1498
msgid "Create new Schema"
msgstr "Neues Schema anlegen"
#. build relationships
#: MyxTableEditor.pas:3783
msgid "Creating relationships from foreign keys"
msgstr "Erzeuge Beziehungen aus den Fremdschlüsseln"
# #-#-#-#-# ..\res\windows\po\default.po (PACKAGE VERSION) #-#-#-#-#
# AboutForm..CreditsBtn..Caption
#. AboutForm..CreditsBtn..Caption
#: About.dfm:115
msgid "Credits"
msgstr "Danksagung"
#: MyxError.pas:246
msgid "Critical Error"
msgstr "Kritischer Fehler"
# SchemataFrame..SchemaSearchPopupMenu..CustomMI..Caption
#. SchemataFrame..SchemaSearchPopupMenu..CustomMI..Caption
#: SchemataTreeView.dfm:134
msgid "Custom Selection"
msgstr "Freie Auswahl"
# #-#-#-#-# ..\res\windows\po\default.po (PACKAGE VERSION) #-#-#-#-#
# EditorTableForm..TableEditorPnl..GirdOptionPnl..MainPageControl..AdvTableOptionsSheet..AdvancedOptionsScrollBox..StorageOptionsGBox..TntLabel27..Caption
#. EditorTableForm..TableEditorPnl..GirdOptionPnl..MainPageControl..AdvTableOptionsSheet..AdvancedOptionsScrollBox..StorageOptionsGBox..TntLabel27..Caption
#. MyxTableEditorForm..TablePageControl..TntTabSheet1..AdvancedOptionsSheetPnl..AdvancedOptionsScrollBox..StorageOptionsGBox..TntLabel27..Caption
#: EditorTable.dfm:1075
msgid "Data Directory:"
msgstr "Datenverz.:"
# OptionsForm..OptionPageControl..GeneralTabSheet..GroupBox2..TntLabel1..Caption
#. OptionsForm..OptionPageControl..GeneralTabSheet..GroupBox2..TntLabel1..Caption
#: OptionsEditor.dfm:391
msgid "Data Font:"
msgstr "Für Daten:"
# MigrationObjMapDetailFrame..ObjectSelGBox..DetailsPnl..TntRadioButton1..Caption
# MigrationObjMapDetailFrame..ObjectSelGBox..DetailsPnl..TntRadioButton1..Caption
#. MigrationObjMapDetailFrame..ObjectSelGBox..DetailsPnl..TntRadioButton1..Caption
#: MigrationObjMapDetail.dfm:121
msgid "Data consistancy / multilanguage"
msgstr "Datenkonsistenz/mehrsprachig"
# MyxConnectionDialogForm..ConnTypeMainPnl..ConnTypeGBox..ConnTypePnl..RdbmsLbl..Caption
#. MyxConnectionDialogForm..ConnTypeMainPnl..ConnTypeGBox..ConnTypePnl..RdbmsLbl..Caption
#: MyxConnectionDialog.dfm:352
msgid "Database System:"
msgstr "Datenbanksystem:"
# EditorTableForm..TableEditorPnl..HeaderPnl..TntLabel2..Caption
#. EditorTableForm..TableEditorPnl..HeaderPnl..TntLabel2..Caption
#: EditorTable.dfm:59
msgid "Database:"
msgstr "Datenbank:"
# EditorTableForm..TableEditorPnl..GirdOptionPnl..MainPageControl..ColumnTabSheet..ColumnVST......WideText
# MyxTableEditorForm..DockPanel..TablePageControl..ColumnSheet..ColumnVST......WideText
#. EditorTableForm..TableEditorPnl..GirdOptionPnl..MainPageControl..ColumnTabSheet..ColumnVST......WideText
#. MyxTableEditorForm..TablePageControl..ColumnSheet..ColumnsContentPnl..ColumnVST......WideText
#: EditorTable.dfm:250
msgid "Datatype"
msgstr "Datentyp"
# EditorTableForm..TableEditorPnl..GirdOptionPnl..MainPageControl..ColumnTabSheet..ColumnsPageControl..TntTabSheet1..TntLabel5..Caption
# MyxTableEditorForm..DockPanel..TablePageControl..ColumnSheet..ColumnsDetailsPnl..ColumnDetailsGroupBox..TntLabel5..Caption
#. EditorTableForm..TableEditorPnl..GirdOptionPnl..MainPageControl..ColumnTabSheet..ColumnsPageControl..TntTabSheet1..TntLabel5..Caption
#. MyxTableEditorForm..TablePageControl..ColumnSheet..ColumnsContentPnl..ColumnsDetailsPnl..ColumnDetailsGroupBox..TntLabel5..Caption
#: EditorTable.dfm:726
msgid "Datatype:"
msgstr "Datentyp:"
# OptionsForm..OptionPageControl..EditorsTabSheet..GroupBox4..Label10..Caption
# OptionsForm..OptionPageControl..EditorsTabSheet..GroupBox4..Label10..Caption
#. OptionsForm..OptionPageControl..EditorsTabSheet..GroupBox4..Label10..Caption
#: OptionsEditor.dfm:951
msgid "Def. data type:"
msgstr "Vorgabe-Datentyp:"
# #-#-#-#-# ..\res\windows\po\default.po (PACKAGE VERSION) #-#-#-#-#
# Fill Charsets
# #-#-#-#-# ..\res\windows\po\default.po (PACKAGE VERSION) #-#-#-#-#
# Fill Charsets
#: EditorTable.pas:504
#: EditorTable.pas:1510
#: EditorTable.pas:1511
#: MyxTableEditor.pas:605
#: MyxTableEditor.pas:614
msgid "Default"
msgstr "Vorgabe"
#. ConnectToInstanceForm..ConnectToHostPnl..SchemataEdLbl..Caption
#: ConnectToInstance.dfm:566
msgid "Default &Schema:"
msgstr "&Standardschema:"
# OptionsForm..OptionPageControl..GeneralTabSheet..GroupBox2..Label2..Caption
#. OptionsForm..OptionPageControl..GeneralTabSheet..GroupBox2..Label2..Caption
#: OptionsEditor.dfm:383
msgid "Default Font:"
msgstr "Standardschrift:"
# #-#-#-#-# ..\res\windows\po\default.po (PACKAGE VERSION) #-#-#-#-#
# EditorTableForm..TableEditorPnl..GirdOptionPnl..MainPageControl..ColumnTabSheet..ColumnVST......WideText
# MyxTableEditorForm..DockPanel..TablePageControl..ColumnSheet..ColumnVST......WideText
#. EditorTableForm..TableEditorPnl..GirdOptionPnl..MainPageControl..ColumnTabSheet..ColumnVST......WideText
#. MyxTableEditorForm..TablePageControl..ColumnSheet..ColumnsContentPnl..ColumnVST......WideText
#: EditorTable.dfm:272
msgid "Default Value"
msgstr "Vorgabewert"
# #-#-#-#-# ..\res\windows\po\default.po (PACKAGE VERSION) #-#-#-#-#
# EditorTableForm..TableEditorPnl..GirdOptionPnl..MainPageControl..ColumnTabSheet..ColumnsPageControl..TntTabSheet1..TntLabel7..Caption
#. EditorTableForm..TableEditorPnl..GirdOptionPnl..MainPageControl..ColumnTabSheet..ColumnsPageControl..TntTabSheet1..TntLabel7..Caption
#: EditorTable.dfm:740
msgid "Default Value:"
msgstr "Vorgabewert:"
# OptionsForm..OptionPageControl..EditorsTabSheet..GroupBox4..TntLabel11..Caption
#. OptionsForm..OptionPageControl..EditorsTabSheet..GroupBox4..TntLabel11..Caption
#: OptionsEditor.dfm:960
msgid "Default storage engine"
msgstr "Vorgabe-Speicher-Engine"
# MyxTableEditorForm..DockPanel..TablePageControl..ColumnSheet..ColumnsDetailsPnl..ColumnDetailsGroupBox..TntLabel7..Caption
#. MyxTableEditorForm..TablePageControl..ColumnSheet..ColumnsContentPnl..ColumnsDetailsPnl..ColumnDetailsGroupBox..TntLabel7..Caption
#: MyxTableEditor.dfm:329
msgid "Default:"
msgstr "Vorgabe:"
# EditorTableForm..TableEditorPnl..GirdOptionPnl..MainPageControl..AdvTableOptionsSheet..AdvancedOptionsScrollBox..RowOptionsGBox..TntLabel39....AutoSize
#. EditorTableForm..TableEditorPnl..GirdOptionPnl..MainPageControl..AdvTableOptionsSheet..AdvancedOptionsScrollBox..RowOptionsGBox..TntLabel39....AutoSize
#. MyxTableEditorForm..TablePageControl..TntTabSheet1..AdvancedOptionsSheetPnl..AdvancedOptionsScrollBox..RowOptionsGBox..TntLabel39....AutoSize
#: EditorTable.dfm:1169
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 "Legt fest, wie die Zeilen in MyISAM-Tabellen gespeichert werden sollten. Der Wert kann FIXED oder DYNAMIC entspr. Zeilen mit fester bzw. variabler Länge sein. Mit dem Hilfsprogramm myisampack kann der Typ auf COMPRESSED gesetzt werden."
# EditorTableForm..TableEditorPnl..GirdOptionPnl..MainPageControl..AdvTableOptionsSheet..AdvancedOptionsScrollBox..VariousGBox..DelayKeyUpdatesCBox..Caption
#. EditorTableForm..TableEditorPnl..GirdOptionPnl..MainPageControl..AdvTableOptionsSheet..AdvancedOptionsScrollBox..VariousGBox..DelayKeyUpdatesCBox..Caption
#. MyxTableEditorForm..TablePageControl..TntTabSheet1..AdvancedOptionsSheetPnl..AdvancedOptionsScrollBox..VariousGBox..DelayKeyUpdatesCBox..Caption
#: EditorTable.dfm:1479
msgid "Delay Key Updates"
msgstr "Schlüsselaktualisierung verzögern"
#. OptionsForm..OptionPageControl..ConnectionsTabSheet..DeleteConnectionButton..Caption
#: OptionsEditor.dfm:880
msgid "Delete Connection"
msgstr "Lösche Verbindung"
#. Disable the error display as the current user might not have select privilege for schema mysql.
#: SchemataTreeView.pas:2246
msgid "Delete Objects"
msgstr "Objekte löschen"
# RoutineFrame..TntActionList1..DeleteRoutineAction..Caption
#. RoutineFrame..TntActionList1..DeleteRoutineAction..Caption
#: MyxRoutineEditorFrame.dfm:457
msgid "Delete Routine"
msgstr "Routine löschen"
#. MyxTableEditorForm..TntActionList..DeleteSelectedColumnsAction..Caption
#: MyxTableEditor.dfm:1846
msgid "Delete Selected Columns"
msgstr "Lösche ausgewählte Spalten"
# EditorTableForm..ColumnPopupMenu..DeleteTableColumnsMI..Caption
#. EditorTableForm..ColumnPopupMenu..DeleteTableColumnsMI..Caption
#: EditorTable.dfm:1906
msgid "Delete Table Columns"
msgstr "Tabellenspalten löschen"
#: OptionsEditor.pas:681
msgid "Delete connection?"
msgstr "Verbindung löschen?"
#: MyxConnectionDialog.pas:1253
msgid "Delete stored connection."
msgstr "Gespeicherte Verbindung löschen"
# Delete nodes from TableData
#. Delete nodes from TableData
#: EditorTable.pas:1851
msgid "Deleting Columns"
msgstr "Lösche Spalten"
#: MyxTableEditor.pas:2378
#: MyxTableEditorIndexColumnVTEdit.pas:622
msgid "Descendant"
msgstr "Absteigend"
# #-#-#-#-# ..\res\windows\po\default.po (PACKAGE VERSION) #-#-#-#-#
# EditorTableForm..TableEditorPnl..GirdOptionPnl..MainPageControl..DescTabSheet..Caption
#. EditorTableForm..TableEditorPnl..GirdOptionPnl..MainPageControl..DescTabSheet..Caption
#: EditorTable.dfm:1603
msgid "Description"
msgstr "Beschreibung"
#: MigrationObjSelFilter.pas:178
msgid "Detailed selection >>"
msgstr "Erweiterte Auswahl >>"
# ConnectToInstanceForm..BottomPnl..DetailsBtn..Caption
# EditorTableForm..TableEditorPnl..BottomPnl..DetailsBtn..Caption
# ConnectToInstanceForm..BottomPnl..DetailsBtn..Caption
# EditorTableForm..TableEditorPnl..BottomPnl..DetailsBtn..Caption
# TextSearchForm..PageControl..SearchTabSheet..DetailsBtn..Caption
# TextSearchForm..PageControl..ReplaceTabSheet..Details2Btn..Caption
# ConnectToInstanceForm..BottomPnl..DetailsBtn..Caption
# EditorTableForm..TableEditorPnl..BottomPnl..DetailsBtn..Caption
# TextSearchForm..PageControl..SearchTabSheet..DetailsBtn..Caption
# TextSearchForm..PageControl..ReplaceTabSheet..Details2Btn..Caption
#. TextSearchForm..PageControl..SearchTabSheet..DetailsBtn..Caption
#. TextSearchForm..PageControl..ReplaceTabSheet..Details2Btn..Caption
#: TextSearch.dfm:89
msgid "Details >>"
msgstr "Details >>"
# TextSearchForm..PageControl..OptionsTabSheet..OptionPnl..DirectionGBox..Caption
#. TextSearchForm..PageControl..OptionsTabSheet..OptionPnl..DirectionGBox..Caption
#: TextSearch.dfm:217
msgid "Direction"
msgstr "Richtung"
# EditorTableForm..TableEditorPnl..GirdOptionPnl..MainPageControl..AdvTableOptionsSheet..AdvancedOptionsScrollBox..StorageOptionsGBox..TntLabel55....AutoSize
#. EditorTableForm..TableEditorPnl..GirdOptionPnl..MainPageControl..AdvTableOptionsSheet..AdvancedOptionsScrollBox..StorageOptionsGBox..TntLabel55....AutoSize
#. MyxTableEditorForm..TablePageControl..TntTabSheet1..AdvancedOptionsSheetPnl..AdvancedOptionsScrollBox..StorageOptionsGBox..TntLabel55....AutoSize
#: EditorTable.dfm:1092
msgid "Directory where to put the tables data file. This works only for MyISAM tables only and not on some operating systems (Windows)."
msgstr "Verzeichnis für die Tabellendateien. Nur für MyISAM-Tabellen, jedoch nicht unter allen Betriebssystemen (Windows)."
# EditorTableForm..TableEditorPnl..GirdOptionPnl..MainPageControl..AdvTableOptionsSheet..AdvancedOptionsScrollBox..StorageOptionsGBox..TntLabel56....AutoSize
#. EditorTableForm..TableEditorPnl..GirdOptionPnl..MainPageControl..AdvTableOptionsSheet..AdvancedOptionsScrollBox..StorageOptionsGBox..TntLabel56....AutoSize
#. MyxTableEditorForm..TablePageControl..TntTabSheet1..AdvancedOptionsSheetPnl..AdvancedOptionsScrollBox..StorageOptionsGBox..TntLabel56....AutoSize
#: EditorTable.dfm:1104
msgid "Directory where to put the tables index file. This works only for MyISAM tables only and not on some operating systems (Windows)."
msgstr "Verzeichnis für die Indexdateien. Nur für MyISAM-Tabellen, jedoch nicht unter allen Betriebssystemen (Windows)."
# OptionsForm..OptionPageControl..GeneralTabSheet..GroupBox1..DisableTransparencyEffectsCBox..Caption
#. OptionsForm..OptionPageControl..GeneralTabSheet..GroupBox1..DisableTransparencyEffectsCBox..Caption
#: OptionsEditor.dfm:365
msgid "Disable transparency effects"
msgstr "Transparenzeffekte ausschalten"
#: EditorTable.pas:3619
msgid "Disabled storage engine"
msgstr "Abgeschaltete Storage Engine"
# OptionsForm..DiscardChangesBtn..Caption
#. OptionsForm..DiscardChangesBtn..Caption
#: OptionsEditor.dfm:1143
msgid "Discard"
msgstr "Verwerfen"
# EditorTableForm..TableEditorPnl..BottomPnl..DiscardChangesBtn..Caption
#. MyxRoutineGroupEditorForm..TntActionList1..DiscardChangesAction..Caption
#. MyxTableEditorForm..TntActionList..DiscardChangesAction..Caption
#. MyxViewEditorForm..TntActionList1..DiscardChangesAction..Caption
#: MyxRoutineGroupEditor.dfm:520
#: MyxViewEditor.dfm:843
#: MySQLResultSetControls.pas:3465
#: MyxTabHeader.pas:1066
msgid "Discard Changes"
msgstr "Verwerfen"
#: EditorTable.pas:717
msgid "Discard changes"
msgstr "Verwerfen"
#: AuxFuncs.pas:2428
msgid "Do not show this message anymore."
msgstr "Diese Meldung nicht mehr anzeigen."
#: MySQLResultSet.pas:1084
msgid "Do you really want to discard all changes?"
msgstr "Wollen Sie wirklich alle Änderungen verwerfen?"
#: SchemataTreeView.pas:2272
msgid "Do you want do remove the associated schema privileges?"
msgstr "Wollen Sie die damit verbundenen Schemaprivilegien entfernen?"
# MyxConnectionDialogForm..ParamsMainPnl..DriverNotInstalledPnl..DownloadDriverPnl..DownloadDriverBtn..Caption
#. MyxConnectionDialogForm..ParamsMainPnl..DriverNotInstalledPnl..DownloadDriverPnl..DownloadDriverBtn..Caption
#: MyxConnectionDialog.dfm:103
msgid "Download Driver from the Web"
msgstr "Treiber aus dem Web herunterladen"
#: MyxConnectionDialog.pas:1320
msgid "Driver file"
msgstr "Treiberdatei"
# MyxConnectionDialogForm..ParamsMainPnl..DriverNotInstalledPnl..TntLabel2..Caption
#. MyxConnectionDialogForm..ParamsMainPnl..DriverNotInstalledPnl..TntLabel2..Caption
#: MyxConnectionDialog.dfm:49
msgid "Driver not attached"
msgstr "Treiber nicht angebunden"
# MyxConnectionDialogForm..ConnTypeMainPnl..ConnTypeGBox..ConnTypePnl..DriverLbl..Caption
#. MyxConnectionDialogForm..ConnTypeMainPnl..ConnTypeGBox..ConnTypePnl..DriverLbl..Caption
#: MyxConnectionDialog.dfm:343
msgid "Driver:"
msgstr "Treiber:"
# SchemataFrame..SchemaTreeViewPopupMenu..DropMI..Caption
#. SchemataFrame..SchemaTreeViewPopupMenu..DropMI..Caption
#: SchemataTreeView.dfm:218
msgid "Drop"
msgstr "Entfernen"
#: SchemataTreeView.pas:1572
msgid "Drop Function"
msgstr "Funktion entfernen"
#: SchemataTreeView.pas:1564
msgid "Drop Procedure"
msgstr "Prozedur entfernen"
#: SchemataTreeView.pas:1540
msgid "Drop Schema"
msgstr "Schema entfernen"
#: SchemataTreeView.pas:1548
msgid "Drop Table"
msgstr "Tabelle entfernen"
#: SchemataTreeView.pas:1556
msgid "Drop View"
msgstr "View entfernen"
#. OptionsForm..OptionPageControl..ConnectionsTabSheet..CloneConnectionButton..Caption
#: OptionsEditor.dfm:889
msgid "Duplicate Connection"
msgstr "Dupliziere Verbindung"
#: EditorTable.pas:510
msgid "Dynamic"
msgstr "Dynamisch"
# SchemataFrame..SchemaTreeViewPopupMenu..EditMI..Caption
# SchemataFrame..SchemaTreeViewPopupMenu..EditMI..Caption
#. MyxTableEditorForm..TntActionList..DeleteSelectedColumnsAction..Category
#. MyxTableEditorForm..TntActionList..CopyToClipboardAction..Category
#. MyxTableEditorForm..TntActionList..PasteFromClipboardAction..Category
#. MyxTableEditorForm..TntActionList..SelectAllAction..Category
#. SchemataFrame..SchemaTreeViewPopupMenu..EditMI..Caption
#: MyxTableEditor.dfm:1845
#: MyxTableEditor.dfm:1893
#: SchemataTreeView.dfm:203
#: MySQLResultSetControls.pas:3471
#: SchemataTreeView.pas:1577
msgid "Edit"
msgstr "Bearbeiten"
#: SchemataTreeView.pas:1571
msgid "Edit Function"
msgstr "Funktion bearbeiten"
#: SchemataTreeView.pas:1563
msgid "Edit Procedure"
msgstr "Prozedur bearbeiten"
#: SchemataTreeView.pas:1539
msgid "Edit Schema"
msgstr "Schema bearbeiten"
#: SchemataTreeView.pas:1547
msgid "Edit Table"
msgstr "Tabelle bearbeiten"
#: SchemataTreeView.pas:1555
msgid "Edit View"
msgstr "View bearbeiten"
# OptionsForm..OptionPageControl..EditorsTabSheet..Caption
#. OptionsForm..OptionPageControl..EditorsTabSheet..Caption
#: OptionsEditor.dfm:895
msgid "Editors"
msgstr "Editoren"
# MyxTableEditorForm..DockPanel..HeaderPnl..TntLabel3..Caption
#. MyxTableEditorForm..TablePageControl..TableSheet..TableSheetPnl..TntLabel3..Caption
#: MyxTableEditor.dfm:147
msgid "Engine:"
msgstr "Engine:"
# OptionsForm..OptionPageControl..GeneralTabSheet..GroupBox1..LanguageCBox..Text
# OptionsForm..OptionPageControl..GeneralTabSheet..GroupBox1..LanguageCBox....Items.WideStrings
#. OptionsForm..OptionPageControl..GeneralTabSheet..GroupBox1..LanguageCBox..Text
#. OptionsForm..OptionPageControl..GeneralTabSheet..GroupBox1..LanguageCBox....Items.Strings
#: OptionsEditor.dfm:355
msgid "English"
msgstr "Englisch"
# ConnectToInstanceForm..ConnectToHostPnl..UsernameCBox....Height
#. ConnectToInstanceForm..ConnectToHostPnl..UsernameCBox....Height
#: ConnectToInstance.dfm:636
msgid "Enter a username of a user account which has privileges to connect to the instance"
msgstr "Geben Sie den Benutzernamen eines zum Zugriff auf die Instanz berechtigten Kontos an."
# ConnectToInstanceForm..ConnectToHostPnl..HostnameCBox....Height
#. ConnectToInstanceForm..ConnectToHostPnl..HostnameCBox....Height
#: ConnectToInstance.dfm:577
msgid "Enter the Hostname to connect to. Can be a network name or IP address"
msgstr "Geben Sie Netzwerkname oder IP-Adresse des gewünschten Hosts an."
#. ConnectToInstanceForm..AdvancedOptionsGBox..AdvancedOptionsPageControl..MySQLOptionsTabSheet..PipeNameEdit....Height
#: ConnectToInstance.dfm:733
msgid "Enter the name to be used for the pipe. Must be the same as set for the server (see advanced networking page)"
msgstr "Geben Sie einen Namen ein, der für die Pipe verwendet werden soll. Dieser Name muss der gleiche sein, wie der für den Server (siehe Seite Erweiterte Netzwerkeinstellungen)"
# ConnectToInstanceForm..ConnectToHostPnl..PasswordEd..Hint
# OptionsForm..OptionPageControl..ConnectionsTabSheet..ConnectionPageControl..ConnGeneralTabSheet..PasswordEd..Hint
#. ConnectToInstanceForm..ConnectToHostPnl..PasswordEd..Hint
#. OptionsForm..OptionPageControl..ConnectionsTabSheet..ConnectionPageControl..ConnGeneralTabSheet..PasswordEd..Hint
#: ConnectToInstance.dfm:601
msgid "Enter the password of the user account"
msgstr "Geben Sie das Passwort für das Benutzerkonto an."
# ConnectToInstanceForm..ConnectToHostPnl..SchemataEd..Hint
# OptionsForm..OptionPageControl..ConnectionsTabSheet..ConnectionPageControl..ConnGeneralTabSheet..SchemataEd..Hint
#. ConnectToInstanceForm..ConnectToHostPnl..SchemataEd..Hint
#. OptionsForm..OptionPageControl..ConnectionsTabSheet..ConnectionPageControl..ConnGeneralTabSheet..SchemataEd..Hint
#: ConnectToInstance.dfm:623
msgid "Enter the schema to select after the connection is established"
msgstr "Geben Sie an, welches Schema nach Herstellung der Verbindung ausgewählt werden soll."
# Programmer's name for it: REG_USER_LOCATION
#. Programmer's name for it: REG_USER_LOCATION
#: AuxFuncs.pas:3090
msgid "Environment"
msgstr "Umgebung"
# #-#-#-#-# ..\res\windows\po\default.po (PACKAGE VERSION) #-#-#-#-#
# Initialize FMySQL
# Connect to instance
#. Connect to instance
#: EditorTable.pas:2982
#: MySQLConnection.pas:525
#: MySQLConnection.pas:1309
#: MySQLConnection.pas:1442
#: MySQLResultSetControls.pas:577
#: MyxError.pas:278
#: MyxError.pas:285
msgid "Error"
msgstr "Fehler"
#: OptionsEditor.pas:772
msgid "Error Number "
msgstr "Fehlernummer"
#: Grt.pas:2408
msgid "Error initializing Delphi modules (%d)"
msgstr "Fehler bei Delphi-Modul-Initialisierung (%d)"
#: Grt.pas:2435
msgid "Error initializing Java module loader (%d). Please check the .\\java and .\\java\\lib directories."
msgstr "Fehler beim Initialisieren des Java-Modul-Laders (%d). Bitte Verzeichnisse .\\java und .\\java\\lib prüfen."
#: Grt.pas:2474
msgid "Error initializing Lua module loader (%d)"
msgstr "Fehler beim Initialisieren des Lua-Modul-Laders (%d)"
#: Grt.pas:2456
msgid "Error initializing PHP module loader (%d)"
msgstr "Fehler beim Initialisieren des PHP-Modul-Laders (%d)"
#: Grt.pas:2490
msgid "Error initializing Python module loader (%d)"
msgstr "Fehler bei der Initialisierung des Python-Modul-Loaders (%d)"
#: MySQLResultSet.pas:1265
msgid "Error while allocating memory for MySQL Struct in Query Execute Thread."
msgstr "Fehler bei Speicherzuweisung für MySQL-Struktur in Abfrageausführungs-Thread"
#: ConnectToInstance.pas:508
msgid "Error while allocating memory for MySQL Struct."
msgstr "Fehler bei Speicherzuweisung für MySQL-Struktur"
# Apply actions
#. Apply actions.
#: MySQLResultSet.pas:1028
msgid "Error while applying actions."
msgstr "Fehler beim Ausführen der Aktionen"
# Update resultset which will clear or re-generate a action list
#. Update resultset which will clear or re-generate a action list.
#: MySQLResultSet.pas:1053
msgid "Error while applying changes to the result set."
msgstr "Fehler bei Durchführung der Änderungen auf der Ergebnismenge"
#: MySQLConnection.pas:911
msgid "Error while executing query."
msgstr "Fehler, währen die Abfrage ausgeführt wurde."
#: Grt.pas:2550
msgid "Error while loading %s modules (%d)."
msgstr "Fehler beim Laden der %s-Module (%d)"
# Fetch connections from library
#. Fetch connections from library
#. Fetch connections
#: MySQLConnection.pas:430
msgid "Error while loading stored connections."
msgstr "Fehler beim Laden gespeicherter Verbindungen"
#: Grt.pas:2359
msgid "Error while loading struct definitions (%d)."
msgstr "Fehler beim Laden der Strukturdefinitionen (%d)"
#: MySQLResultSetControls.pas:3647
msgid "ErrorNr."
msgstr "Fehlernr."
#: Grt.pas:2285
msgid "Exception encountered while executing the shell command: \"%s\""
msgstr "Ausnahmebedingung bei Ausführung des Shellbefehls \"%s\""
#: EditorTable.pas:3104
msgid ""
"Execute\n"
"Cancel"
msgstr ""
"Ausführen\n"
"Abbrechen"
# EditorSqlForm..BottomPnl..ExecuteSQLBtn..Caption
#. EditorSqlForm..BottomPnl..ExecuteSQLBtn..Caption
#: EditorSql.dfm:48
msgid "Execute SQL"
msgstr "SQL ausführen"
#: MySQLConnection.pas:911
msgid "Execution Error"
msgstr "Ausführungsfehler"
#: Options.pas:743
msgid "Exit"
msgstr "Beenden"
# OptionsForm..OptionPageControl..EditorsTabSheet..GroupBox4..Label8..Caption
#. OptionsForm..OptionPageControl..EditorsTabSheet..GroupBox4..Label8..Caption
#: OptionsEditor.dfm:933
msgid "FK naming:"
msgstr "Fremdschl.namen:"
# OptionsForm..OptionPageControl..EditorsTabSheet..GroupBox4..EdTblFKNamingEd....Items.WideStrings
# Translation possible?
# OptionsForm..OptionPageControl..EditorsTabSheet..GroupBox4..EdTblFKNamingEd....Items.WideStrings
#. OptionsForm..OptionPageControl..EditorsTabSheet..GroupBox4..EdTblFKNamingEd....Items.Strings
#: OptionsEditor.dfm:1035
msgid "FK%tablename%%nr%"
msgstr "FK%tablename%%nr%"
# OptionsForm..OptionPageControl..EditorsTabSheet..GroupBox4..EdTblFKNamingEd..Text
# OptionsForm..OptionPageControl..EditorsTabSheet..GroupBox4..EdTblFKNamingEd....Items.WideStrings
# Translation possible?
# OptionsForm..OptionPageControl..EditorsTabSheet..GroupBox4..EdTblFKNamingEd..Text
# OptionsForm..OptionPageControl..EditorsTabSheet..GroupBox4..EdTblFKNamingEd....Items.WideStrings
#. OptionsForm..OptionPageControl..EditorsTabSheet..GroupBox4..EdTblFKNamingEd..Text
#. OptionsForm..OptionPageControl..EditorsTabSheet..GroupBox4..EdTblFKNamingEd....Items.Strings
#: OptionsEditor.dfm:1031
msgid "FK_%tablename%_%nr%"
msgstr "FK_%tablename%_%nr%"
#. OptionsForm..OptionPageControl..EditorsTabSheet..GroupBox4..DefaultStorageEngineLU....Items.Strings
#: OptionsEditor.dfm:1072
msgid "Falcon"
msgstr "Falcon"
#. EditorTableForm..TableEditorPnl..GirdOptionPnl..MainPageControl..AdvTableOptionsSheet..AdvancedOptionsScrollBox..TntGroupBox3..Caption
#: EditorTable.dfm:1547
msgid "Federated"
msgstr "Federated"
# (Re-)load CatalogList, AllowDuplicatedKindOfData
# (Re-)load CatalogList, AllowDuplicatedKindOfData
#. (Re-)load CatalogList, AllowDuplicatedKindOfData
#: SchemataTreeView.pas:924
msgid "Fetching Catalogs/Schemata data ..."
msgstr "Hole Kataloge/Schemadaten..."
# SchemaSelectionForm..SchemataFrame..CatalogVST..WideDefaultText
# SchemataFrame..CatalogVST..WideDefaultText
# SchemaSelectionForm..SchemataFrame..CatalogVST..WideDefaultText
# SchemataFrame..CatalogVST..WideDefaultText
#. SchemaSelectionForm..SchemataFrame..CatalogVST..WideDefaultText
#. SchemataFrame..CatalogVST..WideDefaultText
#: SchemaSelection.dfm:37
msgid "Fetching Data ..."
msgstr "Hole Daten..."
# Check if the schema node's subdata has been loaded already.
# Check if the schema node's subdata has been loaded already.
#. Check if the schema node's subdata has been loaded already.
#: SchemataTreeView.pas:585
msgid "Fetching assets ..."
msgstr "Hole Elemente..."
#: MyxConnectionDialog.pas:520
msgid "Fetching of list failed."
msgstr "Holen der Liste fehlgeschlagen"
# MySQLResultSetFieldViewerForm..Caption
#. MySQLResultSetFieldViewerForm..Caption
#: MySQLResultSetFieldViewer.dfm:5
msgid "Field Viewer"
msgstr "Feldbetrachter"
#: MySQLResultSetControls.pas:3457
msgid "First"
msgstr "Erster"
#: EditorTable.pas:511
msgid "Fixed"
msgstr "Fest"
# #-#-#-#-# ..\res\windows\po\default.po (PACKAGE VERSION) #-#-#-#-#
# EditorTableForm..TableEditorPnl..GirdOptionPnl..MainPageControl..ColumnTabSheet..ColumnVST......WideText
# MyxTableEditorForm..DockPanel..TablePageControl..ColumnSheet..ColumnVST......WideText
#. EditorTableForm..TableEditorPnl..GirdOptionPnl..MainPageControl..ColumnTabSheet..ColumnVST......WideText
#. MyxTableEditorForm..TablePageControl..ColumnSheet..ColumnsContentPnl..ColumnVST......WideText
#: EditorTable.dfm:267
msgid "Flags"
msgstr "Schalter"
# #-#-#-#-# ..\res\windows\po\default.po (PACKAGE VERSION) #-#-#-#-#
# EditorTableForm..TableEditorPnl..GirdOptionPnl..MainPageControl..ColumnTabSheet..ColumnsPageControl..TntTabSheet1..TntLabel6..Caption
#. EditorTableForm..TableEditorPnl..GirdOptionPnl..MainPageControl..ColumnTabSheet..ColumnsPageControl..TntTabSheet1..TntLabel6..Caption
#: EditorTable.dfm:733
msgid "Flags:"
msgstr "Schalter:"
#: MyxError.pas:182
msgid "Following warnings / errors have been encountered:"
msgstr "Folgende Warnungen/Fehler wurden zurückgemeldet:"
# MyxTableEditorForm..DockPanel..TablePageControl..ForeignKeySheet..ForeignKeyVST......WideText
#. MyxTableEditorForm..TablePageControl..ForeignKeySheet..FkSheetPnl..ForeignKeyVST......WideText
#: MyxTableEditor.dfm:742
msgid "Foreign Key Name"
msgstr "Fremdschlüsselname"
# #-#-#-#-# ..\res\windows\po\default.po (PACKAGE VERSION) #-#-#-#-#
# EditorTableForm..TableEditorPnl..GirdOptionPnl..MainPageControl..ColumnTabSheet..ColumnsPageControl..TntTabSheet8..TntGroupBox2..Caption
#. EditorTableForm..TableEditorPnl..GirdOptionPnl..MainPageControl..ColumnTabSheet..ColumnsPageControl..FKTabsheet..TntGroupBox2..Caption
#: EditorTable.dfm:567
msgid "Foreign Key Settings"
msgstr "Fremdschlüsseleinstellungen"
# #-#-#-#-# ..\res\windows\po\default.po (PACKAGE VERSION) #-#-#-#-#
# EditorTableForm..TableEditorPnl..GirdOptionPnl..MainPageControl..ColumnTabSheet..ColumnsPageControl..TntTabSheet8..Caption
# MyxTableEditorForm..DockPanel..TablePageControl..ForeignKeySheet..Caption
#. EditorTableForm..TableEditorPnl..GirdOptionPnl..MainPageControl..ColumnTabSheet..ColumnsPageControl..FKTabsheet..Caption
#. MyxTableEditorForm..TablePageControl..ForeignKeySheet..Caption
#: EditorTable.dfm:519
msgid "Foreign Keys"
msgstr "Fremdschlüssel"
#: EditorTable.pas:2202
msgid "Foreign keys are currently only supported for the InnoDB storage engine."
msgstr "Fremdschlüssel werden momentan nur für die InnoDB Storage Engine unterstützt."
# RoutineFrame..TntActionList1..SetBodyFunctionAction..Caption
#. RoutineFrame..TntActionList1..SetBodyFunctionAction..Caption
#: MyxRoutineEditorFrame.dfm:463
msgid "Function Body"
msgstr "Funktions-Body"
# #-#-#-#-# ..\res\windows\po\default.po (PACKAGE VERSION) #-#-#-#-#
# OptionsForm..HeaderPnl..TitleLbl..Caption
# OptionsForm..OptionPageControl..GeneralTabSheet..Caption
#. OptionsForm..HeaderPnl..TitleLbl..Caption
#. OptionsForm..OptionPageControl..GeneralTabSheet..Caption
#: OptionsEditor.dfm:262
msgid "General"
msgstr "Allgemein"
#: OptionsEditor.pas:399
msgid "General Options"
msgstr "Allgemeine Einstellungen"
#. OptionsForm..OptionPageControl..EditorsTabSheet..GroupBox3..Caption
#: OptionsEditor.dfm:1085
msgid "General Settings"
msgstr "Allgemeine Einstellungen"
#: MyxRoutineEditorFrame.pas:168
msgid "Getting a routine's name"
msgstr "Hole den Namen einer Routine"
#: MyxRoutineEditorFrame.pas:185
msgid "Getting a routine's type"
msgstr "Hole den Typ einer Routine"
#: MyxRoutineEditorFrame.pas:457
msgid "Getting a trigger's event"
msgstr "Hole das Auslöseereignis eines Triggers"
#: MyxRoutineEditorFrame.pas:427
msgid "Getting a trigger's name"
msgstr "Hole den Namen eines Triggers"
#: MyxRoutineEditorFrame.pas:444
msgid "Getting a trigger's statement"
msgstr "Hole das Statement eines Triggers"
#: MyxRoutineEditorFrame.pas:469
msgid "Getting a trigger's timing"
msgstr "Hole das Timing eines Triggers"
# MyxRoutineGroupEditorForm..HeaderPnl..NameLbl..Caption
#. MyxRoutineGroupEditorForm..RoutinePageControl..RoutineGroupSheet..RoutineGroupSheetPnl..NameLbl..Caption
#: MyxRoutineGroupEditor.dfm:242
msgid "Group Name:"
msgstr "Gruppenname:"
#. MyxTableEditorForm..TablePageControl..ColumnSheet..ColumnsContentPnl..ColumnVST....ClipboardFormats.Strings
#: MyxTableEditor.dfm:440
msgid "HTML Format"
msgstr "HTML Format"
#: OptionsEditor.pas:781
msgid "History"
msgstr "Chronik"
# #-#-#-#-# ..\res\windows\po\default.po (PACKAGE VERSION) #-#-#-#-#
# ConnectToInstanceForm..ConnectToHostPnl..HostnameLbl..Caption
# OptionsForm..OptionPageControl..ConnectionsTabSheet..ConnectionPageControl..ConnGeneralTabSheet..HostnameLbl..Caption
# #-#-#-#-# ..\res\windows\po\default.po (PACKAGE VERSION) #-#-#-#-#
# OptionsForm..OptionPageControl..ConnectionsTabSheet..ConnectionPageControl..ConnGeneralTabSheet..HostnameLbl..Caption
#. OptionsForm..OptionPageControl..ConnectionsTabSheet..ConnectionPageControl..ConnGeneralTabSheet..HostnameLbl..Caption
#: OptionsEditor.dfm:728
msgid "Hostname:"
msgstr "Hostname:"
# OptionsForm..OptionPageControl..EditorsTabSheet..GroupBox4..EdTblPKDatatypeEd..Text
#. OptionsForm..OptionPageControl..EditorsTabSheet..GroupBox4..EdTblPKDatatypeEd..Text
#: OptionsEditor.dfm:1045
msgid "INTEGER"
msgstr "INTEGER"
# OptionsForm..OptionPageControl..EditorsTabSheet..GroupBox4..DefaultStorageEngineLU....Items.WideStrings
#. OptionsForm..OptionPageControl..EditorsTabSheet..GroupBox4..DefaultStorageEngineLU....Items.Strings
#: OptionsEditor.dfm:1077
msgid "ISAM"
msgstr "ISAM"
#: ConnectToInstance.pas:949
msgid "Ignore"
msgstr "Ignorieren"
# MigrationObjSelFilterFrame..ObjectSelGBox..DetailFilterPnl..ObjIgnoreVT......WideText
#. MigrationObjSelFilterFrame..ObjectSelGBox..DetailFilterPnl..ObjIgnoreVT......WideText
#: MigrationObjSelFilter.dfm:114
msgid "Ignored Objects"
msgstr "Ausgeschlossene Objekte"
# OptionsForm..OptionPageControl..GeneralTabSheet..TntGroupBox2..TntLabel6..Caption
#. OptionsForm..OptionPageControl..GeneralTabSheet..TntGroupBox2..TntLabel6..Caption
#: OptionsEditor.dfm:643
msgid "Ignorelist:"
msgstr "Ausschlussliste:"
# MySQLResultSetFieldViewerForm..PageControl..ImageSheet..Caption
#. MySQLResultSetFieldViewerForm..PageControl..ImageSheet..Caption
#: MySQLResultSetFieldViewer.dfm:76
msgid "Image"
msgstr "Bild"
# MySQLResultSetFieldViewerForm..PageControl..ImageSheet..ImageSheetBtnPnl..ImageFormatTitleLbl..Caption
#. MySQLResultSetFieldViewerForm..PageControl..ImageSheet..ImageSheetBtnPnl..ImageFormatTitleLbl..Caption
#: MySQLResultSetFieldViewer.dfm:119
msgid "Image Format:"
msgstr "Bildformat:"
#: MySQLResultSet.pas:1482
msgid "In order to keep the system responsive record set retrieval has been stopped."
msgstr "Um das System weiterhin ansprechbar zu behalten, wurde der Datenabruf beendet."
# EditorTableForm..TableEditorPnl..GirdOptionPnl..MainPageControl..ColumnTabSheet..ColumnsPageControl..TntTabSheet2..TntGroupBox1..TntLabel12..Caption
#. EditorTableForm..TableEditorPnl..GirdOptionPnl..MainPageControl..ColumnTabSheet..ColumnsPageControl..IndexTabsheet..TntGroupBox1..TntLabel12..Caption
#: EditorTable.dfm:390
msgid "Index Columns"
msgstr "Indexspalten"
# MyxTableEditorForm..DockPanel..TablePageControl..IndicesSheet..IndexDetailsPnl..TntGroupBox3..Caption
#. MyxTableEditorForm..TablePageControl..IndicesSheet..IndexContentPnl..IndexDetailsPnl..TntGroupBox3..Caption
#: MyxTableEditor.dfm:581
msgid "Index Details"
msgstr "Indexdetails"
# #-#-#-#-# ..\res\windows\po\default.po (PACKAGE VERSION) #-#-#-#-#
# EditorTableForm..TableEditorPnl..GirdOptionPnl..MainPageControl..AdvTableOptionsSheet..AdvancedOptionsScrollBox..StorageOptionsGBox..TntLabel28..Caption
#. EditorTableForm..TableEditorPnl..GirdOptionPnl..MainPageControl..AdvTableOptionsSheet..AdvancedOptionsScrollBox..StorageOptionsGBox..TntLabel28..Caption
#. MyxTableEditorForm..TablePageControl..TntTabSheet1..AdvancedOptionsSheetPnl..AdvancedOptionsScrollBox..StorageOptionsGBox..TntLabel28..Caption
#: EditorTable.dfm:1082
msgid "Index Directory:"
msgstr "Indexverz.:"
# #-#-#-#-# ..\res\windows\po\default.po (PACKAGE VERSION) #-#-#-#-#
# EditorTableForm..TableEditorPnl..GirdOptionPnl..MainPageControl..ColumnTabSheet..ColumnsPageControl..TntTabSheet2..TntGroupBox1..IndexKindLbl..Caption
#. EditorTableForm..TableEditorPnl..GirdOptionPnl..MainPageControl..ColumnTabSheet..ColumnsPageControl..IndexTabsheet..TntGroupBox1..IndexKindLbl..Caption
#: EditorTable.dfm:383
msgid "Index Kind:"
msgstr "Indexart:"
# MyxTableEditorForm..DockPanel..TablePageControl..IndicesSheet..IndexVST......WideText
#. MyxTableEditorForm..TablePageControl..IndicesSheet..IndexContentPnl..IndexVST......WideText
#: MyxTableEditor.dfm:616
msgid "Index Name"
msgstr "Indexname"
# #-#-#-#-# ..\res\windows\po\default.po (PACKAGE VERSION) #-#-#-#-#
# EditorTableForm..TableEditorPnl..GirdOptionPnl..MainPageControl..ColumnTabSheet..ColumnsPageControl..TntTabSheet2..TntGroupBox1..Caption
#. EditorTableForm..TableEditorPnl..GirdOptionPnl..MainPageControl..ColumnTabSheet..ColumnsPageControl..IndexTabsheet..TntGroupBox1..Caption
#: EditorTable.dfm:366
msgid "Index Settings"
msgstr "Indexeinstellungen"
# #-#-#-#-# ..\res\windows\po\default.po (PACKAGE VERSION) #-#-#-#-#
# EditorTableForm..TableEditorPnl..GirdOptionPnl..MainPageControl..ColumnTabSheet..ColumnsPageControl..TntTabSheet2..TntGroupBox1..IndexTypeLbl..Caption
#. EditorTableForm..TableEditorPnl..GirdOptionPnl..MainPageControl..ColumnTabSheet..ColumnsPageControl..IndexTabsheet..TntGroupBox1..IndexTypeLbl..Caption
#: EditorTable.dfm:398
msgid "Index Type:"
msgstr "Indextyp:"
# OptionsForm..OptionPageControl..EditorsTabSheet..GroupBox4..Label7..Caption
#. OptionsForm..OptionPageControl..EditorsTabSheet..GroupBox4..Label7..Caption
#: OptionsEditor.dfm:925
msgid "Index naming:"
msgstr "Indexnamen:"
# #-#-#-#-# ..\res\windows\po\default.po (PACKAGE VERSION) #-#-#-#-#
# EditorTableForm..TableEditorPnl..GirdOptionPnl..MainPageControl..ColumnTabSheet..ColumnsPageControl..TntTabSheet2..Caption
# MyxTableEditorForm..DockPanel..TablePageControl..IndicesSheet..Caption
# SchemataFrame..SchemaSearchPopupMenu..CustomMI..IndicesSubMI..Caption
#. EditorTableForm..TableEditorPnl..GirdOptionPnl..MainPageControl..ColumnTabSheet..ColumnsPageControl..IndexTabsheet..Caption
#. MyxTableEditorForm..TablePageControl..IndicesSheet..Caption
#. SchemataFrame..SchemaSearchPopupMenu..CustomMI..IndicesSubMI..Caption
#: EditorTable.dfm:292
#: SchemataTreeView.pas:1778
msgid "Indices"
msgstr "Indizes"
# Init Java loader
# Init Java loader
#. Init Java loader
#: Grt.pas:2414
msgid "Initializing Java loader..."
msgstr "Initialisiere Java-Lader..."
# Init lua loader
# Init lua loader
#. Init lua loader
#: Grt.pas:2462
msgid "Initializing Lua loader..."
msgstr "Initialisiere Lua-Lader..."
# Init PHP loader
# Init PHP loader
#. Init PHP loader
#: Grt.pas:2443
msgid "Initializing PHP loader..."
msgstr "Initialisiere PHP-Lader..."
#. Init python loader
#: Grt.pas:2478
msgid "Initializing Python loader..."
msgstr "Initialisiere Python-Loader..."
# Init Delphi loader
# Init Delphi loader
#. Init Delphi loader
#: Grt.pas:2396
msgid "Initializing native loader..."
msgstr "Initialisiere nativen Lader..."
# #-#-#-#-# ..\res\windows\po\default.po (PACKAGE VERSION) #-#-#-#-#
# OptionsForm..OptionPageControl..EditorsTabSheet..GroupBox4..DefaultStorageEngineLU..Text
# OptionsForm..OptionPageControl..EditorsTabSheet..GroupBox4..DefaultStorageEngineLU....Items.WideStrings
#. OptionsForm..OptionPageControl..EditorsTabSheet..GroupBox4..DefaultStorageEngineLU....Items.Strings
#: OptionsEditor.dfm:1070
msgid "InnoDB"
msgstr "InnoDB"
# #-#-#-#-# ..\res\windows\po\default.po (PACKAGE VERSION) #-#-#-#-#
# EditorTableForm..TableEditorPnl..GirdOptionPnl..MainPageControl..AdvTableOptionsSheet..AdvancedOptionsScrollBox..MergeOptionGBox..MergeInsertMethodCapionLbl..Caption
#. EditorTableForm..TableEditorPnl..GirdOptionPnl..MainPageControl..AdvTableOptionsSheet..AdvancedOptionsScrollBox..MergeOptionGBox..MergeInsertMethodCapionLbl..Caption
#. MyxTableEditorForm..TablePageControl..TntTabSheet1..AdvancedOptionsSheetPnl..AdvancedOptionsScrollBox..MergeOptionGBox..MergeInsertMethodCapionLbl..Caption
#: EditorTable.dfm:1496
msgid "Insert Method:"
msgstr "Einfügemethode:"
#: EditorTable.pas:500
msgid "Inserts into first table"
msgstr "Fügt in erste Tabelle ein"
#: EditorTable.pas:501
msgid "Inserts into last table"
msgstr "Fügt in letzte Tabelle ein"
#: MySQLResultSetFieldViewer.pas:180
msgid "JPEG"
msgstr "JPEG"
#: MySQLResultSetFieldViewer.pas:187
msgid "JPG image corrupted."
msgstr "JPEG-Bild defekt"
# #-#-#-#-# ..\res\windows\po\default.po (PACKAGE VERSION) #-#-#-#-#
# EditorTableForm..TableEditorPnl..GirdOptionPnl..MainPageControl..ColumnTabSheet..ColumnsPageControl..TntTabSheet8..TntGroupBox2..TntLabel14..Caption
#. EditorTableForm..TableEditorPnl..GirdOptionPnl..MainPageControl..ColumnTabSheet..ColumnsPageControl..FKTabsheet..TntGroupBox2..TntLabel14..Caption
#: EditorTable.dfm:577
msgid "Key Name:"
msgstr "Schlüsselname:"
# OptionsForm..OptionPageControl..GeneralTabSheet..GroupBox1..Label3..Caption
#. OptionsForm..OptionPageControl..GeneralTabSheet..GroupBox1..Label3..Caption
#: OptionsEditor.dfm:298
msgid "Language:"
msgstr "Sprache:"
#: MySQLResultSetControls.pas:3453
msgid "Last"
msgstr "Letzter"
# #-#-#-#-# ..\res\windows\po\default.po (PACKAGE VERSION) #-#-#-#-#
# MyxTableEditorForm..DockPanel..TablePageControl..IndicesSheet..IndexColumnVST......WideText
#. MyxTableEditorForm..TablePageControl..IndicesSheet..IndexContentPnl..IndexColumnVST......WideText
#: MyxTableEditor.dfm:670
msgid "Length"
msgstr "Länge"
#: MyxError.pas:274
msgid "Library Error"
msgstr "Bibliotheksfehler"
#: MyxError.pas:199
msgid ""
"Library Error Number %d\n"
"%s"
msgstr ""
"Bibliotheksfehler Nr. %d\n"
"%s"
# EditorTableForm..TableEditorPnl..GirdOptionPnl..MainPageControl..AdvTableOptionsSheet..AdvancedOptionsScrollBox..MergeOptionGBox..UnionTablesDescLbl..Caption
#. EditorTableForm..TableEditorPnl..GirdOptionPnl..MainPageControl..AdvTableOptionsSheet..AdvancedOptionsScrollBox..MergeOptionGBox..UnionTablesDescLbl..Caption
#. MyxTableEditorForm..TablePageControl..TntTabSheet1..AdvancedOptionsSheetPnl..AdvancedOptionsScrollBox..MergeOptionGBox..UnionTablesDescLbl..Caption
#: EditorTable.dfm:1511
msgid "List of MyISAM tables that should be used by the MERGE table."
msgstr "Liste der MyISAM-Tabellen, die in die MERGE-Tabelle einfließen sollen"
# MyxConnectionDialogForm..ParamsMainPnl..DriverNotInstalledPnl..LocateDriverBtn..Caption
#. MyxConnectionDialogForm..ParamsMainPnl..DriverNotInstalledPnl..LocateDriverBtn..Caption
#: MyxConnectionDialog.dfm:73
msgid "Locate Driver on Harddisk"
msgstr "Suche Treiber auf Festplatte"
#: EditorTable.pas:1807
msgid "Lost server connection during table manipulation. Changes will be cancelled and the editor will be closed."
msgstr "Habe die Serververbindung während der Tabellenmanipulation verloren. Änderungen werden nicht gespeichert und der Editor wird geschlossen."
# MigrationObjMapDetailFrame..ObjectSelGBox..Caption
# MigrationObjMapDetailFrame..ObjectSelGBox..Caption
#. MigrationObjMapDetailFrame..ObjectSelGBox..Caption
#: MigrationObjMapDetail.dfm:18
msgid "Mapping of Type Oracle Table"
msgstr "Zuordnung des Typs Oracle-Tabelle"
# #-#-#-#-# ..\res\windows\po\default.po (PACKAGE VERSION) #-#-#-#-#
# EditorTableForm..TableEditorPnl..GirdOptionPnl..MainPageControl..AdvTableOptionsSheet..AdvancedOptionsScrollBox..RowOptionsGBox..TntLabel25..Caption
#. EditorTableForm..TableEditorPnl..GirdOptionPnl..MainPageControl..AdvTableOptionsSheet..AdvancedOptionsScrollBox..RowOptionsGBox..TntLabel25..Caption
#. MyxTableEditorForm..TablePageControl..TntTabSheet1..AdvancedOptionsSheetPnl..AdvancedOptionsScrollBox..RowOptionsGBox..TntLabel25..Caption
#: EditorTable.dfm:1150
msgid "Max Rows:"
msgstr "Max. Zeilen:"
# OptionsForm..OptionPageControl..EditorsTabSheet..GroupBox4..DefaultStorageEngineLU....Items.WideStrings
#. OptionsForm..OptionPageControl..EditorsTabSheet..GroupBox4..DefaultStorageEngineLU....Items.Strings
#: OptionsEditor.dfm:1074
msgid "Memory"
msgstr "Memory"
# OptionsForm..OptionPageControl..EditorsTabSheet..GroupBox4..DefaultStorageEngineLU....Items.WideStrings
# OptionsForm..OptionPageControl..EditorsTabSheet..GroupBox4..DefaultStorageEngineLU....Items.WideStrings
#. OptionsForm..OptionPageControl..EditorsTabSheet..GroupBox4..DefaultStorageEngineLU....Items.Strings
#: OptionsEditor.dfm:1075
msgid "Merge"
msgstr "Merge"
# #-#-#-#-# ..\res\windows\po\default.po (PACKAGE VERSION) #-#-#-#-#
# EditorTableForm..TableEditorPnl..GirdOptionPnl..MainPageControl..AdvTableOptionsSheet..AdvancedOptionsScrollBox..MergeOptionGBox..Caption
#. EditorTableForm..TableEditorPnl..GirdOptionPnl..MainPageControl..AdvTableOptionsSheet..AdvancedOptionsScrollBox..MergeOptionGBox..Caption
#. MyxTableEditorForm..TablePageControl..TntTabSheet1..AdvancedOptionsSheetPnl..AdvancedOptionsScrollBox..MergeOptionGBox..Caption
#: EditorTable.dfm:1489
msgid "Merge Table Options"
msgstr "Einstellungen für Merge-Tabellen"
# MigrationObjSelFilterFrame..MigrateCBox..Caption
#. MigrationObjSelFilterFrame..MigrateCBox..Caption
#: MigrationObjSelFilter.dfm:238
msgid "Migrate Objects of Type Oracle Table"
msgstr "Migriere Typ-Oracle-Tabellen-Objekte"
# MigrationObjMapDetailFrame..ObjectSelGBox..TntLabel2..Caption
#. MigrationObjMapDetailFrame..ObjectSelGBox..TntLabel2..Caption
#: MigrationObjMapDetail.dfm:34
msgid "Migration method:"
msgstr "Migrationsmethode:"
#: MigrationObjMapDetail.pas:183
msgid "Migration of type %s"
msgstr "Migration vom Typ %s"
# #-#-#-#-# ..\res\windows\po\default.po (PACKAGE VERSION) #-#-#-#-#
# EditorTableForm..TableEditorPnl..GirdOptionPnl..MainPageControl..AdvTableOptionsSheet..AdvancedOptionsScrollBox..RowOptionsGBox..TntLabel24..Caption
#. EditorTableForm..TableEditorPnl..GirdOptionPnl..MainPageControl..AdvTableOptionsSheet..AdvancedOptionsScrollBox..RowOptionsGBox..TntLabel24..Caption
#. MyxTableEditorForm..TablePageControl..TntTabSheet1..AdvancedOptionsSheetPnl..AdvancedOptionsScrollBox..RowOptionsGBox..TntLabel24..Caption
#: EditorTable.dfm:1143
msgid "Min Rows:"
msgstr "Min. Zeilen:"
# #-#-#-#-# ..\res\windows\po\default.po (PACKAGE VERSION) #-#-#-#-#
# OptionsForm..OptionPageControl..EditorsTabSheet..GroupBox4..DefaultStorageEngineLU....Items.WideStrings
#. OptionsForm..OptionPageControl..EditorsTabSheet..GroupBox4..DefaultStorageEngineLU....Items.Strings
#: OptionsEditor.dfm:1071
msgid "MyISAM"
msgstr "MyISAM"
# #-#-#-#-# ..\res\windows\po\default.po (PACKAGE VERSION) #-#-#-#-#
# OptionsForm..OptionPageControl..ConnectionsTabSheet..ConnectionPageControl..ConnGeneralTabSheet..TypeCBox....Items.WideStrings
#. OptionsForm..OptionPageControl..ConnectionsTabSheet..ConnectionPageControl..ConnGeneralTabSheet..TypeCBox....Items.Strings
#: OptionsEditor.dfm:790
msgid "MySQL"
msgstr "MySQL"
# ConnectToInstanceForm..Caption
#. ConnectToInstanceForm..Caption
#: ConnectToInstance.dfm:7
msgid "MySQL Administrator"
msgstr "MySQL Administrator"
#: MySQLConnection.pas:912
msgid "MySQL Error Number "
msgstr "MySQL Fehlernummer"
#: MySQLConnection.pas:527
msgid ""
"MySQL Error Number %d\n"
"%s"
msgstr ""
"MySQL-Fehler Nr. %d\n"
"%s"
# EditorSqlForm..Caption
#. EditorSqlForm..Caption
#: EditorSql.dfm:5
msgid "MySQL SQL Editor"
msgstr "MySQL-SQL-Editor"
# EditorTableForm..Caption
#. EditorTableForm..Caption
#: EditorTable.dfm:5
msgid "MySQL Table Editor"
msgstr "MySQL-Tabelleneditor"
# ConnectToInstanceForm..AdvancedOptionsGBox..AdvancedOptionsPageControl..MySQLOptionsTabSheet..Caption
#. ConnectToInstanceForm..AdvancedOptionsGBox..AdvancedOptionsPageControl..MySQLOptionsTabSheet..Caption
#: ConnectToInstance.dfm:678
msgid "MySQLOptionsTabSheet"
msgstr "MySQLOptionsTabSheet"
# #-#-#-#-# ..\res\windows\po\default.po (PACKAGE VERSION) #-#-#-#-#
# OptionsForm..OptionPageControl..EditorsTabSheet..GroupBox4..DefaultStorageEngineLU....Items.WideStrings
# #-#-#-#-# ..\res\windows\po\default.po (PACKAGE VERSION) #-#-#-#-#
# OptionsForm..OptionPageControl..EditorsTabSheet..GroupBox4..DefaultStorageEngineLU....Items.WideStrings
#. OptionsForm..OptionPageControl..EditorsTabSheet..GroupBox4..DefaultStorageEngineLU....Items.Strings
#: OptionsEditor.dfm:1073
msgid "NDB"
msgstr "NDB"
# Translation necessary?
# #-#-#-#-# glade.pot #-#-#-#-#
# table_editor.glade:GtkMenuItem:no_action1..table_editor.glade:GtkMenuItem:menuitem1
#: MyxTableEditorFkVTEdit.pas:627
msgid "NO ACTION"
msgstr "KEINE AKTION"
#: MyxTableEditor.pas:1918
msgid "NOT NULL"
msgstr "Nicht NULL"
# #-#-#-#-# ..\res\windows\po\default.po (PACKAGE VERSION) #-#-#-#-#
# EditorTableForm..TableEditorPnl..GirdOptionPnl..MainPageControl..ColumnTabSheet..ColumnsPageControl..TntTabSheet1..TntLabel4..Caption
# MyxTableEditorForm..DockPanel..TablePageControl..ColumnSheet..ColumnsDetailsPnl..ColumnDetailsGroupBox..TntLabel4..Caption
# #-#-#-#-# ..\res\windows\po\default.po (PACKAGE VERSION) #-#-#-#-#
# EditorTableForm..TableEditorPnl..GirdOptionPnl..MainPageControl..ColumnTabSheet..ColumnsPageControl..TntTabSheet1..TntLabel4..Caption
# MyxTableEditorForm..DockPanel..TablePageControl..ColumnSheet..ColumnsDetailsPnl..ColumnDetailsGroupBox..TntLabel4..Caption
#. EditorTableForm..TableEditorPnl..GirdOptionPnl..MainPageControl..ColumnTabSheet..ColumnsPageControl..TntTabSheet1..TntLabel4..Caption
#. MyxTableEditorForm..TablePageControl..ColumnSheet..ColumnsContentPnl..ColumnsDetailsPnl..ColumnDetailsGroupBox..TntLabel4..Caption
#: EditorTable.dfm:719
#: MyxTabHeader.pas:1587
#: SchemataTreeView.pas:2427
#: TabHeader.pas:1319
msgid "Name:"
msgstr "Name:"
#. OptionsForm..OptionPageControl..ConnectionsTabSheet..AddConnectionButton..Caption
#: OptionsEditor.dfm:871
msgid "New Connection"
msgstr "Neue Verbindung"
#. Fill charsets.
#: EditorTable.pas:848
msgid "New Table"
msgstr "Neue Tabelle"
# RoutineFrame..RoutinePanel..RoutineHeaderPanel..RoutineLbl..Caption
#. RoutineFrame..RoutinePanel..RoutineHeaderPanel..RoutineLbl..Caption
#: MyxRoutineEditorFrame.dfm:44
msgid "New_Routine"
msgstr "Neue_Routine"
# MyxTableEditorForm..TntActionList1..NextTabsheetAction..Caption
#. MyxTableEditorForm..TntActionList..NextTabsheetAction..Caption
#: MyxTableEditor.dfm:1835
msgid "Next Tabsheet"
msgstr "Nächste Registerkarte"
#: ConnectToInstance.pas:980
#: EditorTable.pas:758
#: EditorTable.pas:3223
#: MyxConnectionDialog.pas:1255
#: OptionsEditor.pas:556
#: OptionsEditor.pas:683
msgid "No"
msgstr "Nein"
#: EditorTable.pas:519
msgid "No Action"
msgstr "Keine Aktion"
# Execute Script
#. Execute Script
#: EditorTable.pas:3115
msgid "No Changes"
msgstr "Keine Änderungen"
#: EditorTable.pas:499
msgid "No Inserts"
msgstr "Keine Einfügungen"
#: MySQLResultSet.pas:554
msgid "No SQL Command"
msgstr "Keine SQL-Anweisung"
# TextSearchForm..NoMatchFoundPnl..Caption
#. TextSearchForm..NoMatchFoundPnl..Caption
#: TextSearch.dfm:316
msgid "No match found."
msgstr "Keine passende Stelle gefunden"
# MigrationObjMapDetailFrame..ObjectSelGBox..DefMethodDescLbl..Caption
#. MigrationObjMapDetailFrame..ObjectSelGBox..DefMethodDescLbl..Caption
#: MigrationObjMapDetail.dfm:42
msgid "No migration method available for this source type."
msgstr "Keine Migrierungsmethode für diesen Quelltyp verfügbar"
#: MySQLResultSet.pas:1733
msgid "No resultset returned."
msgstr "Keine Ergebnismenge"
#. OptionsForm..OptionPageControl..EditorsTabSheet..GroupBox4..DefaultStorageEngineLU....Items.Strings
#: OptionsEditor.dfm:1069
msgid "None"
msgstr "Nichts"
# EditorTableForm..TableEditorPnl..GirdOptionPnl..MainPageControl..ColumnTabSheet..ColumnsPageControl..TntTabSheet1..TntGroupBox5..ColumnNotNullCBox..Caption
#. EditorTableForm..TableEditorPnl..GirdOptionPnl..MainPageControl..ColumnTabSheet..ColumnsPageControl..TntTabSheet1..TntGroupBox5..ColumnNotNullCBox..Caption
#: EditorTable.dfm:850
msgid "Not Null"
msgstr "Nicht NULL"
#. OptionsForm..OptionPageControl..GeneralTabSheet..GroupBox1..Label4....AutoSize
#: OptionsEditor.dfm:315
msgid "Note: a localized help for languages other than english is available from the MySQL site."
msgstr "Beachten Sie: eine lokalisierte Hilfe für nicht-englische Sprachen ist von der MySQL Website erhältlich."
# OptionsForm..OptionPageControl..ConnectionsTabSheet..ConnectionPageControl..ConnGeneralTabSheet..Label1..Caption
#. OptionsForm..OptionPageControl..ConnectionsTabSheet..ConnectionPageControl..ConnGeneralTabSheet..Label1..Caption
#: OptionsEditor.dfm:750
msgid "Notes:"
msgstr "Anmerkungen:"
#: EditorTable.pas:3613
msgid "Nothing selected"
msgstr "Nichts ausgewählt"
# #-#-#-#-# ..\res\windows\po\default.po (PACKAGE VERSION) #-#-#-#-#
# EditorTableForm..TableEditorPnl..GirdOptionPnl..MainPageControl..AdvTableOptionsSheet..AdvancedOptionsScrollBox..RaidOptionsGBox..NumberOfChunksCaptionLbl..Caption
#. EditorTableForm..TableEditorPnl..GirdOptionPnl..MainPageControl..AdvTableOptionsSheet..AdvancedOptionsScrollBox..RaidOptionsGBox..NumberOfChunksCaptionLbl..Caption
#: EditorTable.dfm:1277
msgid "Number of Chunks:"
msgstr "Anzahl Partitionen:"
# EditorTableForm..TableEditorPnl..GirdOptionPnl..MainPageControl..AdvTableOptionsSheet..AdvancedOptionsScrollBox..RaidOptionsGBox..NumberOfChunksDescLbl....AutoSize
# EditorTableForm..TableEditorPnl..GirdOptionPnl..MainPageControl..AdvTableOptionsSheet..AdvancedOptionsScrollBox..RaidOptionsGBox..NumberOfChunksDescLbl....AutoSize
#. EditorTableForm..TableEditorPnl..GirdOptionPnl..MainPageControl..AdvTableOptionsSheet..AdvancedOptionsScrollBox..RaidOptionsGBox..NumberOfChunksDescLbl....AutoSize
#: EditorTable.dfm:1316
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 "Anzahl zu erzeugender Partitionen, Maximalzahl ist 255. Für jede Partition wird ein Unterverzeichnis namens '00', '01', ... erzeugt und in jedem davon eine Datei 'tabellenname.MYD' angelegt."
# MigrationObjSelFilterFrame..ObjectSelGBox..ObjectsToMigrateLbl..Caption
#. MigrationObjSelFilterFrame..ObjectSelGBox..ObjectsToMigrateLbl..Caption
#: MigrationObjSelFilter.dfm:46
msgid "Number to migrate:"
msgstr "Zu migrierende Anzahl:"
# OptionsForm..OptionPageControl..ConnectionsTabSheet..ConnectionPageControl..ConnGeneralTabSheet..TypeCBox....Items.WideStrings
#. OptionsForm..OptionPageControl..ConnectionsTabSheet..ConnectionPageControl..ConnGeneralTabSheet..TypeCBox....Items.Strings
#: OptionsEditor.dfm:792
msgid "ODBC"
msgstr "ODBC"
# #-#-#-#-# ..\res\windows\po\default.po (PACKAGE VERSION) #-#-#-#-#
# AboutForm..CloseBtn..Caption
# ConnectToInstanceForm..BottomPnl..OKBtn..Caption
# MySQLResultSetFieldViewerForm..PageControl..TextSheet..TextSheetBtnPnl..OKBtn..Caption
# MySQLResultSetFieldViewerForm..PageControl..ImageSheet..ImageSheetBtnPnl..Ok2Btn..Caption
# MySQLResultSetFieldViewerForm..PageControl..BinarySheet..TntPanel1..OK3Btn..Caption
# MyxConnectionDialogForm..BottomPnl..OKBtn..Caption
# SchemaSelectionForm..BottomPnl..OKBtn..Caption
#. AboutForm..CloseBtn..Caption
#. MySQLResultSetFieldViewerForm..PageControl..TextSheet..TextSheetBtnPnl..OKBtn..Caption
#. MySQLResultSetFieldViewerForm..PageControl..ImageSheet..ImageSheetBtnPnl..Ok2Btn..Caption
#. MySQLResultSetFieldViewerForm..PageControl..BinarySheet..TntPanel1..OK3Btn..Caption
#. MyxConnectionDialogForm..BottomPnl..OKBtn..Caption
#. SchemaSelectionForm..BottomPnl..OKBtn..Caption
#: About.dfm:105
#: MySQLResultSetFieldViewer.dfm:156
#: MySQLResultSetFieldViewer.dfm:886
#: MyxConnectionDialog.dfm:268
#: SchemaSelection.dfm:120
#: ConnectToInstance.pas:856
#: ConnectToInstance.pas:949
#: ConnectToInstance.pas:963
#: EditorTable.pas:1807
#: EditorTable.pas:2203
#: EditorTable.pas:2623
#: EditorTable.pas:2959
#: EditorTable.pas:2984
#: EditorTable.pas:3117
#: EditorTable.pas:3620
#: EditorTable.pas:3629
#: MigrationObjSelFilter.pas:572
#: MySQLConnection.pas:458
#: MySQLConnection.pas:1442
#: MyxError.pas:264
#: MyxError.pas:269
#: MyxError.pas:274
#: MyxError.pas:279
#: SchemataTreeView.pas:1498
#: SchemataTreeView.pas:2248
msgid "OK"
msgstr "OK"
# MigrationObjSelFilterFrame..ObjectSelGBox..DetailFilterPnl..ObjListVT......WideText
#. MigrationObjSelFilterFrame..ObjectSelGBox..DetailFilterPnl..ObjListVT......WideText
#: MigrationObjSelFilter.dfm:167
msgid "Object to Migrate"
msgstr "Zu migrierendes Objekt"
#: MigrationObjSelFilter.pas:212
msgid "Objects of type %s"
msgstr "Objekte vom Typ %s"
# MigrationObjSelFilterFrame..ObjectSelGBox..TntLabel1..Caption
#. MigrationObjSelFilterFrame..ObjectSelGBox..TntLabel1..Caption
#: MigrationObjSelFilter.dfm:53
msgid "Objects of type:"
msgstr "Objekte vom Typ:"
#: MySQLResultSet.pas:556
msgid "Ok"
msgstr "OK"
# MyxTableEditorForm..DockPanel..TablePageControl..ForeignKeySheet..ForeignKeyVST......WideText
#. MyxTableEditorForm..TablePageControl..ForeignKeySheet..FkSheetPnl..ForeignKeyVST......WideText
#: MyxTableEditor.dfm:757
msgid "On Delete"
msgstr "Beim Löschen"
# #-#-#-#-# ..\res\windows\po\default.po (PACKAGE VERSION) #-#-#-#-#
# EditorTableForm..TableEditorPnl..GirdOptionPnl..MainPageControl..ColumnTabSheet..ColumnsPageControl..TntTabSheet8..TntGroupBox2..TntLabel15..Caption
#. EditorTableForm..TableEditorPnl..GirdOptionPnl..MainPageControl..ColumnTabSheet..ColumnsPageControl..FKTabsheet..TntGroupBox2..TntLabel15..Caption
#: EditorTable.dfm:584
msgid "On Delete:"
msgstr "Löschen:"
# MyxTableEditorForm..DockPanel..TablePageControl..ForeignKeySheet..ForeignKeyVST......WideText
#. MyxTableEditorForm..TablePageControl..ForeignKeySheet..FkSheetPnl..ForeignKeyVST......WideText
#: MyxTableEditor.dfm:752
msgid "On Update"
msgstr "Beim Aktualisieren"
# #-#-#-#-# ..\res\windows\po\default.po (PACKAGE VERSION) #-#-#-#-#
# EditorTableForm..TableEditorPnl..GirdOptionPnl..MainPageControl..ColumnTabSheet..ColumnsPageControl..TntTabSheet8..TntGroupBox2..TntLabel16..Caption
#. EditorTableForm..TableEditorPnl..GirdOptionPnl..MainPageControl..ColumnTabSheet..ColumnsPageControl..FKTabsheet..TntGroupBox2..TntLabel16..Caption
#: EditorTable.dfm:591
msgid "On Update:"
msgstr "Aktualisieren:"
# There can only be one PRIMARY index
#. There can only be one PRIMARY index
#: EditorTable.pas:2621
msgid "Only one Primary Key"
msgstr "Nur ein Primärschlüssel"
#: MySQLResultSetControls.pas:540
msgid "Only two resultsets can be compared. Use the [Split Tab] function in the grid's popup menu to get a second grid."
msgstr "Nur zwei Ergebnismengen können verglichen werden. Mit Funktion [Registerkarte teilen] im Popup-Menü der Ansicht eine neue erzeugen"
#: MyxConnectionDialog.pas:673
msgid "Open File ..."
msgstr "Datei öffnen..."
# OptionsForm..Caption
# TextSearchForm..PageControl..OptionsTabSheet..Caption
# TextSearchForm..PageControl..OptionsTabSheet..OptionPnl..OptionsGBox..Caption
#. OptionsForm..Caption
#. TextSearchForm..PageControl..OptionsTabSheet..Caption
#. TextSearchForm..PageControl..OptionsTabSheet..OptionPnl..OptionsGBox..Caption
#: OptionsEditor.dfm:5
msgid "Options"
msgstr "Einstellungen"
# OptionsForm..OptionPageControl..ConnectionsTabSheet..ConnectionPageControl..ConnGeneralTabSheet..TypeCBox....Items.WideStrings
#. OptionsForm..OptionPageControl..ConnectionsTabSheet..ConnectionPageControl..ConnGeneralTabSheet..TypeCBox....Items.Strings
#: OptionsEditor.dfm:791
msgid "Oracle"
msgstr "Oracle"
# MigrationObjSelFilterFrame..ObjectSelGBox..StructTypeLbl..Caption
#. MigrationObjSelFilterFrame..ObjectSelGBox..StructTypeLbl..Caption
#: MigrationObjSelFilter.dfm:60
msgid "Oracle Table"
msgstr "Oracle-Tabelle"
# MyxTableEditorForm..DockPanel..TablePageControl..IndicesSheet..IndexColumnVST......WideText
#. MyxTableEditorForm..TablePageControl..IndicesSheet..IndexContentPnl..IndexColumnVST......WideText
#: MyxTableEditor.dfm:665
msgid "Order"
msgstr "Sortierung"
# TextSearchForm..PageControl..OptionsTabSheet..OptionPnl..TntGroupBox1..Caption
#. TextSearchForm..PageControl..OptionsTabSheet..OptionPnl..TntGroupBox1..Caption
#: TextSearch.dfm:282
msgid "Origin"
msgstr "Ursprung"
#: MigrationObjSelFilter.pas:424
msgid "Owner object of %s not found"
msgstr "Eigentümerobjekt von %s nicht gefunden"
#. ConnectToInstanceForm..ConnectToHostPnl..PortLbl..Caption
#: ConnectToInstance.dfm:557
msgid "P&ort:"
msgstr "P&ort:"
# OptionsForm..OptionPageControl..EditorsTabSheet..GroupBox4..Label6..Caption
# OptionsForm..OptionPageControl..EditorsTabSheet..GroupBox4..Label6..Caption
#. OptionsForm..OptionPageControl..EditorsTabSheet..GroupBox4..Label6..Caption
#: OptionsEditor.dfm:917
msgid "PK Naming:"
msgstr "Primärschl.namen:"
# OptionsForm..OptionPageControl..EditorsTabSheet..GroupBox4..Label9..Caption
# OptionsForm..OptionPageControl..EditorsTabSheet..GroupBox4..Label9..Caption
#. OptionsForm..OptionPageControl..EditorsTabSheet..GroupBox4..Label9..Caption
#: OptionsEditor.dfm:942
msgid "PK datatype:"
msgstr "Primärschlüssel-Datentyp:"
#: MySQLResultSetFieldViewer.pas:163
msgid "PNG"
msgstr "PNG"
#: MySQLResultSetFieldViewer.pas:170
msgid "PNG image corrupted."
msgstr "PNG-Bild defekt"
#: EditorTable.pas:506
msgid "Pack All"
msgstr "Alle komprimieren"
# #-#-#-#-# ..\res\windows\po\default.po (PACKAGE VERSION) #-#-#-#-#
# EditorTableForm..TableEditorPnl..GirdOptionPnl..MainPageControl..AdvTableOptionsSheet..AdvancedOptionsScrollBox..VariousGBox..TntLabel19..Caption
#. EditorTableForm..TableEditorPnl..GirdOptionPnl..MainPageControl..AdvTableOptionsSheet..AdvancedOptionsScrollBox..VariousGBox..TntLabel19..Caption
#. MyxTableEditorForm..TablePageControl..TntTabSheet1..AdvancedOptionsSheetPnl..AdvancedOptionsScrollBox..VariousGBox..TntLabel19..Caption
#: EditorTable.dfm:1389
msgid "Pack Keys:"
msgstr "Schlüssel komprim.:"
#: EditorTable.pas:505
msgid "Pack None"
msgstr "Nicht komprimieren"
# OptionsForm..OptionPageControl..ConnectionsTabSheet..ConnectionPageControl..ConnAdvTabSheet..ConnValueListEditor....TitleCaptions.Strings
#. OptionsForm..OptionPageControl..ConnectionsTabSheet..ConnectionPageControl..ConnAdvTabSheet..ConnValueListEditor....TitleCaptions.Strings
#: OptionsEditor.dfm:857
msgid "Parameter"
msgstr "Parameter"
# MigrationObjMapDetailFrame..ObjectSelGBox..ParameterLbl..Caption
#. MigrationObjMapDetailFrame..ObjectSelGBox..ParameterLbl..Caption
#: MigrationObjMapDetail.dfm:49
msgid "Parameter:"
msgstr "Parameter:"
# OptionsForm..OptionPageControl..GeneralTabSheet..TntGroupBox1..Caption
#. OptionsForm..OptionPageControl..GeneralTabSheet..TntGroupBox1..Caption
#: OptionsEditor.dfm:600
msgid "Password Storage"
msgstr "Passwortspeicherung"
# OptionsForm..OptionPageControl..GeneralTabSheet..TntGroupBox1..PasswordStorageTypeLbl..Caption
#. OptionsForm..OptionPageControl..GeneralTabSheet..TntGroupBox1..PasswordStorageTypeLbl..Caption
#: OptionsEditor.dfm:608
msgid "Password storage method:"
msgstr "Passwortspeichermethode:"
# EditorTableForm..TableEditorPnl..GirdOptionPnl..MainPageControl..AdvTableOptionsSheet..AdvancedOptionsScrollBox..VariousGBox..TntLabel52....AutoSize
#. EditorTableForm..TableEditorPnl..GirdOptionPnl..MainPageControl..AdvTableOptionsSheet..AdvancedOptionsScrollBox..VariousGBox..TntLabel52....AutoSize
#. MyxTableEditorForm..TablePageControl..TntTabSheet1..AdvancedOptionsSheetPnl..AdvancedOptionsScrollBox..VariousGBox..TntLabel52....AutoSize
#: EditorTable.dfm:1425
msgid "Password to encrypt the table definition file. This option doesn't do anything in the standard MySQL version."
msgstr "Passwort zur Verschlüsselung der Tabellendefinitionsdatei. Diese Einstellung ist in der Standard-MySQL-Version wirkungslos."
# #-#-#-#-# ..\res\windows\po\default.po (PACKAGE VERSION) #-#-#-#-#
# ConnectToInstanceForm..ConnectToHostPnl..PasswordLbl..Caption
# OptionsForm..OptionPageControl..ConnectionsTabSheet..ConnectionPageControl..ConnGeneralTabSheet..PasswordLbl..Caption
#. OptionsForm..OptionPageControl..ConnectionsTabSheet..ConnectionPageControl..ConnGeneralTabSheet..PasswordLbl..Caption
#: OptionsEditor.dfm:714
msgid "Password:"
msgstr "Passwort:"
#. MyxTableEditorForm..TntActionList..PasteFromClipboardAction..Caption
#: MyxTableEditor.dfm:1887
msgid "Paste column definition from clipboard"
msgstr "Füge Spaltendefinition von der Zwischenablage ein"
#: MigrationObjSelFilter.pas:573
msgid "Pattern"
msgstr "Muster"
#: ConnectToInstance.pas:856
msgid "Ping"
msgstr "Ping"
#. ConnectToInstanceForm..AdvancedOptionsGBox..AdvancedOptionsPageControl..MySQLOptionsTabSheet..PipeNameLabel..Caption
#: ConnectToInstance.dfm:689
msgid "Pipe name:"
msgstr "Pipename:"
#. MyxTableEditorForm..TablePageControl..ColumnSheet..ColumnsContentPnl..ColumnVST....ClipboardFormats.Strings
#: MyxTableEditor.dfm:441
msgid "Plain text"
msgstr "Einfacher Text"
#: MyxTableEditor.pas:3111
msgid "Please columns to the table before adding the foreign keys."
msgstr "Vor Fremdschlüssel-Festlegung Spalten in die Tabelle einfügen."
#: MyxConnectionDialog.pas:1186
msgid "Please enter a name for the connection."
msgstr "Bitte geben Sie einen Namen für die Verbindung ein."
#: SchemataTreeView.pas:1498
msgid "Please enter a name for the new schema."
msgstr "Bitte geben Sie einen Namen für das neue Schema an."
#: EditorTable.pas:2716
msgid "Please enter the name of the new foreign key."
msgstr "Bitte geben Sie einen Namen für den neuen Fremdschlüssel an."
#: EditorTable.pas:2556
msgid "Please enter the name of the new index."
msgstr "Bitte geben Sie einen Namen für den neuen Index an."
#: SchemataTreeView.pas:2426
msgid "Please enter the new name for the table %s."
msgstr "Bitte geben Sie den neuen Namen für Tabelle %s an."
#: MyxTabHeader.pas:1586
msgid "Please enter the new name of the tabsheet."
msgstr "Bitte geben Sie den neuen Namen für die Registerkarte an."
#: MigrationObjSelFilter.pas:571
msgid "Please enter the pattern to ignore. You can use * and ? to match the objects you would like to ignore. Please note that the string is matched case sensitive"
msgstr "Bitte geben Sie das auszuschließende Muster an. Auszuschließende Objekte können mit * und ? beschrieben werden. Textvergleich unterscheidet Groß-/Kleinschreibung."
#: SchemataTreeView.pas:2273
msgid "Please note that this action cannot be rolled back."
msgstr "Bitte beachten Sie, dass diese Aktion nicht zurückgenommen werden kann."
# SchemaSelectionForm..HeaderPnl..Label2..Caption
# SchemaSelectionForm..HeaderPnl..Label2..Caption
# SchemaSelectionForm..HeaderPnl..Label2..Caption
#. SchemaSelectionForm..HeaderPnl..Label2..Caption
#: SchemaSelection.dfm:82
msgid "Please select a schema from the schema list "
msgstr "Bitte wählen Sie ein Schema aus der Liste."
# #-#-#-#-# ..\res\windows\po\default.po (PACKAGE VERSION) #-#-#-#-#
# ConnectToInstanceForm..ConnectToHostPnl..PortLbl..Caption
# OptionsForm..OptionPageControl..ConnectionsTabSheet..ConnectionPageControl..ConnGeneralTabSheet..PortLbl..Caption
#. OptionsForm..OptionPageControl..ConnectionsTabSheet..ConnectionPageControl..ConnGeneralTabSheet..PortLbl..Caption
#: OptionsEditor.dfm:721
msgid "Port:"
msgstr "Port:"
# MyxTableEditorForm..TntActionList1..PreviousTabsheetAction..Caption
#. MyxTableEditorForm..TntActionList..PreviousTabsheetAction..Caption
#: MyxTableEditor.dfm:1840
msgid "Previous Tabsheet"
msgstr "Vorige Registerkarte"
# #-#-#-#-# ..\res\windows\po\default.po (PACKAGE VERSION) #-#-#-#-#
# EditorTableForm..TableEditorPnl..GirdOptionPnl..MainPageControl..ColumnTabSheet..ColumnsPageControl..TntTabSheet1..TntGroupBox5..ColumnPKCBox..Caption
#. EditorTableForm..TableEditorPnl..GirdOptionPnl..MainPageControl..ColumnTabSheet..ColumnsPageControl..TntTabSheet1..TntGroupBox5..ColumnPKCBox..Caption
#: EditorTable.dfm:841
msgid "Primary Key"
msgstr "Primärschlüssel"
#: MySQLResultSet.pas:1453
msgid "Problem while executing query"
msgstr "Problem während der Ausführung der Abfrage"
# RoutineFrame..TntActionList1..SetBodyProcedureAction..Caption
#. RoutineFrame..TntActionList1..SetBodyProcedureAction..Caption
#: MyxRoutineEditorFrame.dfm:467
msgid "Procedure Body"
msgstr "Prozedur-Body"
# ProgressForm..ProgressGBox..Caption
#. ProgressForm..ProgressGBox..Caption
#: Progress.dfm:36
msgid "Progress"
msgstr "Fortschritt"
# ProgressForm..Caption
# ProgressForm..Caption
#. ProgressForm..Caption
#: Progress.dfm:6
msgid "Progress ..."
msgstr "Fortschritt..."
#: MySQLResultSet.pas:1268
msgid "Query Execute Thread cannot connect to MySQL"
msgstr "Abfrageausführungs-Thread kann nicht mit MySQL verbinden."
#: MySQLResultSet.pas:1704
msgid "Query aborted."
msgstr "Abfrage abgebrochen"
#: MySQLResultSet.pas:1701
msgid "Query aborted. %d rows fetched so far in %.4fs (%.4fs)"
msgstr "Abfrage abgebrochen. Bisher %d Zeilen in %.4fs (%.4fs) geholt."
#: MySQLResultSet.pas:1195
msgid "Query is being executed..."
msgstr "Abfrage wird ausgeführt..."
#: MySQLResultSet.pas:1164
msgid "Query is being stopped..."
msgstr "Abfrage wird gestoppt..."
#: MySQLResultSet.pas:1677
msgid "Query returned no resultset."
msgstr "Abfrage erzeugte keine Ergebnismenge."
# #-#-#-#-# ..\res\windows\po\default.po (PACKAGE VERSION) #-#-#-#-#
# EditorTableForm..TableEditorPnl..GirdOptionPnl..MainPageControl..AdvTableOptionsSheet..AdvancedOptionsScrollBox..RaidOptionsGBox..TntLabel29..Caption
#. EditorTableForm..TableEditorPnl..GirdOptionPnl..MainPageControl..AdvTableOptionsSheet..AdvancedOptionsScrollBox..RaidOptionsGBox..TntLabel29..Caption
#: EditorTable.dfm:1270
msgid "RAID Type:"
msgstr "RAID-Typ:"
# Translation neccessary/useful/possible?
#: SchemataTreeView.pas:2429
msgid "RENAME TABLE `%s`.`%s` TO `%s`.`%s`"
msgstr "RENAME TABLE `%s`.`%s` TO `%s`.`%s`"
# Translation neccessary/useful/possible?
# #-#-#-#-# glade.pot #-#-#-#-#
# table_editor.glade:GtkMenuItem:restrict1..table_editor.glade:GtkMenuItem:menuitem4
#: MyxTableEditorFkVTEdit.pas:632
msgid "RESTRICT"
msgstr "RESTRICT"
#: MyxTableEditor.pas:622
msgid "Redundant"
msgstr "Redundant"
# EditorTableForm..TableEditorPnl..GirdOptionPnl..MainPageControl..ColumnTabSheet..ColumnsPageControl..TntTabSheet8..TntGroupBox2..TntLabel17..Caption
#. EditorTableForm..TableEditorPnl..GirdOptionPnl..MainPageControl..ColumnTabSheet..ColumnsPageControl..FKTabsheet..TntGroupBox2..TntLabel17..Caption
#: EditorTable.dfm:598
msgid "Ref. Table:"
msgstr "Bezugstab.:"
# MyxTableEditorForm..DockPanel..TablePageControl..ForeignKeySheet..ForeignKeyColumnVST......WideText
#. MyxTableEditorForm..TablePageControl..ForeignKeySheet..FkSheetPnl..ForeignKeyColumnVST......WideText
#: MyxTableEditor.dfm:801
msgid "Refered Column"
msgstr "Bezugsspalte"
# MyxTableEditorForm..DockPanel..TablePageControl..ForeignKeySheet..ForeignKeyVST......WideText
#. MyxTableEditorForm..TablePageControl..ForeignKeySheet..FkSheetPnl..ForeignKeyVST......WideText
#: MyxTableEditor.dfm:747
msgid "Refered Table"
msgstr "Bezugstabelle"
# EditorTableForm..TableEditorPnl..GirdOptionPnl..MainPageControl..ColumnTabSheet..ColumnsPageControl..TntTabSheet8..TntGroupBox2..FKColsVST......WideText
#. EditorTableForm..TableEditorPnl..GirdOptionPnl..MainPageControl..ColumnTabSheet..ColumnsPageControl..FKTabsheet..TntGroupBox2..FKColsVST......WideText
#: EditorTable.dfm:656
msgid "Reference Column"
msgstr "Bezugsspalte"
# SchemataFrame..SchemaTreeViewPopupMenu..RefreshCatalogsSchemataListMI..Caption
#. SchemataFrame..SchemaTreeViewPopupMenu..RefreshCatalogsSchemataListMI..Caption
#: SchemataTreeView.dfm:270
msgid "Refresh"
msgstr "Aktualisieren"
#: Grt.pas:2559
msgid "Registered %d %s modules."
msgstr "%d %s-Module registriert"
#: Grt.pas:2367
msgid "Registered %d struct definition files."
msgstr "%d Strukturdefinitionsdateien registriert"
#: Grt.pas:2555
msgid "Registered 1 %s module."
msgstr "1 %s-Modul registriert"
#: Grt.pas:2364
msgid "Registered 1 struct definition file."
msgstr "1 Strukturdefinitionsdatei registriert"
# OptionsForm..OptionPageControl..GeneralTabSheet..TntGroupBox2..RemoveWarningFromIgnoreListBtn..Caption
#. OptionsForm..OptionPageControl..GeneralTabSheet..TntGroupBox2..RemoveWarningFromIgnoreListBtn..Caption
#: OptionsEditor.dfm:659
msgid "Remove"
msgstr "Entfernen"
# EditorTableForm..FKColumnPopupMenu..RemoveFKColumnMI..Caption
#. EditorTableForm..FKColumnPopupMenu..RemoveFKColumnMI..Caption
#: EditorTable.dfm:1916
msgid "Remove Column"
msgstr "Spalte entfernen"
# ConnectToInstanceForm..AdvancedOptionsGBox..AdvancedOptionsPageControl..AdvancedOptionsGeneralTabSheet..AdvancedOptionsBottomPnl..AdvancedOptionsBottomRightPnl..AdvancedOptionsDelBtn..Hint
# MyxConnectionDialogForm..ParamsMainPnl..ConnectGBox..StoredConnPnl..StoredConnDelBtn..Hint
#. ConnectToInstanceForm..AdvancedOptionsGBox..AdvancedOptionsPageControl..AdvancedOptionsGeneralTabSheet..AdvancedOptionsBottomPnl..AdvancedOptionsBottomRightPnl..AdvancedOptionsDelBtn..Hint
#. MyxConnectionDialogForm..ParamsMainPnl..ConnectGBox..StoredConnPnl..StoredConnDelBtn..Hint
#: ConnectToInstance.dfm:781
msgid "Remove Option"
msgstr "Einstellung entfernen"
# MigrationObjSelFilterFrame..ObjectSelGBox..DetailFilterPnl..RemoveFromIgnoreListBtn..Hint
#. MigrationObjSelFilterFrame..ObjectSelGBox..DetailFilterPnl..RemoveFromIgnoreListBtn..Hint
#: MigrationObjSelFilter.dfm:122
msgid "Remove selected objects from the ignore list"
msgstr "Ausgewählte Objekte von der Ausschlussliste entfernen"
# SchemataFrame..SchemaTreeViewPopupMenu..RenameMI..Caption
#. SchemataFrame..SchemaTreeViewPopupMenu..RenameMI..Caption
#: SchemataTreeView.dfm:210
#: SchemataTreeView.pas:2427
#: TabHeader.pas:1319
msgid "Rename"
msgstr "Umbenennen"
#: SchemataTreeView.pas:1573
msgid "Rename Function"
msgstr "Funktion umbenennen"
#: SchemataTreeView.pas:1565
msgid "Rename Procedure"
msgstr "Prozedur umbenennen"
#: SchemataTreeView.pas:1541
msgid "Rename Schema"
msgstr "Schema umbenennen"
#: SchemataTreeView.pas:1549
msgid "Rename Table"
msgstr "Tabelle umbenennen"
# MyxTabHeaderFrame..TabHeaderPopupMenu..RenameTabsheetMI..Caption
# TabHeaderFrame..TabHeaderPopupMenu..RenameTabsheetMI..Caption
#. MyxTabHeaderFrame..TabHeaderPopupMenu..RenameTabsheetMI..Caption
#. TabHeaderFrame..TabHeaderPopupMenu..RenameTabsheetMI..Caption
#: MyxTabHeader.dfm:15
msgid "Rename Tabsheet"
msgstr "Registerkarte umbenennen"
#: SchemataTreeView.pas:1557
msgid "Rename View"
msgstr "View umbenennen"
# TextSearchForm..PageControl..ReplaceTabSheet..Caption
# TextSearchForm..PageControl..ReplaceTabSheet..ReplaceBtn..Caption
#. TextSearchForm..PageControl..ReplaceTabSheet..Caption
#. TextSearchForm..PageControl..ReplaceTabSheet..ReplaceBtn..Caption
#: TextSearch.dfm:95
#: MyxRoutineEditorFrame.pas:356
msgid "Replace"
msgstr "Ersetzen"
# TextSearchForm..PageControl..ReplaceTabSheet..ReplaceAllBtn..Caption
#. TextSearchForm..PageControl..ReplaceTabSheet..ReplaceAllBtn..Caption
#: TextSearch.dfm:139
msgid "Replace All"
msgstr "Alles ersetzen"
#: MyxRoutineEditorFrame.pas:334
msgid "Replace Text"
msgstr "Text ersetzen"
# TextSearchForm..PageControl..ReplaceTabSheet..ReplaceWithLbl..Caption
#. TextSearchForm..PageControl..ReplaceTabSheet..ReplaceWithLbl..Caption
#: TextSearch.dfm:113
msgid "Replace with:"
msgstr "Ersetzen durch:"
#. Print result
#: ConnectToInstance.pas:1034
msgid "Reply from"
msgstr "Antwort von"
#: ConnectToInstance.pas:1039
msgid "Request timed out."
msgstr "Anfragezeitraum überschritten."
# ConnectToInstanceForm..AdvancedOptionsGBox..AdvancedOptionsPageControl..AdvancedOptionsGeneralTabSheet..AdvancedOptionsBottomPnl..AdvancedOptionsBottomRightPnl..AdvancedOptionsResetBtn..Hint
#. ConnectToInstanceForm..AdvancedOptionsGBox..AdvancedOptionsPageControl..AdvancedOptionsGeneralTabSheet..AdvancedOptionsBottomPnl..AdvancedOptionsBottomRightPnl..AdvancedOptionsResetBtn..Hint
#: ConnectToInstance.dfm:819
msgid "Reset Options to Defaul Values"
msgstr "Einstellungen auf Vorgabewerte zurücksetzen"
#: MyxError.pas:250
msgid "Restart"
msgstr "Neu starten"
#: EditorTable.pas:522
msgid "Restrict"
msgstr "Einschränken"
#. MyxTableEditorForm..TablePageControl..ColumnSheet..ColumnsContentPnl..ColumnVST....ClipboardFormats.Strings
#: MyxTableEditor.dfm:442
msgid "Rich Text Format"
msgstr "Rich Text Format"
#. MyxTableEditorForm..TablePageControl..ColumnSheet..ColumnsContentPnl..ColumnVST....ClipboardFormats.Strings
#: MyxTableEditor.dfm:443
msgid "Rich Text Format Without Objects"
msgstr "Richt-Text-Format ohne Objekte"
#. MyxRoutineGroupEditorForm..RoutinePageControl..RoutineGroupSheet..Caption
#: MyxRoutineGroupEditor.dfm:89
msgid "Routine Group"
msgstr "Routinengruppe"
# MyxRoutineGroupEditorForm..Caption
#. MyxRoutineGroupEditorForm..Caption
#: MyxRoutineGroupEditor.dfm:6
msgid "Routine Group Editor"
msgstr "Routinengruppen-Editor"
#. MyxRoutineGroupEditorForm..RoutinePageControl..RoutineGroupSheet..RoutineGroupSheetPnl..TntLabel1..Caption
#: MyxRoutineGroupEditor.dfm:261
msgid "Routines:"
msgstr "Routinen:"
# #-#-#-#-# ..\res\windows\po\default.po (PACKAGE VERSION) #-#-#-#-#
# EditorTableForm..TableEditorPnl..GirdOptionPnl..MainPageControl..AdvTableOptionsSheet..AdvancedOptionsScrollBox..RowOptionsGBox..TntLabel26..Caption
#. EditorTableForm..TableEditorPnl..GirdOptionPnl..MainPageControl..AdvTableOptionsSheet..AdvancedOptionsScrollBox..RowOptionsGBox..TntLabel26..Caption
#. MyxTableEditorForm..TablePageControl..TntTabSheet1..AdvancedOptionsSheetPnl..AdvancedOptionsScrollBox..RowOptionsGBox..TntLabel26..Caption
#: EditorTable.dfm:1157
msgid "Row Format:"
msgstr "Zeilenformat:"
# #-#-#-#-# ..\res\windows\po\default.po (PACKAGE VERSION) #-#-#-#-#
# EditorTableForm..TableEditorPnl..GirdOptionPnl..MainPageControl..AdvTableOptionsSheet..AdvancedOptionsScrollBox..RowOptionsGBox..Caption
#. EditorTableForm..TableEditorPnl..GirdOptionPnl..MainPageControl..AdvTableOptionsSheet..AdvancedOptionsScrollBox..RowOptionsGBox..Caption
#. MyxTableEditorForm..TablePageControl..TntTabSheet1..AdvancedOptionsSheetPnl..AdvancedOptionsScrollBox..RowOptionsGBox..Caption
#: EditorTable.dfm:1129
msgid "Row Options"
msgstr "Zeileneinstellungen"
#: MyxTableEditorFkVTEdit.pas:642
msgid "SET NULL"
msgstr "SET NULL"
#: MyxError.pas:264
msgid "SQL Error"
msgstr "SQL-Fehler"
# EditorTableForm..TableEditorPnl..GirdOptionPnl..MainPageControl..StdInsertsTabSheet..TntLabel40..Caption
#. EditorTableForm..TableEditorPnl..GirdOptionPnl..MainPageControl..StdInsertsTabSheet..TntLabel40..Caption
#: EditorTable.dfm:1591
msgid "SQL Inserts"
msgstr "SQL-Einfügungen"
# EditorSqlForm..UCESQLHighlighter..DefaultFilter
# RoutineFrame..UCESQLHighlighter..DefaultFilter
# MyxViewEditorForm..UCESQLHighlighter..DefaultFilter
#. EditorSqlForm..UCESQLHighlighter..DefaultFilter
#. RoutineFrame..UCESQLHighlighter..DefaultFilter
#. MyxTableEditorForm..UCESQLHighlighter..DefaultFilter
#. MyxViewEditorForm..UCESQLHighlighter..DefaultFilter
#: EditorSql.dfm:402
#: MyxViewEditor.dfm:791
msgid "SQL script files (*.sql)|*.sql"
msgstr "SQL-Skriptdateien (*.sql)|*.sql"
#. MyxViewEditorForm..ViewPageControl..ViewTabSheet..ViewSheetPnl..TntLabel1..Caption
#: MyxViewEditor.dfm:265
msgid "SQL:"
msgstr "SQL:"
#. Set DiscardingChanges so there will be no recursive calls
#: OptionsEditor.pas:554
msgid "Save changes?"
msgstr "Änderungen speichern?"
# SchemataFrame..SchemaSearchPopupMenu..SearchAssetsMI..Caption
# SchemataFrame..SchemaSearchPopupMenu..SearchAssetsMI..Caption
#. SchemataFrame..SchemaSearchPopupMenu..SearchAssetsMI..Caption
#: SchemataTreeView.dfm:110
msgid "Schema Assets"
msgstr "Schemaelemente"
# MyxSchemaEditorForm..Caption
#. MyxSchemaEditorForm..Caption
#: MyxSchemaEditor.dfm:6
msgid "Schema Editor"
msgstr "Schema-Editor"
# MyxSchemaEditorForm..HeaderPnl..NameLbl..Caption
#. MyxSchemaEditorForm..HeaderPnl..NameLbl..Caption
#: MyxSchemaEditor.dfm:38
msgid "Schema Name:"
msgstr "Schemaname:"
# SchemaSelectionForm..Caption
# SchemaSelectionForm..HeaderPnl..Label1..Caption
#. SchemaSelectionForm..Caption
#. SchemaSelectionForm..HeaderPnl..Label1..Caption
#: SchemaSelection.dfm:8
msgid "Schema Selection"
msgstr "Schema-Auswahl"
#: SchemataTreeView.pas:1499
msgid "Schema name:"
msgstr "Schemaname:"
# #-#-#-#-# ..\res\windows\po\default.po (PACKAGE VERSION) #-#-#-#-#
# OptionsForm..OptionPageControl..ConnectionsTabSheet..ConnectionPageControl..ConnGeneralTabSheet..SchemataEdLbl..Caption
#. OptionsForm..OptionPageControl..ConnectionsTabSheet..ConnectionPageControl..ConnGeneralTabSheet..SchemataEdLbl..Caption
#: OptionsEditor.dfm:743
msgid "Schema:"
msgstr "Schema:"
# SchemataFrame..TopPnl..SchemataLbl..Caption
# SchemataFrame..SchemaSearchPopupMenu..SearchSchemataMI..Caption
# SchemataFrame..SchemaSearchPopupMenu..CustomMI..SchemataSubMI..Caption
#. SchemataFrame..TopPnl..SchemataLbl..Caption
#. SchemataFrame..SchemaSearchPopupMenu..SearchSchemataMI..Caption
#. SchemataFrame..SchemaSearchPopupMenu..CustomMI..SchemataSubMI..Caption
#: SchemataTreeView.dfm:54
msgid "Schemata"
msgstr "Schemata"
# TextSearchForm..PageControl..OptionsTabSheet..OptionPnl..ScopeGBox..Caption
#. TextSearchForm..PageControl..OptionsTabSheet..OptionPnl..ScopeGBox..Caption
#: TextSearch.dfm:189
msgid "Scope"
msgstr "Bereich"
#: Grt.pas:1053
msgid "Script file not found"
msgstr "Skriptdatei nicht gefunden"
# TextSearchForm..PageControl..SearchTabSheet..Caption
# TextSearchForm..PageControl..SearchTabSheet..SearchBtn..Caption
#. TextSearchForm..PageControl..SearchTabSheet..Caption
#. TextSearchForm..PageControl..SearchTabSheet..SearchBtn..Caption
#: TextSearch.dfm:42
msgid "Search"
msgstr "Suche"
# TextSearchForm..Caption
# TextSearchForm..Caption
#. TextSearchForm..Caption
#: TextSearch.dfm:7
msgid "Search ..."
msgstr "Suchen..."
# TextSearchForm..PageControl..OptionsTabSheet..OptionPnl..ScopeGBox..SearchAllColumnsRBtn..Caption
#. TextSearchForm..PageControl..OptionsTabSheet..OptionPnl..ScopeGBox..SearchAllColumnsRBtn..Caption
#: TextSearch.dfm:205
msgid "Search all text/columns"
msgstr "Alles durchsuchen"
# TextSearchForm..PageControl..OptionsTabSheet..OptionPnl..DirectionGBox..SearchDownRBtn..Caption
#. TextSearchForm..PageControl..OptionsTabSheet..OptionPnl..DirectionGBox..SearchDownRBtn..Caption
#: TextSearch.dfm:224
msgid "Search down"
msgstr "Abwärts suchen"
# TextSearchForm..PageControl..SearchTabSheet..SearchLbl..Caption
# TextSearchForm..PageControl..ReplaceTabSheet..ReplacesSearchLbl..Caption
#. TextSearchForm..PageControl..SearchTabSheet..SearchLbl..Caption
#. TextSearchForm..PageControl..ReplaceTabSheet..ReplacesSearchLbl..Caption
#: TextSearch.dfm:52
msgid "Search for:"
msgstr "Suchen nach:"
# TextSearchForm..PageControl..OptionsTabSheet..OptionPnl..TntGroupBox1..SearchFromCursorRBtn..Caption
#. TextSearchForm..PageControl..OptionsTabSheet..OptionPnl..TntGroupBox1..SearchFromCursorRBtn..Caption
#: TextSearch.dfm:289
msgid "Search from cursor"
msgstr "Ab Cursor suchen"
# TextSearchForm..PageControl..OptionsTabSheet..OptionPnl..TntGroupBox1..SearchFromTopRBtn..Caption
#. TextSearchForm..PageControl..OptionsTabSheet..OptionPnl..TntGroupBox1..SearchFromTopRBtn..Caption
#: TextSearch.dfm:298
msgid "Search from top"
msgstr "Von oben suchen"
# TextSearchForm..PageControl..OptionsTabSheet..OptionPnl..ScopeGBox..SearchInSelectedColumnRBtn..Caption
#. TextSearchForm..PageControl..OptionsTabSheet..OptionPnl..ScopeGBox..SearchInSelectedColumnRBtn..Caption
#: TextSearch.dfm:196
msgid "Search only in selected text/column"
msgstr "Nur im selektierten Bereich suchen"
# TextSearchForm..PageControl..OptionsTabSheet..OptionPnl..DirectionGBox..SearchUpRBtn..Caption
# TextSearchForm..PageControl..OptionsTabSheet..OptionPnl..DirectionGBox..SearchUpRBtn..Caption
#. TextSearchForm..PageControl..OptionsTabSheet..OptionPnl..DirectionGBox..SearchUpRBtn..Caption
#: TextSearch.dfm:235
msgid "Search up"
msgstr "Aufwärts suchen"
#: MyxConnectionDialog.pas:1448
msgid "Select a RDBMS from the list of supported systems"
msgstr "Wählen Sie ein RDBMS aus der Liste der unterstützten Systeme."
#. MyxTableEditorForm..TntActionList..SelectAllAction..Caption
#: MyxTableEditor.dfm:1894
msgid "Select all columns"
msgstr "Selektiere all Spalten"
# OptionsForm..OptionPageControl..ConnectionsTabSheet..ConnectionPageControl..ConnGeneralTabSheet..TypeCBox..Hint
#. OptionsForm..OptionPageControl..ConnectionsTabSheet..ConnectionPageControl..ConnGeneralTabSheet..TypeCBox..Hint
#: OptionsEditor.dfm:781
msgid "Select the type of database connection"
msgstr "Wählen Sie die Art der Datenbankverbindung."
#. ConnectToInstanceForm..ConnectToHostPnl..HostnameLbl..Caption
#: ConnectToInstance.dfm:521
msgid "Server &Host:"
msgstr "Server &Host:"
#: EditorTable.pas:2956
msgid "Server Messages"
msgstr "Server-Meldungen"
#: EditorTable.pas:1806
msgid "Server connection lost"
msgstr "Serververbindung verloren"
# EditorTableForm..IndexColumnPopupMenu..SetIndexColumnLengthMI..Caption
#. EditorTableForm..IndexColumnPopupMenu..SetIndexColumnLengthMI..Caption
#: EditorTable.dfm:1896
msgid "Set Index Column Length"
msgstr "Indexspaltenlänge setzen"
#: EditorTable.pas:521
msgid "Set Null"
msgstr "auf NULL setzen"
#: MigrationObjMapDetail.pas:407
msgid "Set Parameter >>"
msgstr "Parameter setzen >>"
#. datatype
#: MyxTableEditor.pas:2001
msgid "Setting column data type"
msgstr "Setze Spaltendatentyp"
#. update indices
#: MyxTableEditor.pas:1618
msgid "Setting column datatype"
msgstr "Setze Spaltendatentyp"
#. MyxTableEditorForm..TntActionList..ShowAdvancedAction..Caption
#: MyxTableEditor.dfm:1858
msgid "Show Advanced Controls"
msgstr "Zeige erweiterte Controls"
# OptionsForm..OptionPageControl..EditorsTabSheet..GroupBox4..EdTblShowSQLBeforeApplyingCBox..Caption
#. OptionsForm..OptionPageControl..EditorsTabSheet..GroupBox4..EdTblShowSQLBeforeApplyingCBox..Caption
#: OptionsEditor.dfm:968
msgid "Show SQL command before applying changes"
msgstr "SQL-Anweisung vor Ausführung der Änderungen anzeigen"
# OptionsForm..OptionPageControl..GeneralTabSheet..GroupBox1..ShowTipOfDayCBox..Caption
#. OptionsForm..OptionPageControl..GeneralTabSheet..GroupBox1..ShowTipOfDayCBox..Caption
#: OptionsEditor.dfm:332
msgid "Show Tip of Day"
msgstr "Tipp des Tages anzeigen"
#. OptionsForm..OptionPageControl..EditorsTabSheet..GroupBox3..ShowSpecialCharsCheckBox..Caption
#: OptionsEditor.dfm:1101
msgid "Show tab and line breaks in editor"
msgstr "Zeige Tabulatoren und Zeilenumbrüche im Editor"
# OptionsForm..OptionPageControl..GeneralTabSheet..GroupBox2..TntLabel3..Caption
# OptionsForm..OptionPageControl..GeneralTabSheet..GroupBox2..TntLabel4..Caption
# OptionsForm..OptionPageControl..GeneralTabSheet..GroupBox2..TntLabel5..Caption
# OptionsForm..OptionPageControl..GeneralTabSheet..GroupBox2..TntLabel3..Caption
# OptionsForm..OptionPageControl..GeneralTabSheet..GroupBox2..TntLabel4..Caption
# OptionsForm..OptionPageControl..GeneralTabSheet..GroupBox2..TntLabel5..Caption
#. OptionsForm..OptionPageControl..GeneralTabSheet..GroupBox2..TntLabel3..Caption
#. OptionsForm..OptionPageControl..GeneralTabSheet..GroupBox2..TntLabel4..Caption
#. OptionsForm..OptionPageControl..GeneralTabSheet..GroupBox2..TntLabel5..Caption
#: OptionsEditor.dfm:407
msgid "Size"
msgstr "Größe"
# EditorTableForm..TableEditorPnl..GirdOptionPnl..MainPageControl..AdvTableOptionsSheet..AdvancedOptionsScrollBox..RaidOptionsGBox..ChunkSizeDescLbl....AutoSize
#. EditorTableForm..TableEditorPnl..GirdOptionPnl..MainPageControl..AdvTableOptionsSheet..AdvancedOptionsScrollBox..RaidOptionsGBox..ChunkSizeDescLbl....AutoSize
#: EditorTable.dfm:1327
msgid "Size of chunk that will be written to first file, to the next file, and so on."
msgstr "Größe der Partition, die in die erste Datei geschrieben wird, dann in die zweite usw."
# MySQLResultSetFieldViewerForm..PageControl..ImageSheet..ImageSheetBtnPnl..ImageSizeTitleLbl..Caption
# MySQLResultSetFieldViewerForm..PageControl..BinarySheet..TntPanel1..BinarySizeTitelLbl..Caption
#. MySQLResultSetFieldViewerForm..PageControl..ImageSheet..ImageSheetBtnPnl..ImageSizeTitleLbl..Caption
#. MySQLResultSetFieldViewerForm..PageControl..BinarySheet..TntPanel1..BinarySizeTitelLbl..Caption
#: MySQLResultSetFieldViewer.dfm:134
msgid "Size:"
msgstr "Größe:"
#: ConnectToInstance.pas:1120
msgid "Skip"
msgstr "Überspringen"
#: ConnectToInstance.pas:1121
msgid "Skip the connection dialog and open service configuration."
msgstr "Überspringe den Verbindungsdialog und öffne die Dienstkonfiguration."
#: OptionsEditor.pas:555
msgid "Some of the settings have changed. Do you want to apply these changes permanently?"
msgstr "Einige der Einstellungen wurden geändert. Möchten Sie diese dauerhaft speichern?"
# ConnectToInstanceForm..ConnectToHostPnl..PortEd..Hint
# OptionsForm..OptionPageControl..ConnectionsTabSheet..ConnectionPageControl..ConnGeneralTabSheet..PortEd..Hint
#. ConnectToInstanceForm..ConnectToHostPnl..PortEd..Hint
#. OptionsForm..OptionPageControl..ConnectionsTabSheet..ConnectionPageControl..ConnGeneralTabSheet..PortEd..Hint
#: ConnectToInstance.dfm:612
msgid "Specify the TCP/IP port to connect to"
msgstr "Geben Sie den TCP/IP-Port für die Verbindung an."
# #-#-#-#-# ..\res\windows\po\default.po (PACKAGE VERSION) #-#-#-#-#
# EditorTableForm..TableEditorPnl..GirdOptionPnl..MainPageControl..StdInsertsTabSheet..Caption
# MyxTableEditorForm..DockPanel..TablePageControl..TntTabSheet4..Caption
# #-#-#-#-# ..\res\windows\po\default.po (PACKAGE VERSION) #-#-#-#-#
# EditorTableForm..TableEditorPnl..GirdOptionPnl..MainPageControl..StdInsertsTabSheet..Caption
# MyxTableEditorForm..DockPanel..TablePageControl..TntTabSheet4..Caption
#. EditorTableForm..TableEditorPnl..GirdOptionPnl..MainPageControl..StdInsertsTabSheet..Caption
#. MyxTableEditorForm..TablePageControl..TntTabSheet4..Caption
#: EditorTable.dfm:1577
msgid "Standard Inserts"
msgstr "Standard-Einfügungen"
# MigrationObjMapDetailFrame..ObjectSelGBox..MethodComboBox..Text
# MigrationObjMapDetailFrame..ObjectSelGBox..MethodComboBox....Items.WideStrings
# MigrationObjMapDetailFrame..ObjectSelGBox..MethodComboBox..Text
# MigrationObjMapDetailFrame..ObjectSelGBox..MethodComboBox....Items.WideStrings
#. MigrationObjMapDetailFrame..ObjectSelGBox..MethodComboBox..Text
#. MigrationObjMapDetailFrame..ObjectSelGBox..MethodComboBox....Items.Strings
#: MigrationObjMapDetail.dfm:66
msgid "Standard Migration"
msgstr "Standard-Migration"
# MigrationObjMapDetailFrame..ObjectSelGBox..DetailsPnl..TntLabel3....AutoSize
#. MigrationObjMapDetailFrame..ObjectSelGBox..DetailsPnl..TntLabel3....AutoSize
#: MigrationObjMapDetail.dfm:99
msgid "Standard parameter set. The migrated tables will use the InnoDB storage engine to offer transactional and foreign key support."
msgstr "Standardparametersatz. Migrierte Tabellen nutzen die InnoDB-Speicher-Engine zur Unterstützung von Transaktionen und Fremdschlüsseln."
# MigrationObjMapDetailFrame..ObjectSelGBox..DetailsPnl..TntRadioButton2..Caption
#. MigrationObjMapDetailFrame..ObjectSelGBox..DetailsPnl..TntRadioButton2..Caption
#: MigrationObjMapDetail.dfm:107
msgid "Statistical data / latin1"
msgstr "Statistiken/Latin-1"
# ProgressForm..StopBtn..Caption
# ProgressForm..StopBtn..Caption
#. ProgressForm..StopBtn..Caption
#: Progress.dfm:72
msgid "Stop"
msgstr "Stopp"
# ProgressForm..StoppingLbl..Caption
# ProgressForm..StoppingLbl..Caption
#. ProgressForm..StoppingLbl..Caption
#: Progress.dfm:28
msgid "Stopping process ..."
msgstr "Halte den Prozess an..."
# #-#-#-#-# ..\res\windows\po\default.po (PACKAGE VERSION) #-#-#-#-#
# EditorTableForm..TableEditorPnl..GirdOptionPnl..MainPageControl..TabSheet2..TableOptionScrollBox..StorageEngineGBox..Caption
# #-#-#-#-# ..\res\windows\po\default.po (PACKAGE VERSION) #-#-#-#-#
# EditorTableForm..TableEditorPnl..GirdOptionPnl..MainPageControl..TabSheet2..TableOptionScrollBox..StorageEngineGBox..Caption
#. EditorTableForm..TableEditorPnl..GirdOptionPnl..MainPageControl..TabSheet2..TableOptionScrollBox..StorageEngineGBox..Caption
#: EditorTable.dfm:998
msgid "Storage Engine"
msgstr "Speicher-Engine"
# #-#-#-#-# ..\res\windows\po\default.po (PACKAGE VERSION) #-#-#-#-#
# EditorTableForm..TableEditorPnl..GirdOptionPnl..MainPageControl..AdvTableOptionsSheet..AdvancedOptionsScrollBox..StorageOptionsGBox..Caption
#. EditorTableForm..TableEditorPnl..GirdOptionPnl..MainPageControl..AdvTableOptionsSheet..AdvancedOptionsScrollBox..StorageOptionsGBox..Caption
#. MyxTableEditorForm..TablePageControl..TntTabSheet1..AdvancedOptionsSheetPnl..AdvancedOptionsScrollBox..StorageOptionsGBox..Caption
#: EditorTable.dfm:1068
msgid "Storage Options"
msgstr "Speichereinstellungen"
#: MyxConnectionDialog.pas:1185
msgid "Store Connection."
msgstr "Verbindung speichern"
# OptionsForm..OptionPageControl..GeneralTabSheet..GroupBox1..StoreWindowsPosCBox..Caption
#. OptionsForm..OptionPageControl..GeneralTabSheet..GroupBox1..StoreWindowsPosCBox..Caption
#: OptionsEditor.dfm:342
msgid "Store Windows Positions"
msgstr "Fensterpositionen speichern"
# OptionsForm..OptionPageControl..GeneralTabSheet..TntGroupBox1..StorePasswordCBox..Caption
#. OptionsForm..OptionPageControl..GeneralTabSheet..TntGroupBox1..StorePasswordCBox..Caption
#: OptionsEditor.dfm:615
msgid "Store passwords"
msgstr "Passwörter speichern"
#. ConnectToInstanceForm..ConnectToHostPnl..ConnectionLbl..Caption
#: ConnectToInstance.dfm:530
msgid "Stored &Connection:"
msgstr "Gesp. &Verbindungen:"
# ConnectToInstanceForm..ConnectToHostPnl..ConnectionLbl..Caption
# MyxConnectionDialogForm..ParamsMainPnl..ConnectGBox..StoredConnPnl..ConnectionLbl..Caption
# ConnectToInstanceForm..ConnectToHostPnl..ConnectionLbl..Caption
# MyxConnectionDialogForm..ParamsMainPnl..ConnectGBox..StoredConnPnl..ConnectionLbl..Caption
#. MyxConnectionDialogForm..ParamsMainPnl..ConnectGBox..StoredConnPnl..ConnectionLbl..Caption
#: MyxConnectionDialog.dfm:149
msgid "Stored Connection:"
msgstr "Verbindung:"
# MyxTableEditorForm..DockPanel..TablePageControl..IndicesSheet..IndexColumnVST......WideText
#. MyxTableEditorForm..TablePageControl..IndicesSheet..IndexContentPnl..IndexColumnVST......WideText
#: MyxTableEditor.dfm:675
msgid "Stored Function"
msgstr "Gespeicherte Funktion"
# SchemataFrame..SchemaSearchPopupMenu..CustomMI..SPSubMI..Caption
#. SchemataFrame..SchemaSearchPopupMenu..CustomMI..SPSubMI..Caption
#: SchemataTreeView.dfm:174
msgid "Stored Procedures/Functions"
msgstr "Gespeicherte Prozeduren/Funktionen"
#: EditorTable.pas:516
msgid "Striped"
msgstr "Striped"
#: MyxError.pas:269
msgid "System Error"
msgstr "Systemfehler"
#: MyxError.pas:158
msgid ""
"System Error Number %d\n"
"%s"
msgstr ""
"Systemfehler Nr. %d\n"
"%s"
# Programmer's name for it: REG_MACHINE_LOCATION
# Programmer's name for it: REG_MACHINE_LOCATION
#. Programmer's name for it: REG_MACHINE_LOCATION
#. Programmer's name for it: REG_MACHINE_LOCATION
#: AuxFuncs.pas:3089
msgid "System\\CurrentControlSet\\Control\\Session Manager\\Environment"
msgstr "System\\CurrentControlSet\\Control\\Session Manager\\Environment"
#. MyxTableEditorForm..TablePageControl..TableSheet..Caption
#: MyxTableEditor.dfm:99
msgid "Table"
msgstr "Tabelle"
# #-#-#-#-# ..\res\windows\po\default.po (PACKAGE VERSION) #-#-#-#-#
# EditorTableForm..TableEditorPnl..GirdOptionPnl..MainPageControl..DescTabSheet..TntLabel41..Caption
# #-#-#-#-# ..\res\windows\po\default.po (PACKAGE VERSION) #-#-#-#-#
# EditorTableForm..TableEditorPnl..GirdOptionPnl..MainPageControl..DescTabSheet..TntLabel41..Caption
#. EditorTableForm..TableEditorPnl..GirdOptionPnl..MainPageControl..DescTabSheet..TntLabel41..Caption
#: EditorTable.dfm:1617
msgid "Table Description"
msgstr "Tabellenbeschreibung"
# #-#-#-#-# ..\res\windows\po\default.po (PACKAGE VERSION) #-#-#-#-#
# EditorTableForm..TableEditorPnl..DockedHeaderPnl..TntLabel1..Caption
# MyxTableEditorForm..Caption
# OptionsForm..OptionPageControl..EditorsTabSheet..GroupBox4..Caption
#. EditorTableForm..TableEditorPnl..DockedHeaderPnl..TntLabel1..Caption
#. MyxTableEditorForm..Caption
#. OptionsForm..OptionPageControl..EditorsTabSheet..GroupBox4..Caption
#: EditorTable.dfm:1662
msgid "Table Editor"
msgstr "Tabelleneditor"
#. EditorTableForm..TableEditorPnl..GirdOptionPnl..MainPageControl..TabSheet2..TableOptionScrollBox..StorageEngineGBox..TntLabel11..Caption
#: EditorTable.dfm:1017
msgid "Table Engine:"
msgstr "Tabellen-Engine"
# EditorTableForm..TableEditorPnl..HeaderPnl..TableNameLbl..Caption
# MyxTableEditorForm..DockPanel..HeaderPnl..TableNameLbl..Caption
#. EditorTableForm..TableEditorPnl..HeaderPnl..TableNameLbl..Caption
#. MyxTableEditorForm..TablePageControl..TableSheet..TableSheetPnl..TableNameLbl..Caption
#: EditorTable.dfm:51
msgid "Table Name:"
msgstr "Tabellenname:"
# #-#-#-#-# ..\res\windows\po\default.po (PACKAGE VERSION) #-#-#-#-#
# EditorTableForm..TableEditorPnl..GirdOptionPnl..MainPageControl..TabSheet2..Caption
# MyxTableEditorForm..DockPanel..TablePageControl..TntTabSheet1..Caption
#. EditorTableForm..TableEditorPnl..GirdOptionPnl..MainPageControl..TabSheet2..Caption
#. MyxTableEditorForm..TablePageControl..TntTabSheet1..Caption
#: EditorTable.dfm:902
msgid "Table Options"
msgstr "Tabelleneinstellungen"
# #-#-#-#-# ..\res\windows\po\default.po (PACKAGE VERSION) #-#-#-#-#
# EditorTableForm..TableEditorPnl..GirdOptionPnl..MainPageControl..AdvTableOptionsSheet..AdvancedOptionsScrollBox..VariousGBox..TntLabel21..Caption
#. EditorTableForm..TableEditorPnl..GirdOptionPnl..MainPageControl..AdvTableOptionsSheet..AdvancedOptionsScrollBox..VariousGBox..TntLabel21..Caption
#. MyxTableEditorForm..TablePageControl..TntTabSheet1..AdvancedOptionsSheetPnl..AdvancedOptionsScrollBox..VariousGBox..TntLabel21..Caption
#: EditorTable.dfm:1403
msgid "Table Password:"
msgstr "Tabellenpasswort:"
# #-#-#-#-# ..\res\windows\po\default.po (PACKAGE VERSION) #-#-#-#-#
# EditorTableForm..TableEditorPnl..GirdOptionPnl..MainPageControl..AdvTableOptionsSheet..AdvancedOptionsScrollBox..RaidOptionsGBox..Caption
#. EditorTableForm..TableEditorPnl..GirdOptionPnl..MainPageControl..AdvTableOptionsSheet..AdvancedOptionsScrollBox..RaidOptionsGBox..Caption
#: EditorTable.dfm:1263
msgid "Table RAID Settings"
msgstr "Tabellen-RAID-Einstellungen"
# #-#-#-#-# ..\res\windows\po\default.po (PACKAGE VERSION) #-#-#-#-#
# SchemataFrame..SchemaSearchPopupMenu..CustomMI..TableSubMI..Caption
#. SchemataFrame..SchemaSearchPopupMenu..CustomMI..TableSubMI..Caption
#: SchemataTreeView.dfm:150
msgid "Tables"
msgstr "Tabellen"
#: EditorTable.pas:685
msgid "Tables Overview"
msgstr "Tabellenübersicht"
#: MyxTabHeader.pas:1585
msgid "Tabsheet Caption"
msgstr "Registerkartentitel"
#: MyxError.pas:250
msgid "Terminate"
msgstr "Beenden"
# MySQLResultSetFieldViewerForm..PageControl..TextSheet..Caption
#. MySQLResultSetFieldViewerForm..PageControl..TextSheet..Caption
#: MySQLResultSetFieldViewer.dfm:32
msgid "Text"
msgstr "Text"
#: MySQLResultSetFieldViewer.pas:170
#: MySQLResultSetFieldViewer.pas:201
msgid "The BLOB field contains a corrupted image file."
msgstr "Das BLOB-Feld enthält eine defekte Bilddatei."
# Select correct Driver
#. Select correct Driver
#: MyxConnectionDialog.pas:963
msgid "The Driver %s is not available for selection"
msgstr "Treiber %s steht nicht zur Auswahl."
#: MyxError.pas:209
msgid "The File %s cannot be opened."
msgstr "Datei %s kann nicht geöffnet werden."
# EditorTableForm..TableEditorPnl..GirdOptionPnl..MainPageControl..AdvTableOptionsSheet..AdvancedOptionsScrollBox..RaidOptionsGBox..TntLabel57....AutoSize
#. EditorTableForm..TableEditorPnl..GirdOptionPnl..MainPageControl..AdvTableOptionsSheet..AdvancedOptionsScrollBox..RaidOptionsGBox..TntLabel57....AutoSize
#: EditorTable.dfm:1304
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 (unrecommended if they do). When the RAID type is set to STRIPED the table data file will be split into a number for chunks."
msgstr "Mit RAID kann die 2GB/4GB-Grenze für MyISAM-Tabellendateien auf Systemen überschritten nwerden, die keine großen Dateien unterstützen (sonst nicht empfohlen). Wenn der RAID-Typ auf STRIPED steht, wird die Tabellendatei in eine Reihe von Partitionen aufgeteilt."
#: MyxConnectionDialog.pas:968
msgid "The RDBMS %s is not available for selection"
msgstr "Das RDBMS '%s' kann nicht ausgewählt werden."
#: MyxError.pas:217
msgid "The XML file %s is empty."
msgstr "Die XML-Datei '%s' ist leer."
#: MyxConnectionDialog.pas:1352
msgid "The application needs to be restarted."
msgstr "Die Anwendung muss neu gestartet werden."
#: MyxConnectionDialog.pas:1354
msgid "The application needs to be restarted. Please click on [Close] to close the application."
msgstr "Die Anwendung muss neu gestartet werden. Bitte klicken Sie auf [Schließen], um die Anwendung zu beenden."
#: Grt.pas:2281
msgid "The call to the function %s:%s returned with an exception."
msgstr "Der Aufruf der Funktion %s:%s führte zu einer Ausnahmebedingung."
#: EditorTable.pas:3116
msgid "The changes you made did not result in the need to alter the table."
msgstr "Ihre Änderungen machen keine Anpassung der Tabelle notwendig."
#. MyxTableEditorForm..TablePageControl..TableSheet..TableSheetPnl..TntLabel10....AutoSize
#: MyxTableEditor.dfm:203
msgid "The collation specifies which language specific characters can be stored in the table. Common choices are Latin1 or UTF8."
msgstr "Die Collation gibt an, welche sprachspezifischen Zeichen in einer Tablle gespeichert werden können. Gewöhlich werden Latin oder UTF- gewählt."
#: MySQLConnection.pas:457
msgid "The connection %s cannot be found in the list of stored connections."
msgstr "Die Verbindung %s kann in der Liste gespeicherter Verbindungen nicht gefunden werden."
#. EditorTableForm..TableEditorPnl..GirdOptionPnl..MainPageControl..AdvTableOptionsSheet..AdvancedOptionsScrollBox..TntGroupBox3..TntLabel23..Caption
#: EditorTable.dfm:1562
msgid "The connection string for federated tables."
msgstr "Der Verbindungsstring für FEDERATED-Tabllen."
#: Options.pas:742
msgid ""
"The data types file `%s` could not be loaded. You won't be able to to use the table editor.\n"
"\n"
"Do you want to exit now or continue anyway?"
msgstr ""
"Die Datentypendatei \"%s\" konnte nicht geladen werden. Sie werden den Tabelleneditor nicht verwenden können.\n"
"\n"
"Wollen Sie trotzdem weitermachen oder das Programm jetzt beenden?"
#. MyxTableEditorForm..TablePageControl..TableSheet..TableSheetPnl..TntLabel9....AutoSize
#: MyxTableEditor.dfm:190
msgid "The database engine that is used for the table. This option specifies the performance, data consistency and much more."
msgstr "Die Datenbank-Engine, die für die Tabelle verwendet wird. Diese Option bestimmt die Leistung, Datenkonsistenz und vieles mehr."
# EditorTableForm..TableEditorPnl..GirdOptionPnl..MainPageControl..TabSheet2..TableOptionScrollBox..TntGroupBox6..TableCharsetDescLbl....AutoSize
#. EditorTableForm..TableEditorPnl..GirdOptionPnl..MainPageControl..TabSheet2..TableOptionScrollBox..TntGroupBox6..TableCharsetDescLbl....AutoSize
#: EditorTable.dfm:960
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 "Der Vorgabezeichensatz für die Tabelle. Ab MySQL 4.1 kann für jede Spalte ein eigener Zeichensatz angegeben werden."
#: MySQLConnection.pas:1102
msgid "The default schema cannot be changed to %s"
msgstr "Das Vorgabeschema kann nicht auf %s geändert werden."
#: MyxConnectionDialog.pas:939
msgid "The driver used by the given connection is not available."
msgstr "Der von der angegebenen Verbindung verwendete Treiber ist nicht verfügbar."
#: MyxError.pas:221
msgid "The execution was stopped."
msgstr "Die Ausführung wurde angehalten."
#: MyxError.pas:249
msgid ""
"The following Exception occurred:\n"
"%s\n"
"\n"
"Please choose whether to continue %s, terminate the application or restart the program."
msgstr ""
"Die folgende Ausname ist aufgetreten:\n"
"%s\n"
"\n"
"Soll %s fortgesetzt, die Anwendung beendet oder das Programm neu gestartet werden?"
#: MySQLConnection.pas:917
msgid "The following error occured while executing the query."
msgstr "Der folgende Fehler trat auf, währen die Abfrage ausgeführt wurde."
#: Grt.pas:1358
msgid "The following error occured. Error Nr. %d"
msgstr "Der folgende Fehler ist aufgetreten: Fehler Nr. %d"
#: MyxError.pas:278
msgid "The following exception occurred:"
msgstr "Die folgende Ausnahme trat auf:"
#: Toolbar.pas:1535
msgid "The image %s cannot be found in the attached resources"
msgstr "Das Bild %s kann in den angebundenen Ressourcen nicht gefunden werden."
# EditorTableForm..TableEditorPnl..GirdOptionPnl..MainPageControl..AdvTableOptionsSheet..AdvancedOptionsScrollBox..VariousGBox..TntLabel53..Caption
#. EditorTableForm..TableEditorPnl..GirdOptionPnl..MainPageControl..AdvTableOptionsSheet..AdvancedOptionsScrollBox..VariousGBox..TntLabel53..Caption
#. MyxTableEditorForm..TablePageControl..TntTabSheet1..AdvancedOptionsSheetPnl..AdvancedOptionsScrollBox..VariousGBox..TntLabel53..Caption
#: EditorTable.dfm:1434
msgid "The initial AUTO_INCREMENT value for the table, only for MyISAM."
msgstr "Der anfängliche AUTO_INCREMENT-Wert für die Tabelle (nur bei MyISAM). "
# #-#-#-#-# ..\res\windows\po\default.po (PACKAGE VERSION) #-#-#-#-#
# EditorTableForm..TableEditorPnl..GirdOptionPnl..MainPageControl..AdvTableOptionsSheet..AdvancedOptionsScrollBox..RowOptionsGBox..TntLabel63..Caption
#. EditorTableForm..TableEditorPnl..GirdOptionPnl..MainPageControl..AdvTableOptionsSheet..AdvancedOptionsScrollBox..RowOptionsGBox..TntLabel63..Caption
#. MyxTableEditorForm..TablePageControl..TntTabSheet1..AdvancedOptionsSheetPnl..AdvancedOptionsScrollBox..RowOptionsGBox..TntLabel63..Caption
#: EditorTable.dfm:1211
msgid "The maximum number of rows you plan to store in the table."
msgstr "Die maximale Anzahl von Zeilen, die Sie in der Tabelle speichern wollen"
#: MySQLResultSet.pas:1479
msgid "The memory load of the system is extremly high."
msgstr "Die Speicherbelastung des Systems ist extrem hoch."
# #-#-#-#-# ..\res\windows\po\default.po (PACKAGE VERSION) #-#-#-#-#
# EditorTableForm..TableEditorPnl..GirdOptionPnl..MainPageControl..AdvTableOptionsSheet..AdvancedOptionsScrollBox..RowOptionsGBox..TntLabel62..Caption
#. EditorTableForm..TableEditorPnl..GirdOptionPnl..MainPageControl..AdvTableOptionsSheet..AdvancedOptionsScrollBox..RowOptionsGBox..TntLabel62..Caption
#. MyxTableEditorForm..TablePageControl..TntTabSheet1..AdvancedOptionsSheetPnl..AdvancedOptionsScrollBox..RowOptionsGBox..TntLabel62..Caption
#: EditorTable.dfm:1202
msgid "The minimum number of rows you plan to store in the table."
msgstr "Die minimale Anzahl von Zeilen, die Sie in der Tabelle speichern wollen"
#. MyxRoutineGroupEditorForm..RoutinePageControl..RoutineGroupSheet..RoutineGroupSheetPnl..TntLabel6..Caption
#: MyxRoutineGroupEditor.dfm:251
msgid "The name of the routine group."
msgstr "Der Name der Routinengruppe."
#. MyxTableEditorForm..TablePageControl..TableSheet..TableSheetPnl..TntLabel6....AutoSize
#: MyxTableEditor.dfm:177
msgid "The name of the table. It is recommended to use only alpha-numeric characters. Spaces should be avoided and be replaced by _"
msgstr "Der Name der Tabelle. Es wird empfohlen nur alphanumerische Zeichen zu verwenden. Leerzeichen sollte vermieden und durch _ ersetzt werden."
#. MyxViewEditorForm..ViewPageControl..ViewTabSheet..ViewSheetPnl..TntLabel6....AutoSize
#: MyxViewEditor.dfm:255
msgid "The name of the view. It is recommended to use only alpha-numeric characters. Spaces should be avoided and be replaced by _"
msgstr "Der Name der View. Es wird empfohlen nur alphanumerische Zeichen zu verwenden. Leerzeichen sollte vermieden und durch _ ersetzt werden."
#: GrtForms.pas:236
msgid "The object cannot be created at the given path %s."
msgstr "Das Objekt kann unter dem angegebenen Pfad %s nicht erzeugt werden."
#: MyxOptions.pas:395
msgid "The option %s is a fixed option and cannot be set."
msgstr "Die Einstellung %s ist fest und kann nicht geändert werden."
# Check if ExceptionMsg is set
#. Check if ExceptionMsg is set.
#: MySQLResultSet.pas:1730
msgid "The query could not be executed."
msgstr "Die Abfrage konnte nicht ausgeführt werden."
#: MySQLConnection.pas:512
msgid "The schema %s cannot be selected."
msgstr "Das Schema %s kann nicht ausgewählt werden."
#: ConnectToInstance.pas:979
msgid "The schema `%s` does not exist. Do you want to create the schema now?"
msgstr "Das Schema '%s' existiert nicht. Wollen Sie dieses Schema jetzt anlegen?"
#: Grt.pas:1053
msgid "The script file %s cannot be found."
msgstr "Die Skriptdatei %s wurde nicht gefunden."
# MyxConnectionDialogForm..ParamsMainPnl..DriverNotInstalledPnl..TntLabel9..Caption
#. MyxConnectionDialogForm..ParamsMainPnl..DriverNotInstalledPnl..TntLabel9..Caption
#: MyxConnectionDialog.dfm:64
msgid "The selected driver is not attached to the application yet."
msgstr "Der ausgewählte Treiber ist noch nicht an die Anwendung angebunden."
#: EditorTable.pas:3619
msgid "The storage engine you selected is not enabled currently."
msgstr "Die Storage Engine, die Sie ausgewählt haben, ist momentan nicht eingeschaltet."
#: Grt.pas:1667
msgid "The string %s cannot be converted to a float value."
msgstr "Der String %s kann nicht in eine Gleitkommazahl umgewandelt werden."
# Check what the original value's type is and auto-convert the given string to a native type if possible.
# Check what the original value's type is and auto-convert the given string to a native type if possible.
#. Check what the original value's type is and auto-convert the given string to a native type if possible.
#. Check what the original value's type is and auto-convert the given string to a native type if possible.
#: Grt.pas:1661
msgid "The string %s cannot be converted to an integer value."
msgstr "Der String %s kann nicht in eine ganze Zahl umgewandelt werden."
#: MySQLResultSetControls.pas:536
msgid "The two resultsets cannot be compared. Please make sure that they have a primary key and the same column names."
msgstr "Die beiden Ergebnismengen können nicht verglichen werden. Sie müssen einen Primärschlüssel und dieselben Spaltennamen haben."
# #-#-#-#-# ..\res\windows\po\default.po (PACKAGE VERSION) #-#-#-#-#
# EditorTableForm..TableEditorPnl..GirdOptionPnl..MainPageControl..AdvTableOptionsSheet..AdvancedOptionsScrollBox..MergeOptionGBox..MergeInsertMethodDescLbl..Caption
#. EditorTableForm..TableEditorPnl..GirdOptionPnl..MainPageControl..AdvTableOptionsSheet..AdvancedOptionsScrollBox..MergeOptionGBox..MergeInsertMethodDescLbl..Caption
#. MyxTableEditorForm..TablePageControl..TntTabSheet1..AdvancedOptionsSheetPnl..AdvancedOptionsScrollBox..MergeOptionGBox..MergeInsertMethodDescLbl..Caption
#: EditorTable.dfm:1520
msgid "The union table which should be used for inserts."
msgstr "Tabelle, die für Einfügungen benutzt werden sollte"
#: Grt.pas:1186
msgid "The value %s cannot be set."
msgstr "Der Wert %s kann nicht gesetzt werden."
#: Grt.pas:1234
msgid "The value %s is not a int value."
msgstr "Der Wert %s ist kein ganzzahliger Wert."
#: Grt.pas:1265
msgid "The value %s is not a real value."
msgstr "Der Wert %s ist kein Gleitkomma-Wert."
#: Grt.pas:1203
msgid "The value %s is not a string value."
msgstr "Der Wert %s ist kein String-Wert."
#: MyxEditor.pas:111
msgid "There are unapplied changes. Would you like to apply them now?"
msgstr "Es gibt nicht gespeicherte Änderungen. Wollen Sie diese jetzt speichern?"
#: MyxError.pas:182
msgid "There was a problem: %s"
msgstr "Es gab ein Problem: %s."
#: EditorTable.pas:3629
msgid "These definitions will be ignored."
msgstr "Diese Definitionen werden ignoriert."
#: MySQLResultSet.pas:1481
msgid "This is likely because of the current result being very large."
msgstr "Das geschah wahrscheinlich, weil die momentane Ergebnismenge sehr groß ist."
# AboutForm..LicenceLbl....AutoSize
#. AboutForm..LicenceLbl....AutoSize
#: About.dfm:82
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 "Diese Software steht unter der GNU General Public License (GPL), die wohl die bekannteste Open-Source-Lizenz ist. Die formalen Bedingungen der GPL können unter http://www.fsf.org/licenses/ eingesehen werden."
#: ConnectToInstance.pas:1035
msgid "Time ="
msgstr "Zeit ="
# MyxConnectionDialogForm..ParamsMainPnl..DriverNotInstalledPnl..DownloadDriverPnl..TntLabel12..Caption
#. MyxConnectionDialogForm..ParamsMainPnl..DriverNotInstalledPnl..DownloadDriverPnl..TntLabel12..Caption
#: MyxConnectionDialog.dfm:94
msgid "To download the driver from the internet press the button below."
msgstr "Klicken Sie den unten stehenden Button, um den Treiber aus dem Internet zu laden."
# SchemataFrame..SchemaSearchPopupMenu..CustomMI..TriggersSubMI..Caption
#. MyxTableEditorForm..TablePageControl..TriggersTab..Caption
#. SchemataFrame..SchemaSearchPopupMenu..CustomMI..TriggersSubMI..Caption
#: MyxTableEditor.dfm:809
msgid "Triggers"
msgstr "Trigger"
# #-#-#-#-# ..\res\windows\po\default.po (PACKAGE VERSION) #-#-#-#-#
# MyxTableEditorForm..DockPanel..TablePageControl..IndicesSheet..IndexVST......WideText
#. MyxTableEditorForm..TablePageControl..IndicesSheet..IndexContentPnl..IndexVST......WideText
#: MyxTableEditor.dfm:621
msgid "Type"
msgstr "Typ"
# OptionsForm..OptionPageControl..ConnectionsTabSheet..ConnectionPageControl..ConnGeneralTabSheet..TypeLbl..Caption
#. OptionsForm..OptionPageControl..ConnectionsTabSheet..ConnectionPageControl..ConnGeneralTabSheet..TypeLbl..Caption
#: OptionsEditor.dfm:736
msgid "Type:"
msgstr "Typ:"
#: MySQLResultSet.pas:533
msgid "Unapplied Changes"
msgstr "Anhängige Änderungen"
#. MyxTableEditorForm..TablePageControl..ColumnSheet..ColumnsContentPnl..ColumnVST....ClipboardFormats.Strings
#: MyxTableEditor.dfm:444
msgid "Unicode text"
msgstr "Unicode text"
# #-#-#-#-# ..\res\windows\po\default.po (PACKAGE VERSION) #-#-#-#-#
# EditorTableForm..TableEditorPnl..GirdOptionPnl..MainPageControl..AdvTableOptionsSheet..AdvancedOptionsScrollBox..MergeOptionGBox..UnionTablesCaptionLbl..Caption
#. EditorTableForm..TableEditorPnl..GirdOptionPnl..MainPageControl..AdvTableOptionsSheet..AdvancedOptionsScrollBox..MergeOptionGBox..UnionTablesCaptionLbl..Caption
#. MyxTableEditorForm..TablePageControl..TntTabSheet1..AdvancedOptionsSheetPnl..AdvancedOptionsScrollBox..MergeOptionGBox..UnionTablesCaptionLbl..Caption
#: EditorTable.dfm:1503
msgid "Union Tables:"
msgstr "Merge-Tabellen:"
#: ConnectToInstance.pas:1045
msgid "Unknown Error."
msgstr "Unbekannter Fehler."
#: EditorTable.pas:2202
msgid "Unsupported feature"
msgstr "Nicht unterstützte Fähigkeit"
#. ConnectToInstanceForm..AdvancedOptionsGBox..AdvancedOptionsPageControl..MySQLOptionsTabSheet..NamedPipeCBox..Caption
#: ConnectToInstance.dfm:705
msgid "Use &named pipe (localhost only)"
msgstr "Verwende &named pipe (nur auf Localhost)"
#. ConnectToInstanceForm..AdvancedOptionsGBox..AdvancedOptionsPageControl..MySQLOptionsTabSheet..UseAnsiQuotesCBox..Caption
#: ConnectToInstance.dfm:714
msgid "Use ANSI "es to quote identifiers"
msgstr "Benutze Anführungszeichen, um Bezeichner zu notieren"
# #-#-#-#-# ..\res\windows\po\default.po (PACKAGE VERSION) #-#-#-#-#
# EditorTableForm..TableEditorPnl..GirdOptionPnl..MainPageControl..AdvTableOptionsSheet..AdvancedOptionsScrollBox..TntGroupBox8..UseChecksumCBox..Caption
# #-#-#-#-# ..\res\windows\po\default.po (PACKAGE VERSION) #-#-#-#-#
# EditorTableForm..TableEditorPnl..GirdOptionPnl..MainPageControl..AdvTableOptionsSheet..AdvancedOptionsScrollBox..RowOptionsGBox..UseChecksumCBox..Caption
# #-#-#-#-# ..\res\windows\po\default.po (PACKAGE VERSION) #-#-#-#-#
# EditorTableForm..TableEditorPnl..GirdOptionPnl..MainPageControl..AdvTableOptionsSheet..AdvancedOptionsScrollBox..RowOptionsGBox..UseChecksumCBox..Caption
#. EditorTableForm..TableEditorPnl..GirdOptionPnl..MainPageControl..AdvTableOptionsSheet..AdvancedOptionsScrollBox..RowOptionsGBox..UseChecksumCBox..Caption
#. MyxTableEditorForm..TablePageControl..TntTabSheet1..AdvancedOptionsSheetPnl..AdvancedOptionsScrollBox..RowOptionsGBox..UseChecksumCBox..Caption
#: EditorTable.dfm:1243
msgid "Use Checksum"
msgstr "Prüfsumme verwenden"
# TextSearchForm..PageControl..OptionsTabSheet..OptionPnl..OptionsGBox..UseRegExCBox..Caption
# TextSearchForm..PageControl..OptionsTabSheet..OptionPnl..OptionsGBox..UseRegExCBox..Caption
#. TextSearchForm..PageControl..OptionsTabSheet..OptionPnl..OptionsGBox..UseRegExCBox..Caption
#: TextSearch.dfm:270
msgid "Use RegEx"
msgstr "RegEx verwenden"
# ConnectToInstanceForm..AdvancedOptionsGBox..AdvancedOptionsPageControl..MySQLOptionsTabSheet..UseSSLCBox..Caption
# ConnectToInstanceForm..AdvancedOptionsGBox..AdvancedOptionsPageControl..MySQLOptionsTabSheet..UseSSLCBox..Caption
#. ConnectToInstanceForm..AdvancedOptionsGBox..AdvancedOptionsPageControl..MySQLOptionsTabSheet..UseSSLCBox..Caption
#: ConnectToInstance.dfm:722
msgid "Use SSL if available (the client library needs to support it)"
msgstr "SSL verwenden (wenn die Client-Bibliothek dies unterstützt)"
#. ConnectToInstanceForm..AdvancedOptionsGBox..AdvancedOptionsPageControl..MySQLOptionsTabSheet..UseCompressionCBox..Caption
#: ConnectToInstance.dfm:697
msgid "Use co&mpression protocol"
msgstr "Benutze &Kompressionsprotokoll"
# MigrationObjSelFilterFrame..ObjectSelGBox..TntLabel2..Caption
# MigrationObjSelFilterFrame..ObjectSelGBox..TntLabel2..Caption
#. MigrationObjSelFilterFrame..ObjectSelGBox..TntLabel2..Caption
#: MigrationObjSelFilter.dfm:75
msgid "Use the [Detailed Selection] to put objects on the ignore list."
msgstr "Verwenden Sie [Erweiterte Auswahl], um Objekte in die Ausschlussliste einzutragen."
# EditorTableForm..TableEditorPnl..DockedHeaderPnl..TntLabel10..Caption
# EditorTableForm..TableEditorPnl..DockedHeaderPnl..TntLabel10..Caption
# EditorTableForm..TableEditorPnl..DockedHeaderPnl..TntLabel10..Caption
#. EditorTableForm..TableEditorPnl..DockedHeaderPnl..TntLabel10..Caption
#: EditorTable.dfm:1675
msgid "Use this editor to create or alter tables."
msgstr "Mit diesem Editor erzeugen oder ändern Sie Tabellen."
# EditorTableForm..TableEditorPnl..GirdOptionPnl..MainPageControl..AdvTableOptionsSheet..AdvancedOptionsScrollBox..VariousGBox..TntLabel54....AutoSize
# EditorTableForm..TableEditorPnl..GirdOptionPnl..MainPageControl..AdvTableOptionsSheet..AdvancedOptionsScrollBox..VariousGBox..TntLabel54....AutoSize
#. EditorTableForm..TableEditorPnl..GirdOptionPnl..MainPageControl..AdvTableOptionsSheet..AdvancedOptionsScrollBox..VariousGBox..TntLabel54....AutoSize
#. MyxTableEditorForm..TablePageControl..TntTabSheet1..AdvancedOptionsSheetPnl..AdvancedOptionsScrollBox..VariousGBox..TntLabel54....AutoSize
#: EditorTable.dfm:1445
msgid "Use this option to delay the key updates until the table is closed. This works for MyISAM only."
msgstr "Mit dieser Einstellung verzögern Sie Schlüsselaktualisierungen bis zum Schließen der Tabelle (nur bei MyISAM)."
# EditorTableForm..TableEditorPnl..GirdOptionPnl..MainPageControl..AdvTableOptionsSheet..AdvancedOptionsScrollBox..TntGroupBox9..TntLabel51....AutoSize
# EditorTableForm..TableEditorPnl..GirdOptionPnl..MainPageControl..AdvTableOptionsSheet..AdvancedOptionsScrollBox..VariousGBox..TntLabel51....AutoSize
#. EditorTableForm..TableEditorPnl..GirdOptionPnl..MainPageControl..AdvTableOptionsSheet..AdvancedOptionsScrollBox..VariousGBox..TntLabel51....AutoSize
#. MyxTableEditorForm..TablePageControl..TntTabSheet1..AdvancedOptionsSheetPnl..AdvancedOptionsScrollBox..VariousGBox..TntLabel51....AutoSize
#: EditorTable.dfm:1414
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 "Einstellung zur Erzeugung kleinerer Indizes. Gewöhnlich werden Aktualisierungen dadurch langsamer und das Lesen schneller. Die Vorgabeeinstellung komprimiert nur lange CHAR/VARCHAR-Spalten."
# MigrationObjMapDetailFrame..ObjectSelGBox..UserDefinedParamsPnl..ParamsUserDefinedCBox..Caption
#. MigrationObjMapDetailFrame..ObjectSelGBox..UserDefinedParamsPnl..ParamsUserDefinedCBox..Caption
#: MigrationObjMapDetail.dfm:154
msgid "User defined"
msgstr "Benutzerdefiniert"
# #-#-#-#-# ..\res\windows\po\default.po (PACKAGE VERSION) #-#-#-#-#
# ConnectToInstanceForm..ConnectToHostPnl..UsernameLbl..Caption
# OptionsForm..OptionPageControl..ConnectionsTabSheet..ConnectionPageControl..ConnGeneralTabSheet..UsernameLbl..Caption
# #-#-#-#-# ..\res\windows\po\default.po (PACKAGE VERSION) #-#-#-#-#
# ConnectToInstanceForm..ConnectToHostPnl..UsernameLbl..Caption
# OptionsForm..OptionPageControl..ConnectionsTabSheet..ConnectionPageControl..ConnGeneralTabSheet..UsernameLbl..Caption
#. OptionsForm..OptionPageControl..ConnectionsTabSheet..ConnectionPageControl..ConnGeneralTabSheet..UsernameLbl..Caption
#: OptionsEditor.dfm:707
msgid "Username:"
msgstr "Benutzername:"
#: SchemataTreeView.pas:1781
msgid "Users"
msgstr "Benutzer"
# OptionsForm..OptionPageControl..ConnectionsTabSheet..ConnectionPageControl..ConnAdvTabSheet..ConnValueListEditor....TitleCaptions.Strings
#. OptionsForm..OptionPageControl..ConnectionsTabSheet..ConnectionPageControl..ConnAdvTabSheet..ConnValueListEditor....TitleCaptions.Strings
#: OptionsEditor.dfm:858
msgid "Value"
msgstr "Wert"
#: GrtObjectTree.pas:399
msgid "Values"
msgstr "Werte"
# EditorTableForm..TableEditorPnl..GirdOptionPnl..MainPageControl..AdvTableOptionsSheet..AdvancedOptionsScrollBox..VariousGBox..Caption
# Check translation!
# EditorTableForm..TableEditorPnl..GirdOptionPnl..MainPageControl..AdvTableOptionsSheet..AdvancedOptionsScrollBox..VariousGBox..Caption
#. EditorTableForm..TableEditorPnl..GirdOptionPnl..MainPageControl..AdvTableOptionsSheet..AdvancedOptionsScrollBox..VariousGBox..Caption
#. MyxTableEditorForm..TablePageControl..TntTabSheet1..AdvancedOptionsSheetPnl..AdvancedOptionsScrollBox..VariousGBox..Caption
#: EditorTable.dfm:1382
msgid "Various"
msgstr "Verschiedenes"
# EditorTableForm..TableEditorPnl..GirdOptionPnl..MainPageControl..TabSheet2..TableOptionScrollBox..StorageEngineGBox..TntLabel43....AutoSize
#. EditorTableForm..TableEditorPnl..GirdOptionPnl..MainPageControl..TabSheet2..TableOptionScrollBox..StorageEngineGBox..TableEngineDescLbl....AutoSize
#: EditorTable.dfm:1009
msgid "Very fast, disk based storage engine without support for transactions. Offers fulltext search, packed keys, and is the default storage engine."
msgstr "Die Standard-Speicher-Engine: sehr schnell, festplattenbasiert, ohne Transaktionsunterstützung. Bietet Volltextsuche und komprimierte Schlüssel."
# SchemataFrame..SchemaSearchPopupMenu..CustomMI..ViewsSubMI..Caption
# grt_view_editor.glade:GtkLabel:label147
#. MyxViewEditorForm..ViewPageControl..ViewTabSheet..Caption
#: MyxViewEditor.dfm:89
msgid "View"
msgstr "Ansicht"
# MyxViewEditorForm..Caption
#. MyxViewEditorForm..Caption
#: MyxViewEditor.dfm:4
msgid "View Editor"
msgstr "View-Editor"
# MyxViewEditorForm..HeaderPnl..NameLbl..Caption
#. MyxViewEditorForm..ViewPageControl..ViewTabSheet..ViewSheetPnl..NameLbl..Caption
#: MyxViewEditor.dfm:121
msgid "View Name:"
msgstr "View-Name:"
#: EditorSql.pas:156
msgid "View name has changed"
msgstr "View-Name hat sich geändert"
# SchemataFrame..SchemaSearchPopupMenu..CustomMI..ViewsSubMI..Caption
# SchemataFrame..SchemaSearchPopupMenu..CustomMI..ViewsSubMI..Caption
#. SchemataFrame..SchemaSearchPopupMenu..CustomMI..ViewsSubMI..Caption
#: SchemataTreeView.dfm:182
msgid "Views"
msgstr "Views"
#. MyxTableEditorForm..TablePageControl..ColumnSheet..ColumnsContentPnl..ColumnVST....ClipboardFormats.Strings
#: MyxTableEditor.dfm:445
msgid "Virtual Tree Data"
msgstr "Virtual Tree Data"
#: ConnectToInstance.pas:1233
msgid "Warning"
msgstr "Warnung"
# OptionsForm..OptionPageControl..GeneralTabSheet..TntGroupBox2..Caption
#. OptionsForm..OptionPageControl..GeneralTabSheet..TntGroupBox2..Caption
#: OptionsEditor.dfm:635
msgid "Warnings and Messages"
msgstr "Warnungen und Meldungen"
# TextSearchForm..PageControl..OptionsTabSheet..OptionPnl..OptionsGBox..WholeWordsOnlyCBox..Caption
# TextSearchForm..PageControl..OptionsTabSheet..OptionPnl..OptionsGBox..WholeWordsOnlyCBox..Caption
#. TextSearchForm..PageControl..OptionsTabSheet..OptionPnl..OptionsGBox..WholeWordsOnlyCBox..Caption
#: TextSearch.dfm:261
msgid "Whole words only"
msgstr "Nur ganze Wörter"
# OptionsForm..OptionPageControl..GeneralTabSheet..GroupBox2..TntLabel7..Caption
#. OptionsForm..OptionPageControl..GeneralTabSheet..GroupBox2..TntLabel7..Caption
#: OptionsEditor.dfm:431
msgid "Width:"
msgstr "Breite:"
#: EditorSql.pas:157
msgid "Would you like to keep the original view object? "
msgstr "Möchten Sie das originale View-Objekt behalten?"
#: ConnectToInstance.pas:980
#: EditorTable.pas:758
#: EditorTable.pas:3223
#: MyxConnectionDialog.pas:1255
#: OptionsEditor.pas:556
#: OptionsEditor.pas:683
msgid "Yes"
msgstr "Ja"
#: EditorTable.pas:1852
msgid ""
"Yes\n"
"No"
msgstr ""
"Yes\n"
"No"
#: ConnectToInstance.pas:948
msgid "You are connecting to an MySQL 3.x server. The MySQL GUI tools only support MySQL servers 4.0 and higher. Using this tool with a 3.x server might result in unexpected behaviour."
msgstr "Sie verbinden sich mit einem MySQL-3.x-Server. Die MySQL-GUI-Tools benötigen Versionen ab 4.0 aufwärts. Verwendung dieses Tools mit einem 3.x-Server kann unvorhersehbares Verhalten zur Folge haben."
#: MySQLResultSetControls.pas:578
msgid "You can split the panel only in one direction."
msgstr "Sie können das Fenster nur in einer einzigen Richtung teilen."
#: SchemataTreeView.pas:2259
msgid "You cannot drop the MySQL schema"
msgstr "Sie können das Schema MySQL nicht löschen."
#: EditorTable.pas:3628
msgid "You have foreign keys defined but selected a storage engine which does not support them."
msgstr "Sie haben Fremdchlüssel definiert, aber die ausgewählte Storage Engine unterstützt diese nicht."
#: MySQLResultSet.pas:534
msgid "You have made changes to the resultset that have not been applied yet. Do you want to discard the changes?"
msgstr "Sie haben Änderungen an der Ergebnismenge vorgenommen, die noch nicht durchgeführt wurden. Wollen Sie die Änderungen verwerfen?"
#: ConnectToInstance.pas:962
msgid "You have not specified a default schema for this connection. Although it is possible to connect without specifying default schema you are highly encouraged to do so."
msgstr "Sie haben noch kein Vorgabeschema für diese Verbindung angegeben. Obwohl man sich ohne Vorgabeschema verbinden kann, ist die Angabe sehr empfehlenswert."
#: EditorTable.pas:2983
msgid "You have to add at least one column to the table"
msgstr "Sie müssen wenigstens eine Spalte zur Tabelle hinzufügen"
#: MySQLResultSetControls.pas:3181
msgid "You have to enable editing first."
msgstr "Sie müssen zuerst den Bearbeitungsmodus aktivieren."
#: MySQLResultSet.pas:555
msgid "You tried to execute an empty string. Please type an SQL command into the SQL edit field and execute again."
msgstr "Sie haben versucht, einen leeren String auszuführen. Bitte geben Sie eine SQL-Anweisung in das Bearbeitungsfeld ein und führen Sie sie dann aus."
#: EditorTable.pas:2203
msgid "Your foreign key definitions will be ignored."
msgstr "Ihre Fremdschlüsseldefinitionen werden ignoriert werden."
# OptionsForm..OptionPageControl..EditorsTabSheet..GroupBox4..EdTblPKAutoNamingEd..Text
# OptionsForm..OptionPageControl..EditorsTabSheet..GroupBox4..EdTblPKAutoNamingEd....Items.WideStrings
#. OptionsForm..OptionPageControl..EditorsTabSheet..GroupBox4..EdTblPKAutoNamingEd..Text
#. OptionsForm..OptionPageControl..EditorsTabSheet..GroupBox4..EdTblPKAutoNamingEd....Items.Strings
#: OptionsEditor.dfm:990
msgid "id%tablename%"
msgstr "id%tablename%"
# OptionsForm..OptionPageControl..EditorsTabSheet..GroupBox4..EdTblPKAutoNamingEd....Items.WideStrings
#. OptionsForm..OptionPageControl..EditorsTabSheet..GroupBox4..EdTblPKAutoNamingEd....Items.Strings
#: OptionsEditor.dfm:994
msgid "id_%tablename%"
msgstr "id_%tablename%"
# OptionsForm..OptionPageControl..EditorsTabSheet..GroupBox4..EdTblIndexNamingEd....Items.WideStrings
#. OptionsForm..OptionPageControl..EditorsTabSheet..GroupBox4..EdTblIndexNamingEd....Items.Strings
#: OptionsEditor.dfm:1021
msgid "ind_%tablename%_%nr%"
msgstr "ind_%tablename%_%nr%"
# OptionsForm..OptionPageControl..EditorsTabSheet..GroupBox4..EdTblIndexNamingEd....Items.WideStrings
#. OptionsForm..OptionPageControl..EditorsTabSheet..GroupBox4..EdTblIndexNamingEd....Items.Strings
#: OptionsEditor.dfm:1020
msgid "index%nr%"
msgstr "index%nr%"
# OptionsForm..OptionPageControl..EditorsTabSheet..GroupBox4..EdTblIndexNamingEd..Text
# OptionsForm..OptionPageControl..EditorsTabSheet..GroupBox4..EdTblIndexNamingEd....Items.WideStrings
#. OptionsForm..OptionPageControl..EditorsTabSheet..GroupBox4..EdTblIndexNamingEd..Text
#. OptionsForm..OptionPageControl..EditorsTabSheet..GroupBox4..EdTblIndexNamingEd....Items.Strings
#: OptionsEditor.dfm:1016
msgid "index_%nr%"
msgstr "index_%nr%"
# #-#-#-#-# ..\res\windows\po\default.po (PACKAGE VERSION) #-#-#-#-#
# EditorTableForm..TableEditorPnl..GirdOptionPnl..MainPageControl..AdvTableOptionsSheet..AdvancedOptionsScrollBox..RaidOptionsGBox..ChunkSizeUnitLbl..Caption
#. EditorTableForm..TableEditorPnl..GirdOptionPnl..MainPageControl..AdvTableOptionsSheet..AdvancedOptionsScrollBox..RaidOptionsGBox..ChunkSizeUnitLbl..Caption
#: EditorTable.dfm:1291
msgid "kB"
msgstr "KB"
#: ConnectToInstance.pas:1035
msgid "ms"
msgstr "ms"
# OptionsForm..OptionPageControl..GeneralTabSheet..GroupBox2..TntLabel8..Caption
# OptionsForm..OptionPageControl..GeneralTabSheet..GroupBox2..TntLabel9..Caption
# OptionsForm..OptionPageControl..GeneralTabSheet..GroupBox2..TntLabel10..Caption
#. OptionsForm..OptionPageControl..GeneralTabSheet..GroupBox2..TntLabel8..Caption
#. OptionsForm..OptionPageControl..GeneralTabSheet..GroupBox2..TntLabel9..Caption
#. OptionsForm..OptionPageControl..GeneralTabSheet..GroupBox2..TntLabel10..Caption
#: OptionsEditor.dfm:439
msgid "pt"
msgstr "pt"
# handle global root value
#. handle global root value
#: GrtObjectTree.pas:650
msgid "root"
msgstr "root"
#: CommonFuncs.pas:124
msgid "version"
msgstr "Version"
# AboutForm..VersionLbl..Caption
#. AboutForm..VersionLbl..Caption
#: About.dfm:48
msgid "version 1.0.7 BETA"
msgstr "Version 1.0.7 beta"
#~ msgid "(last connection)"
#~ msgstr "(vorherige Verbindung)"
#~ msgid "*"
#~ msgstr "*"
# AboutForm..CopyrightLbl..Caption_UTF7
# AboutForm..CopyrightLbl..Caption_UTF7
#~ msgid "+AKk Copyright 2005 by MySQL AB. All rights reserved."
#~ msgstr "+AKk Copyright 2005 by MySQL AB. Alle Rechte vorbehalten."
# grt_table_editor.glade:GtkLabel:label142..table_editor.glade:GtkLabel:label142
#~ msgid "<small><small>NULL</small></small>"
#~ msgstr "<small><small>NULL</small></small>"
#~ msgid "<small>Administrator</small>"
#~ msgstr "<small>Administrator</small>"
# #-#-#-#-# glade.pot #-#-#-#-#
# preferences.glade:GtkLabel:label18
#~ msgid "<small>Connections</small>"
#~ msgstr "<small>Verbindungen</small>"
# #-#-#-#-# glade.pot #-#-#-#-#
# preferences.glade:GtkLabel:label17
#~ msgid "<small>General Options</small>"
#~ msgstr "<small>Allgemeine Einstellungen</small>"
# table_editor.glade:GtkLabel:label107
#, fuzzy
#~ msgid "<small>Use drag and drop to add columnsto the list above.</small>"
#~ msgstr ""
#~ "<small>Rechts klicken und ziehen, um der\n"
#~ "obigen Liste Spalten hinzuzufügen.</small>"
#~ msgid ""
#~ "<small>Use right click drag to add columns\n"
#~ "to the list above.</small>"
#~ msgstr ""
#~ "<small>Rechts klicken und ziehen, um der\n"
#~ "obigen Liste Spalten hinzuzufügen.</small>"
#~ msgid ""
#~ "A MySQL error was encountered. The message is:\n"
#~ "\n"
#~ "%s"
#~ msgstr ""
#~ "Ein MySQL-Fehler ist aufgetreten. Die Meldung lautet:\n"
#~ "\n"
#~ "%s"
#~ msgid "About %s"
#~ msgstr "Über %s"
#~ 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 ""
#~ "Aktivieren Sie diese Option, wenn MySQL stets aktuelle Prüf-\n"
#~ "summen für alle Zeilen halten soll. Tabellen-Updates sind dann\n"
#~ "etwas langsamer, defekte Tabellen sind aber leichter zu finden."
# EditorTableForm..TableEditorPnl..GirdOptionPnl..MainPageControl..AdvTableOptionsSheet..AdvancedOptionsScrollBox..RowOptionsGBox..TntLabel60....AutoSize
# grt_table_editor.glade:GtkLabel:label127..table_editor.glade:GtkLabel:label127
#, fuzzy
#~ msgid ""
#~ "Activate this option if you want MySQL to maintain a livechecksum for all "
#~ "rows. This makes the table a little slower toupdate, but also makes it "
#~ "easier to find corrupted tables."
#~ msgstr ""
#~ "Aktivieren Sie diese Einstellung, wenn MySQL stets aktuelle Prüfsummen "
#~ "für alle Zeilen halten soll. Tabellen-Updates sind dann etwas langsamer, "
#~ "defekte Tabellen sind aber leichter zu finden."
# grt_routines_editor.glade:GtkButton:add_function_button
#~ msgid "Add Function"
#~ msgstr "Funktion hinzufügen"
# grt_routines_editor.glade:GtkButton:add_procedure_button
#~ msgid "Add Procedure"
#~ msgstr "Prozedur hinzufügen"
# OptionsForm..OptionPageControl..ConnectionsTabSheet..AddConnectionBtn..Caption
# OptionsForm..OptionPageControl..ConnectionsTabSheet..AddConnectionBtn..Caption
#~ msgid "Add new Connection"
#~ msgstr "Verbindung hinzufügen"
#~ 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 ""
#~ "Eine Schätzung für die mittlere Zeilenlänge in der Tabelle.\n"
#~ "Nur nötig für große Tabellen mit verschieden langen Zeilen."
# grt_table_editor.glade:GtkLabel:label128..table_editor.glade:GtkLabel:label128
#, fuzzy
#~ 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 ""
#~ "Eine Schätzung für die mittlere Zeilenlänge in der Tabelle.\n"
#~ "Nur nötig für große Tabellen mit verschieden langen Zeilen."
#~ msgid "Append timestamp to backup file names."
#~ msgstr "Zeitstempel an Namen von Backupdateien anhängen"
# MyxTableEditorForm..TntActionList1..ApplyChangeAndCloseAction..Caption
# Translation needed?
#~ msgid "ApplyChangeAndCloseAction"
#~ msgstr "ApplyChangeAndCloseAction"
#~ msgid ""
#~ "Archive engine storing data in a compressed form to save storage space. "
#~ "Note that SELECTs require a full table scan."
#~ msgstr ""
#~ "Die Archive-Engine speichert ihre Daten in einer komprimierten Form umd "
#~ "Speicherplatz zu sparen. Anmerkung: SELECTs erforder jedoch einen vollen "
#~ "Tabellenscan."
# Check position of %s
#~ msgid ""
#~ "Are you REALLY sure you want to delete the selected object(s) %s?\n"
#~ "\n"
#~ "Please note that this action cannot be rolled back."
#~ msgstr ""
#~ "Wollen Sie die ausgewählten Objekte %s WIRKLICH löschen?\n"
#~ "\n"
#~ "Dieser Vorgang kann nicht rückgängig gemacht werden."
#~ msgid "Are you sure you want to delete the connection "
#~ msgstr "Sind Sie sicher, dass Sie diese Verbindung löschen wollen "
# Check position of %2
#~ msgid ""
#~ "Are you sure you want to delete the selected object(s) %s?\n"
#~ "\n"
#~ "Please note that this action cannot be rolled back."
#~ msgstr ""
#~ "Wollen Sie die ausgewählten Objekte %s wirklich löschen?\n"
#~ "\n"
#~ "Dieser Vorgang kann nicht rückgängig gemacht werden."
#~ msgid "Avg. Row Length:"
#~ msgstr "Mittl. Zeilenlänge:"
# EditorTableForm..TableEditorPnl..GirdOptionPnl..MainPageControl..TabSheet2..TableOptionScrollBox..StorageEngineGBox..BDBRBtn..Caption
#~ msgid "BDB Storage Engine"
#~ msgstr "BDB-Speicher-Engine"
#~ msgid "BTREE"
#~ msgstr "BTREE"
#~ msgid "Back"
#~ msgstr "Zurück"
# ExOpenDialog..SearchPnl..NavigationToolbar..PrevBtn..Hint
#~ msgid "Back to last visited folder"
#~ msgstr "Zurück zum vorigen Ordner"
#~ msgid "Backup"
#~ msgstr "Backup"
# grt_table_editor.glade:GtkCheckButton:null_flag
#~ msgid "Can be NULL"
#~ msgstr "Darf NULL sein"
#~ msgid "Can't connect to server instance."
#~ msgstr "Kann nicht mit der Serverinstanz verbinden."
#~ msgid "Can't open file."
#~ msgstr "Kann Datei nicht öffnen."
#~ msgid ""
#~ "Can't show connection dialog.\n"
#~ "Software installation might be incorrect or corrupted."
#~ msgstr ""
#~ "Kann den Verbindungsdialog nicht anzeigen.\n"
#~ "Software ist möglicherweise falsch installiert oder defekt."
#~ msgid "Cannot read from file."
#~ msgstr "Kann nicht aus Datei lesen."
#~ msgid "Change Path..."
#~ msgstr "Pfad ändern..."
#~ msgid "Character Set:"
#~ msgstr "Zeichensatz:"
#~ msgid "Chunk Size:"
#~ msgstr "Partitionsgröße:"
#~ msgid ""
#~ "Collation method that is used to compare text\n"
#~ "and sort columns."
#~ msgstr ""
#~ "Zeichensortierfolge für Textvergleiche\n"
#~ "und Spaltensortierungen"
# EditorTableForm..TableEditorPnl..GirdOptionPnl..MainPageControl..TabSheet2..TableOptionScrollBox..TntGroupBox6..TableCollationDescLbl..Caption
# table_editor.glade:GtkLabel:label117
#, fuzzy
#~ msgid "Collation method that is used to compare textand sort columns."
#~ msgstr "Zeichensortierfolge für Textvergleiche und Spaltensortierungen"
#~ 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 ""
#~ "Sammlung von MyISAM-Tabellen mit identischen Spalten- und "
#~ "Indexinformationen.\n"
#~ "Empfohlen für Protokoll- und Archivdaten-Tabellen. Die Liste der zu\n"
#~ "vereinigenden Tabellen und die Einfügemethode müssen angegeben werden!"
# EditorTableForm..TableEditorPnl..GirdOptionPnl..MainPageControl..TabSheet2..TableOptionScrollBox..StorageEngineGBox..TntLabel18....AutoSize
#~ msgid ""
#~ "Collection of MyISAM tables with identical column and index information. "
#~ "Recommended for log tables or archived data."
#~ msgstr ""
#~ "Sammlung von MyISAM-Tabellen mit identischen Spalten- und "
#~ "Indexinformationen. Empfohlen für Protokoll- und Archivdaten-Tabellen."
# table_editor.glade:GtkLabel:label114
#, fuzzy
#~ 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 ""
#~ "Sammlung von MyISAM-Tabellen mit identischen Spalten- und "
#~ "Indexinformationen.\n"
#~ "Empfohlen für Protokoll- und Archivdaten-Tabellen. Die Liste der zu\n"
#~ "vereinigenden Tabellen und die Einfügemethode müssen angegeben werden!"
# table_editor.glade:GtkLabel:label33
#~ msgid ""
#~ "Columns:<small>Drag and drop from the column list aboveto add. Double "
#~ "click in the length column to seta max. length for string columns.</small>"
#~ msgstr ""
#~ "Spalten:<small>Zum Hinzufügen aus obiger Spaltenliste hierherziehen. "
#~ "Doppelklick in der Längenspalte setzt max.Länge für String-Spalten.</"
#~ "small>"
#~ msgid "Comments"
#~ msgstr "Kommentare"
#~ msgid "Compress connection data"
#~ msgstr "Verbindungsdaten komprimieren"
#~ msgid "Confirm Table Changes"
#~ msgstr "Tabellenänderungen bestätigen"
#~ msgid "Confirm Table Creation"
#~ msgstr "Tabellenerstellung bestätigen"
#~ msgid "Connect"
#~ msgstr "Verbinden"
#~ msgid "Connect MySQL Database"
#~ msgstr "MySQL-Datenbank verbinden"
#~ msgid "Connect Using Socket File"
#~ msgstr "Per Socketdatei verbinden"
#~ msgid "Connection Name"
#~ msgstr "Verbindungsname"
# SchemataFrame..SchemaTreeViewPopupMenu..CopyAssetSQLMI..Caption
#~ msgid "Copy SQL to Clipboard"
#~ msgstr "SQL in Zwischenablage kopieren"
#~ 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 ""
#~ "Konnte nicht mit Host '%s' verbinden.\n"
#~ "MySQL-Fehler Nr. %i\n"
#~ "%s\n"
#~ "\n"
#~ "Klicken Sie auf den [Ping]-Button, um zu sehen, ob ein Netzwerkproblem "
#~ "vorliegt."
#~ msgid "Could not create directory %s: %s"
#~ msgstr "Konnte Verzeichnis %s nicht erzeugen: %s"
#~ msgid "Could not create file '%s'."
#~ msgstr "Konnte Datei '%s' nicht erzeugen."
#~ msgid "Could not erase file '%s': %s"
#~ msgstr "Konnte Datei '%s' nicht löschen: %s"
#~ msgid "Could not execute ping\n"
#~ msgstr "Konnte Ping nicht ausführen.\n"
#~ msgid "Could not fetch Catalogs/Schemata data."
#~ msgstr "Konnte Kataloge/Schemadaten nicht holen."
#~ msgid "Could not fetch Schema Indices."
#~ msgstr "Konnte Schema-Indizes nicht holen."
#~ msgid ""
#~ "Could not generate differences between original table and modified table."
#~ msgstr "Konnte ursprüngliche und veränderte Tabelle nicht vergleichen."
#~ msgid "Could not load data files '%s' for table editor."
#~ msgstr "Konnte Dateien '%s' für Tabelleneditor nicht laden."
#~ msgid "Could not rename file '%s' to '%s': %s"
#~ msgstr "Konnte Datei '%s' nicht in '%s' umbenennen: %s"
#~ msgid ""
#~ "Could not retrieve available character set information for table editor."
#~ msgstr ""
#~ "Konnte Information über verfügbare Zeichensätze nicht für den "
#~ "Tabelleneditor laden."
#~ msgid "Could not retrieve information for table '%s.%s'"
#~ msgstr "Konnte Information für Tabelle '%s.%s' nicht holen."
#~ msgid ""
#~ "Could not retrieve information for table '%s.%s' to perform table diff."
#~ msgstr ""
#~ "Konnte Information für Tabelle '%s.%s' nicht holen, um Tabellen zu "
#~ "vergleichen."
#~ msgid "Could not save to file '%s'."
#~ msgstr "Konnte nicht in Datei '%s' sichern."
# ExOpenDialog..SearchPnl..NavigationToolbar..NewFolderBtn..Hint
#~ msgid "Create new folder"
#~ msgstr "Neuen Ordner anlegen"
#~ msgid "DEFAULT"
#~ msgstr "VORGABE"
#~ msgid "Data Type"
#~ msgstr "Datentyp"
#~ msgid "Data Type:"
#~ msgstr "Datentyp:"
#~ msgid "Database"
#~ msgstr "Datenbank"
#~ msgid "Default Character Set"
#~ msgstr "Standardzeichensatz"
# grt_schema_editor.glade:GtkLabel:label2
#, fuzzy
#~ msgid "Default Character Set:"
#~ msgstr "Standardzeichensatz"
# ConnectToInstanceForm..ConnectToHostPnl..SchemataEdLbl..Caption
# ConnectToInstanceForm..ConnectToHostPnl..SchemataEdLbl..Caption
#~ msgid "Default Schema:"
#~ msgstr "Vorgabeschema:"
# grt_table_editor.glade:GtkComboBox:format_option
#~ msgid "DefaultDynamicFixedCompressed"
#~ msgstr "StandardDynamischFestKomprimiert"
# grt_table_editor.glade:GtkComboBox:pack_keys_option
#~ msgid "DefaultPack NonePack All"
#~ msgstr "StandardPack KeinPack Alle"
#~ 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 ""
#~ "Legt fest, wie die Zeilen in MyISAM-Tabellen gespeichert\n"
#~ "werden sollten. Der Wert kann FIXED oder DYNAMIC entspr. Zeilen\n"
#~ "mit fester bzw. variabler Länge sein. Mit dem Hilfsprogramm\n"
#~ "myisampack kann der Typ auf COMPRESSED gesetzt werden."
# grt_table_editor.glade:GtkLabel:label126..table_editor.glade:GtkLabel:label126
#, fuzzy
#~ msgid ""
#~ "Defines how the rows in MyISAM tables should be stored.The option value "
#~ "can be Fixed or Dynamic for static or variable-length row format. The "
#~ "utility myisampack can be usedto set the type to Compressed."
#~ msgstr ""
#~ "Legt fest, wie die Zeilen in MyISAM-Tabellen gespeichert\n"
#~ "werden sollten. Der Wert kann FIXED oder DYNAMIC entspr. Zeilen\n"
#~ "mit fester bzw. variabler Länge sein. Mit dem Hilfsprogramm\n"
#~ "myisampack kann der Typ auf COMPRESSED gesetzt werden."
#~ msgid "Delay Key Updates Until Table is Closed"
#~ msgstr "Schlüsselaktualisierung bis zum Schließen der Tabelle verzögern"
# OptionsForm..OptionPageControl..ConnectionsTabSheet..DeleteConnectionBtn..Caption
# OptionsForm..OptionPageControl..ConnectionsTabSheet..DeleteConnectionBtn..Caption
#~ msgid "Delete"
#~ msgstr "Löschen"
#~ msgid ""
#~ "Delete\n"
#~ "Cancel"
#~ msgstr ""
#~ "Löschen\n"
#~ "Abbrechen"
# MyxTableEditorForm..TntActionList1..DeleteSelectedItemsAction..Caption
#~ msgid "Delete Selected Items"
#~ msgstr "Ausgewählte Einträge löschen"
# ExOpenDialog..ViewsMenu..Details1..Caption
#~ msgid "Details"
#~ msgstr "Details"
# ExOpenDialog..SearchPnl..DirCombo..Path
#~ msgid "DirCombo"
#~ msgstr "DirCombo"
#~ msgid "Directory %s does not exist"
#~ msgstr "Verzeichnis %s existiert nicht."
#~ 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 ""
#~ "Verzeichnis für die Tabellendateien. Nur\n"
#~ "für MyISAM-Tabellen, jedoch nicht unter\n"
#~ "allen Betriebssystemen (Windows)."
# grt_table_editor.glade:GtkLabel:label132..table_editor.glade:GtkLabel:label132
#, fuzzy
#~ msgid ""
#~ "Directory where to put the tables data file.This works only for MyISAM "
#~ "tables only andnot on some operating systems (Windows)."
#~ msgstr ""
#~ "Verzeichnis für die Tabellendateien. Nur\n"
#~ "für MyISAM-Tabellen, jedoch nicht unter\n"
#~ "allen Betriebssystemen (Windows)."
#~ 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 ""
#~ "Verzeichnis für die Indexdateien. Nur für\n"
#~ "MyISAM-Tabellen, jedoch nicht unter\n"
#~ "allen Betriebssystemen (Windows)."
# grt_table_editor.glade:GtkLabel:label131..table_editor.glade:GtkLabel:label131
#, fuzzy
#~ msgid ""
#~ "Directory where to put the tables index file.This works only for MyISAM "
#~ "tables only andnot on some operating systems (Windows)."
#~ msgstr ""
#~ "Verzeichnis für die Indexdateien. Nur für\n"
#~ "MyISAM-Tabellen, jedoch nicht unter\n"
#~ "allen Betriebssystemen (Windows)."
#~ msgid ""
#~ "Do you want do remove the associated schema privileges?\n"
#~ "\n"
#~ "Please note that this action cannot be rolled back."
#~ msgstr ""
#~ "Möchen sie die zugehörigen Schemaprivilegien ebenfalls entfernen?\n"
#~ "\n"
#~ "Bitte beachten Sie, dass diese Aktion nicht rückgängig gemacht werden "
#~ "kann."
#~ msgid "Encrypt connection (use SSL)"
#~ msgstr "Verbindung verschlüsseln (mit SSL)"
# preferences.glade:GtkCheckButton:option2_check
#, fuzzy
#~ msgid "Encrypt connection if available (with SSL)"
#~ msgstr "Verbindung verschlüsseln (mit SSL)"
#~ msgid ""
#~ "Engine that stores data as a comma separated values list, suited for data "
#~ "export. Note that this engine does not support indices."
#~ msgstr ""
#~ "Engine, die ihre Daten in einer kommaseparierten Liste ablegt (nützlich "
#~ "für den Datenexport). Beachten Sie, dass diese Engine keine Indizes "
#~ "unterstützt."
#~ msgid "Enter the database username to connect to use for connecting."
#~ msgstr "Geben Sie den Datenbank-Benutzernamen für die Verbindung an."
#~ msgid "Enter the host name for the database server."
#~ msgstr "Geben Sie den Hostnamen für den Datenbankserver an."
#~ msgid "Enter the password for the above user."
#~ msgstr "Geben Sie das Passwort für den o.g. Benutzer an."
#~ msgid "Enter the port where the database server is running."
#~ msgstr "Geben Sie den Port an, auf dem der Datenbankserver läuft."
#~ msgid "Error during character set conversion."
#~ msgstr "Fehler bei der Zeichensatzkonvertierung"
#~ msgid "Error executing SQL command."
#~ msgstr "Fehler beim Ausführen einer SQL-Anweisung"
#~ msgid "Error executing SQL commands to create table."
#~ msgstr "Fehler beim Ausführen der SQL-Anweisungen zur Tabellenerzeugung"
#~ msgid "Error executing SQL commands to update table."
#~ msgstr ""
#~ "Fehler beim Ausführen der SQL-Anweisungen zur Tabellenaktualisierung"
#~ msgid "Error parsing XML file (bad document)."
#~ msgstr "Fehler beim Parsen einer XML-Datei (fehlerhaftes Dokument)"
#~ msgid "Error parsing XML file (empty document)."
#~ msgstr "Fehler beim Parsen einer XML-Datei (leeres Dokument)"
#~ msgid "Error parsing XML file."
#~ msgstr "Fehler beim Parsen einer XML-Datei"
#~ msgid "Error retrieving information for table '%s.%s'"
#~ msgstr "Fehler beim Holen der Tabelle '%s.%s'"
#~ msgid "Executing stopped."
#~ msgstr "Ausführung angehalten"
#~ 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 ""
#~ "Extrem schnelle, hauptspeicherbasierte Engine mit Hash-Indizes.\n"
#~ " Empfohlene Engine für temporäre Daten, die bei einer Beendung\n"
#~ "des Servers verloren gehen dürfen."
# table_editor.glade:GtkLabel:label113
#, fuzzy
#~ msgid ""
#~ "Extremly fast memory based storage engine that uses hash indices. "
#~ "Recommended storage engine for temporary data that can be lost in caseof "
#~ "a server shutdown."
#~ msgstr ""
#~ "Extrem schnelle, hauptspeicherbasierte Engine mit Hash-Indizes.\n"
#~ " Empfohlene Engine für temporäre Daten, die bei einer Beendung\n"
#~ "des Servers verloren gehen dürfen."
# EditorTableForm..TableEditorPnl..GirdOptionPnl..MainPageControl..TabSheet2..TableOptionScrollBox..StorageEngineGBox..TntLabel45....AutoSize
#~ msgid ""
#~ "Extremly fast memory based storage engine that uses hash indices. "
#~ "Recommended storage engine for temporary data."
#~ msgstr ""
#~ "Extrem schnelle, hauptspeicherbasierte Engine mit Hash-Indizes. Empfohlen "
#~ "für temporäre Daten."
# Translation needed?
#~ msgid "FULLTEXT"
#~ msgstr "FULLTEXT"
# ExOpenDialog..MainPanel..FilesPnl..Label2..Caption
#~ msgid "File name:"
#~ msgstr "Dateiname:"
# ExOpenDialog..MainPanel..FilesPnl..Label3..Caption
#~ msgid "File type:"
#~ msgstr "Dateityp:"
# ExOpenDialog..MainPanel..FilesPnl..Caption
#~ msgid "FilesPnl"
#~ msgstr "FilesPnl"
#~ msgid ""
#~ "Foreign keys are currently only support for the InnoDB storage engine.\n"
#~ msgstr ""
#~ "Fremdschlüssel werden momentan nur für die InnoDB Storage Engine "
#~ "unterstützt.\n"
#~ msgid "HASH"
#~ msgstr "HASH"
#~ msgid "Hostname"
#~ msgstr "Hostname"
#~ msgid "INDEX"
#~ msgstr "INDEX"
#~ msgid "ISAM (deprecated)"
#~ msgstr "ISAM (veraltet)"
# EditorTableForm..TableEditorPnl..GirdOptionPnl..MainPageControl..TabSheet2..TableOptionScrollBox..StorageEngineGBox..ISAMRBtn..Caption
#~ msgid "ISAM Storage Engine"
#~ msgstr "ISAM-Speicher-Engine"
#, fuzzy
#~ msgid ""
#~ "Index Columns:\n"
#~ "<small>Use shift drag\n"
#~ "from the column list\n"
#~ "and drop in the list\n"
#~ "to add.</small>."
#~ msgstr ""
#~ "Indexspalten:\n"
#~ "<small>Zum Hinzufügen\n"
#~ "mit Shift aus Spaltenliste\n"
#~ "ziehen und in\n"
#~ "Liste fallenlassen</small>."
#~ msgid "Index Name:"
#~ msgstr "Indexname:"
# EditorTableForm..TableEditorPnl..GirdOptionPnl..MainPageControl..TabSheet2..TableOptionScrollBox..StorageEngineGBox..InnoDBRBtn..Caption
#~ msgid "InnoDB Storage Engine"
#~ msgstr "InnoDB-Speicher-Engine"
#~ msgid "Insert into first table"
#~ msgstr "In erste Tabelle einfügen"
#~ msgid "Insert into last table"
#~ msgstr "In letzte Tabelle einfügen"
#~ msgid "Internal error in libxml (could not change memory allocators)."
#~ msgstr "Interner libxml-Fehler (Speicherzuweiser nicht änderbar)"
#~ msgid "Invalid character set specified."
#~ msgstr "Ungültiger Zeichensatz angegeben"
# #-#-#-#-# ..\res\windows\po\default.po (PACKAGE VERSION) #-#-#-#-#
# EditorTableForm..TableEditorPnl..GirdOptionPnl..MainPageControl..ColumnTabSheet..ColumnsPageControl..TntTabSheet2..TntGroupBox1..IndexKindLbl..Caption
# table_editor.glade:GtkLabel:label31
#, fuzzy
#~ msgid "Kind:"
#~ msgstr "Indexart:"
# ExOpenDialog..ViewsMenu..List1..Caption
#~ msgid "List"
#~ msgstr "Liste"
#~ msgid ""
#~ "List of MyISAM tables that should be used\n"
#~ "by the MERGE table."
#~ msgstr ""
#~ "Liste der MyISAM-Tabellen, die in die\n"
#~ "MERGE-Tabelle einfließen sollen"
# grt_table_editor.glade:GtkLabel:label133..table_editor.glade:GtkLabel:label133
#, fuzzy
#~ msgid "List of MyISAM tables that should be usedby the MERGE table."
#~ msgstr ""
#~ "Liste der MyISAM-Tabellen, die in die\n"
#~ "MERGE-Tabelle einfließen sollen"
#~ msgid "MEMORY (HEAP)"
#~ msgstr "MEMORY (HEAP)"
#~ msgid "MERGE"
#~ msgstr "MERGE"
# EditorTableForm..TableEditorPnl..GirdOptionPnl..MainPageControl..TabSheet2..TableOptionScrollBox..StorageEngineGBox..MergeRBtn..Caption
#~ msgid "MERGE Storage Engine"
#~ msgstr "MERGE-Speicher-Engine"
# EditorTableForm..TableEditorPnl..GirdOptionPnl..MainPageControl..TabSheet2..TableOptionScrollBox..StorageEngineGBox..MemoryRBtn..Caption
#~ msgid "Memory Storage Engine"
#~ msgstr "Memory-Engine"
#~ msgid "Miscelaneous Options"
#~ msgstr "Verschiedene Einstellungen"
# EditorTableForm..TableEditorPnl..GirdOptionPnl..MainPageControl..TabSheet2..TableOptionScrollBox..StorageEngineGBox..MyISAMRBtn..Caption
#~ msgid "MyISAM Storage Engine"
#~ msgstr "MyISAM-Speicher-Engine"
#~ msgid "MySQL Administrator Options"
#~ msgstr "Einstellungen für MySQL Administrator"
#~ msgid ""
#~ "MySQL Cluster storage engine. Transaction safe, memory based with row "
#~ "locking.\n"
#~ "Recommended storage engine for high performance, real time critical "
#~ "applications."
#~ msgstr ""
#~ "MySQL-Cluster-Speicher-Engine. Transaktionssicher, hauptspeicherbasiert "
#~ "mit Zeilen-Sperren.\n"
#~ "Empfohlene Engine für hoch performante kritische Realzeitanwendungen."
# EditorTableForm..TableEditorPnl..GirdOptionPnl..MainPageControl..TabSheet2..TableOptionScrollBox..StorageEngineGBox..TntLabel50....AutoSize
#~ msgid ""
#~ "MySQL Cluster storage engine. Transaction safe, memory based with row "
#~ "locking. Recommended for real time critical applications."
#~ msgstr ""
#~ "MySQL-Cluster-Speicher-Engine. Transaktionssicher, hauptspeicherbasiert "
#~ "mit Zeilen-Sperren. Empfohlen für hoch performante kritische "
#~ "Realzeitanwendungen."
# table_editor.glade:GtkLabel:label109
#, fuzzy
#~ msgid ""
#~ "MySQL Cluster storage engine. Transaction safe, memory based with row "
#~ "locking.Recommended storage engine for high performance, real time "
#~ "critical applications."
#~ msgstr ""
#~ "MySQL-Cluster-Speicher-Engine. Transaktionssicher, hauptspeicherbasiert "
#~ "mit Zeilen-Sperren.\n"
#~ "Empfohlene Engine für hoch performante kritische Realzeitanwendungen."
#~ msgid "MySQL connection could not be established."
#~ msgstr "MySQL-Verbindung konnte nicht hergestellt werden"
# EditorTableForm..TableEditorPnl..GirdOptionPnl..MainPageControl..TabSheet2..TableOptionScrollBox..StorageEngineGBox..NDBRBtn..Caption
#~ msgid "NDB Storage Engine"
#~ msgstr "NDB-Speicher-Engine"
# ConnectToInstanceForm..AdvancedOptionsGBox..AdvancedOptionsPageControl..MySQLOptionsTabSheet..TntLabel2..Caption
# ConnectToInstanceForm..AdvancedOptionsGBox..AdvancedOptionsPageControl..MySQLOptionsTabSheet..TntLabel2..Caption
#~ msgid "Named pipe:"
#~ msgstr "Named Pipe:"
#~ msgid "New Instance Connection"
#~ msgstr "Neue Instanzverbindung"
#~ msgid "New Manager Connection"
#~ msgstr "Neue Managerverbindung"
# grt_table_editor.glade:GtkComboBox:insert_method_option
#~ msgid "No InsertsInsert Into Last TableInsert Into First Table"
#~ msgstr "Keine EinfügenEinfügen in letzte TabelleEinfügen in erste Tabelle"
#~ msgid "No modifications to be applied."
#~ msgstr "Keine ausstehenden Änderungen"
#~ msgid "No server connection"
#~ msgstr "Keine Serververbindung"
# grt_table_editor.glade:GtkComboBox:raid_type_option
#, fuzzy
#~ msgid "NoneStriped"
#~ msgstr "Striped"
#~ msgid "Not NULL"
#~ msgstr "Nicht NULL"
#~ msgid "Notes"
#~ msgstr "Anmerkungen"
#~ 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 ""
#~ "Anzahl zu erzeugender Partitionen, Maximalzahl ist 255.\n"
#~ "Für jede Partition wird ein Unterverzeichnis namens '00', '01', ...\n"
#~ "erzeugt und in jedem davon eine Datei 'tabellenname.MYD' angelegt."
# EditorTableForm..TableEditorPnl..GirdOptionPnl..MainPageControl..AdvTableOptionsSheet..AdvancedOptionsScrollBox..RaidOptionsGBox..NumberOfChunksDescLbl....AutoSize
# grt_table_editor.glade:GtkLabel:label139..table_editor.glade:GtkLabel:label139
#, fuzzy
#~ 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 ""
#~ "Anzahl zu erzeugender Partitionen, Maximalzahl ist 255. Für jede "
#~ "Partition wird ein Unterverzeichnis namens '00', '01', ... erzeugt und in "
#~ "jedem davon eine Datei 'tabellenname.MYD' angelegt."
#~ msgid "Obscured"
#~ msgstr "Verschleiert"
# ExOpenDialog..SearchPnl..NavigationToolbar..UpBtn..Hint
#~ msgid "One level up"
#~ msgstr "Eine Ebene höher"
# ExOpenDialog..Caption
# ExOpenDialog..MainPanel..FilesPnl..OpenButton..Caption
#~ msgid "Open"
#~ msgstr "Öffnen"
#~ msgid "Open Connection Editor"
#~ msgstr "Verbindungseditor öffnen"
# Translation needed?
# #-#-#-#-# glade.pot #-#-#-#-#
# table_editor.glade:GtkMenuItem:primary1
#, fuzzy
#~ msgid "PRIMARY"
#~ msgstr "PRIMARY"
#~ msgid "Password"
#~ msgstr "Passwort"
#~ msgid ""
#~ "Password to encrypt the table definition file. \n"
#~ "This option doesn't do anything in the standard\n"
#~ "MySQL version."
#~ msgstr ""
#~ "Passwort zur Verschlüsselung der Tabellen-\n"
#~ "definitionsdatei. Diese Einstellung ist in der\n"
#~ "Standard-MySQL-Version wirkungslos."
# EditorTableForm..TableEditorPnl..GirdOptionPnl..MainPageControl..AdvTableOptionsSheet..AdvancedOptionsScrollBox..VariousGBox..TntLabel52....AutoSize
# grt_table_editor.glade:GtkLabel:label123..table_editor.glade:GtkLabel:label123
#, fuzzy
#~ msgid ""
#~ "Password to encrypt the table definition file. This option doesn't do "
#~ "anything in the standardMySQL version."
#~ msgstr ""
#~ "Passwort zur Verschlüsselung der Tabellendefinitionsdatei. Diese "
#~ "Einstellung ist in der Standard-MySQL-Version wirkungslos."
#~ msgid "Plain Text"
#~ msgstr "Klartext"
# preferences.glade:GtkComboBox:general_store_pw_menu
#, fuzzy
#~ msgid "Plain TextObscured"
#~ msgstr "Klartext"
#~ msgid "Please confirm deletion of column '%s'."
#~ msgstr "Bitte bestätigen Sie das Löschen der Spalte '%s'."
#~ msgid "Port"
#~ msgstr "Port"
#~ msgid "Preferences"
#~ msgstr "Einstellungen"
#~ msgid "RTREE"
#~ msgstr "RTREE"
# EditorTableForm..TableEditorPnl..GirdOptionPnl..MainPageControl..ColumnTabSheet..ColumnsPageControl..TntTabSheet8..TntGroupBox2..TntLabel17..Caption
# table_editor.glade:GtkLabel:label37
#, fuzzy
#~ msgid "Refer. Table:"
#~ msgstr "Bezugstab.:"
#~ msgid "Referenced Table:"
#~ msgstr "Bezugstabelle:"
# MyxRoutineGroupEditorForm..HeaderPnl..NameLbl..Caption
# grt_routines_editor.glade:GtkLabel:label146
#, fuzzy
#~ msgid "Routine Group Name:"
#~ msgstr "Gruppenname:"
# MyxRoutineGroupEditorForm..PageControl..RoutineSheet..Caption
#~ msgid "Routines"
#~ msgstr "Routinen"
# MyxRoutineGroupEditorForm..Caption
# grt_routines_editor.glade:GtkWindow:editor_window
#, fuzzy
#~ msgid "Routines Editor"
#~ msgstr "Routinengruppen-Editor"
# Translation needed?
# #-#-#-#-# glade.pot #-#-#-#-#
# table_editor.glade:GtkMenuItem:spatial1
#, fuzzy
#~ msgid "SPATIAL"
#~ msgstr "SPATIAL"
# MyxViewEditorForm..PageControl..SQLTabSheet..Caption
#~ msgid "SQL"
#~ msgstr "SQL"
#~ msgid "SQL Insert Statements"
#~ msgstr "SQL-Einfügeanweisungen"
#~ msgid "Save Connection"
#~ msgstr "Verbindung speichern"
#~ msgid "Save SQL Script"
#~ msgstr "SQL-Skript speichern"
#~ msgid "Save This Connection..."
#~ msgstr "Diese Verbindung speichern..."
#~ msgid "Schema"
#~ msgstr "Schema"
# ExOpenDialog..SearchPnl..Label1..Caption
#~ msgid "Search in:"
#~ msgstr "Suchen in:"
#~ msgid "Select Backup File Directory"
#~ msgstr "Backupverzeichnis wählen"
#~ msgid "Select the database schema name."
#~ msgstr "Wählen Sie den Datenbankschema-Namen."
# ConnectToInstanceForm..ConnectToHostPnl..HostnameLbl..Caption
# ConnectToInstanceForm..ConnectToHostPnl..HostnameLbl..Caption
#~ msgid "Server Host:"
#~ msgstr "Server-Host:"
# ConnectToInstanceForm..ConnectToHostPnl..HostnameLbl..Caption
# ConnectToInstanceForm..ConnectToHostPnl..HostnameLbl..Caption
# connect_dialog.glade:GtkLabel:label4
#, fuzzy
#~ msgid "Server Hostname:"
#~ msgstr "Server-Host:"
# grt_table_editor.glade:GtkToggleButton:null_toggle..table_editor.glade:GtkToggleButton:null_toggle
#~ msgid "Set the default field value to NULL."
#~ msgstr "Setze Vorgabe-Feldwert auf NULL."
# #-#-#-#-# glade.pot #-#-#-#-#
# grt_table_editor.glade:GtkButton:datadir_button..grt_table_editor.glade:GtkButton:indexdir_button..table_editor.glade:GtkButton:datadir_button..table_editor.glade:GtkButton:indexdir_button
#~ msgid "Set..."
#~ msgstr "Setzen..."
# MyxConnectionDialogForm..BottomPnl..AdvancedBtn..Caption
# MyxTableEditorForm..DockPanel..BottomPnl..AdvancedBtn..Caption
# MyxConnectionDialogForm..BottomPnl..AdvancedBtn..Caption
# MyxTableEditorForm..DockPanel..BottomPnl..AdvancedBtn..Caption
# grt_table_editor.glade:GtkButton:advanced_button
#, fuzzy
#~ msgid "Show Advanced >>"
#~ msgstr "Erweitert >>"
#~ msgid "Show global privilege editor"
#~ msgstr "Editor für globale Rechte anzeigen"
#~ msgid "Show table/column privileges editor "
#~ msgstr "Editor für Tabellen-/Spaltenrechte anzeigen"
#~ msgid ""
#~ "Size of chunk that will be written to first file, to the next file and so "
#~ "on."
#~ msgstr ""
#~ "Größe der Partition, die in die erste Datei geschrieben wird, dann in die "
#~ "zweite usw."
#~ msgid "Stop _Ping"
#~ msgstr "Ping stoppen"
#~ msgid "Storage Method"
#~ msgstr "Speichermethode"
#~ msgid "Store connection passwords"
#~ msgstr "Verbindungspasswörter speichern"
# ExOpenDialog..ViewsMenu..Symbols1..Caption
#~ msgid "Symbols"
#~ msgstr "Symbole"
#~ msgid "Table Name"
#~ msgstr "Tabellenname"
#~ msgid ""
#~ "The BLACKHOLE storage engine acts as a \"black hole\" that accepts data "
#~ "but throws it away and does not store it."
#~ msgstr ""
#~ "Die Speicher-Engine BLACKHOLE arbeitet als \"Schwarzes Loch\", welches "
#~ "zwar Daten akzeptiert, aber diese einfach verwirft."
#~ 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 ""
#~ "Mit RAID kann die 2GB/4GB-Grenze für MyISAM-Tabellendateien\n"
#~ "auf Systemen überschritten nwerden, die keine großen Dateien\n"
#~ "unterstützen. Auf anderen Systemen ist RAID nicht zu empehlen.\n"
#~ "Wenn der RAID-Typ auf STRIPED steht, wird die Tabellendatei\n"
#~ "automatisch in eine Reihe von Partitionen aufgeteilt."
# grt_table_editor.glade:GtkLabel:label138..table_editor.glade:GtkLabel:label138
#, fuzzy
#~ msgid ""
#~ "The RAID functionality can be used to exceed the 2GB/4GBlimit 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 ""
#~ "Mit RAID kann die 2GB/4GB-Grenze für MyISAM-Tabellendateien\n"
#~ "auf Systemen überschritten nwerden, die keine großen Dateien\n"
#~ "unterstützen. Auf anderen Systemen ist RAID nicht zu empehlen.\n"
#~ "Wenn der RAID-Typ auf STRIPED steht, wird die Tabellendatei\n"
#~ "automatisch in eine Reihe von Partitionen aufgeteilt."
#~ msgid "The connection to the server was lost. Reconnect?"
#~ msgstr "Die Verbindung zum Server ist verlorengegangen. Neu verbinden?"
#~ 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 ""
#~ "Der Vorgabezeichensatz für die Tabelle.\n"
#~ "Ab MySQL 4.1 kann für jede Spalte ein\n"
#~ "eigener Zeichensatz angegeben werden."
#~ 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 ""
#~ "Die folgenden SQL-Anweisungen werden gleich ausgeführt, um die "
#~ "bearbeitete\n"
#~ "Tabelle zu aktualisieren. Bitte klicken Sie nach Prüfung [Ausführen]."
# table_editor.glade:GtkLabel:label108
#, fuzzy
#~ msgid ""
#~ "The following SQL commands will be executed to update the edited table. "
#~ "Please review it and press the Execute button to apply it."
#~ msgstr ""
#~ "Die folgenden SQL-Anweisungen werden gleich ausgeführt, um die "
#~ "bearbeitete\n"
#~ "Tabelle zu aktualisieren. Bitte klicken Sie nach Prüfung [Ausführen]."
#~ msgid ""
#~ "The initial AUTO_INCREMENT value for the table.\n"
#~ "This works for MyISAM only."
#~ msgstr ""
#~ "Der anfängliche AUTO_INCREMENT-Wert für die\n"
#~ "Tabelle. Dies funktioniert nur bei MyISAM."
# grt_table_editor.glade:GtkLabel:label124..table_editor.glade:GtkLabel:label124
#, fuzzy
#~ msgid ""
#~ "The initial AUTO_INCREMENT value for the table.This works for MyISAM only."
#~ msgstr ""
#~ "Der anfängliche AUTO_INCREMENT-Wert für die\n"
#~ "Tabelle. Dies funktioniert nur bei MyISAM."
#~ msgid "The object was not found in the database."
#~ msgstr "Das Objekt wurde in der Datenbank nicht gefunden."
#~ msgid ""
#~ "There is already a connection saved with the supplied name.\n"
#~ "Type in another name for the connection to be saved."
#~ msgstr ""
#~ "Es gibt bereits eine gespeicherte Verbindung mit diesem Namen.\n"
#~ "Geben Sie einen anderen Namen für die zu speichernde Verbindung an."
# #-#-#-#-# ..\res\windows\po\default.po (PACKAGE VERSION) #-#-#-#-#
# EditorTableForm..TableEditorPnl..GirdOptionPnl..MainPageControl..TabSheet2..TableOptionScrollBox..StorageEngineGBox..TntLabel64..Caption
#~ msgid "This storage engine was replaced by the MyISAM storage engine."
#~ msgstr ""
#~ "Diese Speicher-Engine wurde durch die MyISAM-Speicher-Engine ersetzt."
# ExOpenDialog..ViewsMenu..ThumbnailsItem..Caption
#~ msgid "Thumbnails"
#~ msgstr "Vorschaubilder"
# ExOpenDialog..MainPanel..FilesPnl..ViewerPanel..FileListView..ThumbsOptions.CacheOptions.DefaultFilename
#~ msgid "Thumbnails.Cache"
#~ msgstr "Thumbnails.Cache"
# ExOpenDialog..ViewsMenu..ile1..Caption
#~ msgid "Tile"
#~ msgstr "Kacheln"
#~ msgid ""
#~ "Transaction safe storage engine with page locking. Also called Berkeley "
#~ "DB."
#~ msgstr ""
#~ "Transaktionssichere Speicher-Engine mit Seiten-Sperren. Auch Berkeley DB "
#~ "genannt."
#~ msgid ""
#~ "Transaction safe storage engine with page locking. This engine is also "
#~ "know as Berkeley DB."
#~ msgstr ""
#~ "Transaktionssichere Speicher-Engine mit Seitensperrung. Diese Engine ist "
#~ "auch als Berkeley DB bekannt."
# EditorTableForm..TableEditorPnl..GirdOptionPnl..MainPageControl..TabSheet2..TableOptionScrollBox..StorageEngineGBox..TntLabel42....AutoSize
#~ msgid ""
#~ "Transaction safe storage engine with page locking. This engine is also "
#~ "known as Berkeley DB."
#~ msgstr ""
#~ "Transaktionssichere Speicher-Engine mit Seiten-Sperren. Diese Engine ist "
#~ "auch als Berkeley DB bekannt."
#~ msgid ""
#~ "Transaction safe, disk based storage engine with row locking.\n"
#~ " Recommended engine for tables that need support for transactions."
#~ msgstr ""
#~ "Transaktionssichere, festplattenbasierte Engine mit Zeilen-Sperren.\n"
#~ "Empfohlen für Tabellen mit Bedarf für Transaktionsunterstützung."
# EditorTableForm..TableEditorPnl..GirdOptionPnl..MainPageControl..TabSheet2..TableOptionScrollBox..StorageEngineGBox..TntLabel44....AutoSize
#~ msgid ""
#~ "Transaction safe, disk based storage engine with row locking. Recommended "
#~ "engine for tables that need support for transactions."
#~ msgstr ""
#~ "Transaktionssichere, festplattenbasierte Engine mit Zeilen-Sperren. "
#~ "Empfohlen für Tabellen mit Bedarf fürTransaktionsunterstützung."
#~ msgid ""
#~ "Transactional engine for modern scale-out applications. Supports MVCC "
#~ "(multiversion concurrency control)."
#~ msgstr ""
#~ "Transaktions-Engine für moderne Scale-Out Anwendungen. Untestützt MVCC "
#~ "(multiversion concurrency control)."
#~ msgid "Type in a name for the connection to be saved."
#~ msgstr ""
#~ "Geben Sie den Namen an, unter dem die Verbindung gespeichert werden soll."
#~ msgid "UNIQUE"
#~ msgstr "UNIQUE"
# connect_dialog.glade:GtkCheckButton:ansiquotes
#~ msgid "Use ANSI Quotes"
#~ msgstr "ANSI-Anführungszeichen verwenden"
# ConnectToInstanceForm..AdvancedOptionsGBox..AdvancedOptionsPageControl..MySQLOptionsTabSheet..UseAnsiQuotesCBox..Caption
# ConnectToInstanceForm..AdvancedOptionsGBox..AdvancedOptionsPageControl..MySQLOptionsTabSheet..UseAnsiQuotesCBox..Caption
#~ msgid "Use ANSI quotes to quote identifiers"
#~ msgstr "ANSI-Anführungszeichen verwenden"
# connect_dialog.glade:GtkCheckButton:option2_check
#~ msgid "Use SSL connection if available"
#~ msgstr "SSL-Verbindung verwenden, falls verfügbar"
# ConnectToInstanceForm..AdvancedOptionsGBox..AdvancedOptionsPageControl..MySQLOptionsTabSheet..UseCompressionCBox..Caption
# ConnectToInstanceForm..AdvancedOptionsGBox..AdvancedOptionsPageControl..MySQLOptionsTabSheet..UseCompressionCBox..Caption
#~ msgid "Use compression protocol"
#~ msgstr "Komprimiertes Protokoll verwenden"
#~ msgid "Use named pipe (localhost only)"
#~ msgstr "Benutze Named-Pipe (nur Localhost)"
# ConnectToInstanceForm..AdvancedOptionsGBox..AdvancedOptionsPageControl..MySQLOptionsTabSheet..TntLabel1..Caption
# ConnectToInstanceForm..AdvancedOptionsGBox..AdvancedOptionsPageControl..MySQLOptionsTabSheet..TntLabel1..Caption
#~ msgid "Use the following named pipe instead of the TCP/IP port."
#~ msgstr "Die angegebene Named Pipe anstelle von TCP/IP verwenden"
#~ msgid ""
#~ "Use this option to delay the key updates untill the table\n"
#~ "is closed. This works for MyISAM only."
#~ msgstr ""
#~ "Mit dieser Einstellung verzögern Sie Schlüsselaktualisierungen\n"
#~ "bis zum Schließen der Tabelle (nur bei MyISAM)."
# grt_table_editor.glade:GtkLabel:label125..table_editor.glade:GtkLabel:label125
#, fuzzy
#~ msgid ""
#~ "Use this option to delay the key updates untill the tableis closed. This "
#~ "works for MyISAM only."
#~ msgstr ""
#~ "Mit dieser Einstellung verzögern Sie Schlüsselaktualisierungen\n"
#~ "bis zum Schließen der Tabelle (nur bei MyISAM)."
#~ 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 ""
#~ "Mit dieser Einstellung werden kleinere Indizes erzeugt.\n"
#~ "Dadurch wird normalerweise das Aktualisieren langsamer\n"
#~ "und das Lesen schneller. Bei der Vorgabeeinstellung\n"
#~ "komprimiert die Speicher-Engine nur lange CHAR/VARCHAR-Spalten."
# grt_table_editor.glade:GtkLabel:label120..table_editor.glade:GtkLabel:label120
#, fuzzy
#~ 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 "
#~ "onlypack long CHAR/VARCHAR columns."
#~ msgstr ""
#~ "Mit dieser Einstellung werden kleinere Indizes erzeugt.\n"
#~ "Dadurch wird normalerweise das Aktualisieren langsamer\n"
#~ "und das Lesen schneller. Bei der Vorgabeeinstellung\n"
#~ "komprimiert die Speicher-Engine nur lange CHAR/VARCHAR-Spalten."
#~ msgid "User Administration"
#~ msgstr "Benutzerverwaltung"
#~ msgid "Username"
#~ msgstr "Benutzername"
#~ msgid ""
#~ "Very fast, disk based storage engine without support for transactions.\n"
#~ "Offers fulltext search, packed keys, and is the default storage engine."
#~ msgstr ""
#~ "Die Standard-Speicher-Engine: sehr schnell, festplattenbasiert, ohne\n"
#~ "Transaktionsunterstützung. Bietet Volltextsuche und komprimierte "
#~ "Schlüssel."
# EditorTableForm..TableEditorPnl..GirdOptionPnl..MainPageControl..TabSheet2..TableOptionScrollBox..StorageEngineGBox..TntLabel43....AutoSize
# table_editor.glade:GtkLabel:label110
#, fuzzy
#~ msgid ""
#~ "Very fast, disk based storage engine without support for transactions."
#~ "Offers fulltext search, packed keys, and is the default storage engine."
#~ msgstr ""
#~ "Die Standard-Speicher-Engine: sehr schnell, festplattenbasiert, ohne "
#~ "Transaktionsunterstützung. Bietet Volltextsuche und komprimierte "
#~ "Schlüssel."
|