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 5009 5010 5011 5012 5013 5014 5015 5016 5017 5018 5019 5020 5021 5022 5023 5024 5025 5026 5027 5028 5029 5030 5031 5032 5033 5034 5035 5036 5037 5038 5039 5040 5041 5042 5043 5044 5045 5046 5047 5048 5049 5050 5051 5052 5053 5054 5055 5056 5057 5058 5059 5060 5061 5062 5063 5064 5065 5066 5067 5068 5069 5070 5071 5072 5073 5074 5075 5076 5077 5078 5079 5080 5081 5082 5083 5084 5085 5086 5087 5088 5089 5090 5091 5092 5093 5094 5095 5096 5097 5098 5099 5100 5101 5102 5103 5104 5105 5106 5107 5108 5109 5110 5111 5112 5113 5114 5115 5116 5117 5118 5119 5120 5121 5122 5123 5124 5125 5126 5127 5128 5129 5130 5131 5132 5133 5134 5135 5136 5137 5138 5139 5140 5141 5142 5143 5144 5145 5146 5147 5148 5149 5150 5151 5152 5153 5154 5155 5156 5157 5158 5159 5160 5161 5162 5163 5164 5165 5166 5167 5168 5169 5170 5171 5172 5173 5174 5175 5176 5177 5178 5179 5180 5181 5182 5183 5184 5185 5186 5187 5188 5189 5190 5191 5192 5193 5194 5195 5196 5197 5198 5199 5200 5201 5202 5203 5204 5205 5206 5207 5208 5209 5210 5211 5212 5213 5214 5215 5216 5217 5218 5219 5220 5221 5222 5223 5224 5225 5226 5227 5228 5229 5230 5231 5232 5233 5234 5235 5236 5237 5238 5239 5240 5241 5242 5243 5244 5245 5246 5247 5248 5249 5250 5251 5252 5253 5254 5255 5256 5257 5258 5259 5260 5261 5262 5263 5264 5265 5266 5267 5268 5269 5270 5271 5272 5273 5274 5275 5276 5277 5278 5279 5280 5281 5282 5283 5284 5285 5286 5287 5288 5289 5290 5291 5292 5293 5294 5295 5296 5297 5298 5299 5300 5301 5302 5303 5304 5305 5306 5307 5308 5309 5310 5311 5312 5313 5314 5315 5316 5317 5318 5319 5320 5321 5322 5323 5324 5325 5326 5327 5328 5329 5330 5331 5332 5333 5334 5335 5336 5337 5338 5339 5340 5341 5342 5343 5344 5345 5346 5347 5348 5349 5350 5351 5352 5353 5354 5355 5356 5357 5358 5359 5360 5361 5362 5363 5364 5365 5366 5367 5368 5369 5370 5371 5372 5373 5374 5375 5376 5377 5378 5379 5380 5381 5382 5383 5384 5385 5386 5387 5388 5389 5390 5391 5392 5393 5394 5395 5396 5397 5398 5399 5400 5401 5402 5403 5404 5405 5406 5407 5408 5409 5410 5411 5412 5413 5414 5415 5416 5417 5418 5419 5420 5421 5422 5423 5424 5425 5426 5427 5428 5429 5430 5431 5432 5433 5434 5435 5436 5437 5438 5439 5440 5441 5442 5443 5444 5445 5446 5447 5448 5449 5450 5451 5452 5453 5454 5455 5456 5457 5458 5459 5460 5461 5462 5463 5464 5465 5466 5467 5468 5469 5470 5471 5472 5473 5474 5475 5476 5477 5478 5479 5480 5481 5482 5483 5484 5485 5486 5487 5488 5489 5490 5491 5492 5493 5494 5495 5496 5497 5498 5499 5500 5501 5502 5503 5504 5505 5506 5507 5508 5509 5510 5511 5512 5513 5514 5515 5516 5517 5518 5519 5520 5521 5522 5523 5524 5525 5526 5527 5528 5529 5530 5531 5532 5533 5534 5535 5536 5537 5538 5539 5540 5541 5542 5543 5544 5545 5546 5547 5548 5549 5550 5551 5552 5553 5554 5555 5556 5557 5558 5559 5560 5561 5562 5563 5564 5565 5566 5567 5568 5569 5570 5571 5572 5573 5574 5575 5576 5577 5578 5579 5580 5581 5582 5583 5584 5585 5586 5587 5588 5589 5590 5591 5592 5593 5594 5595 5596 5597 5598 5599 5600 5601 5602 5603 5604 5605 5606 5607 5608 5609 5610 5611 5612 5613 5614 5615 5616 5617 5618 5619 5620 5621 5622 5623 5624 5625 5626 5627 5628 5629 5630 5631 5632 5633 5634 5635 5636 5637 5638 5639 5640 5641 5642 5643 5644 5645 5646 5647 5648 5649 5650 5651 5652 5653 5654 5655 5656 5657 5658 5659 5660 5661 5662 5663 5664 5665 5666 5667 5668 5669 5670 5671 5672 5673 5674 5675 5676 5677 5678 5679 5680 5681 5682 5683 5684 5685 5686 5687 5688 5689 5690 5691 5692 5693 5694 5695 5696 5697 5698 5699 5700 5701 5702 5703 5704 5705 5706 5707 5708 5709 5710 5711 5712 5713 5714 5715 5716 5717 5718 5719 5720 5721 5722 5723 5724 5725 5726 5727 5728 5729 5730 5731 5732 5733 5734 5735 5736 5737 5738 5739 5740 5741 5742 5743 5744 5745 5746 5747 5748 5749 5750 5751 5752 5753 5754 5755 5756 5757 5758 5759 5760 5761 5762 5763 5764 5765 5766 5767 5768 5769 5770 5771 5772 5773 5774 5775 5776 5777 5778 5779 5780 5781 5782 5783 5784 5785 5786 5787 5788 5789 5790 5791 5792 5793 5794 5795 5796 5797 5798 5799 5800 5801 5802 5803 5804 5805 5806 5807 5808 5809 5810 5811 5812 5813 5814 5815 5816 5817 5818 5819 5820 5821 5822 5823 5824 5825 5826 5827 5828 5829 5830 5831 5832 5833 5834 5835 5836 5837 5838 5839 5840 5841 5842 5843 5844 5845 5846 5847 5848 5849 5850 5851 5852 5853 5854 5855 5856 5857 5858 5859 5860 5861 5862 5863 5864 5865 5866 5867 5868 5869 5870 5871 5872 5873 5874 5875 5876 5877 5878 5879 5880 5881 5882 5883 5884 5885 5886 5887 5888 5889 5890 5891 5892 5893 5894 5895 5896 5897 5898 5899 5900 5901 5902 5903 5904 5905 5906 5907 5908 5909 5910 5911 5912 5913 5914 5915 5916 5917 5918 5919 5920 5921 5922 5923 5924 5925 5926 5927 5928 5929 5930 5931 5932 5933 5934 5935 5936 5937 5938 5939 5940 5941 5942 5943 5944 5945 5946 5947 5948 5949 5950 5951 5952 5953 5954 5955 5956 5957 5958 5959 5960 5961 5962 5963 5964 5965 5966 5967 5968 5969 5970 5971 5972 5973 5974 5975 5976 5977 5978 5979 5980 5981 5982 5983 5984 5985 5986 5987 5988 5989 5990 5991 5992 5993 5994 5995 5996 5997 5998 5999 6000 6001 6002 6003 6004 6005 6006 6007 6008 6009 6010 6011 6012 6013 6014 6015 6016 6017 6018 6019 6020 6021 6022 6023 6024 6025 6026 6027 6028 6029 6030 6031 6032 6033 6034 6035 6036 6037 6038 6039 6040 6041 6042 6043 6044 6045 6046 6047 6048 6049 6050 6051 6052 6053 6054 6055 6056 6057 6058 6059 6060 6061 6062 6063 6064 6065 6066 6067 6068 6069 6070 6071 6072 6073 6074 6075 6076 6077 6078 6079 6080 6081 6082 6083 6084 6085 6086 6087 6088 6089 6090 6091 6092 6093 6094 6095 6096 6097 6098 6099 6100 6101 6102 6103 6104 6105 6106 6107 6108 6109 6110 6111 6112 6113 6114 6115 6116 6117 6118 6119 6120 6121 6122 6123 6124 6125 6126 6127 6128 6129 6130 6131 6132 6133 6134 6135 6136 6137 6138 6139 6140 6141 6142 6143 6144 6145 6146 6147 6148 6149 6150 6151 6152 6153 6154 6155 6156 6157 6158 6159 6160 6161 6162 6163 6164 6165 6166 6167 6168 6169 6170 6171 6172 6173 6174 6175 6176 6177 6178 6179 6180 6181 6182 6183 6184 6185 6186 6187 6188 6189 6190 6191 6192 6193 6194 6195 6196 6197 6198 6199 6200 6201 6202 6203 6204 6205 6206 6207 6208 6209 6210 6211 6212 6213 6214 6215 6216 6217 6218 6219 6220 6221 6222 6223 6224 6225 6226 6227 6228 6229 6230 6231 6232 6233 6234 6235 6236 6237 6238 6239 6240 6241 6242 6243 6244 6245 6246 6247 6248 6249 6250 6251 6252 6253 6254 6255 6256 6257 6258 6259 6260 6261 6262 6263 6264 6265 6266 6267 6268 6269 6270 6271 6272 6273 6274 6275 6276 6277 6278 6279 6280 6281 6282 6283 6284 6285 6286 6287 6288 6289 6290 6291 6292 6293 6294 6295 6296 6297 6298 6299 6300 6301 6302 6303 6304 6305 6306 6307 6308 6309 6310 6311 6312 6313 6314 6315 6316 6317 6318 6319 6320 6321 6322 6323 6324 6325 6326 6327 6328 6329 6330 6331 6332 6333 6334 6335 6336 6337 6338 6339 6340 6341 6342 6343 6344 6345 6346 6347 6348 6349 6350 6351 6352 6353 6354 6355 6356 6357 6358 6359 6360 6361 6362 6363 6364 6365 6366 6367 6368 6369 6370 6371 6372 6373 6374 6375 6376 6377 6378 6379 6380 6381 6382 6383 6384 6385 6386 6387 6388 6389 6390 6391 6392 6393 6394 6395 6396 6397 6398 6399 6400 6401 6402 6403 6404 6405 6406 6407 6408 6409 6410 6411 6412 6413 6414 6415 6416 6417 6418 6419 6420 6421 6422 6423 6424 6425 6426 6427 6428 6429 6430 6431 6432 6433 6434 6435 6436 6437 6438 6439 6440 6441 6442 6443 6444 6445 6446 6447 6448 6449 6450 6451 6452 6453 6454 6455 6456 6457 6458 6459 6460 6461 6462 6463 6464 6465 6466 6467 6468 6469 6470 6471 6472 6473 6474 6475 6476 6477 6478 6479 6480 6481 6482 6483 6484 6485 6486 6487 6488 6489 6490 6491 6492 6493 6494 6495 6496 6497 6498 6499 6500 6501 6502 6503 6504 6505 6506 6507 6508 6509 6510 6511 6512 6513 6514 6515 6516 6517 6518 6519 6520 6521 6522 6523 6524 6525 6526 6527 6528 6529 6530 6531 6532 6533 6534 6535 6536 6537 6538 6539 6540 6541 6542 6543 6544 6545 6546 6547 6548 6549 6550 6551 6552 6553 6554 6555 6556 6557 6558 6559 6560 6561 6562 6563 6564 6565 6566 6567 6568 6569 6570 6571 6572 6573 6574 6575 6576 6577 6578 6579 6580 6581 6582 6583 6584 6585 6586 6587 6588 6589 6590 6591 6592 6593 6594 6595 6596 6597 6598 6599 6600 6601 6602 6603 6604 6605 6606 6607 6608 6609 6610 6611 6612 6613 6614 6615 6616 6617 6618 6619 6620 6621 6622 6623 6624 6625 6626 6627 6628 6629 6630 6631 6632 6633 6634 6635 6636 6637 6638 6639 6640 6641
|
# Movable Type (r) Open Source (C) 2005-2012 Six Apart, Ltd.
# This program is distributed under the terms of the
# GNU General Public License, version 2.
#
#
# $Id:$
package MT::L10N::de;
use strict;
use utf8;
use MT::L10N;
use MT::L10N::en_us;
use vars qw( @ISA %Lexicon );
@ISA = qw( MT::L10N::en_us );
## The following is the translation table.
%Lexicon = (
## php/lib/archive_lib.php
'Individual' => 'Individuell',
'Page' => 'Seite',
'Yearly' => 'Jährlich',
'Monthly' => 'Monatlich',
'Daily' => 'Täglich',
'Weekly' => 'Wöchentlich',
'Author' => 'Autor',
'(Display Name not set)' => '(Kein Anzeigename gewählt)',
'Author Yearly' => 'Autor jährlich',
'Author Monthly' => 'Autor monatlich',
'Author Daily' => 'Autor täglich',
'Author Weekly' => 'Autor wöchentlich',
'Category Yearly' => 'Kategorie jährlich',
'Category Monthly' => 'Kategorie monatlich',
'Category Daily' => 'Kategorie täglich',
'Category Weekly' => 'Kategorie wöchentlich',
## php/lib/block.mtassets.php
'sort_by="score" must be used in combination with namespace.' => 'Sort_by="score" erfordert einen Namespace.',
## php/lib/block.mtauthorhasentry.php
'No author available' => 'Kein Autor verfügbar',
## php/lib/block.mtauthorhaspage.php
## php/lib/block.mtcalendar.php
'You used an [_1] tag without a date context set up.' => 'Sie haben einen [_1]-Vorlagenbefehl ohne Datumskontext verwendet.',
## php/lib/block.mtentries.php
## php/lib/block.mtif.php
'You used a [_1] tag without a valid name attribute.' => 'Sie haben einen „[_1]“-Befehl ohne gültiges Namensattribut verwendet.',
'[_1] [_2] [_3] is illegal.' => '[_1] [_2] [_3] ist ungültig.',
## php/lib/block.mtsethashvar.php
## php/lib/block.mtsetvarblock.php
'\'[_1]\' is not a hash.' => '„[_1]“ ist kein Hash.',
'Invalid index.' => 'Index ungültig.',
'\'[_1]\' is not an array.' => '„[_1]“ ist kein Array.',
'\'[_1]\' is not a valid function.' => '„[_1]“ ist keine gültige Funktion.',
## php/lib/captcha_lib.php
'Captcha' => 'Captcha',
'Type the characters you see in the picture above.' => 'Geben Sie die Zeichen ein, die Sie im obigen Bild sehen.',
## php/lib/function.mtassettype.php
'image' => 'Bild',
'Image' => 'Bild',
'file' => 'Datei',
'File' => 'Datei',
'audio' => 'Audio',
'Audio' => 'Audio',
'video' => 'Video',
'Video' => 'Video',
## php/lib/function.mtauthordisplayname.php
## php/lib/function.mtcommentauthorlink.php
'Anonymous' => 'Anonym',
## php/lib/function.mtcommentauthor.php
## php/lib/function.mtcommenternamethunk.php
'This \'[_1]\' tag has been deprecated. Please use \'[_2]\' instead.' => 'Der Befehl \'[_1]\' wird nicht mehr unterstützt. Verwenden Sie stattdessen den Befehl \'[_2]\'.', # Translate - New # OK
## php/lib/function.mtcommentreplytolink.php
'Reply' => 'Antworten',
## php/lib/function.mtentryclasslabel.php
'page' => 'Seite',
'entry' => 'Eintrag',
'Entry' => 'Eintrag',
## php/lib/function.mtinclude.php
'\'parent\' modifier cannot be used with \'[_1]\'' => 'Die Option \'parent\' kann nicht zusammen mit \'[_1]\' verwendet werden.',
## php/lib/function.mtpasswordvalidation.php
'Password should be longer than [_1] characters' => 'Passwörter müssen mindestens [_1] Zeichen lang sein',
'Password should not include your Username' => 'Ihr Benutzername darf nicht Teil Ihres Passworts sein',
'Password should include letters and numbers' => 'Passwörter müssen sowohl Buchstaben als auch Ziffern enthalten',
'Password should include lowercase and uppercase letters' => 'Passwörter müssen sowohl Groß- als auch Kleinbuchstaben enthalten',
'Password should contain symbols such as #!$%' => 'Passwörter müssen mindestens ein Sonderzeichen wie #!$% enthalten',
'You used an [_1] tag without a valid [_2] attribute.' => '[_1]-Befehl ohne gültiges [_2]-Attribut verwendet.', # Translate - New # OK
## php/lib/function.mtpasswordvalidationrule.php
'minimum length of [_1]' => 'Mindestlänge [_1] Zeichen',
', uppercase and lowercase letters' => 'Groß- und Kleinbuchstaben',
', letters and numbers' => 'Buchstaben und Ziffern',
', symbols (such as #!$%)' => 'Sonderzeichen (#!$% usw.)',
## php/lib/function.mtproductname.php
'[_1] [_2]' => '[_1] [_2]',
## php/lib/function.mtremotesigninlink.php
'TypePad authentication is not enabled in this blog. MTRemoteSignInLink can not be used.' => 'TypePad-Authentifizierung ist für dieses Blog nicht aktiviert. MTremoteSignInLink kann daher nicht verwendet werden.',
## php/lib/function.mtsetvar.php
## php/lib/function.mttagsearchlink.php
'Invalid [_1] parameter.' => 'Ungültiger [_1]-Parameter.',
## php/lib/function.mtvar.php
'\'[_1]\' is not a valid function for a hash.' => '„[_1]“ ist keine gültige Hash-Funktion.',
'\'[_1]\' is not a valid function for an array.' => '„[_1]“ ist keine gültige Array-Funktion.',
## php/lib/function.mtwidgetmanager.php
'Error compiling widgetset [_1]' => 'Fehler bei Kompilierung der Widgetgruppe „[_1]“',
## php/lib/mtdb.base.php
'The attribute exclude_blogs denies all include_blogs.' => 'Das Attribut exclude_blogs hat Vorrang vor dem Attribut include_blogs.',
## php/lib/MTUtil.php
'userpic-[_1]-%wx%h%x' => 'userpic-[_1]-%wx%h%x',
## php/mt.php
'Page not found - [_1]' => 'Seite nicht gefunden - [_1]',
## mt-check.cgi
'Movable Type System Check' => 'Movable Type Systemüberprüfung',
'You attempted to use a feature that you do not have permission to access. If you believe you are seeing this message in error contact your system administrator.' => 'Sie haben für die gewünschte Funktion keine Berechtigung. Bei Fragen wenden Sie sich bitte an Ihren Systemadministrator.',
'The MT-Check report is disabled when Movable Type has a valid configuration file (mt-config.cgi)' => 'Die MT-Systemüberprüfung ist deaktiviert, wenn bereits eine gültige Konfigurationdabei mt-config.cgi vorhanden ist.',
q{The mt-check.cgi script provides you with information about your system's configuration and determines whether you have all of the components you need to run Movable Type.} => q{Das Skript mt-check.cgi führt eine Überprüfung Ihrer Systemkonfiguration durch und stellt fest, ob alle zum Betrieb von Movable Type erforderlichen Komponenten vorhanden sind.},
'The version of Perl installed on your server ([_1]) is lower than the minimum supported version ([_2]). Please upgrade to at least Perl [_2].' => 'Die auf Ihrem Server installierte Perl-Version [_1] ist älter als die mindestens erforderliche Version [_2]. Bitte aktualisieren Sie Ihre Installation daher auf Perl [_2] oder neuer.',
'System Information' => 'Systeminformation',
'Movable Type version:' => 'Movable Type-Version:',
'Current working directory:' => 'Aktuelles Arbeitsverzeichnis:',
'MT home directory:' => 'MT-Wurzelverzeichnis:',
'Operating system:' => 'Betriebssystem;',
'Perl version:' => 'Perl-Version:',
'Perl include path:' => 'Perl-Include-Pfad:',
'Web server:' => 'Webserver:',
'(Probably) running under cgiwrap or suexec' => '(Wahrscheinlich) ausgeführt unter cgiwrap oder suexec',
'[_1] [_2] Modules' => '[_1] [_2]-Modue',
'The following modules are <strong>optional</strong>. If your server does not have these modules installed, you only need to install them if you require the functionality that the module provides.' => 'Die folgenden Modue sind <strong>optional</strong>. Sind sie auf Ihrem Server nicht vorhanden, brauchen Sie sie nur dann zu installieren, wenn Sie eine davon abhängige Funktion nutzen möchten.',
'Some of the following modules are required by databases supported by Movable Type. Your server must have DBI and at least one of these related modules installed for proper operation of Movable Type.' => 'Einige der folgenden Perl-Module sind zur Herstellung einer Datenbankverbindung mit Movable Type erforderlich. Zum Betrieb des Systems sind mindestens DBI und ein weiteres Modul erforderlich.',
'Either your server does not have [_1] installed, the version that is installed is too old, or [_1] requires another module that is not installed.' => 'Auf Ihrem Server ist [_1] selbst oder ein von [_1] erforderliches Modul nicht installiert oder die installierte [_1]-Version ist zu alt.',
'Your server does not have [_1] installed, or [_1] requires another module that is not installed.' => 'Auf Ihrem Server ist [_1] selbst oder ein von [_1] erforderliches Modul nicht installiert.',
'Please consult the installation instructions for help in installing [_1].' => 'Bitte beachten Sie bei der Installation von [_1] die Installationshinweise.',
'The DBD::mysql version you have installed is known to be incompatible with Movable Type. Please install the current release available from CPAN.' => 'Die auf Ihrem Server installierte DBD::mysql-Version gilt als nicht kompatibel mit Movable Type. Bitte installieren Sie die aktuelle Version über CPAN.',
'The $mod is installed properly, but requires an updated DBI module. Please see note above regarding the DBI module requirements.' => '$mod ist korrekt installiert, erfordert aber ein aktuelleres DBI-Modul. Bitte beachten Sie daher obige Hinweise zu DBI-Mdulen.',
'Your server has [_1] installed (version [_2]).' => 'Auf Ihrem Server ist [_1] in der Version [_2] installiert.',
'Movable Type System Check Successful' => 'Der Movable Type-Systemcheck war erfolgreich!',
q{You're ready to go!} => q{Sie können sofort anfangen!},
'Your server has all of the required modules installed; you do not need to perform any additional module installations. Continue with the installation instructions.' => 'Alle erforderlichen Module sind auf Ihrem Server installiert. Beginnen Sie jetzt mit der Installation von Movable Type.',
'CGI is required for all Movable Type application functionality.' => 'CGI ist für sämtliche Movable Type-Funktionen erforderlich.',
'Image::Size is required for file uploads (to determine the size of uploaded images in many different formats).' => 'Image::Size ist zum Hochladen von Dateien erforderlich (um die Größe hochgeladener Bilder bestimmen zu können)',
'File::Spec is required for path manipulation across operating systems.' => 'File::Spec ist zur Vereinheitlichung von Pfadangaben über Betriebssystemgrenzen hinweg erforerlich. ',
'CGI::Cookie is required for cookie authentication.' => 'CGI::Cookie ist zur Nutzung der Cookie-Authentifizierung erforderlich.',
'DBI is required to store data in database.' => 'DBI ist zur Nutzung von Datenbanken erforderlich.',
'DBI and DBD::mysql are required if you want to use the MySQL database backend.' => 'DBI und DBD::mysql sind zur Nutzung von Movable Type mit einer MySQL-Datenbank erforderlich.',
'DBI and DBD::Pg are required if you want to use the PostgreSQL database backend.' => 'DBI und DBD::Pg sind zur Nutzung von Movable Type mit einer PostgreSQL-Datenbank erforderlich.',
'DBI and DBD::SQLite are required if you want to use the SQLite database backend.' => 'DBI und DBD::SQLite sind zur Nutzung von Movable Type mit einer SQLite-Datenbank erforderlich.',
'DBI and DBD::SQLite2 are required if you want to use the SQLite 2.x database backend.' => 'DBI und DBD::SQLite2 sind zur Nutzung von Movable Type mit einer SQLite 2.x-Datenbank erforderlich.',
'HTML::Entities is needed to encode some characters, but this feature can be turned off using the NoHTMLEntities option in the configuration file.' => 'HTML::Entities ist zur Kodierung bestimmter Zeichen erforderlich. Diese Funktion kann mittels der NoHTMLEntities-Direktive in der Konfigurationsdatei deaktiviert werden.',
'LWP::UserAgent is optional; It is needed if you want to use the TrackBack system, the weblogs.com ping, or the MT Recently Updated ping.' => 'Die Installation von LWP::UserAgent ist optional. Dieses Modul ist erforderlich, wenn Sie das TrackBack-System, weblogs.com-Pings und andere Aktualisierungs-Benachrichtigungen verwenden wollen.',
'HTML::Parser is optional; It is needed if you want to use the TrackBack system, the weblogs.com ping, or the MT Recently Updated ping.' => 'Die Installation von HTML::Parser ist optional . Dieses Modul ist erforderlich, wenn Sie das TrackBack-System, weblogs.com-Pings und andere Aktualisierungs-Benachrichtigungen verwenden wollen.',
'SOAP::Lite is optional; It is needed if you want to use the MT XML-RPC server implementation.' => 'Die Installation von SOAP::Lite ist optional. Dieses Modul ist zur Nutzung des XML-RPC-Servers von Movable Type erforderlich.',
'File::Temp is optional; It is needed if you would like to be able to overwrite existing files when you upload.' => 'Die Installation von File::Temp ist optional. Dieses Modul ist erforderlich, wenn Sie beim Hochladen von Dateien vorhandene Dateien überschreiben können möchten.',
'Scalar::Util is optional; It is needed if you want to use the Publish Queue feature.' => 'Die Installation von Scalar::Util ist optional. Dieses Modul ist zur Nutzung der Veröffentlichungs-Warteschlange erforderlich.',
'List::Util is optional; It is needed if you want to use the Publish Queue feature.' => 'Die Installation von List::Util ist optional. Dieses Modul ist zur Nutzung der Veröffentlichungs-Warteschlange erforderlich.',
'Image::Magick is optional; It is needed if you would like to be able to create thumbnails of uploaded images.' => 'Die Installation von Image::Magick ist optional. Dieses Modul ist zur Erzeugung von Vorschaubildern von hochgeladenen Fotos erforderlich.',
'This module is needed if you would like to be able to create thumbnails of uploaded images.' => 'Dieses Modul ist zur Erzeugung von Vorschaubildern von hochgeladenen Dateien erforderlich.',
'This module is needed if you would like to be able to use NetPBM as the image driver for MT.' => 'Dieses Modul ist erforderlich, wenn Sie NetPBM als Bildquelle verwenden möchten.',
'Storable is optional; It is required by certain MT plugins available from third parties.' => 'Die Installation von Storable ist optional. Dieses Modul ist für einige Movable Type-Plugins von Drittanbietern erforderlich.',
'Crypt::DSA is optional; If it is installed, comment registration sign-ins will be accelerated.' => 'Die Installation von Crypt::DSA ist optional. Dieses Modul beschleunigt den Anmeldevorgang für Kommentarautoren.',
'This module and its dependencies are required to permit commenters to authenticate via OpenID providers such as AOL and Yahoo! that require SSL support.' => 'Dieses Modul und seine Abhängigkeiten sind zur OpenID-Authentifizierung von Kommentarautoren über SSL erforderlich (z.B. für die Authentifizierung durch AOL oder Yahoo!).',
'Cache::File is required if you would like to be able to allow commenters to be authenticated by Yahoo! Japan as OpenID.' => 'Cache::File ist zur Authentifizierung von Kommentarautoren per OpenID an Yahoo! Japan erforderlich.',
'MIME::Base64 is required in order to enable comment registration.' => 'MIME::Base64 ist für die Kommentarregistrierung erforderlich.',
'XML::Atom is required in order to use the Atom API.' => 'XML::Atom ist zur Nutzung der Atom-API erforderlich.',
'Cache::Memcached and memcached server/daemon is required in order to use memcached as caching mechanism used by Movable Type.' => 'Cache::Memcached und der memcached-Server/Daemon sind für den Nutzung des memcached-Cache von Movable Type erforderlich.',
'Archive::Tar is required in order to archive files in backup/restore operation.' => 'Archive::Tar ist zur Nutzung von Archiven bei Sicherungs-und Wiederherstellungs-Vorgängen erforderlich.',
'IO::Compress::Gzip is required in order to compress files in backup/restore operation.' => 'IO::Compress::GZip ist zum Packen von Dateien bei Sicherungs- und Wiederherstellungs-Vorgängen erforderlich.',
'IO::Uncompress::Gunzip is required in order to decompress files in backup/restore operation.' => 'IO::Compress::Gunzip ist zum Entpacken von Dateien bei Sicherungs- und Wiederherstellungs-Vorgängen erforderlich.',
'Archive::Zip is required in order to archive files in backup/restore operation.' => 'Archive::Zip ist zur Nutzung von Archiven bei Sicherungs-und Wiederherstellungs-Vorgängen erforderlich.',
'XML::SAX and its dependencies are required in order to restore a backup created in a backup/restore operation.' => 'XML::SAX und/oder seine Abhhängigkeiten sind für Wiederherstellungs-Vorgänge erforderlich.',
'Digest::SHA and its dependencies are required in order to allow commenters to be authenticated by OpenID providers including LiveJournal.' => 'Digest::SHA und seine Abhängigkeiten sind zur Authentifizierung mittels OpenID (einschließlich LiveJournal) eroforderlich.',
'Mail::Sendmail is required in order to send mail via an SMTP Server.' => 'Mail::Sendmail ist zum Versand von E-Mail über SMTP-Server erforderlich.',
'This module is used in a test attribute for the MTIf conditional tag.' => 'Dieses Modul ist für ein test-Attribut des MTIf-Befehls erforderlich.',
'This module is used by the Markdown text filter.' => 'Dieses Modul ist für den Markdown-Textfilter erforderlich.',
'This module is required by mt-search.cgi if you are running Movable Type using a version of Perl older than Perl 5.8.' => 'Dieses Modul ist für mt-search.cgi erforderlich, wenn Sie Movable Type unter Perl älter als Version 5.8 ausführen.',
'This module required for action streams.' => 'Dieses Modul ist für Action Streams erforderlich.',
'The [_1] database driver is required to use [_2].' => 'Ein [_1]-Datenbanktreiber ist erforderlich, um eine [_2] zu nutzen.',
'Checking for' => 'Überprüfe',
'Installed' => 'Installiert',
'Data Storage' => 'Datenbank',
'Required' => 'Erforderlich',
'Optional' => 'Optional',
'Details' => 'Details',
## default_templates/about_this_page.mtml
'About this Entry' => 'Über diese Seite',
'About this Archive' => 'Über dieses Archiv',
'About Archives' => 'Über die Archive',
'This page contains links to all the archived content.' => 'Diese Seite enthält Links zu allen archivierten Einträgen.',
'This page contains a single entry by [_1] published on <em>[_2]</em>.' => 'Diese Seite enthält einen einen einzelnen Eintrag von [_1] vom <em>[_2]</em>.',
'<a href="[_1]">[_2]</a> was the previous entry in this blog.' => '<a href="[_1]">[_2]</a> ist der vorherige Eintrag in diesem Blog.',
'<a href="[_1]">[_2]</a> is the next entry in this blog.' => '<a href="[_1]">[_2]</a> ist der nächste Eintrag in diesem Blog.',
'This page is an archive of entries in the <strong>[_1]</strong> category from <strong>[_2]</strong>.' => 'Diese Archivseite enthält alle Einträge der Kategorie <strong>[_1]</strong> aus <strong>[_2]</strong>.',
'<a href="[_1]">[_2]</a> is the previous archive.' => '<a href="[_1]">[_2]</a> ist das vorherige Archiv.',
'<a href="[_1]">[_2]</a> is the next archive.' => '<a href="[_1]">[_2]</a> ist das nächste Archiv.',
'This page is an archive of recent entries in the <strong>[_1]</strong> category.' => 'Diese Seite enthält aktuelle Einträge der Kategorie <strong>[_1]</strong>.',
'<a href="[_1]">[_2]</a> is the previous category.' => '<a href="[_1]">[_2]</a> ist die vorherige Kategorie.',
'<a href="[_1]">[_2]</a> is the next category.' => '<a href="[_1]">[_2]</a> ist die nächste Kategorie.',
'This page is an archive of recent entries written by <strong>[_1]</strong> in <strong>[_2]</strong>.' => 'Diese Seite enthält aktuelle Einträge von <strong>[_1]</strong> aus <strong>[_2]</strong>.',
'This page is an archive of recent entries written by <strong>[_1]</strong>.' => 'Diese Seite enthält aktuelle Einträge von <strong>[_1]</strong>.',
'This page is an archive of entries from <strong>[_2]</strong> listed from newest to oldest.' => 'Diese Seite enthält alle Einträge von <strong>[_1]</strong> von neu nach alt.',
'Find recent content on the <a href="[_1]">main index</a>.' => 'Aktuelle Einträge finden Sie auf der <a href="[_1]">Startseite</a>.',
'Find recent content on the <a href="[_1]">main index</a> or look in the <a href="[_2]">archives</a> to find all content.' => 'Aktuelle Einträge finden Sie auf der <a href="[_1]">Startseite</a>, alle Einträge in den <a href="[_2]">Archiven</a>.',
## default_templates/archive_index.mtml
'HTML Head' => 'HTML-Kopf',
'Archives' => 'Archiv',
'Banner Header' => 'Banner-Kopf',
'Monthly Archives' => 'Monatsarchive',
'Categories' => 'Kategorien',
'Author Archives' => 'Autorenarchive',
'Category Monthly Archives' => 'Monatliche Kategoriearchive',
'Author Monthly Archives' => 'Monatliche Autorenarchive',
'Sidebar' => 'Seitenleiste',
'Banner Footer' => 'Banner-Fuß',
## default_templates/archive_widgets_group.mtml
'This is a custom set of widgets that are conditioned to serve different content based upon what type of archive it is included. More info: [_1]' => 'Dies ist eine spezielle Widgetgruppe, die vom jeweiligen Archivtyp abhängige Inhalte ausgibt.',
'Current Category Monthly Archives' => 'Monatsarchive der aktuellen Kategorie',
'Category Archives' => 'Kategoriearchive',
## default_templates/author_archive_list.mtml
'Authors' => 'Autoren',
'[_1] ([_2])' => '[_1] ([_2])',
## default_templates/banner_footer.mtml
'_POWERED_BY' => 'Powered by<br /><a href="http://www.movabletype.org/"><$MTProductName$></a>',
'This blog is licensed under a <a href="[_1]">Creative Commons License</a>.' => 'Dieses Blog steht unter einer <a href="[_1]">Creative Commons-Lizenz</a>.',
## default_templates/calendar.mtml
'Monthly calendar with links to daily posts' => 'Monatskalender mit Link zu Tagesarchiven',
'Sunday' => 'Sonntag',
'Sun' => 'So',
'Monday' => 'Montag',
'Mon' => 'Mo',
'Tuesday' => 'Dienstag',
'Tue' => 'Di',
'Wednesday' => 'Mittwoch',
'Wed' => 'Mi',
'Thursday' => 'Donnerstag',
'Thu' => 'Do',
'Friday' => 'Freitag',
'Fri' => 'Fr',
'Saturday' => 'Samstag',
'Sat' => 'Sa',
## default_templates/category_archive_list.mtml
## default_templates/category_entry_listing.mtml
'[_1] Archives' => '[_1] Archive',
'Recently in <em>[_1]</em> Category' => 'Neues in der Kategorie <em>[_1]</em>',
'Entry Summary' => 'Zusammenfassung',
'Main Index' => 'Übersicht',
## default_templates/comment_detail.mtml
'[_1] replied to <a href="[_2]">comment from [_3]</a>' => '[_1] hat auf den <a href="[_2]">Kommentar von [_3]</a> geantwortet</a>',
## default_templates/commenter_confirm.mtml
'Thank you registering for an account to comment on [_1].' => 'Danke, daß Sie sich zum Kommentieren bei [_1] registriert haben.',
'For your own security and to prevent fraud, we ask that you please confirm your account and email address before continuing. Once confirmed you will immediately be allowed to comment on [_1].' => 'Zur Vermeidung von Mißbrauch bestätigen Sie bitte Ihre Anmeldung und Ihre E-Mail-Adresse. Im Anschluss können Sie sofort auf [_1] kommentieren.',
'To confirm your account, please click on or cut and paste the following URL into a web browser:' => 'Klicken Sie dazu auf folgenden Link (oder kopieren Sie Adresse und fügen Sie sie in Adresszeile Ihres Browsers ein):',
q{If you did not make this request, or you don't want to register for an account to comment on [_1], then no further action is required.} => q{Sollten Sie sich nicht registriert haben oder Sie sich doch nicht auf [_1] kommentierenwollen, brauchen Sie nichts weiter zu tun.},
'Thank you very much for your understanding.' => 'Vielen Dank',
'Sincerely,' => ' Ihr',
'Mail Footer' => 'Mail-Signatur',
## default_templates/commenter_notify.mtml
q{This email is to notify you that a new user has successfully registered on the blog '[_1]'. Listed below you will find some useful information about this new user.} => q{Ein neuer Benutzer hat sich erfolgreich für „[_1]“ registriert. Unten finden Sie nähere Informationen über diesen Benutzer.},
'New User Information:' => 'Informationen über den neuen Benutzer:',
'Username: [_1]' => 'Benutzername: [_1]',
'Full Name: [_1]' => 'Vollständiger Name: [_1]',
'Email: [_1]' => 'E-Mail-Adresse:',
'To view or edit this user, please click on or cut and paste the following URL into a web browser:' => 'Um das zugehörige Benutzerkonto aufzurufen oder zu bearbeiten, klicken Sie bitte auf folgende Adresse (oder kopieren Sie sie und fügen Sie sie in Adresszeile Ihres Browsers ein):',
## default_templates/comment_listing.mtml
'Comment Detail' => 'Kommentardetails',
## default_templates/comment_preview.mtml
'Previewing your Comment' => 'Vorschau Ihres Kommentars',
'Leave a comment' => 'Jetzt kommentieren',
'Name' => 'Name',
'Email Address' => 'E-Mail-Adresse',
'URL' => 'URL',
'Replying to comment from [_1]' => 'Antwort auf den Kommentar von [_1]',
'Comments' => 'Kommentare',
'(You may use HTML tags for style)' => '(HTML-Tags zur Textformatierung erlaubt)',
'Preview' => 'Vorschau',
'Submit' => 'Abschicken',
'Cancel' => 'Abbrechen',
## default_templates/comment_response.mtml
'Confirmation...' => 'Bestätigung',
'Your comment has been submitted!' => 'Ihr Kommentar ist eingegangen!',
'Thank you for commenting.' => 'Vielen Dank für Ihren Kommentar.',
'Your comment has been received and held for approval by the blog owner.' => 'Ihr Kommentar wurde abgeschickt. Er erscheint, sobald der Blogbetreiber ihn freigeschaltet hat.',
'Comment Submission Error' => 'Fehler beim Kommentieren',
'Your comment submission failed for the following reasons: [_1]' => 'Ihr Kommentar konnte aus folgenden Gründen nicht abgeschickt werden: [_1]',
'Return to <a href="[_1]">your comment</a>.' => 'Zurück zu <a href="[_1]">Ihrem Kommentar</a>.', # Translate - New
'Return to the <a href="[_1]">original entry</a>.' => '<a href="[_1]">Zurück zum Eintrag</a>',
## default_templates/comments.mtml
'1 Comment' => '1 Kommentar',
'# Comments' => '# Kommentare',
'No Comments' => 'Keine Kommentare',
'Previous' => 'Zurück',
'Next' => 'Vor',
'The data is modified by the paginate script' => 'Die Daten werden vom Paginierungsskript modifiziert.',
'Remember personal info?' => 'Persönliche Angaben speichern?',
## default_templates/comment_throttle.mtml
'If this was a mistake, you can unblock the IP address and allow the visitor to add it again by logging in to your Movable Type installation, going to Blog Config - IP Banning, and deleting the IP address [_1] from the list of banned addresses.' => 'Sie können die Sperrung dieser Adresse wieder aufheben, indem Sie den Eintrag [_1] aus der Sperrliste unter Konfigurieren > Blog > IP-Sperren entfernen.',
'A visitor to your blog [_1] has automatically been banned by adding more than the allowed number of comments in the last [_2] seconds.' => 'Die IP-Adresse eines Besuchers Ihres Weblogs [_1] wurde automatisch gesperrt, da er versucht hat, mehr Kommentare als in [_2] Sekunden zulässig zu veröffentlichen.',
'This has been done to prevent a malicious script from overwhelming your weblog with comments. The banned IP address is' => 'Dadurch wird verhindert, daß bosärtige Skripte Ihr Blog mit Spam fluten können. Die gesperrte IP-Adresse lautet',
## default_templates/creative_commons.mtml
## default_templates/current_author_monthly_archive_list.mtml
'[_1]: Monthly Archives' => '[_1]: Monatsarchive',
## default_templates/current_category_monthly_archive_list.mtml
'[_1]' => '[_1]',
## default_templates/date_based_author_archives.mtml
'Author Yearly Archives' => 'Jährliche Autorenarchive',
'Author Weekly Archives' => 'Wöchentliche Autorenarchive',
'Author Daily Archives' => 'Tägliche Autorenarchive',
## default_templates/date_based_category_archives.mtml
'Category Yearly Archives' => 'Jährliche Kategoriearchive',
'Category Weekly Archives' => 'Wöchentliche Kategoriearchive',
'Category Daily Archives' => 'Tägliche Kategoriearchive',
## default_templates/dynamic_error.mtml
'Page Not Found' => 'Seite nicht gefunden',
## default_templates/entry.mtml
'By [_1] on [_2]' => 'Von [_1] zu [_2]',
'1 TrackBack' => '1 TrackBack',
'# TrackBacks' => '# TrackBacks',
'No TrackBacks' => 'Keine TrackBacks',
'Tags' => 'Tags',
'Trackbacks' => 'TrackBacks',
## default_templates/entry_summary.mtml
'Continue reading <a href="[_1]" rel="bookmark">[_2]</a>.' => '<a rel="bookmark" href="[_1]">[_2]</a> weiterlesen',
## default_templates/footer-email.mtml
'Powered by Movable Type [_1]' => 'Powered by Movable Type [_1]',
## default_templates/javascript.mtml
'moments ago' => 'vor einem Augenblick',
'[quant,_1,hour,hours] ago' => 'vor [quant,_1,Stunde,Stunden]',
'[quant,_1,minute,minutes] ago' => 'vor [quant,_1,Minute,Minuten]',
'[quant,_1,day,days] ago' => 'vor [quant,_1,Tag,Tagen]',
'Edit' => 'Bearbeiten',
'Your session has expired. Please sign in again to comment.' => 'Ihre Sitzung ist abgelaufen. Bitte melden Sie sich erneut an.',
'Signing in...' => 'Anmeldung...',
'You do not have permission to comment on this blog. ([_1]sign out[_2])' => 'Sie haben nicht die notwendige Berechtigung, um in diesem Blog Kommentare zu schreiben. ([_1]Abmelden[_2])',
'Thanks for signing in, __NAME__. ([_1]sign out[_2])' => 'Danke für Ihre Anmeldung, __NAME__. ([_1]Abmelden[_2])',
'[_1]Sign in[_2] to comment.' => '[_1]Anmelden[_2] um zu kommentieren',
'[_1]Sign in[_2] to comment, or comment anonymously.' => '[_1]Anmelden[_2] um zu kommentieren oder anonym kommentieren',
'Replying to <a href="[_1]" onclick="[_2]">comment from [_3]</a>' => 'Antwort auf den <a href="[_1]" onclick="[_2]">Kommentar von [_3]</a>',
## default_templates/lockout-ip.mtml
'This email is to notify you that an IP address has been locked out.' => 'Eine IP-Adresse wurde automatisch gesperrt.',
'IP Address: [_1]' => 'IP-Adresse: [_1]',
'Recovery: [_1]' => 'Entsperren: [_1]',
## default_templates/lockout-user.mtml
'This email is to notify you that a Movable Type user account has been locked out.' => 'Ein Movable Type-Benutzerkonto wurde automatisch gesperrt.',
'Display Name: [_1]' => 'Benutzername: [_1]',
'If you want to unlock this user click the link below.' => 'Um das Benutzerkonto freizuschalten, klicken Sie auf folgenden Link.',
## default_templates/main_index.mtml
## default_templates/main_index_widgets_group.mtml
'This is a custom set of widgets that are conditioned to only appear on the homepage (or "main_index"). More info: [_1]' => 'Diese Widgetgruppe ist zum Einsatz auf der Startseite ("main_index"). ausgelegt. Weitere Informationen: [_1]',
'Recent Comments' => 'Aktuelle Kommentare',
'Recent Entries' => 'Aktuelle Einträge',
'Recent Assets' => 'Aktuelle Assets',
'Tag Cloud' => 'Tag-Wolke',
## default_templates/monthly_archive_dropdown.mtml
'Select a Month...' => 'Monat wählen...',
## default_templates/monthly_archive_list.mtml
'[_1] <a href="[_2]">Archives</a>' => '[_1] <a href="[_2]">Archive</a>',
## default_templates/monthly_entry_listing.mtml
## default_templates/new-comment.mtml
q{An unapproved comment has been posted on your blog '[_1]', for entry #[_2] ([_3]). You need to approve this comment before it will appear on your site.} => q{Ein noch nicht freigeschalteter Kommentar ist zu Eintrag #[_2] ([_3]) in Ihrem Blog '[_1]' eingegangen. Schalten Sie den Kommentar frei, um ihn auf Ihrer Website erscheinen zu lassen.},
q{An unapproved comment has been posted on your blog '[_1]', for page #[_2] ([_3]). You need to approve this comment before it will appear on your site.} => q{Ein noch nicht freigeschalteter Kommentar ist zur Seite #[_2] ([_3]) in Ihrem Blog '[_1]' eingegangen. Schalten Sie den Kommentar frei, um ihn auf Ihrer Website erscheinen zu lassen.},
q{An unapproved comment has been posted on your website '[_1]', for page #[_2] ([_3]). You need to approve this comment before it will appear on your site.} => q{Ein noch nicht freigeschalteter ist Kommentar zur Seite #[_2] ([_3]) auf Ihrer Website '[_1]' eingegangen. Schalten Sie den Kommentar frei, um ihn auf Ihrer Website erscheinen zu lassen.},
q{A new comment has been posted on your blog '[_1]', on entry #[_2] ([_3]).} => q{Zu Eintrag #[_2] ([_3]) ist ein neuer Kommentar auf Ihrem Blog '[_1]' erschienen.},
q{A new comment has been posted on your blog '[_1]', on page #[_2] ([_3]).} => q{Zur Seite #[_2] ([_3]) ist ein neuer Kommentar auf Ihrem Blog '[_1]' erschienen.},
q{A new comment has been posted on your website '[_1]', on page #[_2] ([_3]).} => q{Zur Seite #[_2] ([_3]) ist ein neuer Kommentar auf Ihrer Website '[_1]' erschienen.},
'Commenter name: [_1]' => 'Name des Kommentarautors: [_1]',
'Commenter email address: [_1]' => 'E-Mail-Adresse des Kommentarautors: [_1]',
'Commenter URL: [_1]' => 'Web-Adresse (URL) des Kommentarautors:',
'Commenter IP address: [_1]' => 'IP-Adresse des Kommentarautors:',
'Approve comment:' => 'Kommentar freischalten:',
'View comment:' => 'Kommentar ansehen:',
'Edit comment:' => 'Kommentar bearbeiten:',
'Report comment as spam:' => 'Kommentar als Spam melden:',
## default_templates/new-ping.mtml
q{An unapproved TrackBack has been posted on your blog '[_1]', for entry #[_2] ([_3]). You need to approve this TrackBack before it will appear on your site.} => q{Ein noch nicht freigeschaltetes TrackBack ist zu Eintrag #[_2] ([_3]) in Ihrem Blog '[_1]' eingegangen. Schalten Sie das TrackBack frei, um es auf Ihrer Website erscheinen zu lassen.},
q{An unapproved TrackBack has been posted on your blog '[_1]', for page #[_2] ([_3]). You need to approve this TrackBack before it will appear on your site.} => q{Ein noch nicht freigeschaltetes TrackBack ist zur Seite #[_2] ([_3]) in Ihrem Blog '[_1]' eingegangen. Schalten Sie das TrackBack frei, um es auf Ihrer Website erscheinen zu lassen.},
q{An unapproved TrackBack has been posted on your blog '[_1]', for category #[_2], ([_3]). You need to approve this TrackBack before it will appear on your site.} => q{Ein noch nicht freigeschaltetes TrackBack ist zur Kategorie #[_2] ([_3]) in Ihrem Blog '[_1]' eingegangen. Schalten Sie das TrackBack frei, um es auf Ihrer Website erscheinen zu lassen.},
q{An unapproved TrackBack has been posted on your website '[_1]', for page #[_2] ([_3]). You need to approve this TrackBack before it will appear on your site.} => q{Ein noch nicht freigeschalteters TrackBack ist zur Seite #[_2] ([_3]) auf Ihrer Website '[_1]' eingegangen. Schalten Sie das TrackBack frei, um es auf Ihrer Website erscheinen zu lassen.},
q{A new TrackBack has been posted on your blog '[_1]', on entry #[_2] ([_3]).} => q{Zu Eintrag #[_2] ([_3]) ist ein neues TrackBack auf Ihrem Blog '[_1]' erschienen.},
q{A new TrackBack has been posted on your blog '[_1]', on page #[_2] ([_3]).} => q{Zur Seite #[_2] ([_3]) ist ein neues TrackBack auf Ihrem Blog '[_1]' erschienen.},
q{A new TrackBack has been posted on your blog '[_1]', on category #[_2] ([_3]).} => q{Zur Kategorie #[_2] ([_3]) ist ein neues TrackBack auf Ihrem Blog '[_1]' erschienen.},
q{A new TrackBack has been posted on your website '[_1]', on page #[_2] ([_3]).} => q{Zur Seite #[_2] ([_3]) ist ein neues TrackBack auf Ihrer Website '[_1]' erschienen.},
'Excerpt' => 'Zusammenfassung',
'Title' => 'Titel',
'Blog' => 'Blog',
'IP address' => 'IP-Adresse',
'Approve TrackBack' => 'TrackBack annehmen',
'View TrackBack' => 'TrackBack ansehen',
'Report TrackBack as spam' => 'TrackBack als Spam melden',
'Edit TrackBack' => 'TrackBack bearbeiten',
## default_templates/notify-entry.mtml
q{A new [lc,_3] entitled '[_1]' has been published to [_2].} => q{Ein neuer [_3] namens „[_1]“ wurde auf [_2] veröffentlicht.},
'View entry:' => 'Eintrag ansehen:',
'View page:' => 'Seite ansehen:',
'[_1] Title: [_2]' => 'Titel: [_2]',
'Publish Date: [_1]' => 'Veröffentlichungsdatum:',
'Message from Sender:' => 'Nachricht des Absenders:',
'You are receiving this email either because you have elected to receive notifications about new content on [_1], or the author of the post thought you would be interested. If you no longer wish to receive these emails, please contact the following person:' => 'Sie erhalten diese E-Mail, da Sie entweder Nachrichten über Aktualisierungen von [_1] bestellt haben oder da der Autor dachte, daß dieser Eintrag für Sie von Interesse sein könnte. Wenn Sie solche Mitteilungen nicht länger erhalten wollen, wenden Sie sich bitte an ',
## default_templates/openid.mtml
'[_1] accepted here' => '[_1] unterstützt',
'http://www.sixapart.com/labs/openid/' => 'http://www.sixapart.com/labs/openid/',
'Learn more about OpenID' => 'Mehr über OpenID erfahren',
## default_templates/page.mtml
## default_templates/pages_list.mtml
'Pages' => 'Seiten',
## default_templates/powered_by.mtml
'_MTCOM_URL' => 'http://www.movabletype.com/',
## default_templates/recent_assets.mtml
## default_templates/recent_comments.mtml
'<strong>[_1]:</strong> [_2] <a href="[_3]" title="full comment on: [_4]">read more</a>' => '<strong>[_1]:</strong> [_2] <a href="[_3]" title="Vollständiger Kommentar zu [_4]">weiterlesen</a>',
## default_templates/recent_entries.mtml
## default_templates/recover-password.mtml
'A request has been made to change your password in Movable Type. To complete this process click on the link below to select a new password.' => 'Es wurde eine Anfrage zur Änderung Ihres Passwortes in Movable Type gestellt. Bitte klicken Sie auf untenstehenden Link und wählen Sie ein neues Passwort aus um diesen Prozess abzuschließen.',
'If you did not request this change, you can safely ignore this email.' => 'Wenn Sie diese Änderung nicht wünschen können Sie diese E-Mail bedenkenlos ignorieren.',
## default_templates/search.mtml
'Search' => 'Suchen',
'Case sensitive' => 'Groß-/Kleinschreibung unterscheiden',
'Regex search' => 'Reguläre Ausdrücke verwenden',
## default_templates/search_results.mtml
'Search Results' => 'Suchergebnisse',
'Results matching “[_1]”' => 'Suchergebnisse für „[_1]“',
'Results tagged “[_1]”' => 'Suchergebnisse mit Tag „[_1]“',
'No results found for “[_1]”.' => 'Keine Suchergebnisse für „[_1]“ gefunden',
'Instructions' => 'Hinweise',
'By default, this search engine looks for all words in any order. To search for an exact phrase, enclose the phrase in quotes:' => 'Die Suchfunktion sucht nach allen angebenen Begriffen in beliebiger Reihenfolge. Verwenden Sie Anführungszeichen, um einen exakten Ausdruck zu suchen:',
'movable type' => 'Movable Type',
'The search engine also supports AND, OR, and NOT keywords to specify boolean expressions:' => 'Die boolschen Operatoren AND, OR und NOT werden unterstützt:',
'personal OR publishing' => 'Schrank OR Schublade',
'publishing NOT personal' => 'Regal NOT Schrank',
## default_templates/sidebar.mtml
'2-column layout - Sidebar' => 'Zweispaltig - Seitenleiste',
'3-column layout - Primary Sidebar' => 'Dreispaltig- Primäre Seitenleiste',
'3-column layout - Secondary Sidebar' => 'Dreispaltig - Sekundäre Seitenleiste',
## default_templates/signin.mtml
'Sign In' => 'Anmelden',
'You are signed in as ' => 'Sie sind angemeldet als',
'sign out' => 'abmelden',
'You do not have permission to sign in to this blog.' => 'Sie haben keine Berechtigung zur Anmeldung an diesem Blog.',
## default_templates/syndication.mtml
'Subscribe to feed' => 'Feed abonnieren',
q{Subscribe to this blog's feed} => q{Feed dieses Blogs abonnieren},
'Subscribe to a feed of all future entries tagged “[_1]“' => 'Feed aller künftigen mit „[_1]“ getaggten Einträge abonnieren',
'Subscribe to a feed of all future entries matching “[_1]“' => 'Feed aller künftigen Einträge mit „[_1]“ abonnieren',
'Feed of results tagged “[_1]“' => 'Feed aller mit „[_1]“ getaggten Ergebnisse abonnieren',
'Feed of results matching “[_1]“' => 'Feeds aller Ergebnisse zu „[_1]“ abonnieren',
## default_templates/tag_cloud.mtml
## default_templates/technorati_search.mtml
'Technorati' => 'Technorati',
q{<a href='http://www.technorati.com/'>Technorati</a> search} => q{<a href='http://www.technorati.com/'>Technorati</a>-Suche},
'this blog' => 'in diesem Blog',
'all blogs' => 'in allen Blogs',
'Blogs that link here' => 'Blogs, die Links auf diese Seite enthalten',
## default_templates/trackbacks.mtml
'TrackBack URL: [_1]' => 'TrackBack-URL: [_1]',
'<a href="[_1]">[_2]</a> from [_3] on <a href="[_4]">[_5]</a>' => '<a href="[_1]">[_2]</a> von [_3] zu <a href="[_4]">[_5]</a>',
'[_1] <a href="[_2]">Read More</a>' => '[_1] <a href="[_2]">Weiterlesen</a>',
## default_templates/verify-subscribe.mtml
'Thanks for subscribing to notifications about updates to [_1]. Follow the link below to confirm your subscription:' => 'Vielen Dank, daß Sie Benachrichtungen über Aktualisierungen von [_1] abonniert haben. Klicken Sie zur Bestätigung bitte auf folgenden Link:',
'If the link is not clickable, just copy and paste it into your browser.' => 'Kann der Link nicht angeklickt werden, kopieren Sie ihn und fügen ihn in der Adresszeile Ihres Browers ein.',
## lib/MT/App/ActivityFeeds.pm
'Error loading [_1]: [_2]' => 'Fehler beim Laden von [_1]: [_2]',
'An error occurred while generating the activity feed: [_1].' => 'Bei Erzeugung des Aktivitäts-Feeds ist ein Fehler aufgetreten: [_1].',
'Invalid request.' => 'Ungültige Anfrage.',
'No permissions.' => 'Keine Berechtigung.',
'[_1] TrackBacks' => '[_1] TrackBacks',
'All TrackBacks' => 'Alle TrackBacks',
'[_1] Comments' => '[_1] Kommentare',
'All Comments' => 'Alle Kommentare',
'[_1] Entries' => '[_1] Einträge',
'All Entries' => 'Alle Einträge',
'[_1] Activity' => '[_1] Aktivitäten',
'All Activity' => 'Alle Aktivitäten',
'Movable Type System Activity' => 'Movable Type System-Aktivität',
'Movable Type Debug Activity' => 'Movable Type Debug-Aktivität',
'[_1] Pages' => '[_1] Seiten',
'All Pages' => 'Alle Seiten',
## lib/MT/App/CMS.pm
'Invalid request' => 'Ungültige Anfrage',
'Are you sure you want to remove all trackbacks reported as spam?' => 'Wirklich alle als Spam markierten TrackBacks löschen?',
'Are you sure you want to remove all comments reported as spam?' => 'Wirklich alle als Spam markierte Kommentare löschen?',
'Add a user to this [_1]' => 'Benutzer zur [_1] hinzufügen',
'Are you sure you want to reset the activity log?' => 'Aktivitätsprotokoll wirklich zurücksetzen?',
'_WARNING_PASSWORD_RESET_MULTI' => 'Sie sind dabei, E-Mails zu verschicken, mit denen die ausgewählten Benutzer ihre Passwörter zurücksetzen können. Fortfahren?',
'_WARNING_DELETE_USER_EUM' => 'Die Löschung eines Benutzerkontos kann nicht rückgängig gemacht werden und führt zu verwaisten Einträgen. Um nicht mehr benötigte Benutzerkonten zu entfernen oder um Benutzern den Zugriff auf das System zu entziehen, wird daher empfohlen, die jeweiligen Benutzerkonten nicht zu löschen, sondern zu deaktivieren. Möchten Sie die gewählten Benutzerkonten dennoch löschen? Benutzer können ihre Konten selbst wiederherstellen, solange sie noch in externen Verzeichnissen aufgeführt sind.',
'_WARNING_DELETE_USER' => 'Die Löschung eines Benutzerkontos kann nicht rückgängig gemacht werden und führt zu verwaisten Einträgen. Um nicht mehr benötigte Benutzerkonten zu entfernen oder um Benutzern den Zugriff auf das System zu entziehen, wird daher empfohlen, die jeweiligen Benutzerkonten nicht zu löschen, sondern zu deaktivieren. Möchten Sie die gewählten Benutzerkonten dennoch löschen?',
'_WARNING_REFRESH_TEMPLATES_FOR_BLOGS' => 'Hiermit werden die Vorlagen der gewählten Blogs auf die Standardvorlagen zurückgesetzt. Möchten Sie die Vorlagen der gewählten Blogs wirklich zurücksetzen?',
'Some websites were not deleted. You need to delete blogs under the website first.' => 'Nicht alle Websites gelöscht. Bitte löschen Sie zuerst die zu den jeweiligen Websites gehörende Blogs.',
'You are not authorized to log in to this blog.' => 'Sie sind nicht berechtigt, sich an diesem Blog anzumelden.',
'No such blog [_1]' => 'Kein Weblog [_1]',
'Invalid parameter' => 'Ungültiges Parameter',
'Edit Template' => 'Vorlage bearbeiten',
'Back' => 'Zurück',
'Unknown object type [_1]' => 'Unbekannter Objekttyp [_1]',
'None' => 'Kein(e)',
'Error during publishing: [_1]' => 'Fehler bei der Veröffentlichung: [_1]',
'This is You' => 'Das sind Sie',
'Movable Type News' => 'Movable Type Aktuell',
'Blog Stats' => 'Statistik',
'Websites' => 'Websites',
'Blogs' => 'Blogs',
'Websites and Blogs' => 'Websites und Blogs',
'Entries' => 'Einträge',
'Refresh Templates' => 'Vorlagen zurücksetzen',
'Use Publishing Profile' => 'Veröffentlichungsprofil verwenden',
'Delete all Spam trackbacks' => 'Alle Spam-TrackBacks löschen',
'Delete all Spam comments' => 'Alle Spam-Kommentare löschen',
'Create Role' => 'Rolle anlegen',
'Grant Permission' => 'Berechtigungen zuweisen',
'Clear Activity Log' => 'Aktivitätsprotokoll zurücksetzen',
'Download Log (CSV)' => 'Protokoll herunterladen (CSV)',
'Add IP Address' => 'IP-Adresse hinzufüge',
'Add Contact' => 'Kontakt hinzufügen',
'Download Address Book (CSV)' => 'Adressbuch herunterladen (CSV)',
'Unpublish Entries' => 'Einträge nicht mehr veröffentlichen',
'Add Tags...' => 'Tags hinzufügen...',
'Tags to add to selected entries' => 'Gewählte Einträge mit diesen Tags versehen',
'Remove Tags...' => 'Tags entfernen...',
'Tags to remove from selected entries' => 'Diese Tags von gewählten Einträgen entfernen',
'Batch Edit Entries' => 'Mehrere Einträge bearbeiten',
'Publish' => 'Veröffentlichen',
'Delete' => 'Löschen',
'Unpublish Pages' => 'Seiten nicht mehr veröffentlichen',
'Tags to add to selected pages' => 'Gewählte Seiten mit diesen Tags versehen',
'Tags to remove from selected pages' => 'Diese Tags von gewählten Seiten entfernen',
'Batch Edit Pages' => 'Mehrere Seiten bearbeiten',
'Tags to add to selected assets' => 'Gewählte Assets mit diesen Tags versehen',
'Tags to remove from selected assets' => 'Diese Tags von gewählten Assets entfernen',
'Mark as Spam' => 'Als Spam markieren',
'Remove Spam status' => 'Kein Spam',
'Unpublish TrackBack(s)' => 'TrackBack(s) nicht mehr veröffentlichen',
'Unpublish Comment(s)' => 'Kommentar(e) nicht mehr veröffentlichen',
'Trust Commenter(s)' => 'Kommentarautor(en) vertrauen',
'Untrust Commenter(s)' => 'Kommentarautor(en) nicht mehr vertrauen',
'Ban Commenter(s)' => 'Kommentarautor(en) sperren',
'Unban Commenter(s)' => 'Kommentator(en) nicht mehr sperren',
'Recover Password(s)' => 'Passwort anfordern',
'Enable' => 'Aktivieren',
'Disable' => 'Deaktivieren',
'Unlock' => 'Entsperren',
'Remove' => 'Entfernen',
'Refresh Template(s)' => 'Vorlage(n) zurücksetzen',
'Move blog(s) ' => 'Blog(s) verschieben',
'Clone Blog' => 'Blog klonen',
'Publish Template(s)' => 'Vorlage(n) veröffentlichen',
'Clone Template(s)' => 'Vorlage(n) klonen',
'Revoke Permission' => 'Berechtigung entziehen',
'Assets' => 'Assets',
'Commenters' => 'Kommentarautoren',
'Design' => 'Gestalten',
'Listing Filters' => 'Listenfilter',
'Settings' => 'Einstellungen',
'Tools' => 'Tools',
'Manage' => 'Verwalten',
'New' => 'Neu',
'Folders' => 'Ordner',
'TrackBacks' => 'TrackBacks',
'Templates' => 'Vorlagen',
'Widgets' => 'Widgets',
'Themes' => 'Themen',
'General' => 'Allgemein',
'Compose' => 'Schreiben',
'Feedback' => 'Feedback',
'Registration' => 'Registrierung',
'Web Services' => 'Webdienste',
'IP Banning' => 'IP-Sperren',
'User' => 'Benutzer',
'Roles' => 'Rollen',
'Permissions' => 'Berechtigungen',
'Search & Replace' => 'Suchen & Ersetzen',
'Plugins' => 'Plugins',
'Import Entries' => 'Einträge importieren',
'Export Entries' => 'Einträge exportieren',
'Export Theme' => 'Thema exportieren',
'Backup' => 'Sichern',
'Restore' => 'Wiederherstellen',
'Address Book' => 'Adressbuch',
'Activity Log' => 'Aktivitäten',
'Asset' => 'Asset',
'Website' => 'Website',
'Profile' => 'Profil',
## lib/MT/App/Comments.pm
'Error assigning commenting rights to user \'[_1] (ID: [_2])\' for weblog \'[_3] (ID: [_4])\'. No suitable commenting role was found.' => 'Fehler bei der Zuweisung von Kommentierungsrechten an Benutzer „[_1] (ID: [_2])“ für Weblog \'[_3] (ID: [_4])\'. Keine geeignete Kommentierungsrolle gefunden.',
'Can\'t load blog #[_1].' => 'Kann Blog #[_1] nicht laden.',
'Invalid commenter login attempt from [_1] to blog [_2](ID: [_3]) which does not allow Movable Type native authentication.' => 'Ungültiger Anmeldeversuch von Kommentarautor [_1] an Weblog [_2](ID: [_3]) - native Movable Type-Authentifizierung bei diesem Weblog nicht zulässig.',
'Invalid login.' => 'Login ungültig.',
'Invalid login' => 'Login ungültig',
'Successfully authenticated but signing up is not allowed. Please contact system administrator.' => 'Sie wurden erfolgreich authentifiziert, Registrierungen sindaber nicht erlaubt. Bitte wenden Sie sich an den Systemadministrator.',
'You need to sign up first.' => 'Bitte registrieren Sie sich zuerst.',
'The login could not be confirmed because of a database error ([_1])' => 'Anmeldung konnte aufgrund eines Datenbankfehlers nicht durchgeführt werden ([_1])',
'Permission denied.' => 'Zugriff verweigert.',
'Login failed: permission denied for user \'[_1]\'' => 'Anmeldung fehlgeschlagen: Zugriff verweigert für Benutzer „[_1]“',
'Login failed: password was wrong for user \'[_1]\'' => 'Anmeldung fehlgeschlagen: falsches Passwort für Benutzer „[_1]“',
'Failed login attempt by disabled user \'[_1]\'' => 'Fehlgeschlagener Anmeldeversuch von deaktiviertem Benutzer „[_1]“',
'Failed login attempt by unknown user \'[_1]\'' => 'Fehlgeschlagener Anmeldeversuch von unbekanntem Benutzer „[_1]“',
'Signing up is not allowed.' => 'Registrierungen sind nicht erlaubt.',
'Movable Type Account Confirmation' => 'Movable Type-Anmeldungsbestätigung',
'System Email Address is not configured.' => 'Die System-E-Mail-Adresse ist nicht konfiguriert.',
'Your confirmation have expired. Please register again.' => 'Ihre Anmeldung ist abgelaufen. Bitte registrieren Sie sich erneut.',
'<a href="[_1]">Return to the original page.</a>' => '<a href="[_1]">Zurück zur Ausgangsseite</a>',
'Commenter \'[_1]\' (ID:[_2]) has been successfully registered.' => 'Kommentarautor „[_1]“ (ID:[_2]) erfolgreich registriert.',
'Thanks for the confirmation. Please sign in to comment.' => 'Vielen Dank für Ihre Bestätigung. Sie können sich jetzt anmelden und kommentieren.',
'[_1] registered to the blog \'[_2]\'' => '[_1] hat sich für das Blog „[_2]“ registriert.',
'No id' => 'Keine ID',
'No such comment' => 'Kein entsprechender Kommentar',
'IP [_1] banned because comment rate exceeded 8 comments in [_2] seconds.' => 'IP [_1] gesperrt, da mehr als 8 Kommentare in [_2] Sekunden abgegeben wurden.',
'IP Banned Due to Excessive Comments' => 'IP-Adresse wegen exzessiver Kommentarabgabe gesperrt',
'No entry_id' => 'Entry_id fehlt',
'No such entry \'[_1]\'.' => 'Kein Eintrag „[_1]“.',
'_THROTTLED_COMMENT' => 'Sie haben zu viele Kommentare in schneller Folge abgegeben. Bitte versuchen Sie es in einigen Augenblicken erneut.',
'Comments are not allowed on this entry.' => 'Zu diesem Eintrag können keine Kommentare abgegeben werden.',
'Comment text is required.' => 'Bitte geben Sie einen Kommentartext ein.',
'An error occurred: [_1]' => 'Es ist ein Fehler aufgetreten: [_1]',
'Registration is required.' => 'Registrierung erforderlich',
'Name and E-mail address are required.' => 'Name und E-Mail-Adresse sind erforderlich',
'Invalid email address \'[_1]\'' => 'Ungültige E-Mail-Adresse „[_1]“',
'Invalid URL \'[_1]\'' => 'Ungültige Web-Adresse (URL) „[_1]“',
'Text entered was wrong. Try again.' => 'Der eingegebene Text ist nicht richtig. Bitte versuchen Sie es erneut.',
'Comment save failed with [_1]' => 'Der Kommentar konnte nicht gespeichert werden: [_1]',
'Comment on "[_1]" by [_2].' => 'Kommentar zu "[_1]" von [_2].',
'Publish failed: [_1]' => 'Veröffentlichung fehlgeschlagen: [_1]',
'Can\'t load template' => 'Kann Vorlage nicht laden',
'Failed comment attempt by pending registrant \'[_1]\'' => 'Fehlgeschlagener Kommentierungsversuch durch wartenden Kommentarautoren „[_1]“',
'Registered User' => 'Registrierter Benutzer',
'The sign-in attempt was not successful; please try again.' => 'Anmeldeversuch nicht erfolgreich. Bitte versuchen Sie es erneut.',
'Can\'t load entry #[_1].' => 'Kann Eintrag #[_1] nicht laden.',
'You are trying to redirect to external resources. If you can trust the site, please click the link: [_1]' => 'Weiterleitung zu einer externen Seite. Wenn Sie dieser Seite vertrauen, klicken Sie auf den Link: [_1]', # Translate - New # OK
'No entry was specified; perhaps there is a template problem?' => 'Es wurde kein Eintrag angegeben. Vielleicht gibt es ein Problem mit der Vorlage?',
'Somehow, the entry you tried to comment on does not exist' => 'Der Eintrag, den Sie kommentieren möchten, existiert nicht.',
'Invalid entry ID provided' => 'Ungültige Eintrags-ID angegeben',
'For improved security, please change your password' => 'Zur Steigerung Ihrer Sicherheit ändern Sie bitte Ihr Passwort.',
'All required fields must have valid values.' => 'Alle erforderlichen Felder müssen gültige Werte aufweisen.',
'[_1] contains an invalid character: [_2]' => '[_1] enthält ein ungültiges Zeichen: [_2]',
'Display Name' => 'Angezeigter Name',
'Passwords do not match.' => 'Passwörter stimmen nicht überein.',
'Failed to verify current password.' => 'Derzeitiges Passwort konnte nicht bestätigt werden.',
'Email Address is invalid.' => 'Die E-Mail-Adresse ist ungültig.',
'URL is invalid.' => 'Die Web-Adresse (URL) ist ungültig.',
'Commenter profile has successfully been updated.' => 'Das Profil des Kommentarautoren wurde erfolgreich aktualisiert.',
'Commenter profile could not be updated: [_1]' => 'Das Profil des Kommentarautoren konnte nicht aktualisiert werden: [_1]',
## lib/MT/App/NotifyList.pm
'Please enter a valid email address.' => 'Bitte geben Sie eine gültige E-Mail-Adresse an.',
'Missing required parameter: blog_id. Please consult the user manual to configure notifications.' => 'Erforderliches Parameter blog_id fehlt. Bitte konfigurieren Sie die Benachrichtungsfunktion entsprechend.',
'An invalid redirect parameter was provided. The weblog owner needs to specify a path that matches with the domain of the weblog.' => 'Ungültiges Redirect-Parameter. Es muss ein Pfad angegeben sein, der zur Domain dieses Weblogs gehört.',
'The email address \'[_1]\' is already in the notification list for this weblog.' => 'An die Adresse „[_1]“ werden bereits Benachrichtigungen über dieses Weblog verschickt.',
'Please verify your email to subscribe' => 'Bitte bestätigen Sie Ihre E-Mail-Adresse',
'_NOTIFY_REQUIRE_CONFIRMATION' => 'Um den Vorgang abzuschließen, klicken Sie bitte auf den Link in der E-Mail, die an [_1] verschickt wurde. Damit stellen Sie sicher, daß die E-Mail-Adresse Ihnen gehört und korrekt eingegeben wurde.',
'The address [_1] was not subscribed.' => 'Die Adresse [_1] war kein Abonnent.',
'The address [_1] has been unsubscribed.' => 'Die Adresse [_1] ist kein Abonnent mehr.',
## lib/MT/App.pm
'Invalid request: corrupt character data for character set [_1]' => 'Ungültige Anfrage: ungültige Zeichen für Zeichensatz [_1]',
'Error loading website #[_1] for user provisioning. Check your NewUserefaultWebsiteId setting.' => 'Fehler beim Laden der Website #[_1] zur Bereitstellung an Benutzer. Bitte überprüfen Sie Ihre NewUserDefaultWebsiteId-Einstellugen.',
'First Weblog' => 'Erstes Weblog',
'Error loading blog #[_1] for user provisioning. Check your NewUserTemplateBlogId setting.' => 'Fehler beim Laden von Blog #[_1] zur Bereitstellung an Benutzer. Bitte überprüfen Sie Ihre NewUserTemplateBlogId-Einstellung.',
'Error provisioning blog for new user \'[_1]\' using template blog #[_2].' => 'Fehler bei Bereitstellung des Blogs für neuen Benutzer „[_1]“ mit Vorlage Blog #[_2].',
'Error provisioning blog for new user \'[_1] (ID: [_2])\'.' => 'Fehler bei Bereitstellung des Blogs für neuen Benutzer \'[_1] (ID: [_2]\'.',
'Blog \'[_1] (ID: [_2])\' for user \'[_3] (ID: [_4])\' has been created.' => 'Blog \'[_1] (ID: [_2])\' für Benutzer \'[_3] (ID: [_4])\' erfolgreich angelegt.',
'Error assigning blog administration rights to user \'[_1] (ID: [_2])\' for blog \'[_3] (ID: [_4])\'. No suitable blog administrator role was found.' => 'Fehler bei Zuweisung von Administratorensrechten für Blog \'[_3] (ID: [_4])\') an Benutzer \'[_1] (ID: [_2])\'. Keine passende Administratorenrolle gefunden.',
'Internal Error: Login user is not initialized.' => 'Interner Fehler: Login-Benutzer nicht initialisiert.',
'Our apologies, but you do not have permission to access any blogs or websites within this installation. If you feel you have reached this message in error, please contact your Movable Type system administrator.' => 'Es tut uns leid, aber Sie keine Berechtigung, auf Blogs oder Websites dieser Installation zuzugreifen. Sollte hier ein Irrtum vorliegen, wenden Sie sich bitte an Ihren Movable Type-Systemadministrator.',
'This account has been disabled. Please see your system administrator for access.' => 'Dieses Benutzerkonto wurde deaktiviert. Bitte wenden Sie sich an Ihren Systemadministrator.',
'Failed login attempt by pending user \'[_1]\'' => 'Fehlgeschlagener Anmeldeversuch von wartendem Benutzer „[_1]“',
'This account has been deleted. Please see your system administrator for access.' => 'Dieses Benutzerkonto wurde gelöscht. Bitte wenden Sie sich an Ihren Systemadministrator.',
'User cannot be created: [_1].' => 'Kann Benutzerkonto nicht anlegen: [_1].',
'User \'[_1]\' has been created.' => 'Benutzerkonto „[_1]“ angelegt.',
'User \'[_1]\' (ID:[_2]) logged in successfully' => 'Benutzer „[_1]“ (ID:[_2]) erfolgreich angemeldet',
'Invalid login attempt from user \'[_1]\'' => 'Ungültiger Anmeldeversuch von Benutzer „[_1]“',
'User \'[_1]\' (ID:[_2]) logged out' => 'Benutzer „[_1]“ (ID:[_2]) abgemeldet',
'User requires password.' => 'Passwort erforderlich.',
'User requires display name.' => 'Anzeigename erforderlich.',
'Email Address is required for password reset.' => 'Die E-Mail-Adresse ist zum Zurücksetzen des Passworts erforderlich.',
'User requires username.' => 'Benutzername erforderlich.',
'Username' => 'Benutzername',
'A user with the same name already exists.' => 'Ein Benutzer mit diesem Namen existiert bereits.',
'Something wrong happened when trying to process signup: [_1]' => 'Bei der Bearbeitung der Registrierung ist ein Fehler aufgetreten: [_1]',
'New Comment Added to \'[_1]\'' => 'Neuer Kommentar zu „[_1]“ eingegangen',
'Close' => 'Schließen',
'The file you uploaded is too large.' => 'Die hochgeladene Datei ist zu groß.',
'Unknown action [_1]' => 'Unbekannte Aktion [_1]',
'Warnings and Log Messages' => 'Warnungen und Logmeldungen',
'Removed [_1].' => '[_1] entfernt.',
'You did not have permission for this action.' => 'Zu dieser Aktion sind Sie nicht berechtigt.',
## lib/MT/App/Search/Legacy.pm
'You are currently performing a search. Please wait until your search is completed.' => 'Suche läuft. Bitte warten Sie, bis Ihre Suche abgeschlossen ist.',
'Search failed. Invalid pattern given: [_1]' => 'Suche fehlgeschlagen - ungültiges Suchmuster angegeben: [_1]',
'Search failed: [_1]' => 'Suche fehlgeschlagen: [_1]',
'No alternate template is specified for the Template \'[_1]\'' => 'Keine alternative Vorlage für Vorlage „[_1]“ angegeben',
'Opening local file \'[_1]\' failed: [_2]' => 'Die lokale Datei „[_1]“ konnte nicht geöffnet werden: [_2]',
'Publishing results failed: [_1]' => 'Die Suchergebnisse konnten nicht ausgegeben werden: [_1]',
'Search: query for \'[_1]\'' => 'Suche: Suche nach „[_1]“',
'Search: new comment search' => 'Suche: Suche nach neuen Kommentaren',
## lib/MT/App/Search.pm
'Invalid type: [_1]' => 'Ungültiger Typ: [_1]',
'Search: failed storing results in cache. [_1] is not available: [_2]' => 'Suche: konnte Ergebnisse nicht zwischenspeichern. [_1] ist nicht verfügbar: [_2]',
'Invalid format: [_1]' => 'Ungültiges Format: [_1]',
'Unsupported type: [_1]' => 'Nicht unterstützter Typ: [_1]',
'Invalid query: [_1]' => 'Ungültige Suchanfrage: [_1]',
'Invalid archive type' => 'Ungültiger Archivtyp',
'Invalid value: [_1]' => 'Ungültiger Wert: [_1]',
'No column was specified to search for [_1].' => 'Keine Spalte zur Suche nach [_1] angegeben.',
'No such template' => 'Keine solche Vorlage',
'template_id cannot be a global template' => 'template_id kann keine globale Vorlage sein ',
'Output file cannot be asp or php' => 'Die Ausgabedatei darf weder vom .asp noch .php sein',
'You must pass a valid archive_type with the template_id' => 'Bitte übergeben Sie mit der template_id eine gültige archive_type-Angabe',
'Template must have identifier entry_listing for non-Index archive types' => 'Vorlagen für Nicht-Archiv-Indizes müssen zur Identifizierbarkeit ein entry_listing enthalten.',
'Blog file extension cannot be asp or php for these archives' => 'Bei diesen Archivtypen dürfen die zugehörigen Dateinamen nicht auf .asp oder .php enden',
'Template must have identifier main_index for Index archive type' => 'Vorlagen für Archiv-Indizes müssen zur Identifizierbarkeit ein main_index enthalten',
'The search you conducted has timed out. Please simplify your query and try again.' => 'Die Suche dauert zu lange. Bitte vereinfachen Sie Ihre Suchanfrage und versuchen Sie es erneut.',
## lib/MT/App/Search/TagSearch.pm
'TagSearch works with MT::App::Search.' => 'TagSearch verwendet MT::App::Search.',
## lib/MT/App/Trackback.pm
'Invalid entry ID \'[_1]\'' => 'Ungültige entry_id „[_1]“',
'You must define a Ping template in order to display pings.' => 'Sie müssen eine Ping-Vorlage definieren, um Pings anzeigen zu können.',
'Trackback pings must use HTTP POST' => 'Trackbacks müssen HTTP-POST verwenden',
'Need a TrackBack ID (tb_id).' => 'Benötige TrackBack-ID (tb_id).',
'Invalid TrackBack ID \'[_1]\'' => 'Ungültige TrackBack-ID „[_1]“',
'You are not allowed to send TrackBack pings.' => 'Sie haben keine Berechtigung, TrackBack-Pings zu senden.',
'You are pinging trackbacks too quickly. Please try again later.' => 'Sie senden zu viele TrackBack-Pings zu schnell hintereinander. Bitte versuchen Sie es später erneut.',
'Need a Source URL (url).' => 'Quelladresse erforderlich (URL).',
'This TrackBack item is disabled.' => 'Dieser TrackBack-Eintrag ist deaktiviert.',
'This TrackBack item is protected by a passphrase.' => 'Dieser TrackBack-Eintrag ist passwortgeschützt.',
'TrackBack on "[_1]" from "[_2]".' => 'TrackBack zu "[_1]" von "[_2]".',
'TrackBack on category \'[_1]\' (ID:[_2]).' => 'TrackBack für Kategorie „[_1]“ (ID:[_2])',
'Can\'t create RSS feed \'[_1]\': ' => 'RSS-Feed „[_1]“ kann nicht angelegt werden: ',
'New TrackBack Ping to \'[_1]\'' => 'Neuer TrackBack-Ping für \'[_1]\'',
'New TrackBack Ping to Category \'[_1]\'' => 'Neuer TrackBack-Ping für Kategorie \'[_1]\'',
## lib/MT/App/Upgrader.pm
'Could not authenticate using the credentials provided: [_1].' => 'Die Authentifizierung mit den angebeben Benutzerdaten ist fehlgeschlagen: [_1]',
'Both passwords must match.' => 'Die beiden Passwörter müssen übereinstimmen.',
'You must supply a password.' => 'Bitte geben Sie ein Passwort an.',
'The \'Publishing Path\' provided below is not writable by the web server. Change the ownership or permissions on this directory, then click \'Finish Install\' again.' => 'Der angegebene Veröffentlichungspfad kann vom Webserver nicht beschrieben werden. Stellen Sie sicher, daß der Webserver über Schreibrechte für dieses Verzeichnis verfügt und klicken Sie erneut auf „Installation abschließen“.',
'Invalid session.' => 'Ungültige Session',
'No permissions. Please contact your administrator for upgrading Movable Type.' => 'Fehlende Berechtigung: Bitte kontaktieren Sie für die Aktualisierung von Movable Type Ihren Administrator.',
'Movable Type has been upgraded to version [_1].' => 'Movable Type erfolgreich auf Version [_1] aktualisiert.',
## lib/MT/App/Viewer.pm
'Loading blog with ID [_1] failed' => 'Blog mit ID [_1] konte nicht geladen werden',
'File not found' => 'Datei nicht gefunden', # Translate - New # OK
'Template publishing failed: [_1]' => 'Vorlage konnte nicht veröffentlicht werden: [_1]',
'Unknown archive type: [_1]' => 'Archivtyp unbekannt: [_1]', # Translate - New # OK
'Can\'t load template [_1]' => 'Kann Vorlage [_1] nicht laden',
'Archive publishing failed: [_1]' => 'Archiv konnte nicht veröffentlicht werden: [_1]',
'Invalid entry ID [_1]' => 'Ungültige Eintrags-ID [_1]', # Translate - New # OK
'Entry [_1] is not published' => 'Eintrag [_1] nicht veröffentlicht',
'Invalid category ID \'[_1]\'' => 'Ungültige Kategorie-ID „[_1]“',
'Invalid author ID \'[_1]\'' => 'Ungültige Autoren-ID „[_1]“', # Translate - New # OK
## lib/MT/App/Wizard.pm
'The [_1] driver is required to use [_2].' => 'Zur Nutzung von [_2] ist ein [_1]-Treiber erforderlich.',
'An error occurred while attempting to connect to the database. Check the settings and try again.' => 'Es konnte keine Verbindung zur Datenbank aufgebaut werden. Bitte überprüfen Sie die Einstellungen und versuchen Sie es erneut.',
'Please select database from the list of database and try again.' => 'Bitte wählen Sie eine Datenbank aus der Liste und versuchen Sie es erneut.',
'SMTP Server' => 'SMTP-Server',
'Sendmail' => 'Sendmail',
'Test email from Movable Type Configuration Wizard' => 'Testmail vom Movable Type-Konfigurationsassistenten',
'This is the test email sent by your new installation of Movable Type.' => 'Diese Testmail wurde von Ihrer neuen Movable Type-Installation verschickt.',
'This module is needed to encode special characters, but this feature can be turned off using the NoHTMLEntities option in mt-config.cgi.' => 'Dieses Modul ist zur Kodierung von Sonderzeichen erforderlich. Die Kodierung von Sonderzeichen kann über den Schalter NoHTMLEntities in mt-config.cgi abgeschaltet werden.',
'This module is needed if you want to use the TrackBack system, the weblogs.com ping, or the MT Recently Updated ping.' => 'Dieses Modul ist zur Nutzung des TrackBack-Systems, von Weblogs.com-Pings und der Kürzlich aktualisiert-Pings von Movable Type erforderlich.',
'This module is needed if you want to use the MT XML-RPC server implementation.' => 'Dieses Modul ist zur Nutzung des XML-RPC-Servers von Movable Type erforderlich.',
'This module is needed if you would like to be able to overwrite existing files when you upload.' => 'Dieses Modul ist zum Überschreiben bereits vorhandener Dateien beim Hochladen erforderlich.',
'This module is required by certain MT plugins available from third parties.' => 'Dieses Modul ist für einige MT-Plugins von Drittanbietern erforderlich.',
'This module accelerates comment registration sign-ins.' => 'Dieses Modul beschleunigt die Anmeldung als Kommentarautor.',
'This module is needed to enable comment registration.' => 'Dieses Modul ermöglicht die Registrierung von Kommentarautoren.',
'This module enables the use of the Atom API.' => 'Dieses Modul ermöglicht die Verwendung der ATOM-API.',
'This module is required in order to use memcached as caching mechanism used by Movable Type.' => 'Dieses Modul ist zur Nutzung von memcached als Cache-System erforderlich.',
'This module is required in order to archive files in backup/restore operation.' => 'Dieses Modul ist zur Archivierung von Dateien beim Erstellen und Einspielen von Sicherheitskopien erforderlich.',
'This module is required in order to compress files in backup/restore operation.' => 'Dieses Modul ist zur Packen von Dateien beim Erstellen und Einspielen von Sicherheitskopien erforderlich.',
'This module is required in order to decompress files in backup/restore operation.' => 'Dieses Modul ist zum Entpackenvon Dateien beim Erstellen und Einspielen von Sicherheitskopien erforderlich.',
'This module and its dependencies are required in order to restore from a backup.' => 'Dieses Modul und seine Abhängigkeiten sind zum Einspielen von Sicherheitskopien erforderlich.',
'This module and its dependencies are required in order to allow commenters to be authenticated by OpenID providers including LiveJournal.' => 'Dieses Modul und seine Abhängigkeiten sind zur Authentifizierung von Kommentar-Autoren mittels OpenID (einschließlich LiveJournal) eroforderlich.',
'This module is required for sending mail via SMTP Server.' => 'Dieses Modul ist zum Verschicken von E-Mails per SMTP erforderlich.',
'This module is required for file uploads (to determine the size of uploaded images in many different formats).' => 'Dieses Modul ist zur Bestimmung der Größe hochgeladener Dateien erforderlich.',
'This module is required for cookie authentication.' => 'Dieses Modul ist zur Cookie-Authentifizierung erforderlich.',
## lib/MT/ArchiveType/AuthorDaily.pm
'AUTHOR-DAILY_ADV' => 'tägliche Autorenarchive',
'author/author-basename/yyyy/mm/dd/index.html' => 'autor/autoren-basisname/jjjj/mm/tt/index.html',
'author/author_basename/yyyy/mm/dd/index.html' => 'autor/autoren_basisname/jjjj/mm/tt/index.html',
## lib/MT/ArchiveType/AuthorMonthly.pm
'AUTHOR-MONTHLY_ADV' => 'monatliche Autorenarchive',
'author/author-basename/yyyy/mm/index.html' => 'autor/autoren-basisname/jjjj/mm/index.html',
'author/author_basename/yyyy/mm/index.html' => 'autor/autoren_basisname/jjjj/mm/index.hmtl',
## lib/MT/ArchiveType/Author.pm
'AUTHOR_ADV' => 'Autorenarchive',
'author/author-basename/index.html' => 'autor/autoren-basisname/index.html',
'author/author_basename/index.html' => 'autor/autoren-basisname/index.html',
## lib/MT/ArchiveType/AuthorWeekly.pm
'AUTHOR-WEEKLY_ADV' => 'wöchentliche Autorenarchive',
'author/author-basename/yyyy/mm/day-week/index.html' => 'autor/autoren-basisname/jjjj/mm/wochen-tag/index.html',
'author/author_basename/yyyy/mm/day-week/index.html' => 'autor/autoren-basisname/jjjj/mm/wochen-tag/index.html',
## lib/MT/ArchiveType/AuthorYearly.pm
'AUTHOR-YEARLY_ADV' => 'jährliche Autorenarchive',
'author/author-basename/yyyy/index.html' => 'autor/autoren-basisname/jjjj/index.html',
'author/author_basename/yyyy/index.html' => 'autor/autoren_basisname/jjjj/index.html',
## lib/MT/ArchiveType/CategoryDaily.pm
'CATEGORY-DAILY_ADV' => 'tägliche Kategoriearchive',
'category/sub-category/yyyy/mm/dd/index.html' => 'kategorie/unter-kategorie/jjjj/mm/tt/index.html',
'category/sub_category/yyyy/mm/dd/index.html' => 'kategorie/unter_kategorie/jjjj/mm/tt/index.html',
## lib/MT/ArchiveType/CategoryMonthly.pm
'CATEGORY-MONTHLY_ADV' => 'monatliche Kategoriearchive',
'category/sub-category/yyyy/mm/index.html' => 'kategorie/unter-kategorie/jjjj/mm/index.html',
'category/sub_category/yyyy/mm/index.html' => 'kategorie/unter_kategorie/jjjj/mm/index.html',
## lib/MT/ArchiveType/Category.pm
'CATEGORY_ADV' => 'Kategoriearchive',
'category/sub-category/index.html' => 'kategorie/unter-kategorie/index.html',
'category/sub_category/index.html' => 'kategorie/unter_kategorie/index.html',
## lib/MT/ArchiveType/CategoryWeekly.pm
'CATEGORY-WEEKLY_ADV' => 'wöchentliche Kategoriearchive',
'category/sub-category/yyyy/mm/day-week/index.html' => 'kategorie/unter-kategorie/jjjj/mm/tag-woche/index.html',
'category/sub_category/yyyy/mm/day-week/index.html' => 'kategorie/unter_kategorie/jjjj/mm/tag-woche/index.html',
## lib/MT/ArchiveType/CategoryYearly.pm
'CATEGORY-YEARLY_ADV' => 'jährliche Kategoriearchive',
'category/sub-category/yyyy/index.html' => 'kategorie/unter-kategorie/jjjj/index.html',
'category/sub_category/yyyy/index.html' => 'kategorie/unter_kategorie/jjjj/index.html',
## lib/MT/ArchiveType/Daily.pm
'DAILY_ADV' => 'Tagesarchive',
'yyyy/mm/dd/index.html' => 'jjjj/mm/tt/index.html',
## lib/MT/ArchiveType/Individual.pm
'INDIVIDUAL_ADV' => 'Einzelarchive',
'yyyy/mm/entry-basename.html' => 'jjjj/mm/eintrags-name.html',
'yyyy/mm/entry_basename.html' => 'jjjj/mm/eintrags_name.html',
'yyyy/mm/entry-basename/index.html' => 'jjjj/mm/eintrags-name/index.html',
'yyyy/mm/entry_basename/index.html' => 'jjjj/mm/eintrags_name/index.html',
'yyyy/mm/dd/entry-basename.html' => 'jjjj/mm/tt/eintrags-name.html',
'yyyy/mm/dd/entry_basename.html' => 'jjjj/mm/tt/eintrags_name.html',
'yyyy/mm/dd/entry-basename/index.html' => 'jjjj/mm/tt/eintrags-name/index.html',
'yyyy/mm/dd/entry_basename/index.html' => 'jjjj/mm/tt/eintrags_name/index.html',
'category/sub-category/entry-basename.html' => 'kategorie/unter-kategorie/eintrags-name.html',
'category/sub-category/entry-basename/index.html' => 'kategorie/unter-kategorie/eintrags-name/index.html',
'category/sub_category/entry_basename.html' => 'kategorie/unter_kategorie/eintrags_name.html',
'category/sub_category/entry_basename/index.html' => 'kategorie/unter_kategorie/eintrags_name/index.html',
## lib/MT/ArchiveType/Monthly.pm
'MONTHLY_ADV' => 'Monatsarchive',
'yyyy/mm/index.html' => 'jjjj/mm/index.html',
## lib/MT/ArchiveType/Page.pm
'PAGE_ADV' => 'Seitenarchive',
'folder-path/page-basename.html' => 'pfad-angabe/seiten-name.html',
'folder-path/page-basename/index.html' => 'pfad-angabe/seiten-name/index.html',
'folder_path/page_basename.html' => 'pfad_angabe/seiten_name.html',
'folder_path/page_basename/index.html' => 'pfad_angabe/seiten_name/index.html',
## lib/MT/ArchiveType/Weekly.pm
'WEEKLY_ADV' => 'Wochenarchive',
'yyyy/mm/day-week/index.html' => 'jjjj/mm/tag-woche/index.html',
## lib/MT/ArchiveType/Yearly.pm
'YEARLY_ADV' => 'Jahresarchive',
'yyyy/index.html' => 'jjjj/index.html',
## lib/MT/Asset/Audio.pm
## lib/MT/Asset/Image.pm
'Images' => 'Bilder',
'Actual Dimensions' => 'Ausgangsgröße',
'[_1] x [_2] pixels' => '[_1] x [_2] Pixel',
'Error cropping image: [_1]' => 'Fehler beim Beschnitt des Bildes: [_1]',
'Error scaling image: [_1]' => 'Fehler bei der Skalierung des Bildes: [_1]',
'Error converting image: [_1]' => 'Fehler bei der Umwandlung des Bildes: [_1]',
'Error creating thumbnail file: [_1]' => 'Fehler beim Erzeugen des Vorschaubildes: [_1]',
'%f-thumb-%wx%h-%i%x' => '%f-thumb-%wx%h-%i%x',
'Can\'t load image #[_1]' => 'Kann Bild #[_1] nicht laden',
'View image' => 'Bild ansehen',
'Permission denied setting image defaults for blog #[_1]' => 'Fehlende B: Bild-Voreinstellungen für Weblog #[_1] nicht geändert',
'Thumbnail image for [_1]' => 'Vorschaubild für [_1]',
'Invalid basename \'[_1]\'' => 'Ungültiger Basisname „[_1]“',
'Error writing to \'[_1]\': [_2]' => 'Fehler beim Speichern unter „[_1]“: [_2]',
'Popup Page for [_1]' => 'Popup-Seite für [_1]',
## lib/MT/Asset.pm
'Deleted' => 'Gelöscht',
'Enabled' => 'Aktiviert',
'Disabled' => 'Deaktiviert',
'Could not remove asset file [_1] from filesystem: [_2]' => 'Konnte Asset-Datei [_1] nicht aus dem Dateisystem löschen: [_2]',
'Description' => 'Beschreibung',
'Location' => 'Ort',
'string(255)' => 'string(255)',
'Label' => 'Bezeichnung',
'Type' => 'Typ',
'Filename' => 'Dateiname',
'File Extension' => 'Dateierweiterung',
'Pixel width' => 'Breite in Pixeln',
'Pixel height' => 'Höhe in Pixeln',
'Except Userpic' => 'Benutzerbild ausnehmen',
'Author Status' => 'Status des Autors',
'Assets of this website' => 'Assets dieser Website',
## lib/MT/Asset/Video.pm
'Videos' => 'Videos',
## lib/MT/Association.pm
'Association' => 'Verknüpfung',
'Associations' => 'Verknüpfungen',
'Permissions with role: [_1]' => 'Berechtigungen der Rolle [_1]',
'Permissions for [_1]' => 'Berechtigungen für [_1]',
'association' => 'Verknüpfungen',
'associations' => 'Verknüpfungen',
'User Name' => 'Benutzername',
'Role' => 'Rolle',
'Role Name' => 'Rollenname',
'Role Detail' => 'Rolle-Details',
'Website/Blog Name' => 'Name der Website/des Blogs',
'__WEBSITE_BLOG_NAME' => 'Name der Website/des Blogs',
## lib/MT/AtomServer.pm
'[_1]: Entries' => '[_1]: Einträge',
'Invalid blog ID \'[_1]\'' => 'Ungültige Blog-ID „[_1]“',
'PreSave failed [_1]' => 'PreSave fehlgeschlagen [_1]',
'User \'[_1]\' (user #[_2]) added [lc,_4] #[_3]' => '[_4] (#[_3]) von Benutzer „[_1]“ (Benutzer-Nr. [_2]) hinzugefügt.',
'User \'[_1]\' (user #[_2]) edited [lc,_4] #[_3]' => '[_4] (#[_3]) von Benutzer „[_1]“ (Benutzer-Nr. [_2]) bearbeitet.',
'Entry \'[_1]\' ([lc,_5] #[_2]) deleted by \'[_3]\' (user #[_4]) from atom api' => 'Entry „[_1]“ ([lc,_5] #[_2]) von „[_3]“ (#[_4]) über Atom-API gelöscht.',
'The file([_1]) you uploaded is not allowed.' => 'Die hochgeladene Datei ([_1]) ist nicht zulässig.',
'Saving [_1] failed: [_2]' => '[_1] konnte nicht gespeichert werden: [_2]',
'Perl module Image::Size is required to determine width and height of uploaded images.' => 'Zur Bestimmung von Höhe und Breite hochgeladener Bilddateien ist das Perl-Modul Image::Size erforderlich.',
## lib/MT/Auth/MT.pm
'Missing Required Modules' => 'Fehlende erforderliche Module',
## lib/MT/Auth/OpenID.pm
'Couldn\'t save the session' => 'Session konnte nicht gespeichert werden',
'Could not load Net::OpenID::Consumer.' => 'Konnte Net::OpenID::Consumer nicht laden.',
'The address entered does not appear to be an OpenID' => 'Die eingegebene Adresse scheint keine OpenID zu sein',
'The text entered does not appear to be a web address' => 'Der eingegebene Text scheint keine Webadresse zu sein',
'Unable to connect to [_1]: [_2]' => 'Es konnte keine Verbindung zu [_1] hergestellt werden: [_2]',
'Could not verify the OpenID provided: [_1]' => 'Die angegebene OpenID konnte nicht verifiziert werden: [_1]',
## lib/MT/Author.pm
'Users' => 'Benutzer',
'Active' => 'Aktiv',
'Pending' => 'Auf Moderation wartend',
'Not Locked Out' => 'Nicht gesperrt',
'Locked Out' => 'Gesperrt',
'__COMMENTER_APPROVED' => 'Bestätigt',
'Banned' => 'Gesperrt',
'MT Users' => 'MT-Benutzer',
'The approval could not be committed: [_1]' => 'Freigabe konnte nicht übernommen werden: [_1]',
'Userpic' => 'Benutzerbild',
'User Info' => 'Benutzerinfo',
'__ENTRY_COUNT' => 'Einträge',
'__COMMENT_COUNT' => 'Kommentare',
'Created by' => 'Angelegt von',
'Status' => 'Status',
'Website URL' => 'Website',
'Privilege' => 'Privilegien',
'Lockout' => 'Sperrung',
'Enabled Users' => 'Aktive Benutzerkonten',
'Disabled Users' => 'Deaktivierte Benutzerkonten',
'Pending Users' => 'Wartende Benutzerkonten',
'Locked out Users' => 'Gesperrte Benutzerkonten',
'Enabled Commenters' => 'Aktive Kommentar-Autoren',
'Disabled Commenters' => 'Deaktivierte Kommentar-Autoren',
'Pending Commenters' => 'Wartende Kommentar-Autoren',
'MT Native Users' => 'Native MT-Benutzer',
'Externally Authenticated Commenters' => 'Extern authentifizierte Kommentar-Autoren',
## lib/MT/Auth.pm
'Bad AuthenticationModule config \'[_1]\': [_2]' => 'Fehlerhafte AuthenticationModule-Konfiguration „[_1]“: [_2]',
'Bad AuthenticationModule config' => 'Fehlerhafte AuthenticationModule-Konfiguration',
## lib/MT/Auth/TypeKey.pm
'Sign in requires a secure signature.' => 'Die Anmeldung erfordert eine sichere Signatur.',
'The sign-in validation failed.' => 'Bei der Bestätigung der Anmeldung ist ein Fehler aufgetreten.',
'This weblog requires commenters to pass an email address. If you\'d like to do so you may log in again, and give the authentication service permission to pass your email address.' => 'Auf diesem Blog müssen Kommentarautoren eine E-Mail-Adresse angeben. Wenn Sie das tun möchten, melden Sie sich an und erlauben Sie dem Authentifizierungsdienst, Ihre E-Mail-Adresse weiterzuleiten.',
'Couldn\'t get public key from url provided' => 'Public Key konnte von der angegebenen Adresse nicht gelesen werden',
'No public key could be found to validate registration.' => 'Kein Public Key zur Validierung gefunden.',
'TypePad signature verif\'n returned [_1] in [_2] seconds verifying [_3] with [_4]' => 'Die Überprüfung der TypePad-Signatur ergab binnen [_2] Sekunden [_1], [_3] wurde mit [_4] verifiziert.',
'The TypePad signature is out of date ([_1] seconds old). Ensure that your server\'s clock is correct' => 'Die TypePad-Signatur ist zu alt ([_1] Sekunden). Bitte stellen Sie sicher, daß die Uhr Ihres Servers richtig gestellt ist',
## lib/MT/BackupRestore/BackupFileHandler.pm
'Uploaded file was not a valid Movable Type backup manifest file.' => 'Die hochgeladene Datei ist keine gültige Movable Type Backup-Manifest-Datei.',
'Uploaded file was backed up from Movable Type but the different schema version ([_1]) from the one in this system ([_2]). It is not safe to restore the file to this version of Movable Type.' => 'Die hochgeladene Sicherungsdatei stammt aus einer Movable Type-Installation mit anderer Schema-Version ([_1]) wie diese Installation ([_2]). Wir raten daher ausdrücklich davor ab, die Datei in diese Movable Type-Version einzuspielen.',
'[_1] is not a subject to be restored by Movable Type.' => '[_1] wird von Movable Type nicht wiederhergestellt.',
'[_1] records restored.' => '[_1] Einträge wiederhergestellt.',
'Restoring [_1] records:' => 'Stelle [_1]-Einträge wieder her:',
'User with the same name as the name of the currently logged in ([_1]) found. Skipped the record.' => 'Benutzer mit dem Namen des derzeit angemeldeten Benutzers ([_1]) gefunden. Eintrag übersprungen.',
'User with the same name \'[_1]\' found (ID:[_2]). Restore replaced this user with the data backed up.' => 'Benutzer mit gleichem Namen „[_1]“ gefunden (ID:[_2]). Die Benutzerdaten wurden entsprechend ersetzt.',
'Tag \'[_1]\' exists in the system.' => 'Tag „[_1]“ bereits im System vorhanden.',
'[_1] records restored...' => '[_1] Einträge wiederhergstellt...',
'The role \'[_1]\' has been renamed to \'[_2]\' because a role with the same name already exists.' => 'Die Rolle „[_1]“ wurde in „[_2]“ umbenannt, da bereits eine Rolle mit diesem Namen vorhanden ist.',
'The system level settings for plugin \'[_1]\' already exist. Skipping this record.' => 'Einstellungen auf Systemebene für Plugin \'[_1]\' bereits vorhanden; überspringe Eintrag.',
## lib/MT/BackupRestore/ManifestFileHandler.pm
## lib/MT/BackupRestore.pm
'Backing up [_1] records:' => 'Sichere [_1]-Einträge:',
'[_1] records backed up...' => '[_1] Einträge gesichert...',
'[_1] records backed up.' => '[_1] Einträge gesichert',
'There were no [_1] records to be backed up.' => 'Keine [_1]-Einträge zu sichern.',
'Can\'t open directory \'[_1]\': [_2]' => 'Kann Verzeichnis „[_1]“ nicht öffnen: [_2]',
'No manifest file could be found in your import directory [_1].' => 'Keine Manifest-Datei im Importverzeichnis [_1] gefunden.',
'Can\'t open [_1].' => 'Kann [_1] nicht öffnen.',
'Manifest file [_1] was not a valid Movable Type backup manifest file.' => 'Manifest-Datei [_1] ist keine gültige Movable Type Backup-Manifest-Datei.',
'Manifest file: [_1]' => 'Manifest-Datei: [_1]',
'Path was not found for the file ([_1]).' => 'Pfad zu Datei ([_1]) nicht gefunden.',
'[_1] is not writable.' => 'Kein Schreibzugriff auf [_1]',
'Error making path \'[_1]\': [_2]' => 'Fehler beim Anlegen des Ordners „[_1]“: [_2]',
'Copying [_1] to [_2]...' => 'Kopiere [_1] nach [_2]...',
'Failed: ' => 'Fehler: ',
'Done.' => 'Fertig.',
'Restoring asset associations ... ( [_1] )' => 'Stelle Asset-Zuweisungen wieder her... ( [_1] )',
'Restoring asset associations in entry ... ( [_1] )' => 'Stelle Asset-Zuweisungen in Eintrag wieder her... ( [_1] )',
'Restoring asset associations in page ... ( [_1] )' => 'Stelle Asset-Zuweisungen in Seite wieder her ... ( [_1] )',
'Restoring url of the assets ( [_1] )...' => 'Stelle Asset-URLs wieder her... ( [_1] )',
'Restoring url of the assets in entry ( [_1] )...' => 'Stelle Asset-URLs in Eintrag wieder her... ( [_1] )',
'Restoring url of the assets in page ( [_1] )...' => 'Stelle Asset-URLs in Seite wieder her ... ( [_1] )',
'ID for the file was not set.' => 'ID für Datei nicht gesetzt.',
'The file ([_1]) was not restored.' => 'Datei ([_1]) nicht wiederhergestellt.',
'Changing path for the file \'[_1]\' (ID:[_2])...' => 'Ändere Pfad für Datei „[_1]“ (ID:[_2])....',
'failed' => 'Fehlgeschlagen',
'ok' => 'OK',
## lib/MT/BasicAuthor.pm
'authors' => 'Autoren',
## lib/MT/Blog.pm
'First Blog' => 'Erstes Blog',
'No default templates were found.' => 'Keine Standardvorlagen gefunden.',
'Clone of [_1]' => 'Klon von [_1]',
'Cloned blog... new id is [_1].' => 'Blog geklont... Die neue ID lautet: [_1]',
'Cloning permissions for blog:' => 'Klone Berechtigungen für Webblog:',
'[_1] records processed...' => '[_1] Einträge bearbeitet...',
'[_1] records processed.' => '[_1] Einträge bearbeitet.',
'Cloning associations for blog:' => 'Klone Verknüpfungen für Weblog:',
'Cloning entries and pages for blog...' => 'Klone Einträge und Seiten für Weblog...',
'Cloning categories for blog...' => 'Klone Kategorien für Weblog...',
'Cloning entry placements for blog...' => 'Klone Eintragsplatzierung für Weblog...',
'Cloning comments for blog...' => 'Klone Kommentare für Weblog...',
'Cloning entry tags for blog...' => 'Klone Tags für Weblog...',
'Cloning TrackBacks for blog...' => 'Klone TrackBacks für Weblog...',
'Cloning TrackBack pings for blog...' => 'Klone TrackBack-Pings für Weblog...',
'Cloning templates for blog...' => 'Klone Vorlagen für Weblog...',
'Cloning template maps for blog...' => 'Klone Vorlagenzuweisungen für Weblog...',
'Failed to load theme [_1]: [_2]' => 'Laden des Themas [_1] fehlgeschlagen: [_2]',
'Failed to apply theme [_1]: [_2]' => 'Anwendung des Themas [_1] fehlgeschlagen: [_2]',
'__PAGE_COUNT' => 'Seiten',
'__ASSET_COUNT' => 'Assets',
'Members' => 'Mitglieder',
'Theme' => 'Thema',
## lib/MT/Bootstrap.pm
'Got an error: [_1]' => 'Es ist ein Fehler aufgetreten: [_1]',
## lib/MT/Builder.pm
'<[_1]> at line [_2] is unrecognized.' => '<[_1]> in Zeile [_2] unbekannt.',
'<[_1]> with no </[_1]> on line #' => '<[_1]> ohne </[_1]> in Zeile #',
'<[_1]> with no </[_1]> on line [_2].' => '<[_1]> ohne </[_1]> in Zeile [_2].',
'<[_1]> with no </[_1]> on line [_2]' => '<[_1]> ohne </[_1]> in Zeile[_2]',
'Error in <mt[_1]> tag: [_2]' => 'Fehler im Vorlagenbefehl <mt[_1]>: [_2]',
'Unknown tag found: [_1]' => 'Unbekannter Vorlagenbefehl gefunden: [_1]',
## lib/MT/Category.pm
'[quant,_1,entry,entries,No entries]' => '[quant,_1,Eintrag,Einträge,Keine Einträge]',
'[quant,_1,page,pages,No pages]' => '[quant,_1,Seite,Seiten,Keine Seiten]',
'Category' => 'Kategorie',
'Categories must exist within the same blog' => 'Kategorien müssen im gleichen Blog vorhanden sein',
'Category loop detected' => 'Kategorieschleife festgestellt',
'string(100) not null' => 'string(100) nicht null',
'Basename' => 'Basisname',
'Parent' => 'Mutter',
## lib/MT/CMS/AddressBook.pm
'No entry ID provided' => 'Keine Eintrags-ID angegeben',
'No such entry \'[_1]\'' => 'Kein Eintrag „[_1]“',
'No valid recipients found for the entry notification.' => 'Keine gültigen Empfänger für Benachrichtigungen gefunden.',
'[_1] Update: [_2]' => '[_1] Update: [_2]',
'Error sending mail ([_1]); try another MailTransfer setting?' => 'Mailversand fehlgeschlagen([_1]). Überprüfen Sie die MailTransfer-Einstellungen.',
'Please select a blog.' => 'Bitte wählen Sie ein Blog.',
'The value you entered was not a valid email address' => 'Die angebene E-Mail-Adresse ist ungültig',
'The value you entered was not a valid URL' => 'Die angegebene Webadresse (URL) ist ungültig',
'The e-mail address you entered is already on the Notification List for this blog.' => 'Die angegebene E-Mail-Adresse befindet sich bereits auf der Benachrichtigungsliste für dieses Weblog.',
'Subscriber \'[_1]\' (ID:[_2]) deleted from address book by \'[_3]\'' => 'Abonnent „[_1]“ (ID: [_2]) von „[_3]“ aus Adressbuch gelöscht',
## lib/MT/CMS/Asset.pm
'(user deleted)' => '(Benutzer gelöscht)',
'Files' => 'Dateien',
'Extension changed from [_1] to [_2]' => 'Erweiterung von [_1] in [_2] geändert',
'Upload File' => 'Datei hochladen',
'Can\'t load file #[_1].' => 'Kann Datei #[_1] nicht laden.',
'No permissions' => 'Keine Berechtigung',
'File \'[_1]\' uploaded by \'[_2]\'' => 'Datei „[_1]“ hochgeladen von „[_2]“',
'File \'[_1]\' (ID:[_2]) deleted by \'[_3]\'' => 'Datei „[_1]“ (ID:[_2]) gelöscht von „[_3]“',
'Untitled' => 'Ohne Name',
'Archive Root' => 'Archiv-Wurzel',
'Site Root' => 'Wurzelverzeichnis',
'Please select a file to upload.' => 'Bitte wählen die Datei aus, die Sie hochladen möchten.',
'Invalid filename \'[_1]\'' => 'Ungültiger Dateiname „[_1]“',
'Please select an audio file to upload.' => 'Bitte wählen die Audio-Datei aus, die Sie hochladen möchten.',
'Please select an image to upload.' => 'Bitte wählen die Bild-Datei aus, die Sie hochladen möchten.',
'Please select a video to upload.' => 'Bitte wählen die Video-Datei aus, die Sie hochladen möchten.',
'Movable Type was unable to write on the "Upload Destination". Please make sure that the folder is writable from the web server.' => 'Movable Type konnte den Zielpfad nicht beschreiben. Bitte stellen Sie sicher, daß der Webserver Schreibrechte für dieses Verzeichnis besitzt.',
'Invalid extra path \'[_1]\'' => 'Ungültiger Zusatzpfad „[_1]“',
'Can\'t make path \'[_1]\': [_2]' => 'Kann Pfad „[_1]“ nicht anlegen: [_2]',
'Invalid temp file name \'[_1]\'' => 'Ungültiger temporärer Dateiname „[_1]“',
'Error opening \'[_1]\': [_2]' => 'Fehler beim Öffnen von „[_1]“: [_2]',
'Error deleting \'[_1]\': [_2]' => 'Fehler beim Löschen von „[_1]“: [_2]',
'File with name \'[_1]\' already exists. (Install File::Temp if you\'d like to be able to overwrite existing uploaded files.)' => 'Es ist bereits eine Datei namens „[_1]“ vorhanden. (Installieren Sie File::Temp, um bereits vorhandene Dateien überschreiben zu können .)',
'Error creating temporary file; please check your TempDir setting in your coniguration file (currently \'[_1]\') this location should be writable.' => 'Fehler beim Anlegen der temporären Datei. Bitte überprüfen Sie, ob das in der Konfigurationsdatei eingestellte TempDir (derzeit „[_1]“) beschreibbar ist.',
'unassigned' => 'nicht vergeben',
'File with name \'[_1]\' already exists; Tried to write to tempfile, but open failed: [_2]' => 'Es ist bereits eine Datei namens „[_1]“ vorhanden. Die deshalb angelegte temporäre Datei konnte nicht geöffnet werden: [_2]',
'Could not create upload path \'[_1]\': [_2]' => 'Konnte Pfad „[_1]“ nicht anlegen: [_2]',
'Error writing upload to \'[_1]\': [_2]' => 'Die hochgeladene Datei konnte nicht in „[_1]“ gespeichert werden: [_2]',
'Uploaded file is not an image.' => 'Die hochgeladene Datei ist keine Bilddatei.',
'Can\'t overwrite with the file of different type. Original: [_1] Uploaded: [_2]' => 'Eine vorhandene Datei kann nur mit einer Datei gleichen Typs überschrieben werden. Originaldatei: [_1] Hochgeladene Datei: [_2]',
'<' => '<',
'/' => '/',
## lib/MT/CMS/BanList.pm
'You did not enter an IP address to ban.' => 'Keine IP-Adresse angegeben.',
'The IP you entered is already banned for this blog.' => 'Diese IP-Adresse ist für dieses Weblog bereits gesperrt.',
## lib/MT/CMS/Blog.pm
q{Cloning blog '[_1]'...} => q{Klone Blog „[_1]“...},
'Error' => 'Fehler',
'Finished!' => 'Fertig!',
'General Settings' => 'Allgemeine Einstellungen',
'Plugin Settings' => 'Plugin-Einstellungen',
'New Blog' => 'Neues Blog',
'Can\'t load template #[_1].' => 'Kann Vorlage #[_1] nicht laden.',
'index template \'[_1]\'' => 'Indexvorlage „[_1]“',
'[_1] \'[_2]\'' => '[_1] „[_2]“',
'Publish Site' => 'Site veröffentlichen',
'Invalid blog' => 'Ungültiges Blog',
'Select Blog' => 'Blog wählen',
'Selected Blog' => 'Gewähltes Blog',
'Type a blog name to filter the choices below.' => 'Geben Sie einen Blognamen ein, um die Auswahl einzuschränken.',
'Blog Name' => 'Name des Blogs',
'[_1] changed from [_2] to [_3]' => '[_1] von [_2] in [_3] geändert',
'Saved [_1] Changes' => '[_1]-Änderungen gespeichert',
'Saving permissions failed: [_1]' => 'Die Berechtigungen konnten nicht gespeichert werden: [_1]',
'[_1] \'[_2]\' (ID:[_3]) created by \'[_4]\'' => '[_1] „[_2]“ (ID:[_3]) angelegt von „[_4]“',
'You did not specify a blog name.' => 'Kein Blog-Name angegeben.',
'Site URL must be an absolute URL.' => 'Site-URL muß eine absolute URL sein.',
'Archive URL must be an absolute URL.' => 'Archiv-URLs müssen absolut sein.',
'You did not specify an Archive Root.' => 'Kein Archiv-Wurzelverzeichnis angebeben.',
'The number of revisions to store must be a positive integer.' => 'Die Anzahl der zu speichernden Revisionen muss positiv sein.',
'Blog \'[_1]\' (ID:[_2]) deleted by \'[_3]\'' => 'Weblog „[_1]“ (ID:[_2]) gelöscht von „[_3]“',
'Saving blog failed: [_1]' => 'Das Weblog konnte nicht gespeichert werden: [_1]',
'Error: Movable Type cannot write to the template cache directory. Please check the permissions for the directory called <code>[_1]</code> underneath your blog directory.' => 'Fehler: Movable Type kann nicht in den Vorlagen-Cache-Ordner schreiben. Bitte überprüfen Sie die Rechte für den Ordner <code>[_1]</code> in Ihrem Weblog-Verzeichnis.',
'Error: Movable Type was not able to create a directory to cache your dynamic templates. You should create a directory called <code>[_1]</code> underneath your blog directory.' => 'Fehler: Movable Type konnte kein Verzeichnis zur Zwischenspeicherung Ihrer dynamischen Vorlagen anlegen. Legen Sie daher manuell einen Ordner namens <code>[_1]</code> in Ihrem Weblog-Verzeichnis an.',
'No blog was selected to clone.' => 'Kein zu klonendes Blog ausgewählt.',
'This action can only be run on a single blog at a time.' => 'Dieser Vorgang kann nur für jeweils ein Blog gleichzeitig ausgeführt werden.',
'Invalid blog_id' => 'Ungültige blog_id',
'This action cannot clone website.' => 'Mit dieser Aktion können keine Websites geklont werden.',
'Entries must be cloned if comments and trackbacks are cloned' => 'Um Kommentare und TrackBacks zu klonen, müssen auch die Eintrage geklont werden.',
'Entries must be cloned if comments are cloned' => 'Um Kommentare zu klonen, müssen auch die Einträge geklont werden.',
'Entries must be cloned if trackbacks are cloned' => 'Um TrackBacks zu klonen, müssen auch die Einträge geklont werden.',
## lib/MT/CMS/Category.pm
'The [_1] must be given a name!' => '[_1] muss einen Namen erhalten!',
'Failed to update [_1]: some of [_2] were changed after you opened this screen.' => 'Fehler bei der Aktualisierung von [_1]: mindestens ein(e) [_2] wurde zwischenzeitlich bearbeitet.',
'Tried to update [_1]([_2]), but the object was not found.' => 'Konnte [_1] ([_2]) nicht aktualisieren: Objekt nicht gefunden.',
'Your changes have been made (added [_1], edited [_2] and deleted [_3]). <a href="#" onclick="[_4]" class="mt-rebuild">Publish your site</a> to see these changes take effect.' => 'Ihre Änderungen wurden übernommen ([_1] hinzugefügt, [_2] bearbeitet, [_3] gelöscht). <a href="#" onclick="[_4]" class="mt-rebuild">Veröffentlichen Sie Ihre Site</a>, um die Änderungen wirksam werden zu lassen.',
'Add a [_1]' => '[_1] hinzufügen',
'No label' => 'Keine Bezeichnung',
'Category name cannot be blank.' => 'Kategorienamen dürfen nicht leer sein.',
'Permission denied: [_1]' => 'Zugriff verweigert: [_1]',
'The category name \'[_1]\' conflicts with another category. Top-level categories and sub-categories with the same parent must have unique names.' => 'Der Kategoriename „[_1]“ steht im Konflikt mit einem anderen Kategorienamen. Hauptkategorien und Unterkategorien gleichen Ursprungs müssen eindeutige Namen haben.',
'The category basename \'[_1]\' conflicts with another category. Top-level categories and sub-categories with the same parent must have unique basenames.' => 'Der Kategorie-Basisname „[_1]“ steht im Konflikt mit einem anderen Kategorienamen. Hauptkategorien und Unterkategorien gleichen Ursprungs müssen eindeutige Basisnamen haben.',
'Category \'[_1]\' created by \'[_2]\'' => 'Kategorie „[_1]“ angelegt von „[_2]“',
'The name \'[_1]\' is too long!' => 'Der Name „[_1]“ ist zu lang!',
'Category \'[_1]\' (ID:[_2]) deleted by \'[_3]\'' => 'Kategorie „[_1]“ (ID:[_2]) gelöscht von „[_3]“',
## lib/MT/CMS/Comment.pm
'Edit Comment' => 'Kommentar bearbeiten',
'(untitled)' => '(ohne Überschrift)',
'No such commenter [_1].' => 'Kein Kommentarautor [_1].',
'User \'[_1]\' trusted commenter \'[_2]\'.' => 'Benutzer „[_1]“ hat Kommentarautor „[_2]“ das Vertrauen ausgesprochen',
'User \'[_1]\' banned commenter \'[_2]\'.' => 'Benutzer „[_1]“ hat Kommentarautor „[_2]“ gesperrt',
'User \'[_1]\' unbanned commenter \'[_2]\'.' => 'Benutzer „[_1]“ hat die Sperrung von Kommentarautor „[_2]“ aufgehoben',
'User \'[_1]\' untrusted commenter \'[_2]\'.' => 'Benutzer „[_1]“ hat Kommentarautor „[_2]“ das Vertrauen entzogen',
'Parent comment id was not specified.' => 'ID des Elternkommentars nicht angegeben.',
'Parent comment was not found.' => 'Elternkommentar nicht gefunden.',
'You can\'t reply to unapproved comment.' => 'Sie können nicht auf nicht freigeschaltete Kommentare antworten.',
'Comment (ID:[_1]) by \'[_2]\' deleted by \'[_3]\' from entry \'[_4]\'' => 'Kommentar (ID:[_1]) von „[_2]“ von „[_3]“ aus Eintrag „[_4]“ gelöscht',
'You don\'t have permission to approve this trackback.' => 'Sie haben keine Berechtigung zur Freischaltung dieses TrackBacks.',
'Comment on missing entry!' => 'Kommentar gehört zu fehlendem Eintrag',
'You don\'t have permission to approve this comment.' => 'Sie haben keine Berechtigung zur Freischaltung dieses Kommentars.',
'You can\'t reply to unpublished comment.' => 'Sie können nicht auf nicht veröffentlichte Kommentare antworten.',
'Orphaned comment' => 'Verwaister Kommentar',
## lib/MT/CMS/Common.pm
'The Template Name and Output File fields are required.' => 'Die Felder Vorlagennamen und Ausgabedatei sind erforderlich.',
'Invalid type [_1]' => 'Ungültiger Typ [_1]',
'Invalid ID [_1]' => 'Ungültige ID [_1]',
'Save failed: [_1]' => 'Beim Speichern ist ein Fehler aufgetreten: [_1]',
'Saving object failed: [_1]' => 'Das Objekt konnte nicht gespeichert werden: [_1]',
'\'[_1]\' edited the template \'[_2]\' in the blog \'[_3]\'' => '„[_1]“ hat die Vorlage „[_2]“ des Blogs „[_3]“ bearbeitet',
'\'[_1]\' edited the global template \'[_2]\'' => '„[_1]“ hat die globale Vorlage „[_2]“ bearbeitet',
'Load failed: [_1]' => 'Beim Laden ist ein Fehler augetreten: [_1]',
'(no reason given)' => '(unbekannte Ursache)',
'Invalid filter: [_1]' => 'Ungültiger Filter: [_1]', # Translate - New # OK
'New Filter' => 'Neuer Filter',
'__SELECT_FILTER_VERB' => 'ist',
'All [_1]' => 'Alle [_1]',
'[_1] Feed' => '[_1]-Feed',
'Unknown list type' => 'Unbekannter Listentyp',
'Invalid filter terms: [_1]' => 'Ungültiger Filterbegriff: [_1]',
'An error occured while counting objects: [_1]' => 'Beim Zählen der Objekte ist ein Fehler aufgetreten: [_1]',
'An error occured while loading objects: [_1]' => 'Beim Laden der Objekte ist ein Fehler aufgetreten: [_1]',
'Removing tag failed: [_1]' => 'Das Tag konnte nicht entfernt werden: [_1]',
'Removing [_1] failed: [_2]' => '[_1] konnte nicht entfernt werden: [_2]',
'System templates can not be deleted.' => 'Systemvorlagen können nicht gelöscht werden',
'The selected [_1] has been deleted from the database.' => 'Gewählte [_2] aus der Datenbank gelöscht.',
'Saving snapshot failed: [_1]' => 'Speichern des Snapshots fehlgeschlagen: [_1]',
## lib/MT/CMS/Dashboard.pm
'Error: This blog doesn\'t have a parent website.' => 'Fehler: Dieses Blog gehört zu keiner übergeordneten Website',
## lib/MT/CMS/Entry.pm
'New Entry' => 'Neuer Eintrag',
'New Page' => 'Neue Seite',
'pages' => 'Seiten',
'Tag' => 'Tag',
'Entry Status' => 'Eintragsstatus',
'Can\'t load template.' => 'Kann Vorlage nicht laden.',
'Publish error: [_1]' => 'Fehler bei der Veröffentlichung: [_1]',
'Unable to create preview file in this location: [_1]' => 'Kann Vorschaudatei in [_1] nicht erzeugen.',
'New [_1]' => 'Neuer [_1]',
'No such [_1].' => 'Kein [_1].',
'Same Basename has already been used. You should use an unique basename.' => 'Dieser Basisname wird bereits verwendet. Bitte verwenden Sie einen eindeutigen Basisnamen.',
'Your blog has not been configured with a site path and URL. You cannot publish entries until these are defined.' => 'Site Path und URL dieses Weblogs wurden noch nicht konfiguriert. Sie können keine Einträge veröffentlichen, solange das nicht geschehen ist.',
'Invalid date \'[_1]\'; published on dates must be in the format YYYY-MM-DD HH:MM:SS.' => 'Datum \'[_1]\' ungültig. Erforderliches Format ist JJJJ-MM-TT SS:MM:SS.',
'Invalid date \'[_1]\'; published on dates should be real dates.' => 'Datum \'[_1]\' ungültig. Das Datum muss existieren.',
'[_1] \'[_2]\' (ID:[_3]) added by user \'[_4]\'' => '[_1] „[_2]“ (ID:[_3]) hinzugefügt von Benutzer „[_4]“',
'[_1] \'[_2]\' (ID:[_3]) edited and its status changed from [_4] to [_5] by user \'[_6]\'' => '[_1] „[_2]“ (ID:[_3]) bearbeitet und Status geändert von [_4] in [_5] von Benutzer „[_6]“',
'[_1] \'[_2]\' (ID:[_3]) edited by user \'[_4]\'' => '[_1] „[_2]“ (ID:[_3]) bearbeitet von Benutzer „[_4]“',
'Saving placement failed: [_1]' => 'Beim Speichern der Platzierung ist ein Fehler aufgetreten: [_1]',
'Invalid date \'[_1]\'; [_2] dates must be in the format YYYY-MM-DD HH:MM:SS.' => 'Datum \'[_1]\' ungültig. [_2]-Datumsangaben müssen im Format JJJJ-MM-TT HH:MM:SS vorliegen.',
'Invalid date \'[_1]\'; [_2] dates should be real dates.' => 'Datum \'[_1]\' ungültig; [_2]-Daten sollten echte Daten sein.',
'authored on' => 'geschrieben am',
'modified on' => 'bearbeitet am',
'Saving entry \'[_1]\' failed: [_2]' => 'Der Eintrag „[_1]“ konnte nicht gespeichert werden: [_2]',
'Removing placement failed: [_1]' => 'Die Platzierung konnte nicht entfernt werden: [_1]',
'Ping \'[_1]\' failed: [_2]' => 'Ping „[_1]“ fehlgeschlagen: [_2]',
'(user deleted - ID:[_1])' => '(Benutzer gelöscht - ID:[_1])',
'<a href="[_1]">QuickPost to [_2]</a> - Drag this link to your browser\'s toolbar, then click it when you are visiting a site that you want to blog about.' => '<a href="[_1]">QuickPost für [_2]</a> - Ziehen Sie diesen Link in die Lesezeichenleiste Ihres Browsers und klicken Sie darauf, wenn Sie sich auf einer Website befinden, über die Sie bloggen möchten.',
'[_1] \'[_2]\' (ID:[_3]) deleted by \'[_4]\'' => '[_1] „[_2]“ (ID:[_3]) gelöscht von „[_4]“',
'Need a status to update entries' => 'Statusangabe erforderlich',
'Need entries to update status' => 'Einträge erforderlich',
'One of the entries ([_1]) did not actually exist' => 'Einer der Einträge ([_1]) existiert nicht',
'[_1] \'[_2]\' (ID:[_3]) status changed from [_4] to [_5]' => 'Status von [_1] „[_2]“ (ID:[_3]) von [_4] in [_5] geändert.',
## lib/MT/CMS/Export.pm
'Load of blog \'[_1]\' failed: [_2]' => 'Das Weblog „[_1]“ konnte nicht geladen werden: [_2]',
'You do not have export permissions' => 'Sie haben keine Berechtigung für die Exportfunktion',
## lib/MT/CMS/Filter.pm
'Failed to save filter: label is required.' => 'Filter nicht gespeichert: Bezeichnung erforderlich',
'Failed to save filter: label "[_1]" is duplicated.' => 'Filter nicht gespeichert: Bezeichnung "[_1]" bereits vorhanden.',
'No such filter' => 'Kein entsprechender Filter vorhanden',
'Permission denied' => 'Zugriff verweigert',
'Failed to save filter: [_1]' => 'Filter nicht gespeichert: [_1]',
'Failed to delete filter(s): [_1]' => 'Filter nicht gelöscht: [_1]',
'Removed [_1] filters successfully.' => '[_1] Filter erfolgreich entfernt.',
'[_1] ( created by [_2] )' => '[_1] (angelegt von [_2])',
'(Legacy) ' => '(Altsystem)',
## lib/MT/CMS/Folder.pm
'The folder \'[_1]\' conflicts with another folder. Folders with the same parent must have unique basenames.' => 'Der Ordner „[_1]“ steht in Konflikt mit einem anderen Ordner. Ordner im gleichen Unterordner müssen unterschiedliche Basisnamen haben.',
'Folder \'[_1]\' created by \'[_2]\'' => 'Ordner „[_1]“ angelegt von „[_2]“',
'Folder \'[_1]\' (ID:[_2]) deleted by \'[_3]\'' => 'Ordner „[_1]“ (ID:[_2]) gelöscht von „[_3]“',
## lib/MT/CMS/Import.pm
'Import/Export' => 'Import/Export',
'You do not have import permission' => 'Sie haben keine Berechtigung für die Importfunktion',
'You do not have permission to create users' => 'Sie haben keine Berechtigung, neue Benutzerkonten anzulegen.',
'You need to provide a password if you are going to create new users for each user listed in your blog.' => 'Sollen für die Benutzer Ihres Blogs neue Benutzerkonten angelegt werden, müssen Sie ein Passwort angeben.',
'Importer type [_1] was not found.' => 'Import-Typ [_1] nicht gefunden.',
## lib/MT/CMS/Log.pm
'All Feedback' => 'Jedes Feedback',
'Publishing' => 'Veröffentliche',
'System Activity Feed' => 'Systemaktivitäts-Feed',
'Activity log for blog \'[_1]\' (ID:[_2]) reset by \'[_3]\'' => 'Aktivitätsprotokoll von „[_1]“ (ID:[_2]) on „[_3]“ zurückgesetzt',
'Activity log reset by \'[_1]\'' => 'Aktivitätsprotokoll zurückgesetzt von „[_1]“',
## lib/MT/CMS/Plugin.pm
'Plugin Set: [_1]' => 'Plugin-Gruppe: [_1]',
'Individual Plugins' => 'Individuelle Plugins',
## lib/MT/CMS/Search.pm
'No [_1] were found that match the given criteria.' => 'Keine den Kriterien entsprechenden [_1] gefunden.',
'Entry Body' => 'Eintragstext',
'Extended Entry' => 'Erweiterter Eintrag',
'Keywords' => 'Schlüsselwörter',
'Comment Text' => 'Kommentartext',
'IP Address' => 'IP-Adresse',
'Source URL' => 'Quell-URL',
'Page Body' => 'Seitenkörper',
'Extended Page' => 'Erweiterte Seite',
'Template Name' => 'Vorlagenname',
'Text' => 'Text',
'Linked Filename' => 'Verlinkter Dateiname',
'Output Filename' => 'Ausgabe-Dateiname',
'Log Message' => 'Eintrag',
'Site URL' => 'Site-URL',
'Search & Replace' => 'Suchen & Ersetzen',
'Invalid date(s) specified for date range.' => 'Ungültige Datumsangabe',
'Error in search expression: [_1]' => 'Fehler im Suchausdruck: [_1]',
'Saving object failed: [_2]' => 'Das Objekt konnte nicht gespeichert werden: [_2]',
## lib/MT/CMS/Tag.pm
'New name of the tag must be specified.' => 'Neuer Tagname erforderlich',
'No such tag' => 'Kein solcher Tag',
'Tag name was successfully renamed' => 'Tag erfolgreich umbenannt',
'Error saving entry: [_1]' => 'Fehler beim Speichern des Eintrags: [_1]',
'Added [_1] tags for [_2] entries successfully!' => '[_1] Tags zu [_2] Einträgen erfolgreich hinzugefügt.',
'Error saving file: [_1]' => 'Fehler beim Speichern der Datei: [_1]',
'Tag \'[_1]\' (ID:[_2]) deleted by \'[_3]\'' => 'Tag „[_1]“ (ID:[_2]) gelöscht von „[_3]“',
## lib/MT/CMS/Template.pm
'index' => 'Index',
'archive' => 'Archiv',
'module' => 'Modul',
'widget' => 'Widget',
'email' => 'E-Mail',
'backup' => 'Sichern',
'system' => 'System',
'One or more errors were found in this template.' => 'Die Vorlage enthält einen oder mehrere Fehler.',
'Unknown blog' => 'Unbekanntes Blog',
'One or more errors were found in included template module ([_1]).' => 'Das verwendete Vorlagenmodul [_1] enthält einen oder mehrere Fehler.',
'Global Template' => 'Globale Vorlage',
'Invalid Blog' => 'Ungültiges Blog',
'Global' => 'Global',
'Create template requires type' => 'Zum Anlegen einer Vorlage muss der gewünschter Typ angegeben werden.',
'Archive' => 'Archiv',
'Entry or Page' => 'Eintrag oder Seite',
'New Template' => 'Neuer Vorlage',
'Index Templates' => 'Index-Vorlagen',
'Archive Templates' => 'Archiv-Vorlagen',
'Template Modules' => 'Vorlagenmodule',
'System Templates' => 'System-Vorlagen',
'Email Templates' => 'E-Mail-Vorlagen',
'Template Backups' => 'Vorlagen-Sicherungen',
'Can\'t locate host template to preview module/widget.' => 'Kann Host-Vorlage zur Vorschau auf Modul/Widget nicht finden.',
'Cannot preview without a template map!' => 'Vorschau ohne Vorlagen-Verknüpfung nicht möglich.',
'Lorem ipsum' => 'Lorem ipsum',
'LOREM_IPSUM_TEXT' => 'LOREM_IPSUM_TEXT',
'LORE_IPSUM_TEXT_MORE' => 'LOREM_IPSUM_TEXT_MORE',
'sample, entry, preview' => 'Beispiel, Eintrag, Vorschau',
'Populating blog with default templates failed: [_1]' => 'Standardvorlagen konnten nicht geladen werden: [_1]',
'Setting up mappings failed: [_1]' => 'Die Verknüpfungen konnte nicht angelegt werden: [_1]',
'Can\'t load templatemap' => 'Kann Vorlagenverknüpfungen nicht laden',
'Saving map failed: [_1]' => 'Die Verknüpfungen konnte nicht gespeichert werden: [_1]',
'You should not be able to enter 0 as the time.' => '0 sollte nicht als Zeit eingegeben werden können.',
'You must select at least one event checkbox.' => 'Markieren Sie bitte mindestens ein Ereignis-Auswahlfeld.',
'Template \'[_1]\' (ID:[_2]) created by \'[_3]\'' => 'Vorlage „[_1]“ (ID:[_2]) angelegt von „[_3]“',
'Template \'[_1]\' (ID:[_2]) deleted by \'[_3]\'' => 'Vorlage „[_1]“ (ID:[_2]) gelöscht von „[_3]“',
'No Name' => 'Kein Name',
'Orphaned' => 'Verwaist',
'Global Templates' => 'Globale Vorlagen',
' (Backup from [_1])' => '(Sicherung von [_1])',
'Error creating new template: ' => 'Fehler beim Anlegen der neuen Vorlage',
'Template Referesh' => 'Vorlagen zurücksetzen',
'Skipping template \'[_1]\' since it appears to be a custom template.' => 'Überspringe Vorlage „[_1]“, da sie keine Standardvorlage zu sein scheint.',
'Refreshing template <strong>[_3]</strong> with <a href="?__mode=view&blog_id=[_1]&_type=template&id=[_2]">backup</a>' => 'Setze Vorlage <strong>[_3]</strong>zurück und erstelle dabei eine <a href="?__mode=view&blog_id=[_1]&_type=template&id=[_2]">Sicherung</a>.',
'Skipping template \'[_1]\' since it has not been changed.' => 'Überspringe Vorlage „[_1]“, da sie unverändert ist.',
'Copy of [_1]' => 'Kopie von [_1]',
'Cannot publish a global template.' => 'Kann eine globale Vorlage nicht veröffentlichen.',
'Widget Template' => 'Widgetvorlage',
'Widget Templates' => 'Widgetvorlagen',
'template' => 'Vorlage',
'Restoring widget set [_1]... ' => 'Stelle Widgetgruppe [_1] wieder her...',
'Failed.' => 'Fehlgeschlagen.',
## lib/MT/CMS/Theme.pm
'Theme not found' => 'Thema nicht gefunden',
'Failed to uninstall theme' => 'Bei der Deinstallation des Themas ist ein Fehler aufgetreten',
'Failed to uninstall theme: [_1]' => 'Bei der Deinstallation des Themas ist ein Fehler aufgetreten: [_1]',
'Theme from [_1]' => 'Thema von [_1]',
'Install into themes directory' => 'In Themenverzeichnis installieren',
'Download [_1] archive' => '[_1]-Archiv herunterladen',
'Failed to load theme export template for [_1]: [_2]' => 'Beim Laden der Vorlage für den Themen-Export von [_1] ist ein Fehler aufgetreten: [_2]',
'Failed to save theme export info: [_1]' => 'Beim Speichern der Export-Informationen ist ein Fehler aufgetreten: [_1]',
'Themes Directory [_1] is not writable.' => 'Das Themen-Verzeichis [_1] kann nicht beschrieben werden.',
'Error occurred during exporting [_1]: [_2]' => 'Beim Export von [_1] ist ein Fehler aufgetreten: [_2]',
'Error occurred during finalizing [_1]: [_2]' => 'Beim Abschluss von [_1] ist ein Fehler aufgetreten: [_2]',
'Error occurred while publishing theme: [_1]' => 'Bei der Veröffentlichung des Themas ist ein Fehler aufgetreten: [_1]',
## lib/MT/CMS/Tools.pm
'Password Recovery' => 'Passwort anfordern',
'Error sending mail ([_1]); please fix the problem, then try again to recover your password.' => 'Beim Mailversand ist ein Fehler aufgetreten ([_1]). Überprüfen Sie die entsprechenden Einstellungen und versuchen Sie dann erneut, Ihr Passwort anzufordern.',
'Password reset token not found' => 'Passwort Reset Token nicht gefunden',
'Email address not found' => 'E-Mail-Adresse nicht gefunden',
'User not found' => 'Benutzer nicht gefunden',
'Your request to change your password has expired.' => 'Ihre Anfrage auf Änderung Ihres Passworts ist abgelaufen.',
'Invalid password reset request' => 'Ungültige Anfrage zur Zurücksetzung des Passworts',
'Please confirm your new password' => 'Bitte bestätigen Sie Ihr neues Passwort',
'Passwords do not match' => 'Passwörter stimmen nicht überein.',
'That action ([_1]) is apparently not implemented!' => 'Aktion ([_1]) offenbar nicht implementiert!',
'Error occurred while attempting to [_1]: [_2]' => 'Während [_1] ist ein Fehler aufgetreten: [_2]', # Translate - New # OK
'You don\'t have a system email address configured. Please set this first, save it, then try the test email again.' => 'Bitte richten Sie zuerst eine System-E-Mail-Adresse ein und versuchen Sie dann erneut, die Testmail zu verschicken.',
'Please enter a valid email address' => 'Bitte geben Sie eine gültige E-Mail-Adresse ein.',
'Test email from Movable Type' => 'Testmail von Movable Type',
'This is the test email sent by Movable Type.' => 'Das ist die Test-E-Mail, die Ihre Movable Type-Installation verschickt hat.',
'Mail was not properly sent' => 'Die E-Mail konnte nicht gesendet werden.',
'Test e-mail was successfully sent to [_1]' => 'Testmail erfolgreich an [_1] versandt',
'These setting(s) are overridden by a value in the MT configuration file: [_1]. Remove the value from the configuration file in order to control the value on this page.' => 'Eine Angabe in der Movable Type-Konfigurationsdatei hat Vorrang vor diesen Einstellungen: [_1]. Entfernen Sie das Parameter aus der Konfigurationsdatei, um die entsprechenden Einstellungen hier vornehmen zu können.',
'Email address is [_1]' => 'Die E-Mail-Adresse lautet [_1]',
'Debug mode is [_1]' => 'Debugging ist [_1]',
'Performance logging is on' => 'Performance-Logging aktiviert',
'Performance logging is off' => 'Performance-Logging deaktiviert',
'Performance log path is [_1]' => 'Pfad der Performance-Logs: [_1]',
'Performance log threshold is [_1]' => 'Schwellenwert für Performance-Logging: [_1]',
'[_1] is [_2]' => '[_1] ist [_2]',
'none' => 'Kein(e)',
'System Settings Changes Took Place' => 'Es wurden Änderungen an den Systemeinstellungen vorgenommen.',
'Invalid password recovery attempt; can\'t recover password in this configuration' => 'Ungültiger Versuch zur Passwortanforderung. Passwörter können in dieser Konfiguration nicht angefordert werden.',
'Invalid author_id' => 'Ungültige Autoren-ID',
'Backup & Restore' => 'Sichern & Wiederherstellen',
'Temporary directory needs to be writable for backup to work correctly. Please check TempDir configuration directive.' => 'Das temporäre Verzeichnis muss zur Sicherung beschreibbar sein. Bitte überprüfen Sie Ihre TempDir-Einstellung.',
'Temporary directory needs to be writable for restore to work correctly. Please check TempDir configuration directive.' => 'Das temporäre Verzeichnis muss zur Wiederherstellung beschreibbar sein. Bitte überprüfen Sie Ihre TempDir-Einstellung.',
'No website could be found. You must create a website first.' => 'Keine Website gefunden. Bitte legen Sie zuerst eine Website an.',
'[_1] is not a number.' => '[_1] ist keine Zahl.',
'Copying file [_1] to [_2] failed: [_3]' => 'Die Datei [_1] konnte nicht nach [_2] kopiert werden: [_3]',
'Specified file was not found.' => 'Angegebene Datei nicht gefunden.',
'[_1] successfully downloaded backup file ([_2])' => '[_1] hat Sicherungsdatei erfolgreich heruntergeladen ([_2])',
'MT::Asset#[_1]: ' => 'MT::Asset#[_1]: ',
'Some of the actual files for assets could not be restored.' => 'Einige Assetdateien konnten nicht wiederhergestellt werden.',
'Please use xml, tar.gz, zip, or manifest as a file extension.' => 'Bitte verwenden Sie xml, tar.gz, zip, oder manifest als Dateierweiterung.',
'Unknown file format' => 'Unbekanntes Dateiformat',
'Some objects were not restored because their parent objects were not restored.' => 'Einige Objekte wurden nicht wiederhergestellt, da ihre Elternobjekte nicht wiederhergestellt wurden.',
'Detailed information is in the <a href=\'javascript:void(0)\' onclick=\'closeDialog(\"[_1]\")\'>activity log</a>.' => 'Details finden Sie im <a href=\"javascript:void(0);\" onclick=\"closeDialog(\'[_1]\');\">Aktivitätsprotokoll</a>.',
'[_1] has canceled the multiple files restore operation prematurely.' => '[_1] hat die Wiederherstellung mehrerer Dateien vorzeitig abgebrochen.',
'Changing Site Path for the blog \'[_1]\' (ID:[_2])...' => 'Ändere Sitepfad für Weblog„[_1]“ (ID:[_2])...',
'Removing Site Path for the blog \'[_1]\' (ID:[_2])...' => 'Entferne Sitepfad für Weblog „[_1]“ (ID:[_2])...',
'Changing Archive Path for the blog \'[_1]\' (ID:[_2])...' => 'Ändere Archivpfad für Weblog „[_1]“ (ID:[_2])...',
'Removing Archive Path for the blog \'[_1]\' (ID:[_2])...' => 'Entferne Archivpfadfür Weblog „[_1]“ (ID:[_2])...',
'Changing file path for the asset \'[_1]\' (ID:[_2])...' => 'Ändere Pfad für Asset „[_1]“ (ID:[_2])...',
'Please upload [_1] in this page.' => 'Bitte laden Sie [_1] in diese Seite hoch.',
'File was not uploaded.' => 'Datei wurde nicht hochgeladen.',
'Restoring a file failed: ' => 'Eine Datei wurde nicht wiederhergestellt: ',
'Some of the files were not restored correctly.' => 'Einige Daten wurden nicht korrekt wiederhergestellt.',
'Successfully restored objects to Movable Type system by user \'[_1]\'' => 'Objekte erfolgreich wiederhergestellt durch Benutzer „[_1]“',
'Can\'t recover password in this configuration' => 'Passwörter können in dieser Konfiguration nicht angefordert werden',
'Invalid user name \'[_1]\' in password recovery attempt' => 'Ungültiger Benutzername „[_1]“ zur Passwortanforderung verwendet',
'User name or password hint is incorrect.' => 'Benutzername oder Antwort auf Erinnerungsfrage falsch.',
'User has not set pasword hint; cannot recover password' => 'Benutzer hat Erinnerungsfrage nicht gesetzt; Passwort kann deshalb nicht angefordert werden',
'Invalid attempt to recover password (used hint \'[_1]\')' => 'Ungültiger Versuch einer Passwortanforderung (verwendeter Erinnerungssatz: „[_1]“',
'User \'[_1]\' (user #[_2]) does not have email address' => 'Benutzer „[_1]“ (#[_2]) hat keine E-Mail-Adresse',
'A password reset link has been sent to [_3] for user \'[_1]\' (user #[_2]).' => 'Link zum Zurücksetzen des Passworts für Benutzer „[_1]“ (#[_2]) an [_3] geschickt.',
'Some objects were not restored because their parent objects were not restored. Detailed information is in the <a href="javascript:void(0);" onclick="closeDialog(\'[_1]\');">activity log</a>.' => 'Einige Objekte wurden nicht wiederhergestellt, da ihre Elternobjekte nicht widerhergestellt wurden. Details finden Sie im <a href="javascript:void(0);" onclick="closeDialog(\'[_1]\');">Aktivitätsprotokoll</a>.',
'[_1] is not a directory.' => '[_1] ist kein Ordner.',
'Error occured during restore process.' => 'Bei der Wiederherstellung ist ein Fehler aufgetreten.',
'Some of files could not be restored.' => 'Einige Dateien konnten nicht wiederhergestellt werden.',
'Manifest file \'[_1]\' is too large. Please use import direcotry for restore.' => 'Die Manifest-Datei „[_1]“ ist zu groß. Laden Sie die Datei zur Wiederherstellung daher stattdessen in das Import-Verzeichnis hoch.',
'Blog(s) (ID:[_1]) was/were successfully backed up by user \'[_2]\'' => 'Weblog(s) (ID:[_1]) erfolgreich gesichert von Benutzer „[_2]“',
'Movable Type system was successfully backed up by user \'[_1]\'' => 'Movable Type-System erfolgreich gesichert von Benutzer „[_1]“',
'Some [_1] were not restored because their parent objects were not restored.' => 'Einige [_1] wurden nicht wiederhergestellt, da ihre Elternobjekte nicht wiederhergestellt wurden.',
'Recipients for lockout notification' => 'Empfänger von Sperr-Benachrichtigungen',
'User lockout limit' => 'Anzahl Versuche bis Kontosperrung',
'User lockout interval' => 'Zeitraum bis Kontosperrung',
'IP address lockout limit' => 'Anzahl Versuche bis IP-Sperrung',
'IP address lockout interval' => 'Zeitraum bis IP-Sperrung',
'Lockout IP address whitelist' => 'Diese IP-Adresse nie sperren',
## lib/MT/CMS/TrackBack.pm
'(Unlabeled category)' => '(Namenlose Kategorie)',
'Ping (ID:[_1]) from \'[_2]\' deleted by \'[_3]\' from category \'[_4]\'' => 'Ping (ID:[_1]) von „[_2]“ von „[_3]“ aus Kategorie „[_4]“ gelöscht',
'(Untitled entry)' => '(Namenloser Eintrag)',
'Ping (ID:[_1]) from \'[_2]\' deleted by \'[_3]\' from entry \'[_4]\'' => 'Ping (ID:[_1]) von „[_2]“ von „[_3]“ aus Eintrag „[_4]“ gelöscht',
'No Excerpt' => 'Kein Auszug',
'No Title' => 'Keine Überschrift',
'Orphaned TrackBack' => 'Verwaistes TrackBack',
'category' => 'Kategorien',
## lib/MT/CMS/User.pm
'Create User' => 'Benutzerkonto anlegen',
'Can\'t load role #[_1].' => 'Kann Rolle #[_1] nicht laden.',
'Role name cannot be blank.' => 'Rollenname erforderlich.',
'Another role already exists by that name.' => 'Es ist bereits eine Rolle mit diesem Namen vorhanden.',
'You cannot define a role without permissions.' => 'Es können keine Rollen ohne Berechtigungen definiert werden.',
'Invalid type' => 'Ungültiger Typ',
'Invalid ID given for personal blog theme.' => 'Ungültige ID für Thema der persönlichen Blogs',
'Invalid ID given for personal blog clone location ID.' => 'Ungültige ID für Klonvorlage der persönlichen Blogs',
'Minimum password length must be integer and greater than zero.' => 'Die Mindest-Passwortlänge muss eine ganze Zahl größer null sein.', # Translate - New # OK
'If personal blog is set, the personal blog location are required.' => 'Zur Erzeugung persönlicher Blogs muss ein Speicherort angegeben werden.',
'Select a entry author' => 'Eintragsautor wählen',
'Select a page author' => 'Seitenautor wählen',
'Selected author' => 'Gewählter Autor',
'Type a username to filter the choices below.' => 'Geben Sie einen Benutzernamen ein, um die Auswahl einzuschränken',
'Select a System Administrator' => 'Systemadministrator wählen',
'Selected System Administrator' => 'Gewählter Systemadministrator',
'System Administrator' => 'Systemadministrator',
'(newly created user)' => '(neu angelegter Benutzer)',
'Select Website' => 'Website wählen',
'Website Name' => 'Name der Website',
'Websites Selected' => 'Gewählte Websites',
'Select Blogs' => 'Weblogs wählen',
'Blogs Selected' => 'Gewählte Weblogs',
'Select Users' => 'Gewählte Benutzer',
'Users Selected' => 'Gewählte Benutzer',
'Select Roles' => 'Rollen awählen',
'Roles Selected' => 'Gewählte Rollen',
'Grant Permissions' => 'Berechtigungen zuweisen',
'You cannot delete your own association.' => 'Sie können nicht Ihre eigene Verknüpfung löschen.',
'[_1]\'s Assciations' => 'Verknüpfungen von [_1]', # Translate - New # OK
'You cannot delete your own user record.' => 'Sie können nicht Ihr eigenes Benutzerkonto löschen.',
'You have no permission to delete the user [_1].' => 'Keine Berechtigung zum Löschen von Benutzer [_1].',
'User requires username' => 'Benutzername erforderlich',
'User requires display name' => 'Anzeigename erforderlich',
'User requires password' => 'Passwort erforderlich',
'User \'[_1]\' (ID:[_2]) created by \'[_3]\'' => 'Benutzer „[_1]“ (ID:[_2]) angelegt von „[_3]“',
'User \'[_1]\' (ID:[_2]) deleted by \'[_3]\'' => 'Benutzer „[_1]“ (ID:[_2]) gelöscht von „[_3]“',
'represents a user who will be created afterwards' => 'steht für ein Benutzerkonto, das später angelegt werden wird',
## lib/MT/CMS/Website.pm
'New Website' => 'Neue Website',
'Website \'[_1]\' (ID:[_2]) deleted by \'[_3]\'' => 'Website „[_1]“ (ID: [_2]) gelöscht von „[_3]“',
'Selected Website' => 'Gewählte Website',
'Type a website name to filter the choices below.' => 'Geben Sie einen Namen ein, um die Auswahl einzuschränken.',
'Can\'t load website #[_1].' => 'Kann Website #[_1] nicht laden.',
'Blog \'[_1]\' (ID:[_2]) moved from \'[_3]\' to \'[_4]\' by \'[_5]\'' => 'Blog „[_1]“ (ID: [_2]) von „[_5]“ von „[_3]“ nach „[_4]“ verschoben',
## lib/MT/Comment.pm
'Comment' => 'Kommentar',
'Search other comments from this anonymous commenter' => 'Andere Kommentare von diesem anonymen Kommentar-Autoren suchen',
'__ANONYMOUS_COMMENTER' => 'Anonym',
'Search other comments from this deleted commenter' => 'Andere Kommentare von diesem gelöschten Kommentar-Autoren suchen',
'(Deleted)' => '(Gelöscht)',
'Edit this [_1] commenter.' => 'Diesen [_1] Kommentar-Autor bearbeiten',
'Comments on [_1]: [_2]' => 'Kommentare zu [_1]: [_2]',
'Approved' => 'Freigeschaltet',
'Unapproved' => 'Nicht freigeschaltet',
'Not spam' => 'Nicht Spam',
'Reported as spam' => 'Als Spam gemeldet',
'All comments by [_1] \'[_2]\'' => 'Alle Kommentare von [_1] „[_2]“',
'Commenter' => 'Kommentarautor',
'Load of entry \'[_1]\' failed: [_2]' => 'Der Eintrag „[_1]“ konnte nicht geladen werden: [_2]',
'Entry/Page' => 'Eintrag/Seite',
'Comments on My Entries/Pages' => 'Kommentare zu meinen Einträgen/Seiten',
'Commenter Status' => 'Kommentarautoren-Status',
'Non-spam comments' => 'Gültige Kommentare',
'Non-spam comments on this website' => 'Gültige Kommentare auf dieser Website',
'Pending comments' => 'Zu moderierende Kommentare',
'Published comments' => 'Veröffentlichte Kommentare',
'Comments on my entries/pages' => 'Kommentare zu meinen Einträgen/Seiten',
'Comments in the last 7 days' => 'Kommentare der letzten 7 Tage',
'Spam comments' => 'Spam-Kommentare',
## lib/MT/Compat/v3.pm
'uses: [_1], should use: [_2]' => 'verwendet [_1], sollte [_2] verwenden',
'uses [_1]' => 'verwendet [_1]',
'No executable code' => 'Kein ausführbarer Code',
'Publish-option name must not contain special characters' => 'Der Optionsname darf keine Sonderzeichen enthalten.',
## lib/MT/Component.pm
'Loading template \'[_1]\' failed: [_2]' => 'Die Vorlage „[_1]“ konnte nicht geladen werden: [_2]',
## lib/MT/ConfigMgr.pm
'Alias for [_1] is looping in the configuration.' => 'Alias für [_1] bildet eine Schleife.',
'Error opening file \'[_1]\': [_2]' => 'Fehler beim Öffnen der Datei „[_1]“: [_2]',
'Config directive [_1] without value at [_2] line [_3]' => 'Konfigurationsanweisung [_1] ohne Wert [_2] in Zeile [_3]',
'No such config variable \'[_1]\'' => 'Konfigurationsvariable „[_1]“ nicht vorhanden',
## lib/MT/Config.pm
'Configuration' => 'Konfiguration',
## lib/MT/Core.pm
'This is usually \'localhost\'.' => 'Meistens „localhost“',
'The physical file path for your SQLite database. ' => 'Physischer Pfad zur SQLite-Datenbank',
'[_1] in [_2]: [_3]' => '[_1] in [_2]: [_3]',
'option is required' => 'Option erforderlich.',
'Days must be a number.' => 'Tage müssen als Zahl angegeben werden.', # Translate - New # OK
'Invalid date.' => 'Ungültiges Datum', # Translate - New # OK
'[_1] [_2] between [_3] and [_4]' => '[_1] [_2] zwischen [_3] und [_4]',
'[_1] [_2] since [_3]' => '[_1] [_2] seit',
'[_1] [_2] or before [_3]' => '[_1] [_2] oder bevor [_3]',
'[_1] [_2] these [_3] days' => '[_1] [_2] dieser [_3] Tage',
'[_1] [_2] future' => '[_1] [_2] in der Zukunft',
'[_1] [_2] past' => '[_1] [_2] zurück',
'<mt:var name="[_1]"> [_2] [_3] [_4]' => '<mt:var name="[_1]"> [_2] [_3] [_4]',
'Invalid parameter.' => 'Parameter ungültig.',
'[_1] [_3] [_2]' => '[_1] [_3] [_2]',
'No Label' => 'Keine Bezeichnung',
'*User deleted*' => 'Benutzer gelöscht',
'(system)' => '(System)',
'*Website/Blog deleted*' => 'Website/Blog gelöscht',
'My [_1]' => 'Meine [_1]',
'[_1] of this Website' => '[_1] dieser Website',
'IP Banlist is disabled by system configuration.' => 'Die IP-Sperrliste ist systemweit deaktiviert.',
'Address Book is disabled by system configuration.' => 'Das Adressbuch ist systemweit deaktiviert.',
'Error creating performance logs directory, [_1]. Please either change the permissions to make it writable or specify an alternate using the PerformanceLoggingPath configuration directive: [_2]' => 'Beim Anlegen des Leistungsprotrokolls-Verzeichnis ist ein Fehler aufgetreten: [_1]. Bitte vergeben Sie entweder Schreibrechte für das gewählte Verzeichnis oder geben Sie über das Konfigurationsparameter „PerformanceLoggingPath“ ein anderes an: [_2]',
'Error creating performance logs: PerformanceLoggingPath setting must be a directory path, not a file: [_1]' => 'Beim Anlegen des Leistungsprotrokolls ist ein Fehler aufgetreten: das Konfigurationsparameter „PerformanceLoggingPath“ muss auf ein Verzeichnis, nicht auf eine Datei zeigen',
'Error creating performance logs: PerformanceLoggingPath directory exists but is not writeable: [_1]' => 'Beim Anlegen des Leistungsprotrokolls ist ein Fehler aufgetreten: das PerformanceLoggingPath-Verzeichnis ist vorhanden, kann aber nicht beschrieben werden: [_1]',
'MySQL Database (Recommended)' => 'MySQL-Datenbank (empfohlen)',
'PostgreSQL Database' => 'PostgreSQL-Datenbank',
'SQLite Database' => 'SQLite-Datenbank',
'SQLite Database (v2)' => 'SQLite-Datenbank (v2)',
'Database Server' => 'Hostname',
'Database Name' => 'Datenbankname',
'Password' => 'Passwort',
'Database Path' => 'Datenbankpfad',
'Database Port' => 'Port',
'Database Socket' => 'Socket',
'ID' => 'ID',
'Date Created' => 'Angelegt',
'Date Modified' => 'Bearbeitet',
'Author Name' => 'Autorenname',
'Legacy Quick Filter' => 'Schnellfilter (Altsystem)',
'My Items' => 'Meine Elemente',
'Log' => 'Log',
'Activity Feed' => 'Aktivitäts-Feed',
'Folder' => 'Ordner',
'Trackback' => 'TrackBack',
'Manage Commenters' => 'Kommentar-Autoren verwalten',
'Member' => 'Mitglied',
'Permission' => 'Berechtigung',
'IP addresses' => 'IP-Adressen',
'IP Banning Settings' => 'IP-Sperren-Einstellungen',
'Contact' => 'Kontakt',
'Manage Address Book' => 'Adressbuch verwalten',
'Filter' => 'Zeigen',
'Convert Line Breaks' => 'Zeilenumbrüche konvertieren',
'Rich Text' => 'Grafischer Editor',
'Movable Type Default' => 'Movable Type-Standard',
'weblogs.com' => 'weblogs.com',
'google.com' => 'google.com',
'Classic Blog' => 'Klassisches Blog',
'Publishes content.' => 'Veröffentlicht Inhalte.',
'Synchronizes content to other server(s).' => 'Synchronisiert Inhalte mit anderen Servern.',
'Refreshes object summaries.' => 'Setzt Object Summaries zurück',
'Adds Summarize workers to queue.' => 'Fügt Summarize Workers zur Warteschlange hinzu',
'zip' => 'ZIP',
'tar.gz' => 'tar.gz',
'Entries List' => 'Eintragsliste',
'Blog URL' => 'Blog-URL',
'Blog ID' => 'Blog-ID',
'Entry Excerpt' => 'Eintragsauszug',
'Entry Link' => 'Eintragslink',
'Entry Extended Text' => 'Erweiterter Text',
'Entry Title' => 'Eintragstitel',
'If Block' => 'If-Block',
'If/Else Block' => 'If-Else-Block',
'Include Template Module' => 'Include-Vorlagenmodul',
'Include Template File' => 'Include-Vorlagendatei',
'Get Variable' => 'Variable lesen',
'Set Variable' => 'Variable setzen',
'Set Variable Block' => 'Variablenblock setzen',
'Widget Set' => 'Widgetgruppe',
'Publish Scheduled Entries' => 'Zeitgeplante Einträge veröffentlichen',
'Add Summary Watcher to queue' => 'Summary Watchers zur Warteschlange hinzufügen',
'Junk Folder Expiration' => 'Junk-Ordner-Einstellungen',
'Remove Temporary Files' => 'Temporäre Dateien löschen',
'Purge Stale Session Records' => 'Abgelaufene Sessiondaten löschen ',
'Remove expired lockout data' => 'Abgelaufene Sperrdaten löschen',
'Purge Unused FileInfo Records' => 'Nicht verwendete FileInfo-Einträge löschen', # Translate - New # OK
'Manage Website' => 'Website verwalten',
'Manage Blog' => 'Blog verwalten',
'Manage Website with Blogs' => 'Website mit Blogs verwalten',
'Post Comments' => 'Kommentare schreiben',
'Create Entries' => 'Neuer Eintrag',
'Edit All Entries' => 'Alle Einträge bearbeiten',
'Manage Assets' => 'Assets verwalten',
'Manage Categories' => 'Kategorien verwalten',
'Change Settings' => 'Einstellungen ändern',
'Manage Tags' => 'Tags verwalten',
'Manage Templates' => 'Vorlagen verwalten',
'Manage Feedback' => 'Feedback verwalten',
'Manage Pages' => 'Seiten verwalten',
'Manage Users' => 'Benutzer verwalten',
'Manage Themes' => 'Themen verwalten',
'Publish Entries' => 'Einträge veröffentlichen',
'Save Image Defaults' => 'Bild-Voreinstellungen speichern',
'Send Notifications' => 'Benachrichtigungen versenden',
'Set Publishing Paths' => 'Veröffentlichungspfade setzen',
'View Activity Log' => 'Aktivitätsprotokoll ansehen',
'Create Blogs' => 'Blogs anlegen',
'Create Websites' => 'Website anlegen',
'Manage Plugins' => 'Plugins verwalten',
'View System Activity Log' => 'Systemaktivitätsprotokoll einsehen',
## lib/MT/DefaultTemplates.pm
'Archive Index' => 'Archivindex',
'Stylesheet' => 'Stylesheet',
'JavaScript' => 'JavaScript',
'Feed - Recent Entries' => 'Feed - Aktuelle Einträge',
'RSD' => 'RSD',
'Monthly Entry Listing' => 'Einträge nach Monat',
'Category Entry Listing' => 'Einträge nach Kategorie',
'Comment Listing' => 'Liste der Kommentare',
'Improved listing of comments.' => 'Verbesserte Kommentarverwaltung',
'Comment Response' => 'Kommentar-Antworten',
'Displays error, pending or confirmation message for comments.' => 'Zeigt Bestätigungs-, Moderations- und Fehlermeldungen zu neuen Kommentaren an',
'Comment Preview' => 'Kommentarvorschau',
'Displays preview of comment.' => 'Zeigt eine Vorschau des Kommentars an',
'Dynamic Error' => 'Dynamischer Fehler',
'Displays errors for dynamically published templates.' => 'Zeigt Fehlermeldungen für dynamisch veröffentlichte Vorlagen an',
'Popup Image' => 'Popup-Bild',
'Displays image when user clicks a popup-linked image.' => 'Zeigt Bilder als Pop-Ups an, wenn auf ein Vorschaubild geklickt wird ',
'Displays results of a search.' => 'Zeigt Suchergebnisse an',
'About This Page' => 'Über diese Seite',
'Archive Widgets Group' => 'Archiv-Widgetgruppe',
'Current Author Monthly Archives' => 'Monatsarchive des aktuellen Autors',
'Calendar' => 'Kalendar',
'Creative Commons' => 'Creative Commons',
'Home Page Widgets Group' => 'Startseiten-Widgetgruppe',
'Monthly Archives Dropdown' => 'Monatsarchive (Dropdown)',
'Page Listing' => 'Seitenübersicht',
'Powered By' => 'Powered by',
'Syndication' => 'Syndizierung',
'Technorati Search' => 'Technorati-Suche',
'Date-Based Author Archives' => 'Datumsbasierte Autorenarchive',
'Date-Based Category Archives' => 'Datumsbasierte Kategoriearchive',
'OpenID Accepted' => 'OpenID unterstützt',
'Comment throttle' => 'Kommentarbegrenzung',
'Commenter Confirm' => 'Kommentarautorenbestätigung',
'Commenter Notify' => 'Kommentarautorenbenachrichtigung',
'New Comment' => 'Neuer Kommentar',
'New Ping' => 'Neuer Ping',
'Entry Notify' => 'Eintragsbenachrichtigung',
'Subscribe Verify' => 'Abonnementbestätigung',
'User Lockout' => 'Kontensperre',
'IP Address Lockout' => 'IP-Sperre',
## lib/MT/Entry.pm
'[_1] ( id:[_2] ) does not exists.' => '[_1] (ID: [_2]) nicht vorhanden.',
'Entries from category: [_1]' => 'Einträge aus Kategorie [_1]',
'NONE' => 'KEIN(E)',
'Draft' => 'Entwurf',
'Published' => 'Veröffentlicht',
'Reviewing' => 'In Prüfung',
'Scheduled' => 'Zu bestimmtem Zeitpunkt',
'Junk' => 'Spam',
'Entries by [_1]' => 'Einträge nach [_1]',
'record does not exist.' => 'Eintrag nicht vorhanden.',
'Review' => 'Zur Überprüfung',
'Future' => 'Künftig',
'Spam' => 'Spam',
'Accept Comments' => 'Kommentare annehmen',
'Body' => 'Text',
'Extended' => 'Erweiterter Text',
'Format' => 'Format',
'Accept Trackbacks' => 'TrackBacks annehmen',
'Publish Date' => 'Zeitpunkt der Veröffentlichung',
'Link' => 'Link',
'Primary Category' => 'Hauptkategorie',
'-' => '-',
'__PING_COUNT' => 'TrackBacks',
'Date Commented' => 'Kommentardatum',
'Author ID' => 'ID des Autors',
'My Entries' => 'Meine Einträge',
'Published Entries' => 'Veröffentlichte Einträge',
'Unpublished Entries' => 'Unveröffentlichte Einträge',
'Scheduled Entries' => 'Zeitgeplante Einträge',
'Entries Commented on in the Last 7 Days' => 'Einträge mit Kommentaren in den letzten 7 Tagen',
## lib/MT/FileMgr/DAV.pm
'DAV connection failed: [_1]' => 'DAV-Verbindung fehlgeschlagen: [_1]',
'DAV open failed: [_1]' => 'DAV-„open“ fehlgeschlagen: [_1]',
'DAV get failed: [_1]' => 'DAV-„get“ fehlgeschlagen: [_1]',
'DAV put failed: [_1]' => 'DAV-„put“ fehlgeschlagen: [_1]',
'Deleting \'[_1]\' failed: [_2]' => '„[_1]“ konnte nicht gelöscht werden: [_2]',
'Creating path \'[_1]\' failed: [_2]' => 'Das Verzeichnis „[_1]“ konnte nicht angelegt werden: [_2]',
'Renaming \'[_1]\' to \'[_2]\' failed: [_3]' => '„[_1]“ konnte nicht in “[_2]“ umbenannt werden: [_3]',
## lib/MT/FileMgr/FTP.pm
## lib/MT/FileMgr/Local.pm
## lib/MT/FileMgr/SFTP.pm
'SFTP connection failed: [_1]' => 'SFTP-Verbindung fehlgeschlagen: [_1]',
'SFTP get failed: [_1]' => 'SFTP-„get“ fehlgeschlagen: [_1]',
'SFTP put failed: [_1]' => 'SFTP-„put“ fehlgeschlagen: [_1]',
## lib/MT/Filter.pm
'Filters' => 'Filter',
'Invalid filter type [_1]:[_2]' => 'Dateityp [_1] ungültig: [_2]',
'Invalid sort key [_1]:[_2]' => 'Sortierschlüssel [_1] ungültig: [_2]',
'"editable_terms" and "editable_filters" cannot be specified at the same time.' => '"editable_items" und "editable_filters" können nicht gleichzeitig verwendet werden.',
'System Object' => 'Systemobjekt',
## lib/MT/Folder.pm
## lib/MT/Image/GD.pm
'Can\'t load GD: [_1]' => 'GD kann nicht geladen werden: [_1]',
'Unsupported image file type: [_1]' => 'Nicht unterstütztes Bildformat: [_1]',
'Reading file \'[_1]\' failed: [_2]' => 'Datei „[_1]“ kann nicht gelesen werden: [_2]',
'Reading image failed: [_1]' => 'Bild kann nicht geladen werden: [_1]',
## lib/MT/Image/ImageMagick.pm
'Can\'t load Image::Magick: [_1]' => 'Image::Magick kann nicht geladen werden: [_1]',
'Scaling to [_1]x[_2] failed: [_3]' => 'Bei der Skalierung auf [_1]x[_2] ist ein Fehler aufgetreten: [_3]',
'Cropping a [_1]x[_1] square at [_2],[_3] failed: [_4]' => 'Beim Erstellen des quadratischen Ausschnitts von [_1]x[_2] Pixeln Größe ab [_2],[_3] ist ein Fehler aufgetreten: [_4]',
'Converting image to [_1] failed: [_2]' => 'Bei der Konvertierung des Fotos in [_1] ist ein Fehler aufgetreten: [_2]',
## lib/MT/Image/Imager.pm
'Can\'t load Imager: [_1]' => 'Imager kann nicht geladen werden: [_1]',
## lib/MT/Image/NetPBM.pm
'Can\'t load IPC::Run: [_1]' => 'IPC::Run kann nicht geladen werden: [_1]',
'Cropping to [_1]x[_1] failed: [_2]' => 'Beim Beschneiden auf [_1]x[_1] Pixel ist ein Fehler aufgetreten: [_2]',
'You do not have a valid path to the NetPBM tools on your machine.' => 'Kein gültiger Pfad zu den NetPBM-Tools gefunden.',
## lib/MT/Image.pm
'Invalid Image Driver [_1]' => 'Bildquelle [_1] ungültig',
'Saving [_1] failed: Invalid image file format.' => 'Konnte [_1] nicht speichern: Dateiformat ungültig',
'File size exceeds maximum allowed: [_1] > [_2]' => 'Maximale Dateigröße überschritten: [_1] > [_2]',
## lib/MT/ImportExport.pm
'No Blog' => 'Kein Blog',
'Need either ImportAs or ParentAuthor' => 'Entweder ImportAs oder ParentAuthor erforderlich',
'Creating new user (\'[_1]\')...' => 'Lege neuen Benutzer „[_1]“ an...',
'Saving user failed: [_1]' => 'Das Benutzerkonto konnte nicht gespeichert werden: [_1]',
'Creating new category (\'[_1]\')...' => 'Lege neue Kategorie „[_1]“ an...',
'Saving category failed: [_1]' => 'Die Kategorie konnte nicht gespeichert werden: [_1]',
'Invalid status value \'[_1]\'' => 'Ungültiger Status-Wert „[_1]“',
'Invalid allow pings value \'[_1]\'' => 'Ungültiger Ping-Status „[_1]“',
'Can\'t find existing entry with timestamp \'[_1]\'... skipping comments, and moving on to next entry.' => 'Kann vorhandenen Eintrag mit Zeitstempel „[_1]“ nicht finden; überspringe Kommentare und fahre mit nächstem Eintrag fort...',
'Importing into existing entry [_1] (\'[_2]\')' => 'Importiere in vorhandenen Eintrag [_1] (\„[_2]“)',
'Saving entry (\'[_1]\')...' => 'Speichere Eintrag „[_1]“...',
'ok (ID [_1])' => 'OK (ID [_1])',
'Saving entry failed: [_1]' => 'Der Eintrag konnte nicht gespeichert werden: [_1]',
'Creating new comment (from \'[_1]\')...' => 'Lege neuen Kommentar (von „[_1]“) an...',
'Saving comment failed: [_1]' => 'Der Kommentar konnte nicht gespeichert werden: [_1]',
'Creating new ping (\'[_1]\')...' => 'Erzeuge neuen Ping „[_1]“)...',
'Saving ping failed: [_1]' => 'Der Ping konnte nicht gespeichert werden: [_1]',
'Export failed on entry \'[_1]\': [_2]' => 'Exportvorgang bei Eintrag „[_1]“ fehlgeschlagen: [_2]',
'Invalid date format \'[_1]\'; must be \'MM/DD/YYYY HH:MM:SS AM|PM\' (AM|PM is optional)' => 'Ungültiges Datumsformat „[_1]“; muss „MM/TT/JJJJ HH:MM:SS AM|PM“ sein (AM|PM optional)',
## lib/MT/Import.pm
'Can\'t rewind' => 'Kann nicht zurückspulen',
'Can\'t open \'[_1]\': [_2]' => 'Kann „[_1]“ nicht öffnen: [_2]',
'No readable files could be found in your import directory [_1].' => 'Keine lesbaren Dateien im Import-Verzeichnis [_1] gefunden.',
'Importing entries from file \'[_1]\'' => 'Importiere Einträge aus Datei „[_1]“',
'Couldn\'t resolve import format [_1]' => 'Kann Importformat [_1] nicht auflösen',
'Movable Type' => 'Movable Type',
'Another system (Movable Type format)' => 'Anderes System (Movable Type-Format)',
## lib/MT/IPBanList.pm
'IP Ban' => 'IP-Sperre',
'IP Bans' => 'IP-Sperren',
## lib/MT/JunkFilter.pm
'Action: Junked (score below threshold)' => 'Aktion: Als Junk eingestuft (Bewertung unterschreitet Schwellenwert)',
'Action: Published (default action)' => 'Aktion: Veröffentlicht (Standardaktion)',
'Junk Filter [_1] died with: [_2]' => 'Junk-Filter [_1] abgebrochen: [_2]',
'Unnamed Junk Filter' => 'Namenloser Junk Filter',
'Composite score: [_1]' => 'Gesamtbewertung: [_1]',
## lib/MT/ListProperty.pm
'Can\'t initialize list property [_1].[_2].' => 'Konnte Listeneigenschaft [_1] nicht initialisieren.[_2].', # Translate - New # OK
'Failed to init auto list property [_1].[_2]: Cannot find definition of column [_3].' => 'Initialisierung der Listeneigenschaft [_1] fehlgeschlagen.[_2]: Keine Definition für Spalte [_3] gefunden.',
'Failed to init auto list property [_1].[_2]: unsupported column type.' => 'Initialisierung der Listeneigenschaft [_1] fehlgeschlagen.[_2]:Spaltenart nicht unterstützt.',
## lib/MT/Lockout.pm
'Can\'t find author for id \'[_1]\'' => 'Kein Autor mit ID \'[_1]\' vorhanden',
'User was locked out. IP address: [_1], Username: [_2]' => 'Benutzerkonto gesperrt. IP-Adresse: [_1], Benutzername: [_2]',
'User Was Locked Out' => 'Benutzerkonto gesperrt',
'Error sending mail: [_1]' => 'Fehler beim Versenden von Mail: [_1]',
'IP address was locked out. IP address: [_1], Username: [_2]' => 'IP-Adresse gesperrt. IP-Adresse: [_1], Benutzername: [_2]',
'IP address Was Locked Out' => 'IP-Adresse gesperrt',
'User has been unlocked. Username: [_1]' => 'Benutzerkonto entsperrt. Benutzername: [_1]',
## lib/MT/Log.pm
'Log message' => 'Protokolleintrag',
'Log messages' => 'Protokolleinträge',
'Security' => 'Sicherheit',
'Warning' => 'Warnung',
'Information' => 'Information',
'Debug' => 'Debug',
'Security or error' => 'Sicherheit oder Fehler',
'Security/error/warning' => 'Sicherheit/Fehler/Warnung',
'Not debug' => 'Kein Debug',
'Debug/error' => 'Debug/Fehler',
'Showing only ID: [_1]' => 'Zeige nur ID [_1]',
'Page # [_1] not found.' => 'Seite #[_1] nicht gefunden.',
'Entry # [_1] not found.' => 'Eintrag #[_1] nicht gefunden.',
'Comment # [_1] not found.' => 'Kommentar #[_1] nicht gefunden.',
'TrackBack # [_1] not found.' => 'TrackBack #[_1] nicht gefunden.',
'blog' => 'Blog',
'website' => 'Website',
'search' => 'suchen',
'author' => 'Autor',
'ping' => 'Ping',
'theme' => 'Thema',
'folder' => 'Ordner',
'plugin' => 'Plugin',
'Message' => 'Mitteilung',
'By' => 'Von',
'Class' => 'Typ',
'Level' => 'Stufe',
'Metadata' => 'Metadaten',
'Logs on This Website' => 'Logs dieser Website',
'Show only errors' => 'Nur Fehlermeldungen anzeigen',
## lib/MT/Mail.pm
'Unknown MailTransfer method \'[_1]\'' => 'Unbekannte MailTransfer-Methode „[_1]“',
'Sending mail via SMTP requires that your server have Mail::Sendmail installed: [_1]' => 'Für das Versenden von E-Mail mittels SMTP ist Mail::Sendmail erforderlich: [_1]',
'You do not have a valid path to sendmail on your machine. Perhaps you should try using SMTP?' => 'Kein gültiger Sendmail-Pfad gefunden. Versuchen Sie stattdessen SMTP zu verwenden.',
'Exec of sendmail failed: [_1]' => 'Sendmail konnte nicht ausgeführt werden: [_1]',
## lib/MT/Notification.pm
'Contacts' => 'Kontakte',
'Click to edit contact' => 'Klicken, um Kontakt zu bearbeiten',
'Save Changes' => 'Änderungen speichern',
'Save' => 'OK',
## lib/MT/ObjectAsset.pm
'Asset Placement' => 'Asset-Platzierung',
## lib/MT/ObjectDriver/Driver/DBD/SQLite.pm
## lib/MT/ObjectScore.pm
'Object Score' => 'Objektbewertung',
'Object Scores' => 'Objektbewertungen',
## lib/MT/ObjectTag.pm
'Tag Placement' => 'Tag-Platzierung',
'Tag Placements' => 'Tag-Platzierungen',
## lib/MT/Page.pm
'Pages in folder: [_1]' => 'Seiten im Ordner [_1]',
'Load of blog failed: [_1]' => 'Das Weblog konnte nicht geladen werden: [_1]',
'(root)' => '(Wurzel)',
'My Pages' => 'Meine Seiten',
'Pages in This Website' => 'Seiten in dieser Website',
'Published Pages' => 'Veröffentlichte Seiten',
'Unpublished Pages' => 'Unveröffentlichte Seiten',
'Scheduled Pages' => 'Zeitgeplante Seiten',
'Pages with comments in the last 7 days' => 'Seiten mit Kommentaren in den letzten 7 Tagen',
## lib/MT/Permission.pm
## lib/MT/Placement.pm
'Category Placement' => 'Kategorie-Platzierung',
## lib/MT/PluginData.pm
'Plugin Data' => 'Plugin-Daten',
## lib/MT/Plugin/JunkFilter.pm
'[_1]: [_2][_3] from rule [_4][_5]' => '[_1]: [_2][_3] aus Regel [_4][_5]',
'[_1]: [_2][_3] from test [_4]' => '[_1]: [_2][_3] aus Test [_4]',
## lib/MT/Plugin.pm
'My Text Format' => 'Mein Textformat',
## lib/MT.pm
'Powered by [_1]' => 'Powered by [_1]',
'Version [_1]' => 'Version [_1]',
'http://www.sixapart.com/movabletype/' => 'http://www.sixapart.com/movabletype/',
'Hello, world' => 'Hallo Welt',
'Hello, [_1]' => 'Hallo, [_1]',
'Message: [_1]' => 'Nachricht: [_1]',
'If present, 3rd argument to add_callback must be an object of type MT::Component or MT::Plugin' => 'Falls vorhanden, muss das drite Argument von add_callback ein MT::Component-Objekt oder ein MT::Plugin sein',
'4th argument to add_callback must be a CODE reference.' => 'Viertes Argument von add_callback muss eine CODE-Referenz sein.',
'Two plugins are in conflict' => 'Konflikt zwischen zwei Plugins',
'Invalid priority level [_1] at add_callback' => 'Ungültiger Prioritätslevel [_1] von add_callback',
'Internal callback' => 'Interner Callback',
'Unnamed plugin' => 'Plugin ohne Namen',
'[_1] died with: [_2]' => '[_1] abgebrochen mit [_2]',
'Bad LocalLib config ([_1]): ' => 'LocalLib fehlerhaft konfiguriert ([_1]): ',
'Bad ObjectDriver config' => 'Fehlerhafte ObjectDriver-Einstellungen',
'Bad CGIPath config' => 'CGIPath-Einstellung fehlerhaft',
'Missing configuration file. Maybe you forgot to move mt-config.cgi-original to mt-config.cgi?' => 'Keine Konfigurationsdatei gefunden. Haben Sie möglicheweise vergessen, mt-config.cgi-original in mt-config.cgi umzubennen?',
'Plugin error: [_1] [_2]' => 'Plugin-Fehler: [_1] [_2]',
'Loading template \'[_1]\' failed.' => 'Die Vorlage „[_1]“ konnte nicht geladen werden.',
'Error during building email: [_1]' => 'Fehler bei E-Mail-Generierung: [_1]',
'http://www.movabletype.org/documentation/' => 'http://www.movabletype.org/documentation/',
'OpenID' => 'OpenID',
'LiveJournal' => 'LiveJournal',
'Vox' => 'Vox',
'Google' => 'Google',
'Yahoo!' => 'Yahoo!',
'AIM' => 'AIM',
'WordPress.com' => 'WordPress.com',
'TypePad' => 'TypePad',
'Yahoo! JAPAN' => 'Yahoo! Japan',
'livedoor' => 'livedoor',
'Hatena' => 'Hatena',
'Movable Type default' => 'Movable Type-Standard',
## lib/MT/Revisable/Local.pm
## lib/MT/Revisable.pm
'Bad RevisioningDriver config \'[_1]\': [_2]' => 'Fehlerhaftes RevisioningDriver-Parameter „[_1]“: [_2]',
'Revision not found: [_1]' => 'Revision nicht gefunden: [_1]',
'There aren\'t the same types of objects, expecting two [_1]' => 'Objektarten stimmen nicht überein, erwarte zwei [_1]',
'Did not get two [_1]' => 'Nicht zwei [_1] erhalten',
'Unknown method [_1]' => 'Unbekannte Methode [_1]',
'Revision Number' => 'Revisionsnummer',
## lib/MT/Role.pm
'__ROLE_ACTIVE' => 'Aktiv',
'__ROLE_INACTIVE' => 'Inaktiv',
'Website Administrator' => 'Website-Administrator',
'Can administer the website.' => 'Kann die Website verwalten',
'Blog Administrator' => 'Blog-Administrator',
'Can administer the blog.' => 'Kann das Blog verwalten',
'Editor' => 'Editor',
'Can upload files, edit all entries(categories), pages(folders), tags and publish the site.' => 'Kann Dateien hochladen, alle Einträge, Seiten, Kategorien, Ordner und Tags bearbeiten und die Site veröffentlichen.',
'Can create entries, edit their own entries, upload files and publish.' => 'Kann Einträge anlegen, eigene Einträge bearbeiten und Dateien hochladen und veröffentlichen.',
'Designer' => 'Designer',
'Can edit, manage, and publish blog templates and themes.' => 'Kann Vorlagen und Themen bearbeiten, verwalten und veröffentlichen.',
'Webmaster' => 'Webmaster',
'Can manage pages, upload files and publish blog templates.' => 'Kann Seiten verwalten, Dateien hochladen und Vorlagen veröffentlichen.',
'Contributor' => 'Gastautor',
'Can create entries, edit their own entries, and comment.' => 'Kann Einträge anlegen, eigene Einträge bearbeiten und kommentieren.',
'Moderator' => 'Moderator',
'Can comment and manage feedback.' => 'Kann kommentieren und Feedback verwalten',
'Can comment.' => 'Kann kommentieren',
'__ROLE_STATUS' => 'Status',
## lib/MT/Scorable.pm
'Object must be saved first.' => 'Objekt muss zuerst gespeichert werden.',
'Already scored for this object.' => 'Bewertung für dieses Objekt bereits abgegeben.',
'Could not set score to the object \'[_1]\'(ID: [_2])' => 'Konnte Bewertung für Objekt „[_1]“ (ID: [_2]) nicht speichern.',
## lib/MT/Session.pm
'Session' => 'Sitzung',
## lib/MT/Tag.pm
'Private' => 'Privat',
'Not Private' => 'Nicht privat',
'Tag must have a valid name' => 'Tags müssen gültige Namen haben',
'This tag is referenced by others.' => 'Andere Tags verweisen auf dieses Tag.',
'Tags with Entries' => 'Tags mit Einträgen',
'Tags with Pages' => 'Tags mit Seiten',
'Tags with Assets' => 'Tags mit Assets',
## lib/MT/TaskMgr.pm
'Unable to secure lock for executing system tasks. Make sure your TempDir location ([_1]) is writable.' => 'Konnte Lock für Systemtask nicht setzen. Stellen Sie sicher, daß Schreibrechte für das temporäre Verzeichnis [_1] vorhanden sind.',
'Error during task \'[_1]\': [_2]' => 'Fehler bei Ausführung des Tasks „[_1]“: [_2]',
'Scheduled Tasks Update' => 'Aktualisierung geplanter Aufgaben',
'The following tasks were run:' => 'Folgende Tasks wurden ausgeführt:',
## lib/MT/TBPing.pm
'TrackBack' => 'TrackBack',
'<a href="[_1]">Ping from: [_2] - [_3]</a>' => '<a href="[_1]">Ping von: [_2] - [_3]</a>',
'Trackbacks on [_1]: [_2]' => 'TrackBacks zu [_1]: [_2]',
'Trackback Text' => 'TrackBack-Text',
'Target' => 'Nach',
'From' => 'Von',
'Source Site' => 'Quelle',
'Source Title' => 'Quellname',
'Trackbacks on My Entries/Pages' => 'TrackBacks zu meinen Einträgen/Seiten',
'Non-spam trackbacks' => 'Gültige TrackBacks',
'Non-spam trackbacks on this website' => 'Gültige TrackBacks auf dieser Website',
'Pending trackbacks' => 'Wartende TrackBacks',
'Published trackbacks' => 'Veröffentlichte TrackBacks',
'Trackbacks on my entries/pages' => 'TrackBacks zu meinen Einträgen/Seiten',
'Trackbacks in the last 7 days' => 'TrackBacks der letzten 7 Tage',
'Spam trackbacks' => 'Spam-TrackBacks',
## lib/MT/Template/ContextHandlers.pm
'All About Me' => 'Alles über mich',
'Remove this widget' => 'Dieses Widget entfernen',
'[_1]Publish[_2] your site to see these changes take effect.' => '[_1]Veröffentlichen[_2] Sie Ihre Site, um die Änderungen wirksam werden zu lassen.',
'Actions' => 'Aktionen',
'http://www.movabletype.org/documentation/appendices/tags/%t.html' => 'http://www.movabletype.org/documentation/appendices/tags/%t.html',
'Division by zero.' => 'Teilung durch Null.',
'[_1] is not a hash.' => '[_1] ist kein Hash-Wert.',
'No [_1] could be found.' => 'Keine [_1] gefunden.',
'records' => 'Einträge',
'No template to include was specified' => 'Keine einzubindende Vorlage angegeben',
'Recursion attempt on [_1]: [_2]' => 'Rekursionsversuch bei [_1]: [_2]',
'Can\'t find included template [_1] \'[_2]\'' => 'Kann verwendete Vorlage [_1] „[_1]“ nicht finden',
'Error in [_1] [_2]: [_3]' => 'Fehler in [_1] [_2]: [_3]',
'Writing to \'[_1]\' failed: [_2]' => '„[_1]“ konnte nicht beschrieben werden: [_2]',
'Can\'t find blog for id \'[_1]' => 'Kann Blog zu ID „[_1]“ nicht finden',
'Can\'t find included file \'[_1]\'' => 'Kann verwendete Datei „[_1]“ nicht finden',
'Error opening included file \'[_1]\': [_2]' => 'Fehler beim Öffnen der verwendeten Datei „[_1]“: [_2]',
'Recursion attempt on file: [_1]' => 'Rekursionsversuch bei Datei [_1]',
'Can\'t load user.' => 'Kann Benutzerkonto nicht laden.',
'Can\'t find template \'[_1]\'' => 'Kann Vorlage „[_1]“ nicht finden',
'Can\'t find entry \'[_1]\'' => 'Kann Eintrag „[_1]“ nicht finden',
'Unspecified archive template' => 'Nicht spezifizierte Archivvorlage',
'Error in file template: [_1]' => 'Fehler in Dateivorlage: [_1]',
## lib/MT/Template/Context.pm
'The attribute exclude_blogs cannot take \'[_1]\' for a value.' => '„[_1]“ ist kein gültiger Wert für ein exclude_blogs-Attribut',
'When the same blog IDs are simultaneously listed in the include_blogs and exclude_blogs attributes, those blogs are excluded.' => 'Wenn die gleichen Blog-ID gleichzeitig in den include_blogs- und exclude_blogs-Attributen eines mt:Entries-Befehls verwendet werden, werden die entsprechenden Blogs ausgeschlossen.',
'You used an \'[_1]\' tag outside of the context of a author; perhaps you mistakenly placed it outside of an \'MTAuthors\' container?' => 'Sie haben einen „[_1]“-Vorlagenbefehl außerhalb eines Autoren-Kontexts verwendet - „MTAuthors“-Container erforderlich',
'You used an \'[_1]\' tag outside of the context of an entry; perhaps you mistakenly placed it outside of an \'MTEntries\' container?' => '„[_1]“-Vorlagenbefehl außerhalb eines Eintrags-Kontexts verwendet - „MTEntries“-Container erforderlich',
'You used an \'[_1]\' tag outside of the context of the website; perhaps you mistakenly placed it outside of an \'MTWebsites\' container?' => '„[_1]“-Vorlagenbefehl außerhalb eines Website-Kontexts verwendet - „MTWebsite“-Container erforderlich',
'You used an \'[_1]\' tag outside of the context of the blog; perhaps you mistakenly placed it outside of an \'MTBlogs\' container?' => '„[_1]“-Vorlagenbefehl außerhalb eines Blog-Kontexts verwendet - „MTBlogs“-Container erforderlich',
'You used an \'[_1]\' tag outside of the context of a comment; perhaps you mistakenly placed it outside of an \'MTComments\' container?' => '„[_1]“-Vorlagenbefehl außerhalb eines Kommentar-Kontexts verwendet - „MTComments“-Container erforderlich',
'You used an \'[_1]\' tag outside of the context of a ping; perhaps you mistakenly placed it outside of an \'MTPings\' container?' => '„[_1]“-Vorlagenbefehl außerhalb eines Ping-Kontextes verwendet - „MTPings“-Container erforderlich.',
'You used an \'[_1]\' tag outside of the context of an asset; perhaps you mistakenly placed it outside of an \'MTAssets\' container?' => '„[_1]“-Vorlagenbefehl außerhalb eines Asset-Kontexts verwendet - „MTAssets“-Container erforderlich',
'You used an \'[_1]\' tag outside of the context of a page; perhaps you mistakenly placed it outside of a \'MTPages\' container?' => '„[_1]“-Vorlagenbefehl außerhalb eines Seiten-Kontexts verwendet - „MTPages“-Containers erforderlich',
## lib/MT/TemplateMap.pm
'Archive Mapping' => 'Archiv-Verknüpfung',
'Archive Mappings' => 'Archiv-Verknüpfungen',
## lib/MT/Template.pm
'Template' => 'Vorlage',
'File not found: [_1]' => 'Datei nicht gefunden: [_1]',
'Template load error: [_1]' => 'Fehler beim Laden der Vorlage: [_1]', # Translate - New # OK
'Tried to load the template file from outside of the include path \'[_1]\'' => 'Das System hat versucht, die Vorlagendatei von außerhalb des Include-Pfads \'[_1]\' zu lesen', # Translate - New # OK
'Error reading file \'[_1]\': [_2]' => 'Fehler beim Einlesen der Datei „[_1]“: [_2]',
'Publish error in template \'[_1]\': [_2]' => 'Veröffentlichungsfehler in Vorlage „[_1]“: [_2]',
'Template name must be unique within this [_1].' => 'Vorlagennamen dürfen innerhalb des/der [_1] nicht doppelt vorkommen.',
'You cannot use a [_1] extension for a linked file.' => 'Sie können keine [_1]-Erweiterung für eine verlinkte Datei verwenden.',
'Opening linked file \'[_1]\' failed: [_2]' => 'Die verlinkte Datei „[_1]“ konnte nicht geöffnet werden: [_2]',
'Index' => 'Index',
'Category Archive' => 'Kategoriearchiv',
'Ping Listing' => 'Liste der Pings',
'Comment Error' => 'Kommentarfehler',
'Comment Pending' => 'Kommentar wartet',
'Uploaded Image' => 'Hochgeladendes Bild',
'Module' => 'Modul',
'Widget' => 'Widget',
'Output File' => 'Ausgabedatei',
'Template Text' => 'Vorlagentext',
'Rebuild with Indexes' => 'Einschließlich Indizes neu aufbauen',
'Dynamicity' => 'Dynamik-Art',
'Build Type' => 'Aufbau-Art',
'Interval' => 'Intervall',
## lib/MT/Template/Tags/Archive.pm
'Group iterator failed.' => 'Gruppeniterator fehlgeschlagen.',
'[_1] can be used only with Daily, Weekly, or Monthly archives.' => '[_1] kann nur mit Tages-, Wochen- oder Monatsarchiven verwendet werden.',
'You used an [_1] tag for linking into \'[_2]\' archives, but that archive type is not published.' => 'Sie haben mit einem [_1]-Vorlagenbefehl „[_2]“-Archive verlinkt, ohne diese vorher zu veröffentlichen.',
'You used an [_1] tag outside of the proper context.' => 'Sie haben einen [_1]-Vorlagenbefehl außerhalb seines Kontexts verwendet.',
'Could not determine entry' => 'Konnte Eintrag nicht bestimmen',
## lib/MT/Template/Tags/Asset.pm
'No such user \'[_1]\'' => 'Kein Benutzer „[_1]“',
'You have an error in your \'[_2]\' attribute: [_1]' => 'Fehler im „[_2]“-Attribut: [_1]',
## lib/MT/Template/Tags/Author.pm
'The \'[_2]\' attribute will only accept an integer: [_1]' => 'Das Attribut „[_2]“ erfordert einen Integer: [_1]',
'You used an [_1] without a author context set up.' => '[_1] ohne vorhandenen Autorenkontext verwendet.',
## lib/MT/Template/Tags/Calendar.pm
'Invalid month format: must be YYYYMM' => 'Ungültiges Datumsformat: JJJJMM erforderlich',
'No such category \'[_1]\'' => 'Keine Kategorie „[_1]“',
## lib/MT/Template/Tags/Category.pm
'MT[_1] must be used in a [_2] context' => 'MT[_1] muss in einem [_2]-Kontext stehen',
'Cannot find package [_1]: [_2]' => 'Kann Paket [_1] nicht finden: [_2]',
'Error sorting [_2]: [_1]' => 'Fehler beim Sortieren von [_2]: [_1]',
'Can\'t use sort_by and sort_method together in [_1]' => '"sorty_by" und "sort_method" können nicht gemeinsam in [_1] verwendet werden.',
'[_1] cannot be used without publishing Category archive.' => '[_1] kann nur zusammen mit Kategoriearchiven verwendet werden.',
'[_1] used outside of [_2]' => '[_1] außerhalb [_2] verwendet',
## lib/MT/Template/Tags/Commenter.pm
## lib/MT/Template/Tags/Comment.pm
'The MTCommentFields tag is no longer available; please include the [_1] template module instead.' => 'Der MTCommentFields-Befehl ist nicht mehr verfügbar. Bitte verwenden Sie stattdessen das [_1]-Vorlagenmodul.',
'Comment Form' => 'Kommentarformular',
'To enable comment registration, you need to add a TypePad token in your weblog config or user profile.' => 'Um Kommentarregistrierung zu aktivieren, geben Sie in Ihrer Weblog-Konfiguration oder Ihrem Benutzer-Profil ein TypePad-Token ein.',
## lib/MT/Template/Tags/Entry.pm
'You used <$MTEntryFlag$> without a flag.' => 'Sie haben <$MTEntryFlag$> ohne Flag verwendet.',
'Could not create atom id for entry [_1]' => 'Konnte keine Atom-ID für Eintrag [_1] erzeugen',
## lib/MT/Template/Tags/Folder.pm
## lib/MT/Template/Tags/Misc.pm
'name is required.' => 'Name erforderlich',
'Specified WidgetSet \'[_1]\' not found.' => 'Angegebene Widgetgruppe „[_1]“ nicht gefunden.',
## lib/MT/Template/Tags/Ping.pm
'<\$MTCategoryTrackbackLink\$> must be used in the context of a category, or with the \'category\' attribute to the tag.' => '<\$MTCategoryTrackbackLink\$> muss im Kategoriekontext stehen oder mit dem „category“-Attribut des Tags verwendet werden.',
## lib/MT/Template/Tags/Tag.pm
## lib/MT/Theme/Category.pm
'[_1] top level and [_2] sub categories.' => '[_1] Haupt- und [_2] Unterkategorien',
'[_1] top level and [_2] sub folders.' => '[_1] Haupt- und [_2] Unterordner',
## lib/MT/Theme/Element.pm
'Component \'[_1]\' is not found.' => 'Komponente „[_1]“ nicht gefunden.',
'Internal error: the importer is not found.' => 'Interner Fehler: Importmodul nicht gefunden.',
'Compatibility error occured while applying \'[_1]\': [_2].' => 'Bei der Anwendung von „[_1]“ ist ein Kompatibilitätsfehler aufgetreten: [_2]',
'An Error occured while applying \'[_1]\': [_2].' => 'Bei der Anwendung von „[_1]“ ist ein Fehler aufgetreten: [_2]',
'Fatal error occured while applying \'[_1]\': [_2].' => 'Bei der Anwendung von „[_1]“ ist ein kritischer Fehler aufgetreten: [_2]',
'Importer for \'[_1]\' is too old.' => 'Das Importmodul für „[_1]“ ist zu alt.',
'Theme element \'[_1]\' is too old for this environment.' => 'Das Element „[_1]“ des verwendeten Themas ist veraltet und kann hier nicht eingesetzt werden.',
## lib/MT/Theme/Entry.pm
'[_1] pages' => '[_1] Seiten',
## lib/MT/Theme.pm
'Failed to load theme [_1].' => 'Laden des Themas fehlgeschlagen: [_1]',
'A fatal error occurred while applying element [_1]: [_2].' => 'Bei der Anwendung des Elements [_1] ist ein kritischer Fehler aufgetreten: [_2]',
'An error occurred while applying element [_1]: [_2].' => 'Bei der Anwendung des Elements [_1] ist ein Fehler aufgetreten: [_2]',
'Failed to copy file [_1]:[_2]' => 'Kopieren der Datei [_1] fehlgeschlagen: [_2]',
'Component \'[_1]\' version [_2] or greater is needed to use this theme, but is not installed.' => 'Zur Nutzung dieses Themas ist [_1] in Version [_2] oder neuer erforderlich, aber nicht installiert. ',
'Component \'[_1]\' version [_2] or greater is needed to use this theme, but the installed version is [_3].' => 'Zur Nutzung dieses Themas ist [_1] in Version [_2] oder neuer erforderlich, installiert ist aber Version [_3].',
'Element \'[_1]\' cannot be applied because [_2]' => 'Element „[_1]“ konnte nicht angewendet werden da [_2]',
'There was an error scaling image [_1].' => 'Bei der Skalierung der Bilddatei [_1] ist ein Fehler aufgetreten.',
'There was an error converting image [_1].' => 'Bei der Konvertierung der Bilddatei [_1] ist ein Fehler aufgetreten.',
'There was an error creating thumbnail file [_1].' => 'Bei der Erstellung des Vorschaubilds [_1] ist ein Fehler aufgetreten.',
'Default Prefs' => 'Standard-Voreinstellungen',
'Template Set' => 'Vorlagengruppe',
'Static Files' => 'Statische Dateien',
'Default Pages' => 'Standard-Seiten',
## lib/MT/Theme/Pref.pm
'this element cannot apply for non blog object.' => 'Dieses Element kann nicht auf Nicht-Blog-Elemente angewendet werden.',
'Failed to save blog object: [_1]' => 'Konnte Blog-Objekt nicht speichern: [_1]',
'default settings for [_1]' => 'Standard-Einstellungen für [_1]',
'default settings' => 'Standard-Einstellungen',
## lib/MT/Theme/TemplateSet.pm
'A template set containing [_1] templates, [_2] widgets, and [_3] widget sets.' => 'Vorlagengruppe mit [_1] Vorlagen, [_2] Widgets und [_3] Widget-Gruppen.',
'Widget Sets' => 'Widgetgruppen',
'Failed to make templates directory: [_1]' => 'Fehler bei Erstellung des Vorlagen-Verzeichnisses: [_1]',
'Failed to publish template file: [_1]' => 'Fehler bei Veröffentlichung der Vorlagen-Dateien: [_1]',
'exported_template set' => 'exported_template-Gruppe',
## lib/MT/TheSchwartz/Error.pm
'Job Error' => 'Job-Fehler',
## lib/MT/TheSchwartz/ExitStatus.pm
'Job Exit Status' => 'Job-Zielstatus',
## lib/MT/TheSchwartz/FuncMap.pm
'Job Function' => 'Job-Funktion',
## lib/MT/TheSchwartz/Job.pm
'Job' => 'Job',
## lib/MT/Trackback.pm
## lib/MT/Upgrade/Core.pm
'Upgrading Asset path informations...' => 'Aktualisiere Asset-Pfad-Informationen...',
'Creating initial website and user records...' => 'Lege erste Website und Benutzereinträge an...',
'Error saving record: [_1].' => 'Fehler beim Speichern eines Datensatzes: [_1].',
'Error creating role record: [_1].' => 'Fehler bei der Erstellung eine Rollen-Eintrags: [_1]. ',
'First Website' => 'Erste Website',
'Creating new template: \'[_1]\'.' => 'Erzeuge neue Vorlage: „[_1]“',
'Mapping templates to blog archive types...' => 'Verknüpfe Vorlagen mit Archiven...',
'Assigning custom dynamic template settings...' => 'Weise benutzerspezifische Einstellungen für dynamische Vorlagen zu...',
'Assigning user types...' => 'Weise Benutzerkontenarten zu...',
'Assigning category parent fields...' => 'Weise Elternkategorien zu...',
'Assigning template build dynamic settings...' => 'Weise Einstellungen für dynamische Veröffentlichung zu...',
'Assigning visible status for comments...' => 'Setzte Sichtbarkeitsstatus für Kommentare...',
'Assigning visible status for TrackBacks...' => 'Setzte Sichtbarkeitsstatus für TrackBacks...',
## lib/MT/Upgrade.pm
'Invalid upgrade function: [_1].' => 'Ungültige Upgrade-Funktion: [_1].',
'Error loading class [_1].' => 'Fehler beim Laden der Klasse [_1].',
'Upgrading table for [_1] records...' => 'Aktualisiere Tabelle für [_1]-Einträge...',
'Upgrading database from version [_1].' => 'Aktualisiere Datenbank von Version [_1].',
'Database has been upgraded to version [_1].' => 'Datenbank auf Movable Type-Version [_1] aktualisiert',
'User \'[_1]\' upgraded database to version [_2]' => 'Benutzer „[_1]“ hat Datenbank auf Version [_2] aktualisiert',
'Plugin \'[_1]\' upgraded successfully to version [_2] (schema version [_3]).' => 'Plugin „[_1]“ erfolgreich auf Version [_2] (Schemaversion [_3]) aktualisiert',
'User \'[_1]\' upgraded plugin \'[_2]\' to version [_3] (schema version [_4]).' => 'Benutzer „[_1]“ hat Plugin „[_2]“ erfolgreich auf Version [_3] (Schemaversion [_4]) aktualisiert',
'Plugin \'[_1]\' installed successfully.' => 'Plugin „[_1]“ erfolgreich installiert',
'User \'[_1]\' installed plugin \'[_2]\', version [_3] (schema version [_4]).' => 'Benutzer „[_1]“ hat Plugin „[_2]“ mit Version [_3] (Schemaversion [_4]) installiert',
'Error loading class: [_1].' => 'Fehler beim Laden einer Klasse: [_1]',
'Assigning entry comment and TrackBack counts...' => 'Weise Kommentar- und TrackBack-Zahlen zu...',
'Error saving [_1] record # [_3]: [_2]...' => 'Fehler beim Speichern von [_1]-Eintrag #[_3]: [_2]...',
## lib/MT/Upgrade/v1.pm
'Creating template maps...' => 'Verknüpfe Vorlagen...',
'Mapping template ID [_1] to [_2] ([_3]).' => 'Verknüpfe Vorlage [_1] mit [_2] ([_3])',
'Mapping template ID [_1] to [_2].' => 'Verknüpfe Vorlage [_1] mit [_2]',
'Creating entry category placements...' => 'Lege Kategoriezuweisungen an...',
## lib/MT/Upgrade/v2.pm
'Updating category placements...' => 'Aktualisiere Kategorieanordnung...',
'Assigning comment/moderation settings...' => 'Weise Kommentierungs-/Moderierungs-Einstellungen zu...',
## lib/MT/Upgrade/v3.pm
'Custom ([_1])' => 'Individuell ([_1])',
'This role was generated by Movable Type upon upgrade.' => 'Diese Rolle wurde von Movable Type während einer Aktualisierung angelegt.',
'Removing Dynamic Site Bootstrapper index template...' => 'Entferne Indexvorlage des Dynamic Site Bootstrappers...',
'Creating configuration record.' => 'Erzeuge Konfigurationseintrag...',
'Setting your permissions to administrator.' => 'Setze Ihre Administrationsrechte...',
'Setting blog basename limits...' => 'Setze Basisnamen-Limits...',
'Setting default blog file extension...' => 'Setze Standard-Dateierweitung...',
'Updating comment status flags...' => 'Aktualisiere Kommentarstatus...',
'Updating commenter records...' => 'Aktualisiere Kommentarautoren-Datensätze...',
'Assigning blog administration permissions...' => 'Weise Administrationsrechte zu...',
'Setting blog allow pings status...' => 'Weise Ping-Status zu...',
'Updating blog comment email requirements...' => 'Aktualisiere E-Mail-Einstellungen der Kommentarfunktion...',
'Assigning entry basenames for old entries...' => 'Weise Alteinträgen Basisnamen zu...',
'Updating user web services passwords...' => 'Aktualisierte Passwörter für Webdienste...',
'Updating blog old archive link status...' => 'Aktualisiere Linkstatus der Alteinträge...',
'Updating entry week numbers...' => 'Aktualisiere Wochendaten...',
'Updating user permissions for editing tags...' => 'Weise Nutzerrechte für Tag-Verwaltung zu...',
'Setting new entry defaults for blogs...' => 'Setze Standardwerte für neue Einträge...',
'Migrating any "tag" categories to new tags...' => 'Migriere "Tag"-Kategorien zu neuen Tags...',
'Assigning basename for categories...' => 'Weise Kategorien Basisnamen zu...',
'Assigning user status...' => 'Weise Benuzerstatus zu...',
'Migrating permissions to roles...' => 'Migriere Berechtigung auf Rollen...',
## lib/MT/Upgrade/v4.pm
'Comment Posted' => 'Kommentar veröffentlicht',
'Your comment has been posted!' => 'Ihr Kommentar wurde veröffentlicht!',
'Your comment submission failed for the following reasons:' => 'Ihr Kommentar konnte aus folgenden Gründen nicht abgeschickt werden:',
'[_1]: [_2]' => '[_1]: [_2]',
'Migrating permission records to new structure...' => 'Migriere Benutzerrechte in neue Struktur...',
'Migrating role records to new structure...' => 'Migriere Rollen in neue Struktur...',
'Migrating system level permissions to new structure...' => 'Migriere Systemberechtigungen in neue Struktur...',
'Updating system search template records...' => 'Aktualisiere Suchvorlagen...',
'Renaming PHP plugin file names...' => 'Ändere PHP-Plugin-Dateinamen...',
'Error renaming PHP files. Please check the Activity Log.' => 'Fehler beim Umbenennen von PHP-Datei. Bitte überprüfen Sie das Aktivitätsprotokoll.',
'Cannot rename in [_1]: [_2].' => 'Kann nicht in [_1] umbenennen: [_2]',
'Migrating Nofollow plugin settings...' => 'Migriere Nofollow-Einstellungen...',
'Removing unnecessary indexes...' => 'Entferne nicht verwendete Indizes...',
'Moving metadata storage for categories...' => 'Verschiebe Metadatenspeicher für Kategorien...',
'Upgrading metadata storage for [_1]' => 'Aktualisiere Metadatenspeicher für [_1]',
'Updating password recover email template...' => 'Aktualisierung des Passwort-Wiederherstellungs-Templates...',
'Assigning junk status for comments...' => 'Setze Junkstatus der Kommentare...',
'Assigning junk status for TrackBacks...' => 'Setze Junkstatus der TrackBacks...',
'Populating authored and published dates for entries...' => 'Übernehme Zeitstempel für Einträge...',
'Updating widget template records...' => 'Aktualisiere Widgetvorlagen...',
'Classifying category records...' => 'Klassifiziere Kategoriedaten...',
'Classifying entry records...' => 'Klassifizere Eintragsdaten...',
'Merging comment system templates...' => 'Führe Kommentierungsvorlagen zusammen...',
'Populating default file template for templatemaps...' => 'Lege Standardvorlagen für Vorlagenzuweisungen fest...',
'Removing unused template maps...' => 'Entferne nicht benötigte Vorlagenzuweisungen',
'Assigning user authentication type...' => 'Weise Art der Benutzerauthentifizierung zu...',
'Adding new feature widget to dashboard...' => 'Füge "Neue Features"-Widget zum Übersichtsseite hinzu...',
'Moving OpenID usernames to external_id fields...' => 'Setze OpenID-Benutzernamen als external_id-Felder...',
'Assigning blog template set...' => 'Weise Vorlagengruppe zu...',
'Assigning blog page layout...' => 'Weise Blog-Seitenlayout zu...',
'Assigning author basename...' => 'Weise Autoren-Basisnamen zu...',
'Assigning embedded flag to asset placements...' => 'Weise Embedded-Flag an Asset-Platzierungen zu...',
'Updating template build types...' => 'Aktualisiere Vorlagenaufbauarten...',
'Replacing file formats to use CategoryLabel tag...' => 'Ersetze Dateiformate für CategoryLabel-Befehl...',
## lib/MT/Upgrade/v5.pm
'Populating generic website for current blogs...' => 'Populiere generische Website für aktuelles Blog...',
'Generic Website' => 'Generische Website',
'Migrating [_1]([_2]).' => 'Migriere [_1] ([_2]).',
'Granting new role to system administrator...' => 'Weise Systemadministrator neue Rolle zu...',
'Updating existing role name...' => 'Aktualisiere vorhandene Rollennamen...',
'_WEBMASTER_MT4' => 'Webmaster',
'Webmaster (MT4)' => 'Webmaster (MT4)',
'Populating new role for website...' => 'Populiere neue Rolle für Website...',
'Can manage pages, Upload files and publish blog templates.' => 'Kann Seiten verwalten, Dateien hochladen und Vorlagen veröffentlichen.',
'Designer (MT4)' => 'Designer (MT4)',
'Populating new role for theme...' => 'Populiere neue Rolle für Thema...',
'Can edit, manage and publish blog templates and themes.' => 'Kann Vorlagen und Themen bearbeiten, verwalten und veröffentlichen.',
'Assigning new system privilege for system administrator...' => 'Weise neues System-Privileg an Systemadministrator zu...',
'Assigning to [_1]...' => 'Weise an [_1] zu...',
'Migrating mtview.php to MT5 style...' => 'Migriere mtview.php zur MT5-Fassung...',
'Migrating DefaultSiteURL/DefaultSiteRoot to website...' => 'Migriere DefaultSiteURL/DefaultSiteRoot zur Website...',
'New user\'s website' => 'Website neuer Benutzer',
'Migrating existing [quant,_1,blog,blogs] into websites and its children...' => 'Migriere [quant,1,bestehendes Blog,bestehende Blogs] in Websites und Unterelemente...',
'Error loading role: [_1].' => 'Fehler beim Laden einer Rolle: [_1]',
'New WebSite [_1]' => 'Neue Website [_1]',
'An error occured during generating a website upon upgrade: [_1]' => 'Beim Erzeugen einer Website im Rahmen der Aktualisierung ist ein Fehler aufgetreten: [_1]',
'Generated a website [_1]' => 'Website [_1] erzeugt',
'An error occured during migrating a blog\'s site_url: [_1]' => 'Beim Migrieren der Site URL eines Blogs ist ein Fehler aufgetreten:',
'Moved blog [_1] ([_2]) under website [_3]' => 'Blog [_1] ([_2]) in Website [_3] verschoben',
'Removing technorati update-ping service from [_1] (ID:[_2]).' => 'Entferne Technorati-Ping-Dienst von [_1] (ID: [_2]).',
'Expiring cached MT News widget...' => 'Verwerfe gecachte MT-News-Widgets...',
'Recovering type of author...' => 'Stelle Autorentypen wieder her...',
'Merging dashboard settings...' => 'Migriere Übersichtsseiten-Einstellungen...',
'Classifying blogs...' => 'Klassifiziere Blogs...',
'Rebuilding permissions...' => 'Baue Berechtigungen neu auf...',
'Assigning ID of author for entries...' => 'Weise Autoren-IDs zu Eintragen zu...',
'Removing widget from dashboard...' => 'Entferne Widget aus Übersichtsseite...',
'Ordering Categories and Folders of Blogs...' => 'Sortiere Ordner und Kategorien der Blogs...',
'Ordering Folders of Websites...' => 'Sortiere Ordner der Websites...',
## lib/MT/Util/Archive.pm
'Type must be specified' => 'Typangabe erforderlich',
'Registry could not be loaded' => 'Konnte Registry nicht laden',
## lib/MT/Util/Archive/Tgz.pm
'Type must be tgz.' => 'Typ muss .tgz sein.',
'Could not read from filehandle.' => 'Dateihandle nicht lesbar.',
'File [_1] is not a tgz file.' => '[_1] ist keine .tgz-Datei',
'File [_1] exists; could not overwrite.' => '[_1] existiert bereits und konnte nicht überschrieben werden',
'Can\'t extract from the object' => 'Kann aus Objekt nicht extrahieren',
'Can\'t write to the object' => 'Kann Objekt nicht beschreiben',
'Both data and file name must be specified.' => 'Sowohl der Daten- als auch der Dateiname müssen angegeben werden.',
## lib/MT/Util/Archive/Zip.pm
'Type must be zip' => 'Typ muss .zip sein.',
'File [_1] is not a zip file.' => '[_1] ist keine .zip-Datei',
## lib/MT/Util/Captcha.pm
'Movable Type default CAPTCHA provider requires Image::Magick.' => 'Zur Nutzung der in Movable Type integrierten CAPTCHA-Quelle ist Image::Magick erforderlich.',
'You need to configure CaptchaSourceImageBase.' => 'Bitte konfigurieren Sie CaptchaSourceImageBase',
'Image creation failed.' => 'Bilderzeugung fehlgeschlagen.',
'Image error: [_1]' => 'Bildfehler: [_1]',
## lib/MT/Util.pm
'moments from now' => 'in einem Augenblick',
'[quant,_1,hour,hours] from now' => 'in [quant,_1,Stunde,Stunden]',
'[quant,_1,minute,minutes] from now' => 'in [quant,_1,Minute,Minuten]',
'[quant,_1,day,days] from now' => 'in [quant,_1,Tag,Tagen]',
'less than 1 minute from now' => 'in weniger als 1 Minute',
'less than 1 minute ago' => 'vor weniger als 1 Minute',
'[quant,_1,hour,hours], [quant,_2,minute,minutes] from now' => 'in [quant,_1,Stunde,Stunden] [quant,_1,Minute,Minuten]',
'[quant,_1,hour,hours], [quant,_2,minute,minutes] ago' => 'vor [quant,_1,Stunde,Stunden] [quant,_1,Minute,Minuten]',
'[quant,_1,day,days], [quant,_2,hour,hours] from now' => 'in [quant,_1,Tag,Tagen] [quant,_1,Stunde,Stunden]',
'[quant,_1,day,days], [quant,_2,hour,hours] ago' => 'vor [quant,_1,Tag,Tagen] [quant,_1,Stunde,Stunden]',
'[quant,_1,second,seconds] from now' => 'in [quant,_1,Sekunde,Sekunden]',
'[quant,_1,second,seconds]' => '[quant,_1,Sekunde,Sekunden]',
'[quant,_1,minute,minutes], [quant,_2,second,seconds] from now' => 'in [quant,_1,Minute,Minuten] und [quant,_2,Sekunde,Sekunden]',
'[quant,_1,minute,minutes], [quant,_2,second,seconds]' => '[quant,_1,Minute,Minuten] und [quant,_2,Sekunde,Sekunden]',
'[quant,_1,minute,minutes]' => '[quant,_1,Minute,Minuten]',
'[quant,_1,hour,hours], [quant,_2,minute,minutes]' => '[quant,_1,Stunde,Stunden] und [quant,_2,Minute,Minuten]',
'[quant,_1,hour,hours]' => '[quant,_1,Stunde,Stunden]',
'[quant,_1,day,days], [quant,_2,hour,hours]' => '[quant,_1,Tag,Tage] und [quant,_2,Stunde,Stunden]',
'[quant,_1,day,days]' => '[quant,_1,Tag,Tage]',
'Invalid domain: \'[_1]\'' => 'Ungültige Domain: „[_1]“',
## lib/MT/Util/YAML/Syck.pm
## lib/MT/Util/YAML/Tiny.pm
## lib/MT/WeblogPublisher.pm
'Archive type \'[_1]\' is not a chosen archive type' => 'Archivtyp „[_1]“ wurde nicht ausgewählt',
'Parameter \'[_1]\' is required' => 'Parameter „[_1]“ erforderlich',
'You did not set your blog publishing path' => 'Veröffentlichungspfade nicht gesetzt',
'The same archive file exists. You should change the basename or the archive path. ([_1])' => 'Diese Archivdatei existiert bereits. Ändern Sie entweder den Basisnamen oder den Archivpfad. ([_1])',
'An error occurred publishing [_1] \'[_2]\': [_3]' => 'Fehler bei der Veröffentlichung von [_1] „[_2]“: [_3]',
'An error occurred publishing date-based archive \'[_1]\': [_2]' => 'Fehler bei Veröffentlichtung des Archivs „[_1]“: [_2]',
'Renaming tempfile \'[_1]\' failed: [_2]' => 'Temporäre Datei „[_1]“ konnte nicht umbenannt werden: [_2]',
'Blog, BlogID or Template param must be specified.' => 'Blog-, BlogID- oder Template-Parameter erforderlich.',
'Template \'[_1]\' does not have an Output File.' => 'Vorlage „[_1]“ hat keine Ausgabedatei.',
'An error occurred while publishing scheduled entries: [_1]' => 'Fehler bei der Veröffentlichung zeitgeplanter Einträge: [_1]',
## lib/MT/Website.pm
'__BLOG_COUNT' => 'Blogs',
## lib/MT/Worker/Publish.pm
'Error rebuilding file [_1]:[_2]' => 'Fehler beim Neuaufbau der Datei [_1]: [_2]',
'-- set complete ([quant,_1,file,files] in [_2] seconds)' => '-- Gruppe komplett ([quant,_1,Datei,Dateien] in [_2] Sekunden)',
## lib/MT/Worker/Sync.pm
"Error during rsync of files in [_1]:\n" => "Fehler beim rsyncen der Dateien in [_1]:
",
'Synchrnizing Files Done' => 'Synchronisierung der Dateien abgeschlossen',
'Done syncing files to [_1] ([_2])' => 'Die Dateien wurden mit [_1] ([_2]) synchronisiert',
## lib/MT/XMLRPC.pm
'No WeblogsPingURL defined in the configuration file' => 'Keine WeblogsPingURL in der Konfigurationsdatei definiert',
'No MTPingURL defined in the configuration file' => 'Keine MTPingURL in der Konfigurationsdatei definiert',
'HTTP error: [_1]' => 'HTTP-Fehler: [_1]',
'Ping error: [_1]' => 'Ping-Fehler: [_1]',
## lib/MT/XMLRPCServer.pm
'Invalid timestamp format' => 'Ungültiges Zeitstempel-Format',
'No web services password assigned. Please see your user profile to set it.' => 'Kein Passwort für Webdienste vergeben. Sie können das Passwort in Ihrem Benutzerprofil angegeben.',
'Requested permalink \'[_1]\' is not available for this page' => 'Der gewünschte Permalink „[_1]“ ist für diese Seite nicht verfügbar.',
'Saving folder failed: [_1]' => 'Speichern des Ordners fehlgeschlagen: [_1]',
'No blog_id' => 'Blog_id fehlt',
'Value for \'mt_[_1]\' must be either 0 or 1 (was \'[_2]\')' => '„mt_[_1]“ kann nur 0 oder 1 sein (war „[_2]“)',
'Not privileged to edit entry' => 'Keine Berechtigung, Einträge zu bearbeiten',
'Entry \'[_1]\' ([lc,_5] #[_2]) deleted by \'[_3]\' (user #[_4]) from xml-rpc' => 'Eintrag „[_1]“ ([_5] #[_2]) von „[_3]“ (Benutzer-Nr. [_4]) per XML-RPC gelöscht',
'Not privileged to get entry' => 'Keine Berechtigung, Einträge einzulesen',
'Not privileged to set entry categories' => 'Keine Berechtigung, Kategorien zuzuweisen',
'Not privileged to upload files' => 'Keine Berechtigung, Dateien hochzuladen',
'No filename provided' => 'Kein Dateiname angegeben',
'Error writing uploaded file: [_1]' => 'Fehler beim Schreiben der hochgeladenen Datei: [_1]',
'Template methods are not implemented, due to differences between the Blogger API and the Movable Type API.' => 'Funktionen zum Zugriff auf Vorlagen sind auf Grund von Unterschieden zwischen der Blogger-API und der MovableType-API nicht implementiert.',
## mt-static/jquery/jquery.mt.js
'Invalid value' => 'Ungültiger Wert',
'Invalid date format' => 'Ungültiges Datumsformat',
'Invalid mail address' => 'Ungültige E-Mail-Adresse',
'Invalid URL' => 'Ungültige Web-Adresse (URL)',
'This field is required' => 'Dieses Feld ist erforderlich.',
'This field must be integer' => 'Integer in diesem Feld erforderlich.',
'This field must be number' => 'Zahl in diesem Feld erforderlich.',
## mt-static/jquery/jquery.mt.min.js
## mt-static/js/assetdetail.js
'No Preview Available.' => 'Keine Vorschau verfügbar',
'Dimensions' => 'Abmessungen',
'File Name' => 'Dateiname',
## mt-static/js/dialog.js
'(None)' => '(Keine)',
## mt-static/js/tc/mixer/display.js
'Title:' => 'Titel:',
'Description:' => 'Überschrift:',
'Author:' => 'Autor:',
'Tags:' => 'Tags:',
'URL:' => 'URL:',
## mt-static/mt.js
'delete' => 'löschen',
'remove' => 'entfernen',
'enable' => 'aktivieren',
'disable' => 'deaktivieren',
'publish' => 'veröffentlichen',
'unlock' => 'entsperren', # Translate - Case # OK
'You did not select any [_1] to [_2].' => 'Keine [_1] zu [_2] gewählt.',
'Are you sure you want to [_2] this [_1]?' => '[_1] wirklich [_2]?',
'Are you sure you want to [_3] the [_1] selected [_2]?' => 'Die [_1] ausgewählten [_2] wirklich [_3]?',
'Are you certain you want to remove this role? By doing so you will be taking away the permissions currently assigned to any users and groups associated with this role.' => 'Rolle wirklich entfernen? Entfernen der Rolle entzieht allen derzeit damit verknüpften Benutzern und Gruppen die entsprechenden Berechtigungen.',
'Are you certain you want to remove these [_1] roles? By doing so you will be taking away the permissions currently assigned to any users and groups associated with these roles.' => '[_1] Rolle(n) wirklich entfernen? Entfernen der Rollen entzieht allen derzeit damit verknüpften Benutzern und Gruppen die entsprechenden Berechtigungen.',
'You did not select any [_1] [_2].' => 'Sie haben keine [_1] [_2] gewählt',
'You can only act upon a minimum of [_1] [_2].' => 'Nur möglich für mindestens [_1] [_2].',
'You can only act upon a maximum of [_1] [_2].' => 'Nur möglich für höchstens [_1] [_2].',
'You must select an action.' => 'Bitte wählen Sie zunächst eine Aktion.',
'to mark as spam' => 'zur Markierung als Spam',
'to remove spam status' => 'zum Entfernen des Spam-Status',
'Enter email address:' => 'E-Mail-Adresse eingeben:',
'Enter URL:' => 'URL eingeben:',
'The tag \'[_2]\' already exists. Are you sure you want to merge \'[_1]\' with \'[_2]\'?' => 'Das Tag „[_2]“ ist bereits vorhanden. Soll „[_1]“ wirklich mit „[_2]“ zusammengeführt werden?',
'The tag \'[_2]\' already exists. Are you sure you want to merge \'[_1]\' with \'[_2]\' across all weblogs?' => 'Das Tag „[_2]“ ist bereits vorhanden. Soll „[_1]“ wirklich in allen Weblogs mit „[_2]“ zusammengeführt werden?',
'Loading...' => 'Lade...',
'First' => 'Anfang',
'Prev' => 'Zurück',
'[_1] – [_2] of [_3]' => '[_1] – [_2] von [_3]',
'[_1] – [_2]' => '[_1] – [_2]',
'Last' => 'Ende',
## themes/classic_blog/templates/about_this_page.mtml
## themes/classic_blog/templates/archive_index.mtml
## themes/classic_blog/templates/archive_widgets_group.mtml
## themes/classic_blog/templates/author_archive_list.mtml
## themes/classic_blog/templates/banner_footer.mtml
## themes/classic_blog/templates/calendar.mtml
## themes/classic_blog/templates/category_archive_list.mtml
## themes/classic_blog/templates/category_entry_listing.mtml
## themes/classic_blog/templates/comment_detail.mtml
## themes/classic_blog/templates/comment_listing.mtml
## themes/classic_blog/templates/comment_preview.mtml
## themes/classic_blog/templates/comment_response.mtml
## themes/classic_blog/templates/comments.mtml
## themes/classic_blog/templates/creative_commons.mtml
## themes/classic_blog/templates/current_author_monthly_archive_list.mtml
## themes/classic_blog/templates/current_category_monthly_archive_list.mtml
## themes/classic_blog/templates/date_based_author_archives.mtml
## themes/classic_blog/templates/date_based_category_archives.mtml
## themes/classic_blog/templates/dynamic_error.mtml
## themes/classic_blog/templates/entry.mtml
## themes/classic_blog/templates/entry_summary.mtml
## themes/classic_blog/templates/javascript.mtml
## themes/classic_blog/templates/main_index.mtml
## themes/classic_blog/templates/main_index_widgets_group.mtml
## themes/classic_blog/templates/monthly_archive_dropdown.mtml
## themes/classic_blog/templates/monthly_archive_list.mtml
## themes/classic_blog/templates/monthly_entry_listing.mtml
## themes/classic_blog/templates/openid.mtml
## themes/classic_blog/templates/page.mtml
## themes/classic_blog/templates/pages_list.mtml
## themes/classic_blog/templates/powered_by.mtml
## themes/classic_blog/templates/recent_assets.mtml
## themes/classic_blog/templates/recent_comments.mtml
## themes/classic_blog/templates/recent_entries.mtml
## themes/classic_blog/templates/search.mtml
## themes/classic_blog/templates/search_results.mtml
## themes/classic_blog/templates/sidebar.mtml
## themes/classic_blog/templates/signin.mtml
## themes/classic_blog/templates/syndication.mtml
## themes/classic_blog/templates/tag_cloud.mtml
## themes/classic_blog/templates/technorati_search.mtml
## themes/classic_blog/templates/trackbacks.mtml
## themes/classic_blog/theme.yaml
'Typical and authentic blogging design comes with plenty of styles and the selection of 2 column / 3 column layout. Best for all the bloggers.' => 'Zur Gestaltung Ihres Blogs steht eine reichhaltige Auswahl typischer Designs und zwei- und dreispaltiger Layouts zur Verfügung. Ideal für alle Zwecke.',
## themes/classic_website/templates/about_this_page.mtml
## themes/classic_website/templates/banner_footer.mtml
## themes/classic_website/templates/blogs.mtml
## themes/classic_website/templates/comment_detail.mtml
## themes/classic_website/templates/comment_listing.mtml
## themes/classic_website/templates/comment_preview.mtml
## themes/classic_website/templates/comment_response.mtml
## themes/classic_website/templates/comments.mtml
## themes/classic_website/templates/creative_commons.mtml
## themes/classic_website/templates/dynamic_error.mtml
## themes/classic_website/templates/entry.mtml
## themes/classic_website/templates/entry_summary.mtml
## themes/classic_website/templates/javascript.mtml
## themes/classic_website/templates/main_index.mtml
## themes/classic_website/templates/main_index_widgets_group.mtml
## themes/classic_website/templates/openid.mtml
## themes/classic_website/templates/page.mtml
## themes/classic_website/templates/pages_list.mtml
## themes/classic_website/templates/powered_by.mtml
## themes/classic_website/templates/recent_assets.mtml
## themes/classic_website/templates/recent_comments.mtml
## themes/classic_website/templates/recent_entries.mtml
## themes/classic_website/templates/search.mtml
## themes/classic_website/templates/search_results.mtml
## themes/classic_website/templates/sidebar.mtml
## themes/classic_website/templates/signin.mtml
## themes/classic_website/templates/syndication.mtml
q{Subscribe to this website's feed} => q{Feed dieser Website abonnieren},
## themes/classic_website/templates/tag_cloud.mtml
## themes/classic_website/templates/technorati_search.mtml
## themes/classic_website/templates/trackbacks.mtml
## themes/classic_website/theme.yaml
'Create a blog portal that aggregates contents from blogs under the website.' => 'Erstellen Sie ein Blog-Portal, das die Inhalte verschiedener Blogs der Website zusammenfasst.',
'Classic Website' => 'Klassische Website',
## themes/pico/templates/about_this_page.mtml
## themes/pico/templates/archive_index.mtml
'Navigation' => 'Navigation',
'Related Content' => 'Verwandte Einträge',
## themes/pico/templates/archive_widgets_group.mtml
## themes/pico/templates/author_archive_list.mtml
## themes/pico/templates/banner_footer.mtml
## themes/pico/templates/calendar.mtml
## themes/pico/templates/category_archive_list.mtml
## themes/pico/templates/category_entry_listing.mtml
## themes/pico/templates/comment_detail.mtml
## themes/pico/templates/comment_listing.mtml
## themes/pico/templates/comment_preview.mtml
'Preview Comment' => 'Kommentarvorschau',
## themes/pico/templates/comment_response.mtml
## themes/pico/templates/comments.mtml
## themes/pico/templates/creative_commons.mtml
## themes/pico/templates/current_author_monthly_archive_list.mtml
## themes/pico/templates/current_category_monthly_archive_list.mtml
## themes/pico/templates/date_based_author_archives.mtml
## themes/pico/templates/date_based_category_archives.mtml
## themes/pico/templates/dynamic_error.mtml
## themes/pico/templates/entry.mtml
'Home' => 'Startseite',
## themes/pico/templates/entry_summary.mtml
## themes/pico/templates/javascript.mtml
## themes/pico/templates/main_index.mtml
## themes/pico/templates/main_index_widgets_group.mtml
## themes/pico/templates/monthly_archive_dropdown.mtml
## themes/pico/templates/monthly_archive_list.mtml
## themes/pico/templates/monthly_entry_listing.mtml
## themes/pico/templates/navigation.mtml
'Subscribe' => 'Abonnieren',
## themes/pico/templates/openid.mtml
## themes/pico/templates/page.mtml
## themes/pico/templates/pages_list.mtml
## themes/pico/templates/recent_assets.mtml
## themes/pico/templates/recent_comments.mtml
## themes/pico/templates/recent_entries.mtml
## themes/pico/templates/search.mtml
## themes/pico/templates/search_results.mtml
## themes/pico/templates/signin.mtml
## themes/pico/templates/syndication.mtml
## themes/pico/templates/tag_cloud.mtml
## themes/pico/templates/technorati_search.mtml
## themes/pico/templates/trackbacks.mtml
## themes/pico/theme.yaml
q{Pico is the microblogging theme, designed for keeping things simple to handle frequent updates. To put the focus on content we've moved the sidebars below the list of posts.} => q{Pico ist das Microblogging-Thema, das speziell auf häufige Aktualisierungen des Inhalts ausgelegt ist. Zur Betonung des Inhalts befinden sich die Seitenleisten unterhalb der Einträge.},
'Pico' => 'Pico',
'Pico Styles' => 'Pico-Designs',
'A collection of styles compatible with Pico themes.' => 'Mit Pro-Themen kompatible Designs',
## search_templates/comments.tmpl
'Search for new comments from:' => 'Suche nach neuen Kommentaren:',
'the beginning' => 'ingesamt',
'one week back' => 'der letzten Woche',
'two weeks back' => 'der letzten zwei Wochen',
'one month back' => 'des letzten Monats',
'two months back' => 'der letzten zwei Monate',
'three months back' => 'der letzten drei Monate',
'four months back' => 'der letzten vier Monate',
'five months back' => 'der letzten fünf Monate',
'six months back' => 'der letzten sechs Monate',
'one year back' => 'des letzten Jahres',
'Find new comments' => 'Neue Kommentare finden',
'Posted in [_1] on [_2]' => 'Veröffentlicht in [_1] am [_2]',
'No results found' => 'Keine Treffer',
'No new comments were found in the specified interval.' => 'Keine neuen Kommentare in diesem Zeitraum gefunden.',
q{Select the time interval that you'd like to search in, then click 'Find new comments'} => q{Wählen Sie den gewünschten Zeitraum und klicken Sie dann auf „Neue Kommentare finden“.},
## search_templates/default.tmpl
'SEARCH FEED AUTODISCOVERY LINK PUBLISHED ONLY WHEN A SEARCH HAS BEEN EXECUTED' => 'SEARCH FEED AUTODISCOVERY-LINK WIRD NUR ANGEZEIGT, WENN EINE SUCHE AUSGEFÜHRT WURDE',
'Blog Search Results' => 'Suchergebnisse',
'Blog search' => 'Blogsuche',
'STRAIGHT SEARCHES GET THE SEARCH QUERY FORM' => 'BEI DIREKTEN SUCHEN WIRD DAS SUCHFORMULAR ANGEZEIGT',
'Search this site' => 'Diese Site durchsuchen',
'Match case' => 'Groß-/Kleinschreibung beachten',
'SEARCH RESULTS DISPLAY' => 'ANZEIGE DER SUCHERGEBNISSE',
'Matching entries from [_1]' => 'Treffer in [_1]',
q{Entries from [_1] tagged with '[_2]'} => q{Mit „[_2]“ getaggte Einträge aus [_1]},
'Posted <MTIfNonEmpty tag="EntryAuthorDisplayName">by [_1] </MTIfNonEmpty>on [_2]' => 'Geschrieben <MTIfNonEmpty tag="EntryAuthorDisplayName">von [_1] </MTIfNonEmpty>am [_2]',
'Showing the first [_1] results.' => 'Erste [_1] Treffer',
'NO RESULTS FOUND MESSAGE' => 'KEINE TREFFER-NACHRICHT',
q{Entries matching '[_1]'} => q{Einträge mit „[_1]“},
q{Entries tagged with '[_1]'} => q{Mit „[_1]“ getaggte Einträge},
q{No pages were found containing '[_1]'.} => q{Keine Seiten mit „[_1]“ gefunden.},
'By default, this search engine looks for all words in any order. To search for an exact phrase, enclose the phrase in quotes' => 'Die Suchfunktion sucht standardmäßig nach allen angebenen Begriffen in beliebiger Reihenfolge. Um nach einem exakten Ausdruck zu suchen, setzen Sie diesen bitte in Anführungszeichen.',
'The search engine also supports AND, OR, and NOT keywords to specify boolean expressions' => 'Die boolschen Operatoren AND, OR und NOT werden unterstützt.',
'END OF ALPHA SEARCH RESULTS DIV' => 'DIV ALPHA SUCHERGEBNISSE ENDE',
'BEGINNING OF BETA SIDEBAR FOR DISPLAY OF SEARCH INFORMATION' => 'DIV BETA SUCHINFOS ANFANG',
'SET VARIABLES FOR SEARCH vs TAG information' => 'SETZE VARIABLEN FÜR SUCHE VS TAG-Information',
q{If you use an RSS reader, you can subscribe to a feed of all future entries tagged '[_1]'.} => q{Wenn Sie einen Feedreader verwenden, können Sie einen Feed aller neuen mit „[_1]“ getaggten Einträge abonnieren.},
q{If you use an RSS reader, you can subscribe to a feed of all future entries matching '[_1]'.} => q{Wenn Sie einen Feedreader verwenden, können Sie einen Feed aller neuen Einträge mit „[_1]“ abonnieren.},
'SEARCH/TAG FEED SUBSCRIPTION INFORMATION' => 'SUCHE/TAG FEED-ABO-INFO',
'Feed Subscription' => 'Feed abonnieren',
'http://www.sixapart.com/about/feeds' => 'http://www.sixapart.com/about/feeds',
'What is this?' => 'Was ist das?',
'TAG LISTING FOR TAG SEARCH ONLY' => 'TAG-LISTE NUR FÜR SUCHE',
'Other Tags' => 'Andere Tags',
'END OF PAGE BODY' => 'PAGE BODY ENDE',
'END OF CONTAINER' => 'CONTAINER ENDE',
## search_templates/results_feed_rss2.tmpl
'Search Results for [_1]' => 'Suchergebnisse für [_1]',
## search_templates/results_feed.tmpl
## tmpl/cms/asset_replace.tmpl
'Upload New Asset' => 'Neues Asset hochladen',
## tmpl/cms/asset_upload.tmpl
'Upload Asset' => 'Asset hochladen',
## tmpl/cms/backup.tmpl
'Backup [_1]' => '[_1]-Backup',
'What to Backup' => 'Umfang der Sicherung',
'This option will backup Users, Roles, Associations, Blogs, Entries, Categories, Templates and Tags.' => 'Hier können Sie eine Sicherungskopie Ihrer Blogs erstellen. Sicherungen umfassen Benutzerkonten, Rollen, Verknüpfungen, Blogs, Einträge, Kategoriedefinitionen, Vorlagen und Tags.',
'Everything' => 'Mit allen Blogs',
'Reset' => 'zurücksetzen',
'Choose websites...' => 'Websites wählen...',
'Archive Format' => 'Archivformat',
'The type of archive format to use.' => 'Das zu verwendende Archivformat',
q{Don't compress} => q{Nicht komprimieren},
'Target File Size' => 'Gewünschte Dateigröße ',
'Approximate file size per backup file.' => 'Ungefähre Größe pro Backupdatei (MB)',
'No size limit' => 'Unbegrenzt',
'Make Backup (b)' => 'Sicherung erstellen (b)',
'Make Backup' => 'Sicherung erstellen',
## tmpl/cms/cfg_entry.tmpl
'Compose Settings' => 'Editor-Einstellungen',
'Your preferences have been saved.' => 'Die Einstellungen wurden gespeichert.',
'Publishing Defaults' => 'Veröffentlichungs-Voreinstellungen',
'Listing Default' => 'Listen-Voreinstellung',
'Select the number of days of entries or the exact number of entries you would like displayed on your blog.' => 'Geben Sie entweder die größte Anzahl Einträge an, die auf der Startseite angezeigt werden sollen, oder die höchste Anzahl Tage, aus denen dort Einträge erscheinen sollen.',
'Days' => 'Tage',
'Posts' => 'Einträge',
'Order' => 'Reihenfolge',
'Select whether you want your entries displayed in ascending (oldest at top) or descending (newest at top) order.' => 'Geben Sie an, ob Einträge in chronologischer (älteste zuerst) oder umgekehrt chronologischer Reihenfolge (neueste zuerst) angezeigt werden sollen.',
'Ascending' => 'Aufsteigend',
'Descending' => 'Absteigend',
'Excerpt Length' => 'Länge des Auszugs',
'Enter the number of words that should appear in an auto-generated excerpt.' => 'Anzahl der Wörter im automatisch generierten Textauszug.',
'Date Language' => 'Datumsanzeige',
'Select the language in which you would like dates on your blog displayed.' => 'Sprache für Datumsanzeigen',
'Czech' => 'Tschechisch',
'Danish' => 'Dänisch',
'Dutch' => 'Holländisch',
'English' => 'Englisch',
'Estonian' => 'Estnisch',
'French' => 'Französisch',
'German' => 'Deutsch',
'Icelandic' => 'Isländisch',
'Italian' => 'Italienisch',
'Japanese' => 'Japanisch',
'Norwegian' => 'Norwegisch',
'Polish' => 'Polnisch',
'Portuguese' => 'Portugiesisch',
'Slovak' => 'Slowakisch',
'Slovenian' => 'Slovenisch',
'Spanish' => 'Spanisch',
'Suomi' => 'Finnisch',
'Swedish' => 'Schwedisch',
'Basename Length' => 'Länge des Basisnamens',
'Specifies the default length of an auto-generated basename. The range for this setting is 15 to 250.' => 'Setzt den Wert für den automatisch generierten Basisname des Eintrags. Mögliche Länge: 15 bis 250.',
'Compose Defaults' => 'Editor-Voreinstellungen',
'Specifies the default Post Status when creating a new entry.' => 'Gibt an, welcher Veröffentlichungs-Status beim Anlegen neuer Einträge voreingestellt sein soll.',
'Unpublished' => 'Nicht veröffentlicht',
'Text Formatting' => 'Textformatierung',
'Specifies the default Text Formatting option when creating a new entry.' => 'Gibt an, welche Textformatierungsoption standardmäßig beim Erstellen eines neuen Eintrags verwendet werden soll',
'Specifies the default Accept Comments setting when creating a new entry.' => 'Legt fest, ob bei neuen Einträgen Kommentare standardmässig zugelassen werden.',
'Setting Ignored' => 'Einstellung ignoriert',
'Note: This option is currently ignored since comments are disabled either blog or system-wide.' => 'Hinweis: Diese Einstellung zeigt momentan keine Wirkung, da Kommentare blog- oder systemweit deaktiviert sind.',
'Specifies the default Accept TrackBacks setting when creating a new entry.' => 'Legt fest, ob bei neuen Einträgen TrackBack standardmässig zugelassen werden.',
'Accept TrackBacks' => 'TrackBacks annehmen',
'Note: This option is currently ignored since TrackBacks are disabled either blog or system-wide.' => 'Hinweis: Diese Einstellungen zeigen momentan keine Wirkung, da TrackBacks blog- oder systemweit deaktiviert sind.',
'Entry Fields' => 'Eintragsfelder',
'_USAGE_ENTRYPREFS' => 'Wählen Sie aus, welche Formularfelder in der Eingabemaske angezeigt werden sollen.',
'Page Fields' => 'Seitenfelder',
'Punctuation Replacement Setting' => 'Ersetzung von Satzzeichen',
'Replace UTF-8 characters frequently used by word processors with their more common web equivalents.' => 'Mit dieser Option können von Textverarbeitungen erzeugte UTF-8-Sonderzeichen automatisch durch gebräuchlichere Äquivalente ersetzt werden.',
'Punctuation Replacement' => 'Ersetzung von Satzzeichen',
'No substitution' => 'Keine Zeichen ersetzen',
'Character entities (&#8221;, &#8220;, etc.)' => 'Entitäten (&#8221;, &#8220; usw.)',
q{ASCII equivalents (", ', ..., -, --)} => q{ASCII-Äquivalente (", ', ..., -, --)},
'Replace Fields' => 'Felder ersetzen',
'Save changes to these settings (s)' => 'Einstellungsänderungen speichern (s)',
## tmpl/cms/cfg_feedback.tmpl
'Feedback Settings' => 'Feedback-Einstellungen',
'Spam Settings' => 'Spam-Einstellungen',
'Automatic Deletion' => 'Automatisches Löschen',
'Automatically delete spam feedback after the time period shown below.' => 'Spam-Feedback nach Ablauf des angegebenen Zeitraums automatisch löschen.',
'Delete Spam After' => 'Spam löschen nach',
'When an item has been reported as spam for this many days, it is automatically deleted.' => 'War ein Element länger als angegeben als Spam markiert war, wird es automatisch gelöscht.',
'days' => 'Tage',
'Spam Score Threshold' => 'Spam-Schwellenwert',
'Comments and TrackBacks receive a spam score between -10 (complete spam) and +10 (not spam). Feedback with a score which is lower than the threshold shown above will be reported as spam.' => 'Kommentare und TrackBacks bekommen eine Spam-Bewertung zwischen -10 (sicher Spam) und +10 (kein Spam) zugewiesen. Feedback mit einer geringeren Bewertung als eingestellt werden automatisch als Spam markiert.',
'Less Aggressive' => 'konservativ',
'Decrease' => 'Abschwächen',
'Increase' => 'Verstärken',
'More Aggressive' => 'aggressiv',
q{Apply 'nofollow' to URLs} => q{'nofollow' an URLs anhängen},
q{If enabled, all URLs in comments and TrackBacks will be assigned a 'nofollow' link relation.} => q{Aktivieren Sie diese Option, um bei Links in Kommentaren und TrackBacks das 'nofollow'-Attribut zu setzen.},
q{'nofollow' exception for trusted commenters} => q{'nofollow' nicht für vertraute Kommentarautoren setzen},
q{Do not add the 'nofollow' attribute when a comment is submitted by a trusted commenter.} => q{„nofollow“-Attribut nicht in Feedback von vertrauten Autoren setzen.},
'Comment Settings' => 'Kommentar-Einstellungen',
'Note: Commenting is currently disabled at the system level.' => 'Hinweise: Die Kommentarfunktion ist derzeit für das Gesamtsystem ausgeschaltet.',
'Comment authentication is not available because at least one of the required Perl modules, MIME::Base64 and LWP::UserAgent, are not installed. Install the missing modules and reload this page to configure comment authentication.' => 'Authentifizierungsfunktionen stehen nicht zur Verfügung, da mindestens eines der erforderlichen Perl-Module MIME::Base64 und LWP::UserAgent nicht verfügbar ist. Installieren Sie die fehlenden Module und laden Sie dann diese Seite neu, um Authentifizierungsfunktionen konfigurieren und nutzen zu können.',
'Accept comments according to the policies shown below.' => 'Kommentare nach folgenden Regeln annehmen',
'Setup Registration' => 'Registierung konfigurieren',
'Commenting Policy' => 'Kommentierungsregeln',
'Immediately approve comments from' => 'Kommentare automatisch freischalten von',
'Specify what should happen to comments after submission. Unapproved comments are held for moderation.' => 'Geben Sie an, was mit neuen Kommentaren geschehen soll. Ungeprüfte Kommentare werden zur Moderierung zurückgehalten.',
'No one' => 'niemandem',
'Trusted commenters only' => 'von vertrauten Kommentarautoren',
'Any authenticated commenters' => 'von allen authentifizierten Kommentarautoren',
'Anyone' => 'jedem',
'Allow HTML' => 'HTML zulassen',
'Allow commenters to include a limited set of HTML tags in their comments. Otherwise all HTML will be stripped out.' => 'Bestimmte HTML-Tags in Kommentartexten zulassen. Anderfalls werden sämtliche HTML-Tags herausgefiltert.',
'Limit HTML Tags' => 'HTML einschränken ',
'Specify the list of HTML tags to allow when accepting a comment.' => 'Geben Sie die HTML-Tags ein, die in Kommentartexten erlaubt sein sollen.',
'Use defaults' => 'Standardwerte verwenden',
'([_1])' => '([_1])',
'Use my settings' => 'Eigene Einstellungen',
'E-mail Notification' => 'Benachrichtigungen',
'Specify when Movable Type should notify you of new comments.' => 'Geben Sie an, wann Movable Type Sie über neue Kommentare benachrichtigen soll.',
'On' => 'Immer',
'Only when attention is required' => 'Nur wenn eine Entscheidung erforderlich ist',
'Off' => 'Nie',
'Comment Display Settings' => 'Kommentaranzeige-Einstellungen',
'Comment Order' => 'Kommentar- reihenfolge',
'Select whether you want comments displayed in ascending (oldest at top) or descending (newest at top) order.' => 'Wählen Sie, ob Kommentare in chronologischer oder umgekehrter chronologischer Reihenfolge angezeigt werden sollen,',
'Auto-Link URLs' => 'URLs automatisch verlinken',
'Transform URLs in comment text into HTML links.' => 'In Kommentaren enthaltene URLs in HTML-Links umwandeln.',
'Specifies the Text Formatting option to use for formatting visitor comments.' => 'Legt fest, welche Textformatierungsoption standardmäßig für Kommentare verwendet werden soll.',
'CAPTCHA Provider' => 'CAPTCHA-Quelle',
'No CAPTCHA provider available' => 'Keine CAPTCHA-Quelle verfügbar',
q{No CAPTCHA provider is available in this system. Please check to see if Image::Magick is installed and if the CaptchaSourceImageBase configuration directive points to a valid captcha-source directory within the 'mt-static/images' directory.} => q{Keine CAPTCHA-Quelle im System verfügbar. Überprüfen Sie, ob Image::Magick installiert ist und ob das CaptchaSourceImageBase-Konfigurationsparameter auf ein gültiges Verzeichnis im Ordner „mt-static/images“ zeigt.},
'Use Comment Confirmation Page' => 'Bei Abgabe von Kommentaren Bestätigungsseite anzeigen',
'Use comment confirmation page' => 'Bei Abgabe von Kommentaren Bestätigungsseite anzeigen',
q{Each commenter's browser will be redirected to a comment confirmation page after their comment is accepted.} => q{Nach Abgabe eines Kommentars Autoren automatisch auf Bestätigungsseite weiterleiten.},
'Trackback Settings' => 'TrackBack-Einstellungen',
'Note: TrackBacks are currently disabled at the system level.' => 'Hinweis: TrackBacks sind derzeit im Gesamtsystem deaktiviert.',
'Accept TrackBacks from any source.' => 'TrackBacks von allen Quellen annehmen',
'TrackBack Policy' => 'TrackBack-Regeln',
'Moderation' => 'Moderation',
'Hold all TrackBacks for approval before they are published.' => 'Alle TrackBacks zur Moderation zurückhalten',
'Specify when Movable Type should notify you of new TrackBacks.' => 'Geben Sie an, wann Movable Type Sie über neue TrackBacks benachrichtigen soll.',
'TrackBack Options' => 'TrackBack-Optionen',
'TrackBack Auto-Discovery' => 'TrackBack Auto-Discovery',
'When auto-discovery is turned on, any external HTML links in new entries will be extracted and the appropriate sites will automatically be sent a TrackBack ping.' => 'Ist Auto-Discovery aktiviert, werden für HTML-Links in neuen Einträgen automatisch TrackBacks verschickt, wenn die Gegenseite solche akzeptiert.',
'Enable External TrackBack Auto-Discovery' => 'Auto-Discovery für externe TrackBacks aktivieren',
'Setting Notice' => 'Nutzungshinweise',
'Note: This option may be affected since outbound pings are constrained system-wide.' => 'Hinweis: Ausgehende TrackBacks sind derzeit systemweit eingeschränkt. Diese Option ist daher derzeit möglicherweise nicht oder nur teilweise wirksam.',
'Note: This option is currently ignored since outbound pings are disabled system-wide.' => 'Hinweis: Ausgehende TrackBacks sind derzeit systemweit deaktiviert. Diese Option ist daher derzeit nicht wirksam.',
'Enable Internal TrackBack Auto-Discovery' => 'Auto-Discovery für interne TrackBacks aktivieren',
## tmpl/cms/cfg_plugin.tmpl
'[_1] Plugin Settings' => '[_1]-Plugin-Einstellungen',
'Plugin System' => 'Plugin-System',
'Enable or disable plugin functionality for the entire Movable Type installation.' => 'Plugin für die gesamte Movable Type-Installation aktivieren oder deaktivieren.',
'Disable plugin functionality' => 'Plugin-Funktion deaktivieren',
'Disable Plugins' => 'Plugins deaktivieren',
'Enable plugin functionality' => 'Plugin-Funktion aktivieren',
'Enable Plugins' => 'Plugins aktivieren',
'_PLUGIN_DIRECTORY_URL' => 'http://plugins.movabletype.org/',
'Find Plugins' => 'Weitere Plugins',
'Your plugin settings have been saved.' => 'Plugin-Einstellungen übernommen',
'Your plugin settings have been reset.' => 'Plugin-Einstellungen zurückgesetzt',
q{Your plugins have been reconfigured. Since you're running mod_perl, you must restart your web server for these changes to take effect.} => q{Ihre Plugins wurden konfiguriert. Da Sie mod_perl verwenden, starten Sie Ihren Webserver bitte neu, um die Änderungen wirksam werden zu lassen.},
'Your plugins have been reconfigured.' => 'Einstellungen übernommen',
q{Your plugins have been reconfigured. Since you're running mod_perl, you will need to restart your web server for these changes to take effect.} => q{Einstellungen übernommen. Da Sie mod_perl verwenden, müssen Sie Ihren Webserver neu starten, damit die Änderungen wirksam werden.},
'Are you sure you want to reset the settings for this plugin?' => 'Wollen Sie die Plugin-Einstellungen wirklich zurücksezten?',
'Are you sure you want to disable plugins for the entire Movable Type installation?' => 'Plugins wirklich systemweit deaktivieren?',
'Are you sure you want to disable this plugin?' => 'Dieses Plugin wirklich deaktivieren?',
'Are you sure you want to enable plugins for the entire Movable Type installation? (This will restore plugin settings that were in place before all plugins were disabled.)' => 'Plugins wirklich systemweit aktivieren? (Es werden die Plugin-Einstellungen gültig, die bereits vor der Deaktivierung gültig waren.)',
'Are you sure you want to enable this plugin?' => 'Dieses Plugin wirklich aktivieren?',
'Settings for [_1]' => 'Einstellungen von [_1]',
'Failed to Load' => 'Fehler beim Laden',
'This plugin has not been upgraded to support Movable Type [_1]. As such, it may not be completely functional.' => 'Dieses Plugin wurde noch nicht für Movable Type [_1] aktualisiert. Es funktioniert daher möglicherweise nicht einwandfrei.',
'Plugin error:' => 'Plugin-Fehler:',
'Info' => 'Info',
'Resources' => 'Ressourcen',
'Run [_1]' => '[_1] ausführen',
'Documentation for [_1]' => 'Dokumentation zu [_1]',
'Documentation' => 'Dokumentation',
'More about [_1]' => 'Mehr über [_1]',
'Plugin Home' => 'Plugin-Website',
'Author of [_1]' => 'Autor von [_1]',
'Tag Attributes:' => 'Tag-Attribute:',
'Text Filters' => 'Textfilter',
'Junk Filters:' => 'Junkfilter',
'Reset to Defaults' => 'Voreinstellungen',
'No plugins with blog-level configuration settings are installed.' => 'Es sind keine Plugins installiert, die Einstellungen auf Blogebene erfordern.',
'No plugins with configuration settings are installed.' => 'Es sind keine Plugins installiert, die Einstellungen erfordern.',
## tmpl/cms/cfg_prefs.tmpl
'Error: Movable Type was not able to create a directory for publishing your [_1]. If you create this directory yourself, grant write permission to the web server.' => 'Fehler: Movable Type konnte kein Verzeichnis für Ihr [_1] anlegen. Sollten Sie das Verzeichnis bereits selbst angelegt haben, stellen Sie bitte sicher, daß der Webserver für Schreibrechte dafür verfügt.',
'[_1] Settings' => '[_1]-Einstellungen',
'Name your blog. The name can be changed at any time.' => 'Wählen Sie einen Namen für Ihr Blog. Sie können ihn später jederzeit ändern.',
'Enter a description for your blog.' => 'Geben Sie eine Beschreibung Ihres Blogs ein.',
'Time Zone' => 'Zeitzone',
'Select your time zone from the pulldown menu.' => 'Wählen Sie die gewünschte Zeitzone im Dropdown-Menü.',
'Time zone not selected' => 'Es wurde keine Zeitzone gewählt',
'UTC+13 (New Zealand Daylight Savings Time)' => 'UTC+13 (Neuseeland Sommerzeit)',
'UTC+12 (International Date Line East)' => 'UTC+12 (Internationale Datumslinie Ost)',
'UTC+11' => 'UTC+11 (Ost-Australische Sommerzeit)',
'UTC+10 (East Australian Time)' => 'UTC+10 (Ost-Australische Zeit)',
'UTC+9.5 (Central Australian Time)' => 'UTC+9,5 (Zentral-Australische Zeit)',
'UTC+9 (Japan Time)' => 'UTC+9 (Japanische Zeit)',
'UTC+8 (China Coast Time)' => 'UTC+8 (Chinesische Küstenzeit)',
'UTC+7 (West Australian Time)' => 'UTC+7 (West-Australische Zeit)',
'UTC+6.5 (North Sumatra)' => 'UTC+6.5 (Nord Sumatra-Zeit)',
'UTC+6 (Russian Federation Zone 5)' => 'UTC+6 (Russische Föderationszone 5)',
'UTC+5.5 (Indian)' => 'UTC+5,5 (Indische Zeit)',
'UTC+5 (Russian Federation Zone 4)' => 'UTC+5 (Russische Föderationszone 4)',
'UTC+4 (Russian Federation Zone 3)' => 'UTC+4 (Russische Föderationszone 3)',
'UTC+3.5 (Iran)' => 'UTC+3,5 (Iranische Zeit)',
'UTC+3 (Baghdad Time/Moscow Time)' => 'UTC+3 (Bagdad-/Moskau-Zeit)',
'UTC+2 (Eastern Europe Time)' => 'UTC+2 (Osteuropäische Zeit)',
'UTC+1 (Central European Time)' => 'UTC+1 (Mitteleuropäische Zeit)',
'UTC+0 (Universal Time Coordinated)' => 'UTC+0 (Universal Time Coordinated)',
'UTC-1 (West Africa Time)' => 'UTC-1 (Westafrikanische Zeit)',
'UTC-2 (Azores Time)' => 'UTC-2 (Azoren-Zeit)',
'UTC-3 (Atlantic Time)' => 'UTC-3 (Atlantische Zeit)',
'UTC-3.5 (Newfoundland)' => 'UTC-3,5 (Neufundland-Zeit)',
'UTC-4 (Atlantic Time)' => 'UTC-4 (Atlantische Zeit)',
'UTC-5 (Eastern Time)' => 'UTC-5 (Ostamerikanische Zeit)',
'UTC-6 (Central Time)' => 'UTC-6 (Zentralamerikanische Zeit)',
'UTC-7 (Mountain Time)' => 'UTC-7 (Amerikanische Gebirgszeit)',
'UTC-8 (Pacific Time)' => 'UTC-8 (Pazifische Zeit)',
'UTC-9 (Alaskan Time)' => 'UTC-9 (Alaska-Zeit)',
'UTC-10 (Aleutians-Hawaii Time)' => 'UTC-10 (Aleuten-Hawaii-Zeit)',
'UTC-11 (Nome Time)' => 'UTC-11 (Alaska, Nome-Zeit)',
'License' => 'Lizenz',
'Your blog is currently licensed under:' => 'Ihr Blog ist derzeit lizenziert unter:',
'Change license' => 'Lizenz ändern',
'Remove license' => 'Lizenz entfernen',
'Your blog does not have an explicit Creative Commons license.' => 'Für dieses Blog liegt keine Creative Commons-Lizenz vor.',
'Select a license' => 'Creative Commons-Lizenz wählen',
'Publishing Paths' => 'System-Pfade',
'[_1] URL' => '[_1]-URL',
'Use subdomain' => 'Subdomain verwenden',
'Warning: Changing the [_1] URL can result in breaking all the links in your [_1].' => 'Achtung: Eine Änderung der [_1]-Adresse kann alle Links in Ihrem/Ihrer [_1] ungültig machen.',
q{The URL of your blog. Exclude the filename (i.e. index.html). End with '/'. Example: http://www.example.com/blog/} => q{Die URL Ihres Blogs. Bitte geben Sie die Adresse ohne Dateinamen und mit abschließendem „/“ ein, beispielsweise so: http://beispiel.de/blog/ },
q{The URL of your website. Exclude the filename (i.e. index.html). End with '/'. Example: http://www.example.com/} => q{Die URL Ihrer Website. Bitte geben Sie die Adresse ohne Dateinamen und mit abschließendem „/“ ein, beispielsweise so: http://beispiel.de/ },
'[_1] Root' => '[_1]-Wurzelverzeichnis',
'Use absolute path' => 'Absolute Pfadangabe verwenden',
'Warning: Changing the [_1] root requires a complete publish of your [_1].' => 'Achtung: nach Änderung des [_1]-Wurzelverzeichnis muss die/das gesamte [_1] neu veröffentlicht werden.',
q{The path where your index files will be published. Do not end with '/' or '\'. Example: /home/mt/public_html/blog or C:\www\public_html\blog} => q{Unter diesem Pfad werden die Index-Dateien abgelegt. Verwenden Sie kein abschließendes '/' oder '\' . Beispiel: /home/mt/public_html/blog oder C:\www\public_html\blog},
q{The path where your index files will be published. An absolute path (starting with '/' for Linux or 'C:\' for Windows) is preferred. Do not end with '/' or '\'. Example: /home/mt/public_html or C:\www\public_html} => q{Unter diesem Pfad werden die Index-Dateien abgelegt. Bitte geben Sie möglichst einen absoluten (bei Linux mit '/' oder bei Windows mit 'C:' beginnenden) Pfad an und verwenden Sie kein abschließendes '/' oder '\'. Beispiel: /home/mt/public_html oder C:\www\public_html},
'Advanced Archive Publishing' => 'Erweiterte Archivoptionen',
'Select this option only if you need to publish your archives outside of your Blog Root.' => 'Wählen Sie diese Option nur, wenn Sie Ihre Archive außerhalb des Wurzelverzeichnisses Ihres Blog veröffentlichen müssen.',
'Publish archives outside of Blog Root' => 'Archive außerhalb Wurzelverzeichnis ablegen',
'Archive URL' => 'Archivadresse',
'The URL of the archives section of your blog. Example: http://www.example.com/blog/archives/' => 'Unter dieser URL erscheint die Archivsektion Ihres Blogs, beispielsweise unter http://beispiel.de/blog/archiv/',
'Warning: Changing the archive URL can result in breaking all the links in your blog.' => 'Hinweis: Eine Änderung der Archivadresse kann alle Links zu Ihrem Blog ungültig machen.',
'Warning: Changing the archive path can result in breaking all the links in your blog.' => 'Warnung: Eine Änderung des Archivpfads kann sämtliche Links zu Ihrem Blog ungültig machen.',
q{The path where your archives section index files will be published. Do not end with '/' or '\'. Example: /home/mt/public_html/blog or C:\www\public_html\blog} => q{Unter diesem Pfad werden die Index-Dateien der Archivsektion abgelegt. Verwenden Sie kein abschließendes '/' oder '\'. Beispiel: /home/mt/public_html/blog oder C:\www\public_html\blog'},
q{The path where your archives section index files will be published. An absolute path (starting with '/' for Linux or 'C:\' for Windows) is preferred. Do not end with '/' or '\'. Example: /home/mt/public_html or C:\www\public_html} => q{Unter diesesem Pfad werden die Index-Dateien der Archivsektion abgelegt. Bitte geben Sie möglichst einen absoluten (bei Linux mit '/' oder bei Windows mit 'C:\' beginnenden) Pfad an und verwenden Sie kein abschließendes '/' oder '\'. Beispiel: /home/mt/public_html oder C:\www\public_html},
'Dynamic Publishing Options' => 'Dynamikoptionen',
'Enable dynamic cache' => 'Dynamischen Cache aktivieren',
'Enable conditional retrieval' => 'Conditional Retrieval aktivieren',
'Archive Settings' => 'Archiv-Einstellungen',
q{Enter the archive file extension. This can take the form of 'html', 'shtml', 'php', etc. Note: Do not enter the leading period ('.').} => q{Geben Sie die gewünschte Erweiterung der Archivdateien an. Möglich sind .html, .shtml, .php usw. Hinweis: Geben Sie die Erweiterung ohne führenden Punkt („.“) ein.},
'Preferred Archive' => 'Bevorzugte Archive',
q{Used to generate URLs (permalinks) for this blog's archived entries. Choose one of the archive type used in this blog's archive templates.} => q{Wird zur Erzeugung der dauerhaften Links archivierter Blog-Einträge (Permalinks) verwendet. Wählen Sie dazu einen der in diesem Blog verwendeten Archivtypen aus.},
'No archives are active' => 'Archive nicht aktiviert',
'Module Settings' => 'Modul-Einstellungen',
'Server Side Includes' => 'Server Side Includes',
'None (disabled)' => 'Keine (deaktiviert)',
'PHP Includes' => 'PHP-Includes',
'Apache Server-Side Includes' => 'Apache Server-Side-Includes',
'Active Server Page Includes' => 'Active Server Page-Includes',
'Java Server Page Includes' => 'Java Server Page-Includes',
'Module Caching' => 'Modul-Caching',
'Allow properly configured template modules to be cached to enhance publishing performance.' => 'Entsprechend konfigurierte Vorlagenmodule zwischenzuspeichern erhöht die Leistung Ihres Systems.',
'Revision History' => 'Revisionshistorie',
'Note: Revision History is currently disabled at the system level.' => 'Hinweis: Revisionshistorie ist systemweit deaktiviert',
'Revision history' => 'Revisionshistorie',
'Enable revision history' => 'Revisionsshistorie aufzeichnen',
'Number of revisions per entry/page' => 'Anzahl der Revisionen pro Eintrag/Seite',
'Number of revisions per page' => 'Anzahl der Revisionen pro Seite',
'Number of revisions per template' => 'Anzahl der Revisionen pro Vorlage',
'You must set your Blog Name.' => 'Bitte geben Sie einen Blognamen an',
'You did not select a time zone.' => 'Bitte wählen Sie eine Zeitzone.',
'You must set a valid URL.' => 'Bitte geben Sie eine gültige URL ein.',
'You must set your Local file Path.' => 'Bitte geben Sie einen lokalen Dateipfad an.',
'You must set a valid Local file Path.' => 'Bitte geben Sie einen gültigen lokalen Dateipfad an.',
'You must set a valid Archive URL.' => 'Bitte geben Sie eine gültige Archiv-Adresse an.',
'You must set your Local Archive Path.' => 'Geben Sie einen lokalen Archivpfad an.',
'You must set a valid Local Archive Path.' => 'Bitte definieren Sie einen gültigen Local Archive Path.',
## tmpl/cms/cfg_registration.tmpl
'Registration Settings' => 'Registrierungs-Einstellungen',
'Your blog preferences have been saved.' => 'Einstellungen übernommen.',
'User Registration' => 'Benutzerregistrierung',
'Allow registration for this website.' => 'Registierung für diese Website ermöglichen',
'Registration Not Enabled' => 'Registierungen nicht erlauben',
'Note: Registration is currently disabled at the system level.' => 'Hinweis: Registrierung derzeit systemweit deaktiviert.',
'Allow visitors to register as members of this website using one of the Authentication Methods selected below.' => 'Lesern ermöglichen, sich mit einer der unten aufgeführten Authentifizierungsmethoden als Mitglied dieser Website zu registrieren.',
'New Created User' => 'Neu angelegte Benutzerkonten',
'Select a role that you want assigned to users that are created in the future.' => 'Wählen Sie die Rolle, die künftig angelegten Benutzerkonten automatisch zugewiesen werden soll.',
'(No role selected)' => '(Keine Rolle gewählt)',
'Select roles' => 'Rollen awählen',
'Authentication Methods' => 'Authentifizierungs- methoden',
'The Perl module required for OpenID commenter authentication (Digest::SHA) is missing.' => 'Das zur OpenID-Authentifizierung erforderliche Perl-Modul Digest::SHA fehlt.',
'Please select authentication methods to accept comments.' => 'Wählen Sie, auf welche Weise sich Kommentar-Autoren authentifizieren können sollen.',
'Require E-mail Address for Comments via TypePad' => 'Für über TypePad eingehende Kommentare E-Mail-Adresse des Autors verlangen',
'Visitors must allow their TypePad account to share their e-mail address when commenting.' => 'Zur Anmeldung über TypePad muss das TypePad-Benutzerkonto so konfiguriert sein, daß es die E-Mail-Adresse des Autors übermittelt.',
'One or more Perl modules may be missing to use this authentication method.' => 'Zur Nutzung dieser Authentifizierungsmethode fehlt mindestens ein erforderliches Perl-Modul.',
'Setup TypePad token' => 'TypePad-Schlüssel einrichten',
## tmpl/cms/cfg_system_general.tmpl
'A test email was sent.' => 'Testmail verschickt.',
'Your settings have been saved.' => 'Die Einstellungen wurden gespeichert.',
'(None selected)' => '(Kein Blog gewählt)',
'System Email' => 'System- E-Mail-Adresse',
q{This email address is used in the 'From:' header of each email sent by Movable Type. Email may be sent for password recovery, commenter registration, comment and trackback notification, and a few other minor events.} => q{Diese Adresse wird von Movable Type für automatisch erzeugte E-Mails verwendet. Automatisch erzeugte Mails werden bei Passwortanforderungen, Registrierungen von Kommentarautoren, zur Benachrichtigung über Kommentare und TrackBack sowie bei einigen weiteren Ereignissen verschickt.},
'Send Test Email' => 'Testmail verschicken',
'Debug Mode' => 'Debug-Modus',
'Values other than zero provide additional diagnostic information for troubleshooting problems with your Movable Type installation. More information is available in the <a href="http://www.movabletype.org/documentation/developer/plugins/debug-mode.html">Debug Mode documentation</a>.' => 'Geben Sie ein Zahl größer null ein, um Diagnosemodi zu aktivieren. Welche Modi verfügbar sind, finden sie in der <a href="http://www.movabletype.org/documentation/developer/plugins/debug-mode.html">Dokumentation des Debug-Modus</a> (englischsprachig).',
'Performance Logging' => 'Performance-Logging',
'Turn on performance logging, which will report any system event that takes the number of seconds specified by Logging Threshold.' => 'Performance-Logging protokolliert Ereignisse, die länger als eine wählbare Zeitspanne dauern.',
'Turn on performance logging' => 'Performance-Logging aktivieren',
'Log Path' => 'Logging-Pfad',
'The filesystem directory where performance logs are written. The web server must have write permission in this directory.' => 'Verzeichnis für Log-Dateien. Ihr Webserver benötigt Schreibrechte für dieses Verzeichnis.',
'Logging Threshold' => 'Logging-Schwellenwert',
'The time limit for unlogged events in seconds. Any event that takes this amount of time or longer will be reported.' => 'Vorgänge, die länger als die angegebene Anzahl von Sekunden benötigen, loggen.',
'Enable this setting to have Movable Type track revisions made by users to entries, pages and templates.' => 'Aktivieren Sie diese Funktion, um Movable Type frühere Versionen von Einträgen, Seiten und Vorlagen vorhalten zu lassen.',
'Track revision history' => 'Revisionshistorie verfolgen',
'System-wide Feedback Controls' => 'Systemweite Feedback-Einstellungen',
'Prohibit Comments' => 'Kommentare nicht zulassen',
'This will override all individual blog settings.' => 'Dieser Einstellung überragt alle Einstellungen auf Blog-Ebene.',
'Disable comments for all blogs.' => 'Kommentare für alle Blogs deaktiveren',
'Prohibit TrackBacks' => 'TrackBacks nicht zulassen',
'Disable receipt of TrackBacks for all blogs.' => 'Empfang von TrackBacks für alle Blogs deaktivieren',
'Outbound Notifications' => 'Benachrichtigungen',
'Prohibit Notification Pings' => 'Pings nicht zulassen',
'Disable sending notification pings when a new entry is created in any blog on the system.' => 'Versand von Benachrichtigungs-Pings bei Veröffentlichung neuer Einträge systemweit deaktivieren.',
'Disable notification pings for all blogs.' => 'Benachrichtigungs-Pings für alle Blogs deaktivieren',
'Send Outbound TrackBacks to' => 'Ausgehende TrackBacks senden an',
'Do not send outbound TrackBacks or use TrackBack auto-discovery if your installation is intended to be private.' => 'Versenden Sie keine TrackBacks und verwenden Sie kein Auto-Disovery für TrackBacks, wenn Ihre Installation privat sein soll.',
'Any site' => 'Jede Site',
'(No Outbound TrackBacks)' => '(Kein TrackBack-Versand)',
'Only to blogs within this system' => 'Nur an Blogs in diesem System',
'Only to websites on the following domains:' => 'Nur zu folgenden Domains:',
'Lockout Settings' => 'Sperr-Einstellungen',
q{The system administrators whom you wish to notify if a user or an IP address is locked out. If no administrators are selected, notifications will be sent to the 'System Email' address.} => q{Bitte wählen Sie, welcher Administrator über automatische IP- und Benutzerkonten-Sperrungen informiert werden soll. Wählen Sie keinen Administrator, wird die System-E-Mail-Adresse verwendet.},
'Clear' => 'zurücksetzen',
'Select' => 'Wählen',
'User lockout policy' => 'Kontensperrung',
'A Movable Type user will be locked out if he or she submits an incorrect password [_1] or more times within [_2] seconds.' => 'Movable Type-Benutzerkonten werden automatisch gesperrt, wenn das zugehörige Passwort binnen [_2] Sekunden mindestens [_1] mal in Folge falsch eingegeben wurde.',
'IP address lockout policy' => 'IP-Sperrung',
'An IP address will be locked out if [_1] or more incorrect login attempts are made within [_2] seconds from the same IP address.' => 'IP-Adresse werden automatisch gesperrt, wenn von ihr binnen [_2] mindestens [_1] ungültige Anmeldeversuche ausgingen.',
q{However, the following IP addresses are 'whitelisted' and will never be locked out:} => q{Diese IP-Adressen werden nie gesperrt:},
'The list of IP addresses. If a remote IP address is included in this list, the failed login will not recorded. You can specify multiple IP addresses separated by commas or line breaks.' => 'IP-Liste. Sind nicht zum eigenen Netzwerk gehörende IP-Adressen enthalten, werden fehlgeschlagene Anmeldeversuche über diese nicht aufgezeichnet. Verwenden Sie pro Adresse eine Zeile oder trennen Sie die Adressen mit Kommas.',
'Send Email To' => 'E-Mail schicken an',
'The email address that should receive a test email from Movable Type.' => 'Die Adresse, an die Movable Type Testmails verschicken soll.',
'Send' => 'Absenden',
## tmpl/cms/cfg_system_users.tmpl
'User Settings' => 'Benutzereinstellungen',
'(No website selected)' => '(Keine Website gewählt)',
'Select website' => 'Website wählen',
'Allow Registration' => 'Registrierung erlauben',
'Select a system administrator you wish to notify when commenters successfully registered themselves.' => 'Bestimmen Sie, welcher Systemadministrator benachrichtigt werden soll, wenn ein Kommentarautor sich erfolgreich selbst registriert hat.',
'Allow commenters to register with blogs on this system.' => 'Kommentarautoren ermöglichen, sich mit Blogs an diesem System zu registrieren',
'Notify the following system administrators when a commenter registers:' => 'Folgende Systemadministratoren benachrichtigen, wenn sich ein Kommentarautor registriert hat:',
'Select system administrators' => 'System-Administrator wählen',
'Note: System Email Address is not set in System > General Settings. Emails will not be sent.' => 'Hinweis: Sie haben noch keine System-E-Mail-Adresse eingerichtet. Benachrichtigungen können daher nicht verschickt werden. Die Adresse kann unter System > Grundeinstellungen eingerichtet werden.',
'Password Validation' => 'Passwortregeln',
'Options' => 'Optionen',
'Should contain uppercase and lowercase letters.' => 'Klein- und Großbuchstaben erforderlich',
'Should contain letters and numbers.' => 'Buchstaben und Ziffern erforderlich',
'Should contain special characters.' => 'Sonderzeichen erforderlich',
'Minimun Length' => 'Mindestlänge',
'This field must be a positive integer.' => 'Positive ganze Zahl erforderlich.', # Translate - New # OK
'New User Defaults' => 'Voreinstellungen für neue Benutzer',
'Personal Blog' => 'Persönliches Blog',
'Have the system automatically create a new personal blog when a user is created. The user will be granted the blog administrator role on this blog.' => 'Automatisch persönliche Blogs für neue Benutzer anlegen. Dem Benutzer werden für sein persönliches Blog Administrationsrechte zugewiesen.',
'Automatically create a new blog for each new user.' => 'Für neue Benutzer automatisch eigenes Blog anlegen.',
'Personal Blog Location' => 'Speicherort für persönliche Blogs',
'Select a website you wish to use as the location of new personal blogs.' => 'Wählen Sie, unter welcher Website neue persönliche Blogs abgelegt werden sollen.',
'Change website' => 'Website wechseln',
'Personal Blog Theme' => 'Thema für persönliche Blogs',
'Select the theme that should be used for new personal blogs.' => 'Wählen Sie, welches Thema für neue persönliche Blogs genutzt werden soll.',
'(No theme selected)' => '(Kein Thema gewählt)',
'Change theme' => 'Thema ändern',
'Select theme' => 'Thema wählen',
'Default User Language' => 'Standard-Sprache',
'Choose the default language to apply to all new users.' => 'Wählen Sie, welche Sprache für neue Benutzerkonten verwendet werden soll.',
'Default Time Zone' => 'Standard-Zeitzone',
'Default Tag Delimiter' => 'Standard- Tag-Trennzeichen',
'Define the default delimiter for entering tags.' => 'Wählen Sie das Standard-Trennzeichen für die Eingabe von Tags',
'Comma' => 'Komma',
'Space' => 'Leerzeichen',
## tmpl/cms/cfg_web_services.tmpl
'Web Services Settings' => 'Webdienste-Einstellungen',
'Web Services from Six Apart' => 'Webdieste von Six Apart',
'Your TypePad token is used to access services from Six Apart like TypePad Connect and TypePad AntiSpam.' => 'Mit Ihrem TypePad-Token erhalten Sie Zugriff auf von Six Apart angebotene Webdienste wie TypePad Conect und TypePad AntiSpam.',
'TypePad is enabled.' => 'TypePad ist aktiviert.',
'TypePad token:' => 'TypePad-Schlüssel:',
'Clear TypePad Token' => 'TypePad-Schlüssel entfernen',
'Please click the Save Changes button below to disable authentication.' => 'Bitte klicken Sie auf "Änderungen speichern", um die Authentifizierung abzuschalten.',
'TypePad is not enabled.' => 'Typepad ist nicht aktiviert.',
' or [_1]obtain a TypePad token[_2] from TypePad.com.' => ' oder [_1]TypePad-Token von TypePad.com beziehen[_2].',
q{Please click the 'Save Changes' button below to enable TypePad.} => q{Klicken Sie auf „Änderungen speichern“, um TypePad zu aktivieren.},
'External Notifications' => 'Externe Benachrichtigungen',
'Notify ping services of website updates' => 'Ping-Dienste über Aktualisierungen dieser Website benachrichtigen',
'When this website is updated, Movable Type will automatically notify the selected sites.' => 'Movable Type benachrichtigt die angegeben Dienste automatisch, wenn diese Website aktualisiert wird.',
'Note: This option is currently ignored because outbound notification pings are disabled system-wide.' => 'Hinweis: Diese Option ist derzeit nicht wirksam, da ausgehende Pings systemweit deaktiviert sind.',
'Others:' => 'Andere:',
'(Separate URLs with a carriage return.)' => '(Pro Zeile eine URL)',
'Recently Updated Key' => '"Kürzlich aktualisiert"- Schlüssel',
'If you received a Recently Updated Key with the purchase of a Movable Type license, enter it here.' => 'Wenn Sie einen „Kürzlich aktualisiert“-Schlüssel mit Ihrer Movable Type-Lizenz erhalten haben, geben Sie ihn hier ein.',
## tmpl/cms/dashboard.tmpl
'Dashboard' => 'Übersichtsseite',
'System Overview' => 'Systemübersicht',
'Hi, [_1]' => ' Hallo [_1]',
'Select a Widget...' => 'Widget wählen...',
'Add' => 'Hinzufügen',
'Your Dashboard has been updated.' => 'Übersichtsseite aktualisiert.',
'The support directory is not writable.' => 'Das Support-Verzeichnis ist nicht beschreibbar.',
q{Movable Type was unable to write to its 'support' directory. Please create a directory at this location: [_1], and assign permissions that will allow the web server write access to it.} => q{Movable Type kann auf den Ordner „support“ nicht schreibend zugreifen. Legen Sie unter [_1] ein solches Verzeichnis an und stellen Sie sicher, daß der Webserver über Schreibrechte für diesen Ordner verfügt.},
'ImageDriver is not configured.' => 'ImageDriver ist nicht konfiguriert.',
'An image processing toolkit, often specified by the ImageDriver configuration directive, is not present on your server or is configured incorrectly. A toolkit must be installed to ensure proper operation of the userpics feature. Please install Image::Magick, NetPBM, GD, or Imager, then set the ImageDriver configuration directive accordingly.' => 'Auf Ihrem System ist keine Bildquelle vorhanden oder aber fehlerhaft konfiguiert. Eine Bildquelle ist zur korrekten Funktion der Benutzerbild-Funktionen erforderlich. Installieren Sie Image::Magick, NetPBM oder Imager und konfiguieren Sie die ImageDriver-Direktive entsprechend.',
## tmpl/cms/dialog/adjust_sitepath.tmpl
'Confirm Publishing Configuration' => 'Veröffentlichungseinstellungen bestätigen',
'Site Path' => 'Lokaler Pfad',
'Parent Website' => 'Übergeordnete Website',
'Please choose parent website.' => 'Bitte wählen Sie die übergeordnete Website.',
q{Enter the new URL of your public blog. End with '/'. Example: http://www.example.com/blog/} => q{Geben Sie die neue Adresse (URL) Ihres öffentlichen Blogs mit abschließendem '/' ein. Beispiel: http://beispiel.de/blog/},
'Blog Root' => 'Blog-Wurzelverzeichnis',
q{Enter the new path where your main index file will be located. Do not end with '/' or '\'. Example: /home/mt/public_html/blog or C:\www\public_html\blog} => q{Geben Sie den neuen Pfad zur Startseiten-Datei an. Verwenden Sie kein abschließendes '/' oder '\'. Beispiel: /home/mt/public_html/blog oder C:\www\public_html\blog},
q{Enter the new path where your main index files will be located. An absolute path (starting with '/' for Linux or 'C:\' for Windows) is preferred. Do not end with '/' or '\'. Example: /home/mt/public_html or C:\www\public_html} => q{Geben Sie den neuen Pfad zur Startseiten-Datei an. Bitte geben Sie möglichst einen absoluten (bei Linux mit '/' oder bei Windows mit \'C:\' beginnenden) Pfad an und verwenden Sie kein abschließendes '/' oder '\'. Beispiel: /home/mt/public_html oder C:\www\public_html},
'Enter the new URL of the archives section of your blog. Example: http://www.example.com/blog/archives/' => 'Geben Sie die neue Adresse der Archivsektion Ihres Blogs an. Beispiel: http://beispiel.de/blog/archiv',
q{Enter the new path where your archives section index files will be published. Do not end with '/' or '\'. Example: /home/mt/public_html/blog or C:\www\public_html\blog} => q{Geben Sie den neuen Pfad zu den Index-Dateien der Archivsektion ohne abschließendes '/' oder '\' an. Beispiel: /home/mt/public_html/blog oder C:\www\public_html\blog},
q{Enter the new path where your archives section index files will be published. An absolute path (starting with '/' for Linux or 'C:\' for Windows) is preferred. Do not end with '/' or '\'. Example: /home/mt/public_html or C:\www\public_html} => q{Geben Sie den neuen Pfad zu den Index-Dateien der Archivsektion an. Bitte geben Sie möglichst einen absoluten (bei Linux mit '/' oder bei Windows mit 'C:\' beginnenden) Pfad an und verwenden Sie kein abschließendes '/' oder '\'. Beispiel: /home/mt/public_html oder C:\www\public_html},
'Continue' => 'Weiter',
'Continue (s)' => 'Weiter (s)',
'Back (b)' => 'Zurück (b)',
'You must set a valid Site URL.' => 'Bitte geben Sie eine gültige Adresse (URL) an',
'You must set a valid Local Site Path.' => 'Bitte geben Sie ein gültiges lokales Verzeichnis an',
'You must select a parent website.' => 'Bitte wählen Sie eine übergeordnete Website.',
## tmpl/cms/dialog/asset_insert.tmpl
'Close (x)' => 'Schließen (x)',
## tmpl/cms/dialog/asset_list.tmpl
'Insert Image' => 'Bild einfügen',
'Insert Asset' => 'Asset einfügen',
'Upload New File' => 'Neue Datei hochladen',
'Upload New Image' => 'Neues Bild hochladen',
'Asset Name' => 'Assetname',
'Size' => 'Größe',
'Next (s)' => 'Nächstes (s)',
'Insert (s)' => 'Einfügen (s)',
'Insert' => 'Einfügen',
'Cancel (x)' => 'Abbrechen (x)',
'No assets could be found.' => 'Keine Assets gefunden.',
## tmpl/cms/dialog/asset_options_image.tmpl
'Display image in entry/page' => 'Bild in Eintrag/Seite anzeigen',
'Use thumbnail' => 'Vorschaubild',
'width:' => 'Breite:',
'pixels' => 'Pixel',
'Alignment' => 'Ausrichtung',
'Left' => 'Links',
'Center' => 'Zentriert',
'Right' => 'Rechts',
'Link image to full-size version in a popup window.' => 'Mit Großansicht in Popup verlinken',
'Remember these settings' => 'Einstellungen speichern',
## tmpl/cms/dialog/asset_options.tmpl
'File Options' => 'Dateioptionen',
'Create entry using this uploaded file' => 'Eintrag mit hochgeladener Datei anlegen',
'Create a new entry using this uploaded file.' => 'Neuen Eintrag mit hochgeladener Datei anlegen',
'Finish (s)' => 'Fertigstellen (s)',
'Finish' => 'Fertigstellen',
## tmpl/cms/dialog/asset_replace.tmpl
## tmpl/cms/dialog/asset_upload.tmpl
'You need to configure your blog.' => 'Bitte konfigurieren Sie Ihr Blog.',
'Your blog has not been published.' => 'Ihr Blog wurde noch nicht veröffentlicht.',
## tmpl/cms/dialog/clone_blog.tmpl
'Blog Details' => 'Blog-Details',
'This is set to the same URL as the original blog.' => 'Das ist die URL des ursprünglichen Blogs.',
'This will overwrite the original blog.' => 'Das ursprüngliche Blog wird daher beim Klonen überschrieben.',
'Exclusions' => 'Ausschließen',
'Exclude Entries/Pages' => 'Einträge/Seiten ausschließen',
'Exclude Comments' => 'Kommentare ausschließen',
'Exclude Trackbacks' => 'TrackBacks ausschließen',
'Exclude Categories/Folders' => 'Kategorien/Ordner ausschließen',
'Clone' => 'Klonen',
'Mark the settings that you want cloning to skip' => 'Markieren Sie Objekte, die nicht geklont werden sollen',
'Entries/Pages' => 'Einträge/Seiten',
'Categories/Folders' => 'Kategorien/Ordner',
'Confirm' => 'Bestätigen',
## tmpl/cms/dialog/comment_reply.tmpl
'Reply to comment' => 'Auf Kommentar antworten',
'On [_1], [_2] commented on [_3]' => '[_2] hat am [_1] [_3] kommentiert',
'Your reply:' => 'Ihre Antwort:',
'Submit reply (s)' => 'Abschicken (s)',
## tmpl/cms/dialog/create_association.tmpl
'No roles exist in this installation. [_1]Create a role</a>' => 'In dieser MT-Installation ist keine Rolle vorhanden. [_1]Rolle anlegen</a>',
'No groups exist in this installation. [_1]Create a group</a>' => 'In dieser MT-Installation ist keine Gruppe vorhanden. [_1]Gruppe anlegen</a>',
'No users exist in this installation. [_1]Create a user</a>' => 'In dieser MT-Installation ist kein Benutzer vorhanden. [_1]Benutzer anlegen</a>',
'No blogs exist in this installation. [_1]Create a blog</a>' => 'In dieser MT-Installation ist kein Blog vorhanden. [_1]Blog anlegen</a>',
## tmpl/cms/dialog/entry_notify.tmpl
'Send a Notification' => 'Benachrichtigung versenden',
'You must specify at least one recipient.' => 'Bitte geben Sie mindestens einen Empfänger an.',
q{Your [_1]'s name, title, and a link to view it will be sent in the notification. Additionally, you can add a message, include an excerpt and/or send the entire body.} => q{Benachrichtigungen beinhalten den Namen Ihres Blogs bzw. Ihrer Website, den Titel des und einen Link zum Eintrag. Optional können Sie auch eine eigene Nachricht und/oder einen Auszug des Eintrags oder den gesamten Eintragstext mitschicken.},
'Recipients' => 'Empfänger',
'Enter email addresses on separate lines or separated by commas.' => 'Verwenden Sie pro Adresse eine Zeile oder trennen Sie ei E-Mail-Adressen mit Kommata.',
'All addresses from Address Book' => 'Alle Adressen aus dem Adressbuch',
'Optional Message' => 'Nachricht (optional)',
'Optional Content' => 'Inhalt (optional)',
'(Body will be sent without any text formatting applied.)' => '(Der Eintragstext wird ohne Textformatierungen verschickt.)',
'Send notification (s)' => 'Benachrichtigung absenden (s)',
## tmpl/cms/dialog/list_revision.tmpl
'Select the revision to populate the values of the Edit screen.' => 'Wählen Sie die gewünschte frühere Version aus.',
## tmpl/cms/dialog/move_blogs.tmpl
'Warning: You need to copy uploaded assets to the new path manually. It is also recommended not to delete files in the old path to avoid broken links.' => 'Wichtig: Bereits hochgeladene Assets müssen manuell in das neue Verzeichnis übertragen werden. Um sicher zu gehen, daß dadurch keine Veweise ungültig werden, belassen Sie danach die Originaldateien an ihrem ursprünglichen Ort.',
## tmpl/cms/dialog/new_password.tmpl
'Change Password' => 'Passwort ändern',
'Enter the new password.' => 'Neues Passwort eingeben',
'New Password' => 'Neues Passwort',
'Confirm New Password' => 'Neues Passwort bestätigen',
'Change' => 'Ändern',
## tmpl/cms/dialog/publishing_profile.tmpl
'Publishing Profile' => 'Veröffentlichungsprofil',
'Choose the profile that best matches the requirements for this blog.' => 'Wählen Sie das Profil, das den Anforderungen dieses Blogs am besten entspricht.',
'Static Publishing' => 'Statische Veröffentlichung',
'Immediately publish all templates statically.' => 'Alle Vorlagen sofort statisch veröffentlichen.',
'Background Publishing' => 'Veröffentlichung im Hintergrund',
'All templates published statically via Publish Que.' => 'Alle Vorlagen statisch über die Veröffentlichungs-Warteschlange veröffentlichen.',
'High Priority Static Publishing' => 'Priorisierte statische Veröffentlichung',
'Immediately publish Main Index template, Entry archives, and Page archives statically. Use Publish Queue to publish all other templates statically.' => 'Hauptindex, Eintragsarchive und Seitenarchive sofort statisch, alle anderen Vorlagen im Hintergrund statisch veröffentlichen.',
'Immediately publish Main Index template, Page archives statically. Use Publish Queue to publish all other templates statically.' => 'Hauptindex und Seitenarchive sofort statisch, alle anderen Vorlagen im Hintergrund statisch veröffentlichen.',
'Dynamic Publishing' => 'Dynamische Veröffentlichung',
'Publish all templates dynamically.' => 'Alle Vorlagen dynamisch veröffentlichen.',
'Dynamic Archives Only' => 'Nur dynamische Archive',
'Publish all Archive templates dynamically. Immediately publish all other templates statically.' => 'Alle Archivvorlagen dynamisch, alle anderen Vorlagen sofort statisch veröffentlichen.',
'This new publishing profile will update your publishing settings.' => 'Das neue Veröffentlichungs-Profil ändert Ihre Veröffentlichungs-Einstellungen.',
'Are you sure you wish to continue?' => 'Wirklich fortsetzen?',
## tmpl/cms/dialog/recover.tmpl
'Reset Password' => 'Passwort zurücksetzen',
'The email address provided is not unique. Please enter your username.' => 'Die angegebene E-Mail-Adresse wird mehrfach genutzt. Bitte geben Sie stattdessen Ihren Benutzernamen ein.',
'An email with a link to reset your password has been sent to your email address ([_1]).' => 'Es wurde eine E-Mail mit einem Link zum Zurücksetzen Ihres Passwortes an Ihre Adresse ([_1]) verschickt .',
'Back (x)' => 'Zurück (x)',
'Sign in to Movable Type (s)' => 'Bei Movable Type anmelden (s)',
'Sign in to Movable Type' => 'Bei Movable Type anmelden',
'Reset (s)' => 'Zurücksetzen (s)',
## tmpl/cms/dialog/refresh_templates.tmpl
'Refresh Global Templates' => 'Globale Vorlagen zurücksetzen',
'Cannot find template set. Please apply [_1]theme[_2] to refresh your templates.' => 'Kann Vorlagengruppe nicht finden. Bitte wenden Sie das [_1]Thema[_2] an, um Ihre Vorlagen zurückzusetzen.',
'Revert modifications of theme templates' => 'Änderungen an Themen-Vorlagen zurücknehmen',
'Reset to theme defaults' => 'Auf Themen-Standardwerte zurücksetzen',
q{Deletes all existing templates and install the selected theme's default.} => q{Alle Vorlagen löschen und Standarvorlagen des gewählten Themas installieren.},
'Refresh global templates' => 'Globale Vorlagen zurücksetzen',
'Reset to factory defaults' => 'Auf Werkseinstellungen zurücksetzen',
'Deletes all existing templates and installs factory default template set.' => 'Löscht alle vorhandenen Vorlagen und installiert die Movable Type-Standardvorlagen',
'Updates current templates while retaining any user-created templates.' => 'Aktualisiert die derzeit gewählten Vorlagen, ohne von Benutzern angelegte Vorlagen zu verändern',
'Make backups of existing templates first' => 'Sichern Sie zuerst Ihre vorhandenen Vorlagen',
'You have requested to <strong>refresh the current template set</strong>. This action will:' => 'Sie möchten <strong>die derzeit gewählte Vorlagengruppe zurücksetzen</strong>. Das bedeutet:',
'You have requested to <strong>refresh the global templates</strong>. This action will:' => 'Sie möchten <strong>die globalen Vorlagen zurücksetzen</strong>. Das bedeutet:',
'make backups of your templates that can be accessed through your backup filter' => 'die vorhandenen Vorlagen werden gesichert und können später wiederhergestellt werden',
'potentially install new templates' => 'ggf. werden neue Vorlagen installiert',
'overwrite some existing templates with new template code' => 'einige vorhandene Vorlagen werden mit neuen Vorlagen überschrieben',
'You have requested to <strong>apply a new template set</strong>. This action will:' => 'Sie möchten <strong>eine neue Vorlagengruppe installieren</a>. Das umfasst:',
'You have requested to <strong>reset to the default global templates</strong>. This action will:' => 'Sie möchten <strong>auf die globalen Standardvorlagen zurücksetzen</a>. Das bedeutet:',
'delete all of the templates in your blog' => 'alle Vorlagen Ihres Blogs werden gelöscht',
'install new templates from the selected template set' => 'die gewählte Vorlagengruppe wird neu installiert',
'delete all of your global templates' => 'alle globalen Vorlagen werden gelöscht',
'install new templates from the default global templates' => 'die globalen Standardvorlagen werden neu installiert',
## tmpl/cms/dialog/restore_end.tmpl
'An error occurred during the restore process: [_1] Please check your restore file.' => 'Bei der Wiederherstellung ist ein Fehler aufgetreten: [_1]. Bitte überprüfen Sie die Sicherungsdatei.',
'View Activity Log (v)' => 'Aktivitätsprotokoll ansehen (v)',
'All data restored successfully!' => 'Alle Daten erfolgreich wiederhergestellt!',
'Close (s)' => 'Schließen (s)',
'Next Page' => 'Nächste Seite',
'The page will redirect to a new page in 3 seconds. [_1]Stop the redirect.[_2]' => 'Diese Seite leitet in drei Sekunden auf eine neue Seite weiter. [_1]Weiterleitung abbrechen[_2].',
## tmpl/cms/dialog/restore_start.tmpl
'Restoring...' => 'Wiederherstellung...',
## tmpl/cms/dialog/restore_upload.tmpl
'Restore: Multiple Files' => 'Wiederherstellung mehrerer Dateien',
'Canceling the process will create orphaned objects. Are you sure you want to cancel the restore operation?' => 'Abbrechen führt zu verwaisten Objekten. Wiederherstellung wirklich abbrechen?',
'Please upload the file [_1]' => 'Bitte laden Sie die Datei [_1] hoch',
## tmpl/cms/dialog/select_association_type.tmpl
'Grant website permission to a user' => 'Website-Berechtigung an Benutzer zuweisen',
'Grant blog permission to a user' => 'Blog-Berechtigung an Benutzer zuweisen',
'Grant website permission to a group' => 'Website-Berechtigung an Gruppe zuweisen',
'Grant blog permission to a group' => 'Blog-Berechtigung an Gruppe zuweisen',
## tmpl/cms/dialog/select_theme.tmpl
'Select Personal blog theme' => 'Thema für persönliche Blogs wählen',
## tmpl/cms/dialog/theme_element_detail.tmpl
## tmpl/cms/edit_asset.tmpl
'Edit Asset' => 'Asset bearbeiten',
'Your changes have been saved.' => 'Änderungen gespeichert.',
'Stats' => 'Statistik',
'[_1] - Created by [_2]' => 'Angelegt von [_2] [_1]',
'[_1] - Modified by [_2]' => '[_1] - Bearbeitet von [_2]',
'Appears in...' => 'Verwendet in...',
'This asset has been used by other users.' => 'Das Asset wird von anderen Benutzern verwendet.',
'Related Assets' => 'Verwandte Assets',
'[_1] is missing' => '[_1] fehlt',
'Embed Asset' => 'Asset einbetten',
'Save changes to this asset (s)' => 'Änderungen des Assets speichern (s)',
'You must specify a name for the asset.' => 'Bitte geben Sie einen Namen für das Asset an.',
## tmpl/cms/edit_author.tmpl
'Edit Profile' => 'Profil bearbeiten',
'This profile has been updated.' => 'Profil aktualisiert',
'A new password has been generated and sent to the email address [_1].' => 'Ein neues Passwort wurde erzeugt und an [_1] verschickt.',
'This profile has been unlocked.' => 'Benutzerkonto entsperrt',
'This user was classified as pending.' => 'Benutzer auf wartend gesetzt.',
'This user was classified as disabled.' => 'Benutzerkonto deaktiviert.',
'This user was locked out.' => 'Benutzerkonto gesperrt',
q{If you want to unlock this user click the 'Unlock' link. <a href="[_1]">Unlock</a>} => q{Um dieses Benutzerkonto zu entsperren, klicken Sie auf 'Entsperren'. <a href="[_1]">Entsperren</a>},
'User properties' => 'Benutzer-Eigenschaften',
'Your web services password is currently' => 'Ihr Passwort für Webdienste lautet derzeit',
'_WARNING_PASSWORD_RESET_SINGLE' => 'Sie sind dabei, das Passwort von [_1] zurückzusetzen. Dazu wird ein zufällig erzeugtes neues Passwort per E-Mail an [_2] verschickt werden.\n\nForsetzen?',
'Error occurred while removing userpic.' => 'Beim Entfernen des Benutzerbildes ist ein Fehler aufgetreten',
'_USER_STATUS_CAPTION' => 'Status',
'Status of user in the system. Disabling a user prevents that person from using the system but preserves their content and history.' => 'Status des Benutzerkontos. Um einem Benutzer den Zugriff auf das System zu entziehen, ohne von ihm angelegte Inhalte zu verliren, deaktivieren Sie das jeweilige Benutzerkonto.',
'_USER_ENABLED' => 'Aktiviert',
'_USER_PENDING' => 'Schwebend',
'_USER_DISABLED' => 'Deaktiviert',
'The username used to login.' => 'Benutzername (für Anmeldung)',
'External user ID' => 'Externe Benutzer-ID',
'The name displayed when content from this user is published.' => 'Der Name, der zusammen mit Inhalten dieses Benutzers angezeigt werden soll.',
'The email address associated with this user.' => 'Mit diesem Benutzer verknüpfte E-Mail-Adresse',
q{This User's website (e.g. http://www.movabletype.com/). If the Website URL and Display Name fields are both populated, Movable Type will by default publish entries and comments with bylines linked to this URL.} => q{Die Website dieses Benutzers (z.B. http://movabletype.com/). Ist sowohl dieses als auch das Feld „Anzeigename“ ausgefüllt, erzeugt Movable Type daraus per Voreinstellung einen Link zur angebenen Website und zeigt diesen unter Einträgen und Kommentaren des Benutzers an.},
'The image associated with this user.' => 'Ein diesem Benutzer zugeordnetes Bild',
'Select Userpic' => 'Benutzerbild wählen',
'Remove Userpic' => 'Benutzerbild entfernen',
'Current Password' => 'Derzeitiges Passwort',
'Existing password required to create a new password.' => 'Derzeitiges Passwort zur Passwortänderung erforderlich',
'Initial Password' => 'Passwort',
'Enter preferred password.' => 'Bevorzugtes Passwort eingeben',
'Confirm Password' => 'Passwort bestätigen',
'Repeat the password for confirmation.' => 'Passwort zur Bestätigung wiederholen',
'Password recovery word/phrase' => 'Erinnerungssatz',
'This word or phrase is not used in the password recovery.' => 'Dieser Ausdruck ist nicht Teil des Erinnerungssatzes',
'Preferences' => 'Konfigurieren',
'Language' => 'Sprache',
'Display language for the Movable Type interface.' => 'Anzeigesprache der Movable Type-Benutzeroberfläche',
'Text Format' => 'Textformatierung',
'Default text formatting filter when creating new entries and new pages.' => 'Standard-Textfilter beim Erstellen neuer Seiten und Einträge',
'(Use Website/Blog Default)' => '(Standardeinstellung verwenden)',
'Date Format' => 'Zeit- angaben',
'Default date formatting in the Movable Type interface.' => 'Standard-Datums-Formatierung in der Movable Type-Oberfläche',
'Relative' => 'Relativ',
'Full' => 'Absolut',
'Tag Delimiter' => 'Tag-Trennzeichen',
'Preferred method of separating tags.' => 'Bevorzugtes Trennzeichen für Tags',
'Web Services Password' => 'Passwort für Webdienste',
'For use by Activity feeds and with XML-RPC and Atom-enabled clients.' => 'Erforderlich für Aktivitätsfeeds und für externe Software, die über XML-RPC oder ATOM-API auf das Weblog zugreift',
'Reveal' => 'Anzeigen',
'System Permissions' => 'Berechtigungen',
'Create personal blog for user' => 'Persönliches Blog für den Benutzer anlegen',
'Create User (s)' => 'Benutzerkonto anlegen (s)',
'Save changes to this author (s)' => 'Kontoänderungen speichern (s)',
'_USAGE_PASSWORD_RESET' => 'Hier können Sie das Passwort dieses Benutzers zurücksetzen. Dazu wird ein zufälliges neues Passwort erzeugt und an <strong>[_1]</strong> verschickt werden.',
'Initiate Password Recovery' => 'Passwort wiederherstellen',
## tmpl/cms/edit_blog.tmpl
'Create Blog' => 'Blog anlegen',
'Your blog configuration has been saved.' => 'Ihre Blog-Konfiguration wurde gespeichert.',
'Blog Theme' => 'Blog-Thema',
'Select the theme you wish to use for this blog.' => 'Wählen Sie das Thema, das Sie für dieses Blog verwenden möchten.',
'Name your blog. The blog name can be changed at any time.' => 'Geben Sie Ihrem Blog einen Namen. Der Name kann jederzeit geändert werden.',
'Enter the URL of your Blog. Exclude the filename (i.e. index.html). Example: http://www.example.com/blog/' => 'Geben Sie die Web-Adresse (URL) Ihres Blogs ohne Dateinamen (z.B. index.html) ein. Beispiel: http://beispiel.com/blog/',
q{The path where your index files will be located. Do not end with '/' or '\'. Example: /home/mt/public_html/blog or C:\www\public_html\blog} => q{Der Pfad, unter dem die Index-Dateien abgelegt werden sollen, ohne abschließendes '/' oder '\'. Beispiel: /home/mt/public_html/blog oder C:\www\public_html\blog},
q{The path where your index files will be located. An absolute path (starting with '/' for Linux or 'C:\' for Windows) is preferred. Do not end with '/' or '\'. Example: /home/mt/public_html or C:\www\public_html} => q{Der Pfad, unter dem die Index-Dateien abgelegt werden sollen, ohne abschließendes '/' or '\' und möglichst in absoluter Form, also am Anfang unter Linux mit '/' oder mit 'C:\' unter Windows. Beispiel: /home/mt/public_html oder C:\www\public_html},
'Select your timezone from the pulldown menu.' => 'Zeitzone des Weblogs',
'If you choose a different language than the default language defined at the system level, you may need to change module names in certain templates to include different global modules.' => 'Wenn Sie eine andere Sprache als die systemweit festgelegte Standardsprache wählen, können Sie unterschiedliche globale Vorlagen verwenden, indem Sie die Modulnamen in Ihren Vorlagen entsprechend ändern.',
'Create Blog (s)' => 'Blog anlegen (s)',
'You must set your Local Site Path.' => 'Bitte wählen Sie ein Wurzelverzeichnis',
## tmpl/cms/edit_category.tmpl
'Edit Category' => 'Kategorie bearbeiten',
'Useful links' => 'Nützliche Links',
'Manage entries in this category' => 'Einträge in dieser Kategorie verwalten',
'You must specify a label for the category.' => 'Geben Sie einen Namen für die Kategorie an.',
'You must specify a basename for the category.' => 'Geben Sie einen Basisnamen für die Kategorie an.',
'Please enter a valid basename.' => 'Bitte geben Sie einen gültigen Basisnamen ein.',
'_CATEGORY_BASENAME' => 'Basisname',
'This is the basename assigned to your category.' => 'Der dieser Kategorie zugewiesene Basisname',
q{Warning: Changing this category's basename may break inbound links.} => q{Achtung: Änderungen des Basisnamens können bestehende externe Links auf diese Kategorieseite ungültig machen},
'Inbound TrackBacks' => 'TrackBack-Empfang',
'If enabled, TrackBacks will be accepted for this category from any source.' => 'Wenn die Option aktiv ist, sind Kategorie-TrackBacks aus allen Quellen zugelassen',
'View TrackBacks' => 'TrackBacks ansehen',
'TrackBack URL for this category' => 'TrackBack-URL für diese Kategorie',
'_USAGE_CATEGORY_PING_URL' => 'Das ist die Adresse für TrackBacks für diese Kategorie. Wenn Sie sie öffentlich machen, kann jeder, der in seinem Blog einen für diese Kategorie relevanten Eintrag geschrieben hat, einen TrackBack-Ping senden. Mittels TrackBack-Tags können Sie diese TrackBacks dann auf Ihrer Seite anzeigen. Näheres dazu finden Sie in der Dokumentation.',
'Passphrase Protection' => 'Passphrasenschutz',
'Outbound TrackBacks' => 'TrackBack-Versand',
'Trackback URLs' => 'TrackBack-URLs',
'Enter the URL(s) of the websites that you would like to send a TrackBack to each time you create an entry in this category. (Separate URLs with a carriage return.)' => 'Geben Sie die Adressen der Websites ein, an die Sie automatisch einen TrackBack-Ping schicken möchten, wenn ein neuer Eintrag in dieser Kategorie veröffentlicht wurde. Verwenden Sie für jede Adresse eine neue Zeile.',
'Save changes to this category (s)' => 'Kategorieänderungen speichern (s)',
## tmpl/cms/edit_commenter.tmpl
'Commenter Details' => 'Kommentarautor-Details',
'The commenter has been trusted.' => 'Sie vertrauen diesem Kommentarautoren.',
'The commenter has been banned.' => 'Dieser Kommentarautor wurde gesperrt.',
'Comments from [_1]' => 'Kommentare von [_1]',
'commenter' => 'Kommentarautor',
'commenters' => 'Kommentarautoren',
'to act upon' => 'bearbeiten',
'Trust user (t)' => 'Benutzer vertrauen (t)',
'Trust' => 'Vertrauen',
'Untrust user (t)' => 'Benutzer nicht mehr vertrauen (t)',
'Untrust' => 'Nicht vertrauen',
'Ban user (b)' => 'Benutzer sperren (b)',
'Ban' => 'Sperren',
'Unban user (b)' => 'Benutzer nicht mehr sperren (b)',
'Unban' => 'Entsperren',
'The Name of the commenter' => 'Name des Kommentarautors',
'View all comments with this name' => 'Alle Kommentare mit diesem Autorennamen anzeigen',
'Identity' => 'Identität',
'The Identity of the commenter' => 'Identität des Kommentarautors',
'View' => 'Ansehen',
'The Email Address of the commenter' => 'E-Mail-Adresse des Kommentarautors',
'Withheld' => 'Zurückgehalten',
'View all comments with this email address' => 'Alle Kommentare von dieser E-Mail-Adresse anzeigen',
'The Website URL of the commenter' => 'URL des Kommentarautors',
'The trusted status of the commenter' => 'Vertrauensstatus des Kommentarautors',
'Trusted' => 'vertraut',
'Authenticated' => 'Authentifiziert',
## tmpl/cms/edit_comment.tmpl
'The comment has been approved.' => 'Kommentar freigeschaltet.',
'This comment was classified as spam.' => 'Kommentar als Spam mariert.',
'Total Feedback Rating: [_1]' => 'Gesamtbewertung: [_1]',
'Test' => 'Test',
'Score' => 'Bewertung',
'Results' => 'Treffer',
'Save changes to this comment (s)' => 'Kommentaränderungen speichern (s)',
'comment' => 'Kommentar',
'comments' => 'Kommentare',
'Delete this comment (x)' => 'Diesen Kommentar löschen (x)',
'Manage Comments' => 'Kommentare verwalten',
'_external_link_target' => '_blank',
'View [_1] comment was left on' => 'Zeige [_1] Kommentar zu',
'Reply to this comment' => 'Kommentar beantworten',
'Update the status of this comment' => 'Kommentarstatus aktualisieren',
'Reported as Spam' => 'Als Spam gemeldet',
'View all comments with this status' => 'Alle Kommentare mit diesem Status anzeigen',
'The name of the person who posted the comment' => 'Name des Kommentarautors',
'View all comments by this commenter' => 'Alle Kommentare von diesem Kommentarautor anzeigen',
'View this commenter detail' => 'Details zum Kommentarautoren anzeigen',
'(Trusted)' => '(vertraut)',
'Untrust Commenter' => 'Kommentarautor nicht mehr vertrauen',
'Ban Commenter' => 'Kommentarautor sperren',
'(Banned)' => '(gesperrt)',
'Trust Commenter' => 'Kommentarautor vertrauen',
'Unban Commenter' => 'Kommentarautor nicht mehr sperren',
'(Pending)' => '(wartet)',
'Email address of commenter' => 'E-Mail-Adresse des Kommentarautors',
'Unavailable for OpenID user' => 'Nicht verfügbar für OpenID-Nutzer',
'Email' => 'E-Mail',
'URL of commenter' => 'URL des Kommentarautors',
'No url in profile' => 'Keine URL im Profil',
'View all comments with this URL' => 'Alle Kommentare mit dieser URL anzeigen',
'[_1] this comment was made on' => '[_1] zum Kommentar',
'[_1] no longer exists' => '[_1] existiert nicht mehr',
'View all comments on this [_1]' => 'Alle Kommentare zu diesem Eintrag oder dieser Seite',
'Date' => 'Datum',
'Date this comment was made' => 'Datum, an dem dieser Kommentar abgegeben wurde',
'View all comments created on this day' => 'Alle Kommentare dieses Tages anzeigen',
'IP Address of the commenter' => 'IP-Adresse des Kommentarautors',
'View all comments from this IP Address' => 'Alle Kommentare von dieser IP-Adresse anzeigen',
'Fulltext of the comment entry' => 'Vollständiger Kommentartext',
'Responses to this comment' => 'Reaktionen auf diesen Kommentar',
## tmpl/cms/edit_entry_batch.tmpl
'Save these [_1] (s)' => 'Diese [_1] speichern (s)',
'Published Date' => 'Veröffentlichungs-Datum',
'Unpublished (Draft)' => 'Unveröffentlicht (Entwurf)',
'Unpublished (Review)' => 'Unveröffentlicht (Prüfung)',
## tmpl/cms/edit_entry.tmpl
'Edit Page' => 'Seite bearbeiten',
'Create Page' => 'Seite anlegen',
'Add folder' => 'Ordner hinzufügen',
'Add folder name' => 'Ordnername hinzufügen',
'Add new folder parent' => 'Neuen übergeordneten Ordner hinzufügen',
'Preview this page (v)' => 'Vorschau (v)',
'Delete this page (x)' => 'Seite löschen (x)',
'View Page' => 'Seite ansehen',
'Edit Entry' => 'Eintrag bearbeiten',
'Create Entry' => 'Neuen Eintrag schreiben',
'Add category' => 'Kategorie hinzufügen',
'Add category name' => 'Kategoriename hinzufügen',
'Add new category parent' => 'Neue übergeordnete Kateotrie hinzufügen',
'Manage Entries' => 'Einträge verwalten',
'Preview this entry (v)' => 'Vorschau (v)',
'Delete this entry (x)' => 'Eintrag löschen (x)',
'View Entry' => 'Eintrag ansehen',
'A saved version of this entry was auto-saved [_2]. <a href="[_1]">Recover auto-saved content</a>' => 'Eintrag automatisch gespeichert [_2]. <a href="[_1]">Automatisch gespeicherte Version wiederherstellen</a>',
'A saved version of this page was auto-saved [_2]. <a href="[_1]">Recover auto-saved content</a>' => 'Seite automatisch gespeichert [_2]. <a href="[_1]">Automatisch gespeicherte Version wiederherstellen</a>',
'This entry has been saved.' => 'Eintrag gespeichert.',
'This page has been saved.' => 'Seite gesichert.',
'One or more errors occurred when sending update pings or TrackBacks.' => 'Es sind ein oder mehrere Fehler beim Senden von TrackBacks aufgetreten.',
'_USAGE_VIEW_LOG' => 'Nähere Informationen zum aufgetretenen Fehler finden Sie im <a href="[_1]">Aktivitätsprotokoll</a>.',
'Your customization preferences have been saved, and are visible in the form below.' => 'Einstellungen gespeichert.',
'Your changes to the comment have been saved.' => 'Kommentaränderungen gespeichert.',
'Your notification has been sent.' => 'Benachrichtigung gesendet.',
'You have successfully recovered your saved entry.' => 'Gespeicherten Eintrag erfolgreich wiederhergestellt.',
'You have successfully recovered your saved page.' => 'Gespeicherte Seite erfolgreich wiederhergestellt.',
'An error occurred while trying to recover your saved entry.' => 'Bei der Wiederherstellung des gespeicherten Eintrags ist ein Fehler aufgetreten.',
'An error occurred while trying to recover your saved page.' => 'Bei der Wiederherstellung der gespeicherten Seite ist ein Fehler aufgetreten.',
'You have successfully deleted the checked comment(s).' => 'Die markierten Kommentare wurden erfolgreich gelöscht.',
'You have successfully deleted the checked TrackBack(s).' => 'Die markierten TrackBacks wurden erfolgreich gelöscht.',
'Restored revision (Date:[_1]). The current status is: [_2]' => 'Version wiederherstellen (Datum: [_1]). Aktueller Status: [_2]',
'Some of tags in the revision could not be loaded because they have been removed.' => 'Einige in der Version enthaltenen Tags können nicht geladen werden, da sie entfernt wurden.',
'Some [_1] in the revision could not be loaded because they have been removed.' => 'Einige in der Version enthaltene [_1] können nicht geladen werden, da sie entfernt wurden.',
'This post was held for review, due to spam filtering.' => 'Dieser Eintrag wurde vom Spam-Filter zur Moderation zurückgehalten.',
'This post was classified as spam.' => 'Dieser Eintrag wurde als Spam erfasst.',
'Change Folder' => 'Ordner wechseln',
'Unpublished (Spam)' => 'Unveröffentlicht (Spam)',
'Revision: <strong>[_1]</strong>' => 'Revision <strong>[_1]</strong>',
'View revisions of this [_1]' => 'Revisionen dieser/dieses [_1] anzeigen',
'View revisions' => 'Revisionen anzeigen',
'No revision(s) associated with this [_1]' => 'Keine Revision(en) mit dieser/diesem [_1] verknüpft',
'[_1] - Published by [_2]' => 'Veröffentlicht von [_2] [_1]',
'[_1] - Edited by [_2]' => 'Bearbeitet von [_2] [_1]',
'Publish this [_1]' => '[_1] veröffentlichen',
'Draft this [_1]' => '[_1] als Entwurf speichern',
'Schedule' => 'Zeitplan',
'Update' => 'Aktualisieren',
'Update this [_1]' => '[_1] aktualisieren',
'Unpublish this [_1]' => '[_1] nicht mehr veröffentlichen',
'Save this [_1]' => '[_1] speichern',
'You must configure this blog before you can publish this entry.' => 'Bitte konfigurieren Sie das Blog, bevor Sie einen Eintrag veröffentlichen.',
'You must configure this blog before you can publish this page.' => 'Bitte konfigurieren Sie das Blog, bevor Sie eine Seite veröffentlichen.',
'Publish On' => 'Veröffentlichen um',
'Warning: If you set the basename manually, it may conflict with another entry.' => 'Warnung: Wenn Sie den Basisnamen manuell einstellen, ist es nicht auszuschließen, daß der gewählte Name bereits existiert.',
q{Warning: Changing this entry's basename may break inbound links.} => q{Warnung: Wenn Sie den Basisnamen nachträglich ändern, können externe Links zu diesem Eintrag ungültig werden.},
'Change note' => 'Änderungshinweis',
'edit' => 'Bearbeiten',
'close' => 'schließen',
'Accept' => 'Annehmen',
'<a href="[_2]">[_1]</a>' => '<a href="[_2]">[_1]</a>',
'View Previously Sent TrackBacks' => 'TrackBacks anzeigen',
'Outbound TrackBack URLs' => 'TrackBack- URLs',
'[_1] Assets' => '[_1] Assets',
'Remove this asset.' => 'Dieses Asset entfernen',
'No assets' => 'Keine Assets',
'You have unsaved changes to this entry that will be lost.' => 'Es liegen nicht gespeicherte Eintragsänderungen vor, die verloren gehen werden.',
'You have unsaved changes to this page that will be lost.' => 'Es liegen nicht gespeicherte Seitenänderungen vor, die verloren gehen werden.',
'Enter the link address:' => 'Link-Adresse eingeben:',
'Enter the text to link to:' => 'Link-Text eingeben:',
'Are you sure you want to use the Rich Text editor?' => 'Grafischen Editor wirklich verwenden?',
'Make primary' => 'Als Hauptkategorie',
'Fields' => 'Felder',
'Reset display options to blog defaults' => 'Anzeigeoptionen auf Standardeinstellungen zurücksetzen',
'Reset defaults' => 'Auf Standardeinstellungen zurücksetzen',
'Permalink:' => 'Permalink:',
'Share' => 'Teilen',
'Format:' => 'Formatierung:',
'(comma-delimited list)' => '(Liste mit Kommatrennung)',
'(space-delimited list)' => '(Liste mit Leerzeichentrennung)',
q{(delimited by '[_1]')} => q{(Trennung durch „[_1]“)},
'None selected' => 'Keine gewählt',
'Auto-saving...' => 'Autospeichern...',
'Last auto-save at [_1]:[_2]:[_3]' => 'Zuletzt automatisch gespeichert um [_1]:[_2]:[_3]',
## tmpl/cms/edit_folder.tmpl
'Edit Folder' => 'Ordner bearbeiten',
'Manage Folders' => 'Ordner verwalten',
'Manage pages in this folder' => 'Seiten in diesem Ordner verwalten',
'You must specify a label for the folder.' => 'Sie müssen diesem Ordner eine Bezeichnung geben',
'Path' => 'Pfad',
'Save changes to this folder (s)' => 'Ordneränderungen speichern (s)',
## tmpl/cms/edit_ping.tmpl
'Edit Trackback' => 'TrackBack bearbeiten',
'The TrackBack has been approved.' => 'TrackBack wurde freigeschaltet.',
'This trackback was classified as spam.' => 'TrackBack als Spam markiert.',
'Save changes to this TrackBack (s)' => 'TrackBack-Änderungen speichern (s)',
'Delete this TrackBack (x)' => 'Diesen TrackBack löschen (x)',
'Manage TrackBacks' => 'TrackBacks verwalten',
'View [_1]' => '[_1] ansehen',
'Update the status of this TrackBack' => 'TrackBack-Status aktualisieren',
'View all TrackBacks with this status' => 'Alle TrackBacks mit diesem Status ansehen',
'Search for other TrackBacks from this site' => 'Weitere TrackBacks von dieser Site suchen',
'Search for other TrackBacks with this title' => 'Weitere TrackBacks mit diesem Namen suchen',
'Search for other TrackBacks with this status' => 'Weitere TrackBacks mit diesem Status suchen',
'Target [_1]' => 'Ziel-[_1]',
'Entry no longer exists' => 'Eintrag nicht mehr vorhanden',
'No title' => 'Kein Name',
'View all TrackBacks on this entry' => 'Alle TrackBacks bei diesem Eintrag anzeigen',
'Target Category' => 'Zielkategorie',
'Category no longer exists' => 'Kategorie nicht mehr vorhanden',
'View all TrackBacks on this category' => 'Alle TrackBacks in dieser Kategorie anzeigen',
'View all TrackBacks created on this day' => 'Alle TrackBacks dieses Tages anzeigen',
'View all TrackBacks from this IP address' => 'Alle TrackBacks von dieser IP-Adrese anzeigen',
'TrackBack Text' => 'TrackBack-Text',
'Excerpt of the TrackBack entry' => 'TrackBack-Auszug',
## tmpl/cms/edit_role.tmpl
'Edit Role' => 'Rolle bearbeiten',
'Association (1)' => 'Verknüpfung (1)',
'Associations ([_1])' => 'Verknüpfungen ([_1])',
'You have changed the privileges for this role. This will alter what it is that the users associated with this role will be able to do. If you prefer, you can save this role with a different name. Otherwise, be aware of any changes to users with this role.' => 'Sie haben die Berechtigungen dieser Rolle geändert. Dadurch werden auch die Berechtigungen der mit dieser Rolle verknüpften Benutzer beeinflusst. Wenn Sie möchten, können Sie daher die Rolle unter neuem Namen speichern.',
'Role Details' => 'Rolleneigenschaften',
'System' => 'System',
'Privileges' => 'Berechtigungen',
'Administration' => 'Verwalten',
'Authoring and Publishing' => 'Schreiben und veröffentlichen',
'Designing' => 'Gestalten',
'Commenting' => 'Kommentieren',
'Duplicate Roles' => 'Rollen duplizieren',
'These roles have the same privileges as this role' => 'Folgende Rollen haben die gleichen Berechtigungen wie diese Rolle',
'Save changes to this role (s)' => 'Rollenänderungen speichern (s)',
## tmpl/cms/edit_template.tmpl
'Edit Widget' => 'Widget bearbeiten',
'Create Widget' => 'Widget anlegen',
'Create Template' => 'Vorlage anlegen',
'A saved version of this [_1] was auto-saved [_3]. <a href="[_2]">Recover auto-saved content</a>' => '[_1] automatisch gespeichert [_3]. <a href="[_2]">Automatisch gespeicherte Version wiederherstellen</a>.',
'You have successfully recovered your saved [_1].' => 'Gespeicherte Fassung erfolgreich wiederhergestellt.',
'An error occurred while trying to recover your saved [_1].' => 'Bei der Wiederherstellung der gespeicherten Fassung ist ein Fehler aufgetreten.',
'Restored revision (Date:[_1]).' => 'Revision wiederhergestellt (Datum: [_1])',
'<a href="[_1]" class="rebuild-link">Publish</a> this template.' => 'Vorlage <a href="[_1]" class="rebuild-link">veröffentlichen</a>.',
'Your [_1] has been published.' => '[_1] wurde veröffentlicht.',
'View revisions of this template' => 'Revisionen dieser Vorlage anzeigen',
'No revision(s) associated with this template' => 'Keine Revision(en) mit dieser Vorlage verknüpft',
'Useful Links' => 'Nützliche Links',
'List [_1] templates' => 'Zeige [_1]-Vorlagen',
'Module Option Settings' => 'Moduloption-Einstellungen',
'List all templates' => 'Zeige alle Vorlagen',
'View Published Template' => 'Veröffentlichte Vorlage ansehen',
'Included Templates' => 'Eingebundene Vorlagen',
'create' => 'anlegen',
'Template Tag Docs' => 'Dokumentation der Vorlagenbefehle',
'Unrecognized Tags' => 'Nicht erkannte Befehle',
'Save (s)' => 'Sichern (s)',
'Save Changes (s)' => 'Änderungen speichern (s)',
'Save and Publish this template (r)' => 'Vorlage speichern und veröffentlichen (r)',
'Save & Publish' => 'Speichern und veröffentlichen',
'You have unsaved changes to this template that will be lost.' => 'Es liegen nicht gespeicherte Vorlagenänderungen, die verloren gehen werden.',
'You must set the Template Name.' => 'Sie müssen einen Vorlagennamen angeben.',
'You must set the template Output File.' => 'Sie müssen einen Dateinamen angeben.',
'Processing request...' => 'Verarbeite Anfrage...',
'Error occurred while updating archive maps.' => 'Bei der Aktualisierung der Archivverknüpfungen ist ein Fehler aufgetreten.',
'Archive map has been successfully updated.' => 'Archivverknüpfung erfolgreich aktualisiert.',
'Are you sure you want to remove this template map?' => 'Archivverknüpfung wirklich löschen?',
'Module Body' => 'Modul-Code',
'Template Body' => 'Vorlagen-Code',
'Syntax highlighting On' => 'Syntax-Highlighting an', # Translate - New # OK
'Syntax highlighting Off' => 'Syntax-Highlighting aus', # Translate - New # OK
'Template Options' => 'Vorlagenoptionen',
'Output file: <strong>[_1]</strong>' => 'Ausgabedatei: <strong>[_1]</strong>',
'Enabled Mappings: [_1]' => 'Aktivierte Verknüpfungen: [_1]',
'Template Type' => 'Vorlagen-Typ',
'Custom Index Template' => 'Individuelle Indexvorlage',
'Link to File' => 'Mit Datei verlinken',
'Learn more about <a href="http://www.movabletype.org/documentation/administrator/publishing/settings.html" target="_blank">publishing settings</a>' => '<a href="http://www.movabletype.org/documentation/administrator/publishing/settings.html" target="_blank">Mehr über Veröffentlichungs-Einstellungen erfahren</a>',
'Create Archive Mapping' => 'Neue Archivverknüpfung einrichten',
'Statically (default)' => 'Statisch (Standard)',
'Via Publish Queue' => 'Im Hintergrund',
'On a schedule' => 'Zeitgeplant',
': every ' => ': alle ',
'minutes' => 'Minuten',
'hours' => 'Stunden',
'Dynamically' => 'Dynamisch',
'Manually' => 'Manuell',
'Do Not Publish' => 'Nicht veröffentlichen',
'Server Side Include' => 'Server Side Include',
'Process as <strong>[_1]</strong> include' => 'Als <strong>[_1]</strong>-Include verarbeiten',
'Include cache path' => 'Include Cache-Pfad',
'Disabled (<a href="[_1]">change publishing settings</a>)' => 'Deaktiviert (<a href="[_1]">Veröffentlichungsoptionen ändern</a>)',
'No caching' => 'Keine Caching',
'Expire after' => 'Verfallen lassen nach',
'Expire upon creation or modification of:' => 'Verfallen lassen bei Anlage oder Änderung von:',
## tmpl/cms/edit_website.tmpl
'Create Website' => 'Website anlegen',
'Website Theme' => 'Website-Thema',
'Select the theme you wish to use for this website.' => 'Wählen Sie das Thema, das Sie für diese Website verwenden möchten.',
'Name your website. The website name can be changed at any time.' => 'Wählen Sie einen Namen für Ihre Website. Sie können der Name auch später jederzeit ändern.',
'Enter the URL of your website. Exclude the filename (i.e. index.html). Example: http://www.example.com/' => 'Geben Sie die gewünschte Adresse (URL) Ihrere Website ohne Dateinamen ein, z.B. http://beispiel.de/',
'Website Root' => 'Wurzelverzeichnis der Website',
q{Enter the path where your main index file will be located. An absolute path (starting with '/' for Linux or 'C:\' for Windows) is preferred, but you can also use a path relative to the Movable Type directory. Example: /home/melody/public_html/ or C:\www\public_html} => q{Geben Sie den Pfad an, unter dem die Startseiten-Datei abgelegt werden soll. Optimal ist eine Angabe in absoluter Form, also unter Linux mit '/' oder unter Windows mit 'C:\' am Anfang, aber eine relative Angabe ist auch möglich. Beispiel: /home/melody/public_html/ oder C:\www\public_htm},
'Create Website (s)' => 'Website anlegen (s)',
'This field is required.' => 'Feld erforderlich.',
'Please enter a valid URL.' => 'Bitte geben Sie eine gültige Adresse ein.',
'Please enter a valid site path.' => 'Bitte geben Sie einen gültigen Site-Pfad ein.',
'You did not select a timezone.' => 'Bitte wählen Sie einen Zeitzone',
## tmpl/cms/edit_widget.tmpl
'Edit Widget Set' => 'Widgetgruppe bearbeiten',
'Create Widget Set' => 'Widgetgruppe anlegen',
'Widget Set Name' => 'Name der Widgetgruppe',
'Save changes to this widget set (s)' => 'Widgetänderungen speichern (s)',
q{Drag and drop the widgets that belong in this Widget Set into the 'Installed Widgets' column.} => q{Ziehen Sie die Widgets, die in diese Widgetgruppe gehören, in die Spalte „Installierte Wigets“.},
'Available Widgets' => 'Verfügbare Widgets',
'Installed Widgets' => 'Installierte Widgets',
'You must set Widget Set Name.' => 'Bitte wählen Sie einen Namen für die Widgetgruppe.',
## tmpl/cms/error.tmpl
'An error occurred' => 'Es ist ein Fehler aufgetreten',
## tmpl/cms/export_theme.tmpl
'Export [_1] Themes' => '[_1]-Themen exportieren',
'Theme package have been saved.' => 'Themenpaket gespeichert.',
'The name of your theme.' => 'Der Name Ihres Themas',
q{Use letters, numbers, dash or underscore only (a-z, A-Z, 0-9, '-' or '_').} => q{Verwenden Sie bitte nur Buchstaben, Zahlen, Bindestriche oder Unterstriche (a-z, A-Z, 0-9, „-“ oder „_“).},
'Version' => 'Version',
'A version number for this theme.' => 'Die Versionsnummer dieses Themas.',
'A description for this theme.' => 'Eine Beschreibung dieses Themas',
'_THEME_AUTHOR' => 'Autor',
'The author of this theme.' => 'Der Name des Autors dieses Themas',
'Author link' => 'Autoren-Link',
q{The author's website.} => q{Die Website des Autors.},
'Additional assets to be included in the theme.' => 'Zu diesem Thema gehörende Assets',
'Destination' => 'Ziel',
'Select How to get theme.' => 'Bezugsmethode wählen',
'Setting for [_1]' => 'Einstellungen für [_1]',
'Basename may only contain letters, numbers, and the dash or underscore character. The basename must begin with a letter.' => 'Basisnamen müssen mit einem Buchstaben anfangen und dürfen nur Buchstaben, Zahlen, Binde- und Unterstriche enthalten.',
q{Cannot install new theme with existing (and protected) theme's basename.} => q{Das Thema kann nicht mit diesem Basisnamen installiert, da dieser bereits vorhanden und geschützt ist.},
'You must set Theme Name.' => 'Bitte geben Sie einen Namen für das Thema ein.',
'Theme version may only contain letters, numbers, and the dash or underscore character.' => 'Versionsnamen dürfen nur Buchstaben, Zahlen, Binde- und Unterstriche enthalten.',
## tmpl/cms/export.tmpl
'Export Blog Entries' => 'Blogeinträge exportieren',
'You must select a blog to export.' => 'Sie müssen wählen, welches Blog exportiert werden soll.',
'_USAGE_EXPORT_1' => 'Hier können Sie die Einträge, Kommentare und TrackBacks eines Blogs exportieren. Ein Export stellt <em>keine</em> komplette Sicherung eines Blogs dar. Verwenden Sie dafür die Funktion Sichern/Wiederherstellen.',
'Blog to Export' => 'Zu exportierendes Blog',
'Select a blog for exporting.' => 'Zu exportierendes Blog',
'Change blog' => 'Anderes Blog wählen',
'Select blog' => 'Blog wählen',
'Export Blog (s)' => 'Blog exportieren (s)',
'Export Blog' => 'Blog exportieren',
## tmpl/cms/import_others.tmpl
'Start title HTML (optional)' => 'HTML-Code am Überschriftenanfang (optional)',
'End title HTML (optional)' => 'HTML-Code am Überschriftenende (optional)',
'If the software you are importing from does not have title field, you can use this setting to identify a title inside the body of the entry.' => 'Wenn Sie aus einem Weblog-System importieren, das kein eigenes Feld für Überschriften hat, können Sie hier angeben, welche HTML-Ausdrücke den Anfang und das Ende von Überschriften markieren.',
'Default entry status (optional)' => 'Standard-Eintragsstatus (optional)',
'If the software you are importing from does not specify an entry status in its export file, you can set this as the status to use when importing entries.' => 'Wenn Sie aus einem Weblog-System importieren, das in seiner Exportdatei den Eintragsstatus nicht vermerkt, können Sie hier angeben, welcher Status den importierten Einträgen zugewiesen werden soll.',
'Select an entry status' => 'Eintragsstatus wählen',
## tmpl/cms/import.tmpl
'Import Blog Entries' => 'Blog-Einträge importieren',
'You must select a blog to import.' => 'Wählen Sie, in welches Blog importiert werden soll',
'Transfer weblog entries into Movable Type from other Movable Type installations or even other blogging tools or export your entries to create a backup or copy.' => 'Mit der Import/Export-Funktion können Sie Einträge aus anderen Movable Type-Installationen oder aus anderen Weblog-Systemen übernehmen. Bestehende Einträge können in einem Austauschformat gesichert werden.',
'Import data into' => 'Daten importieren in',
'Select a blog to import.' => 'Wählen Sie, in welches Blog importiert werden soll',
'Importing from' => 'Importieren aus',
'Ownership of imported entries' => 'Besitzer importierter Einträge',
'Import as me' => 'Einträge unter meinem Namen importieren',
'Preserve original user' => 'Einträge unter ursprünglichen Namen importieren',
'If you choose to preserve the ownership of the imported entries and any of those users must be created in this installation, you must define a default password for those new accounts.' => 'Wenn Sie mit ursprünglichen Benutzernamen importieren und einer oder mehrere der Benutzer in dieser Movable Type-Installation noch kein Konto haben, werden entsprechende Benutzerkonten automatisch angelegt. Für diese Konten müssen Sie ein Standardpasswort vergeben.',
'Default password for new users:' => 'Standard-Passwort für neue Benutzer:',
'You will be assigned the user of all imported entries. If you wish the original user to keep ownership, you must contact your MT system administrator to perform the import so that new users can be created if necessary.' => 'Alle importierten Einträge werden Ihnen zugewiesen werden. Wenn Sie möchten, daß die Einträge ihren ursprünglichen Benutzern zugewiesen bleiben, lassen Sie den Import von Ihren Administrator durchführen. Dann werden etwaige erforderliche, aber noch fehlende Benutzerkonten automatisch angelegt.',
'Upload import file (optional)' => 'Import-Datei hochladen (optional)',
q{If your import file is located on your computer, you can upload it here. Otherwise, Movable Type will automatically look in the 'import' folder of your Movable Type directory.} => q{Wenn Sie eine auf Ihrem Computer gespeicherte Importdatei verwenden wollen, laden Sie diese hier hoch. Alternativ verwendet Movable Type automatisch die Importdatei, die es im „import“-Unterordner Ihres Movable Type-Verzeichnis findet.},
'Import File Encoding' => 'Zeichenkodierung der Importdatei',
'By default, Movable Type will attempt to automatically detect the character encoding of your import file. However, if you experience difficulties, you can set it explicitly.' => 'Movable Type versucht automatisch die korrekte Zeichenkodierung auszuwählen. Sollte das fehlschlagen, können Sie sie auch explizit angeben.',
'<mt:var name="display_name" escape="html">' => '<mt:var name="display_name" escape="html">',
'Default category for entries (optional)' => 'Standard-Kategorie für Einträge (optional)',
'You can specify a default category for imported entries which have none assigned.' => 'Standardkdategorie für importierte Einträge ohne Kategorie',
'Select a category' => 'Kategorie auswählen...',
'Import Entries (s)' => 'Einträge importieren (s)',
## tmpl/cms/include/anonymous_comment.tmpl
'Allow comments from anonymous or unauthenticated users.' => 'Kommentare von unbekannten und nicht authentifizierten Benutzern annehmen.',
'Require name and E-mail Address for Anonymous Comments' => 'E-Mail-Adresse von nicht registrierten Kommentarautoren verlangen',
'If enabled, visitors must provide a valid e-mail address when commenting.' => 'Wenn diese Option aktiv ist, müssen Kommentarautoren eine gültige E-Mail-Adresse angeben.',
## tmpl/cms/include/archetype_editor.tmpl
'Decrease Text Size' => 'Kleinerer Text',
'Increase Text Size' => 'Größerer Text',
'Bold' => 'Fett',
'Italic' => 'Kursiv',
'Underline' => 'Unterstreichen',
'Strikethrough' => 'Durchstreichen',
'Text Color' => 'Textfarbe',
'Email Link' => 'E-Mail-Link',
'Begin Blockquote' => 'Zitat Anfang',
'End Blockquote' => 'Zitat Ende',
'Bulleted List' => 'Aufzählung',
'Numbered List' => 'Nummerierte Liste',
'Left Align Item' => 'Linksbündig',
'Center Item' => 'Zentieren',
'Right Align Item' => 'Rechtsbündig',
'Left Align Text' => 'Linksbündiger Text',
'Center Text' => 'Zentrierter Text',
'Right Align Text' => 'Rechtsbündiger Text',
'Insert File' => 'Datei einfügen',
'Check Spelling' => 'Rechtschreibung prüfen',
'WYSIWYG Mode' => 'Grafischer Editor',
'HTML Mode' => 'HTML-Modus',
## tmpl/cms/include/archive_maps.tmpl
'Custom...' => 'Individuell...',
## tmpl/cms/include/asset_replace.tmpl
q{A file named '[_1]' already exists. Do you want to overwrite this file?} => q{Eine Datei namens „[_1]“ ist bereits vorhanden. Möchten Sie sie überschreiben?},
'Yes (s)' => 'Ja (s)',
'Yes' => 'Ja',
'No' => 'Nein',
## tmpl/cms/include/asset_table.tmpl
'Delete selected assets (x)' => 'Gewählte Assets löschen (x)',
'Website/Blog' => 'Website/Blog',
'Created By' => 'Erstellt von',
'Created On' => 'Angelegt',
'Asset Missing' => 'Asset fehlt',
'No thumbnail image' => 'Kein Vorschaubild',
## tmpl/cms/include/asset_upload.tmpl
'Upload Destination' => 'Zielverzeichnis',
q{Before you can upload a file, you need to publish your [_1]. [_2]Configure your [_1]'s publishing paths[_3] and republish your [_1].} => q{Veröffentlichen Sie zuerst Ihr(e) [_1], um Dateien hochladen zu können. [_2]Konfigurieren Sie die jeweiligen Veröffentlichungs-Pfade[_3] und veröffentlichen Sie die Site bzw. das Blog dann erneut. },
'Your system or [_1] administrator needs to publish the [_1] before you can upload files. Please contact your system or [_1] administrator.' => 'Um Dateien hochladen zu können, muss Ihr System- oder [_1]-Administrator die Site bzw. das Blog bereits veröffentlicht haben. Bitte kontaktieren Sie daher ihren System- oder [_1]-Administrator.',
q{Asset file('[_1]') has been uploaded.} => q{Asset-Datei („[_1]“) hochgeladen.},
'Select File to Upload' => 'Hochzuladende Datei wählen',
'_USAGE_UPLOAD' => 'Dateien können auch in Unterverzeichnisse des gewählten Pfads hochgeladen werden. Existiert das Unterverzeichnis noch nicht, wird es automatisch angelegt.',
'Choose Folder' => 'Ordner wählen',
'Upload (s)' => 'Hochladen (s)',
'Upload' => 'Hochladen',
'[_1] contains a character that is invalid when used in a directory name: [_2]' => '[_1] enthält Zeichen, die nicht für Ordnernamen verwendet werden dürfen: [_2]',
## tmpl/cms/include/author_table.tmpl
'Enable selected users (e)' => 'Gewählte Benutzerkonten aktivieren (e)',
'_USER_ENABLE' => 'Aktivieren',
'Disable selected users (d)' => 'Gewählte Benutzerkonten deaktivieren (d)',
'_USER_DISABLE' => 'Deaktivieren',
'user' => 'Benutzer',
'users' => 'Benutzer',
'_NO_SUPERUSER_DISABLE' => 'Sie können Ihr eigenes Benutzerkonto nicht deaktivieren, da Sie Verwalter dieser Movable Type-Installation sind.',
## tmpl/cms/include/backup_end.tmpl
'All of the data has been backed up successfully!' => 'Alle Daten wurden erfolgreich gesichert!',
'_BACKUP_TEMPDIR_WARNING' => 'Gewünschte Daten erfolgreich im Ordner [_1] gesichert. Bitte laden Sie die angegebenen Dateien <strong>sofort</strong> aus [_1] herunter und <strong>löschen</strong> Sie sie unmittelbar danach aus dem Ordner, da sie sensible Informationen enthalten.',
'Backup Files' => 'Backup-Dateien',
'Download This File' => 'Diese Datei herunterladen',
'Download: [_1]' => 'Herunterladen: [_1]',
'_BACKUP_DOWNLOAD_MESSAGE' => 'Der Download der Sicherungsdatei wird in einigen Sekunden automatisch beginnen. Sollte das nicht der Fall sein, klicken Sie <a href="javascript:(void)" onclick="submit_form()">hier</a> um den Download manuell zu starten. Pro Sitzung kann eine Sicherungsdatei nur einmal heruntergeladen werden.',
'An error occurred during the backup process: [_1]' => 'Beim Backup ist ein Fehler aufgetreten: [_1]',
## tmpl/cms/include/backup_start.tmpl
'Backing up Movable Type' => 'Erstelle Sicherung',
## tmpl/cms/include/basic_filter_forms.tmpl
'contains' => 'enthält',
'does not contain' => 'enthält nicht',
'__STRING_FILTER_EQUAL' => 'ist',
'starts with' => 'beginnt mit',
'ends with' => 'endet auf',
'[_1] [_2] [_3]' => '[_1] [_2] [_3]',
'__INTEGER_FILTER_EQUAL' => 'ist',
'__INTEGER_FILTER_NOT_EQUAL' => 'ist nicht',
'is greater than' => 'ist größer als',
'is greater than or equal to' => 'ist größer als oder gleich',
'is less than' => 'ist kleiner als',
'is less than or equal to' => 'ist kleiner als oder gleich',
'is between' => 'ist zwischen',
'is within the last' => 'ist in den letzten',
'is before' => 'ist vor',
'is after' => 'ist nach',
'is after now' => 'ist nach jetzt',
'is before now' => 'ist vor jetzt',
'__FILTER_DATE_ORIGIN' => '[_1]',
'[_1] and [_2]' => '[_1] und [_2]',
'_FILTER_DATE_DAYS' => '[_1] Tage',
## tmpl/cms/include/blog_table.tmpl
'Some templates were not refreshed.' => 'Einige Vorlagen wurden nicht zurückgesetzt.',
'Delete selected [_1] (x)' => 'Markierte [_1] löschen (x)',
'[_1] Name' => '[_1] Name',
## tmpl/cms/include/category_selector.tmpl
'Add sub category' => 'Unterkategorie hinzufügen',
'Add sub folder' => 'Neuer Unterordner',
## tmpl/cms/include/comment_detail.tmpl
## tmpl/cms/include/commenter_table.tmpl
'Last Commented' => 'Zuletzt kommentiert',
'Edit this commenter' => 'Kommentarautor bearbeiten',
'View this commenter’s profile' => 'Profil des Kommentarautors ansehen',
## tmpl/cms/include/comment_table.tmpl
'Publish selected comments (a)' => 'Gewählte Kommentare veröffentlichen (a)',
'Delete selected comments (x)' => 'Gewählte Kommentare löschen (x)',
'Edit this comment' => 'Kommentar bearbeiten',
'([quant,_1,reply,replies])' => '([quant,_1,Antwort,Antworten])',
'Blocked' => 'Gesperrt',
'Edit this [_1] commenter' => '[_1] Kommentarautor bearbeiten',
'Search for comments by this commenter' => 'Nach Kommentaren von diesem Kommentarautor suchen',
'View this entry' => 'Diesen Eintrag ansehen',
'View this page' => 'Diese Seite ansehen',
'Search for all comments from this IP address' => 'Nach Kommentaren von dieser IP-Adresse suchen',
'to republish' => 'zur erneuten Veröffentlichung',
## tmpl/cms/include/copyright.tmpl
'Copyright © 2001-[_1] Six Apart. All Rights Reserved.' => 'Copyright © 2001-[_1] Six Apart. Alle Rechte vorbehalten.',
## tmpl/cms/include/debug_hover.tmpl
'Hide Toolbar' => 'Werkzeugleiste ausblenden',
'Hide »' => 'Ausblenden »',
## tmpl/cms/include/debug_toolbar/cache.tmpl
'Key' => 'Schlüssel',
'Value' => 'Wert',
## tmpl/cms/include/debug_toolbar/headers.tmpl
## tmpl/cms/include/debug_toolbar/requestvars.tmpl
'Cookies' => 'Cookies',
'Variable' => 'Variable',
'No COOKIE data' => 'Keine COOKIE-Daten',
'Input Parameters' => 'Eingabe-Parameter',
'No Input Parameters' => 'Keine Eingabe-Parameter',
## tmpl/cms/include/debug_toolbar/sql.tmpl
## tmpl/cms/include/display_options.tmpl
'Display Options' => 'Anzeigeoptionen',
'_DISPLAY_OPTIONS_SHOW' => 'Zeige',
'[quant,_1,row,rows]' => '[quant,_1,Zeile,Zeilen]',
'Compact' => 'Kompakt',
'Expanded' => 'Erweitert',
'Save display options' => 'Anzeigeoptionen speichern',
## tmpl/cms/include/entry_table.tmpl
'Republish selected [_1] (r)' => 'Gewählte [_1] erneut veröffentlchen (r)',
'Last Modified' => 'Zuletzt geändert',
'Created' => 'Angelegt',
'View entry' => 'Eintrag ansehen',
'View page' => 'Seite ansehen',
'No entries could be found.' => 'Keine Einträge gefunden.',
'<a href="[_1]">Create an entry</a> now.' => 'Jetzt <a href="[_1]">einen Eintrag schreiben</a>.',
'No pages could be found. <a href="[_1]">Create a page</a> now.' => 'Keine Seiten gefunden. Jetzt <a href="[_1]">eine Seite anlegen</a>.',
## tmpl/cms/include/feed_link.tmpl
'Set Web Services Password' => 'Passwort für Webdienste wählen',
## tmpl/cms/include/footer.tmpl
'This is a beta version of Movable Type and is not recommended for production use.' => 'Das ist eine Beta-Version von Movable Type. Der Einsatz als Produktivsystem wird nicht empfohlen.',
'http://www.movabletype.org' => 'http://www.movabletype.org',
'MovableType.org' => 'MovableType.org',
'http://plugins.movabletype.org/' => 'http://plugins.movabletype.org/',
'http://wiki.movabletype.org/' => 'http://wiki.movabletype.org/',
'Wiki' => 'Wiki',
'http://www.movabletype.com/support/' => 'http://www.movabletype.com/support/',
'Support' => 'Support',
'http://forums.movabletype.org/' => 'http://forums.movabletype.org/',
'Forums' => 'Foren',
'http://www.movabletype.org/feedback.html' => 'http://www.movabletype.org/feedback.html',
'Send Us Feedback' => 'Feedback senden',
'<a href="[_1]"><mt:var name="mt_product_name"></a> version [_2]' => '<a href="[_1]"><mt:var name="mt_product_name"></a> Version [_2]',
'with' => 'mit',
q{_LOCALE_CALENDAR_HEADER_} => q{'So', 'Mo', 'Di', 'Mi', 'Do', 'Fr', 'Sa'},
'Your Dashboard' => 'Ihre Übersichtsseite',
## tmpl/cms/include/header.tmpl
'Signed in as [_1]' => 'Angemeldet als [_1]',
'Help' => 'Hilfe',
'Sign out' => 'Abmelden',
'View Site' => 'Ansehen',
'Search (q)' => 'Suche (q)',
'Create New' => 'Neu anlegen',
'Select an action' => 'Aktion wählen',
q{This website was created during the upgrade from a previous version of Movable Type. 'Site Root' and 'Site URL' are left blank to retain 'Publishing Paths' compatibility for blogs that were created in a previous version. You can post and publish on existing blogs, but you cannot publish this website itself because of the blank 'Site Root' and 'Site URL'.} => q{Diese Website wurde bei der Aktualiserung der Movable Type-Installation automatisch angelegt. Das Wurzelverzeichnis und die Adresse der Site wurden nicht angegeben, um die eingestellten Veröffentlichungspfade von Blogs, die mit einer früheren MT-Version angelegt wurden, gültig zu halten. Sie können daher auf den vorhandenen Blogs neue Einträge veröffentlichen, nicht aber die Website selbst.},
'from Revision History' => 'aus der Revisionshistorie',
## tmpl/cms/include/import_end.tmpl
'All data imported successfully!' => 'Alle Daten erfolgreich importiert!',
q{Make sure that you remove the files that you imported from the 'import' folder, so that if/when you run the import process again, those files will not be re-imported.} => q{Vergessen Sie nicht, die verwendeten Dateien aus dem „import“-Ordner zu entfernen, damit sie bei künftigen Importvorgängen nicht erneut importiert werden.},
'An error occurred during the import process: [_1]. Please check your import file.' => 'Beim Importieren ist ein Fehler aufgetreten: [_1]. Bitte überprüfen Sie Ihre Import-Datei.',
## tmpl/cms/include/import_start.tmpl
'Importing...' => 'Importieren...',
'Importing entries into blog' => 'Importiere Einträge...',
q{Importing entries as user '[_1]'} => q{Importiere Einträge als Benutzer „[_1]“...},
'Creating new users for each user found in the blog' => 'Lege Benutzerkonten für jeden Benutzer des Blogs an...',
## tmpl/cms/include/itemset_action_widget.tmpl
'More actions...' => 'Weitere Aktionen...',
'Plugin Actions' => 'Plugin-Aktionen',
'Go' => 'Ausführen',
## tmpl/cms/include/list_associations/page_title.tmpl
'Manage Permissions' => 'Berechtigungen verwalten',
'Users for [_1]' => 'Benutzer für [_1]',
## tmpl/cms/include/listing_panel.tmpl
'Step [_1] of [_2]' => 'Schritt [_1] von [_2]',
'Go to [_1]' => 'Gehe zu [_1]',
'Sorry, there were no results for your search. Please try searching again.' => 'Keine Treffer. Bitte suchen Sie erneut.',
'Sorry, there is no data for this object set.' => 'Keine Daten für diese Objekte vorhanden.',
'OK (s)' => 'OK (s)',
'OK' => 'OK',
## tmpl/cms/include/login_mt.tmpl
'Remember me?' => 'Benutzername speichern?',
## tmpl/cms/include/log_table.tmpl
'No log records could be found.' => 'Keine Protokolleinträge gefunden.',
'_LOG_TABLE_BY' => 'Von',
'IP: [_1]' => 'IP: [_1]',
## tmpl/cms/include/member_table.tmpl
'Are you sure you want to remove the selected user from this [_1]?' => 'Die gewählten Benutzerkonten wirklich aus [_1] entfernen?',
'Are you sure you want to remove the [_1] selected users from this [_2]?' => 'Die [_1] gewählten wirklich aus dieser [_2] entfernen?',
'Remove selected user(s) (r)' => 'Gewählte(n) Benutzer entfernen (r)',
'Trusted commenter' => 'Vertrauter Kommentarautor',
'Remove this role' => 'Rolle entfernen',
## tmpl/cms/include/notification_table.tmpl
'Date Added' => 'Hinzugefügt am',
'Save changes' => 'Änderungen speichern',
## tmpl/cms/include/pagination.tmpl
## tmpl/cms/include/ping_table.tmpl
'Publish selected [_1] (p)' => 'Markierte [_1] veröffentlichen (p)',
'Edit this TrackBack' => 'TrackBack bearbeiten',
'Go to the source entry of this TrackBack' => 'Eintrag, auf den sich das TrackBack bezieht, aufrufen',
'View the [_1] for this TrackBack' => '[_1] zu diesem TrackBack ansehen',
## tmpl/cms/include/revision_table.tmpl
'No revisions could be found.' => 'Keine Revisionen vorhanden',
'Note' => 'Hinweis',
'Saved By' => 'Gesichert von',
## tmpl/cms/include/rpt_log_table.tmpl
'Schwartz Message' => 'Schwartz-Meldung',
## tmpl/cms/include/scope_selector.tmpl
'User Dashboard' => 'Benutzer-Übersichtsseite',
'Select another website...' => 'Andere Website wählen...',
'(on [_1])' => '(auf [_1])',
'Select another blog...' => 'Anderes Blog wählen',
'Create Blog (on [_1])' => 'Blog anlegen (auf [_1])',
## tmpl/cms/include/template_table.tmpl
'Create Archive Template:' => 'Archiv-Vorlage anlegen:',
'Entry Listing' => 'Eintragsliste',
'Create template module' => 'Vorlagenmodul anlegen',
'Create index template' => 'Indexvorlage anlegen',
'Publish selected templates (a)' => 'Ausgewählte Vorlagen veröffentlichen (a)',
'Archive Path' => 'Archivpfad',
'SSI' => 'SSI',
'Cached' => 'In Cache',
'Linked Template' => 'Verlinkte Vorlage',
'Manual' => 'Manuell',
'Dynamic' => 'Dynamisch',
'Publish Queue' => 'Im Hintergrund',
'Static' => 'Statisch',
'templates' => 'Vorlagen',
'to publish' => 'zu veröffentlichen',
## tmpl/cms/include/theme_exporters/category.tmpl
'Category Name' => 'Kategoriename',
## tmpl/cms/include/theme_exporters/folder.tmpl
'Folder Name' => 'Ordnername',
'<mt:if name="is_blog">Blog URL<mt:else>Site URL</mt:if>' => '<mt:if name="is_blog">Blog-URL<mt:else>Site-URL</mt:if>',
## tmpl/cms/include/theme_exporters/static_files.tmpl
'In the specified directories, files of the following types will be included in the theme: [_1]. Other file types will be ignored.' => 'Dateien dieser Typen werden in das Thema aufgenommen: [_1]. Dateien anderen Typs werden ignoriert.',
'Specify directories' => 'Verzeichnis angeben',
'List directories (one per line) in the Site Root directory which contain the static files to be included in the theme. Common directories might be: css, images, js, etc.' => 'Geben Sie die Verzeichnisse ab Wurzelverzeichnis der Site an, die statische Dateien des Themas enthalten, z.B. css, images, js usw. Verwenden Sie pro Verzeichnis eine Zeile.',
## tmpl/cms/include/theme_exporters/templateset.tmpl
'widget sets' => 'Widgetgruppen',
'modules' => 'Module',
'<span class="count">[_1]</span> [_2] are included' => '<span class="count">[_1]</span> [_2] enthalten',
## tmpl/cms/install.tmpl
'Welcome to Movable Type' => 'Willkommen zu Movable Type',
'Create Your Account' => 'Legen Sie Ihr Benutzerkonto an',
'The version of Perl installed on your server ([_1]) is lower than the minimum supported version ([_2]).' => 'Die vorhandene Perl-Version ([_1]) ist nicht aktuell genug ([_2] oder höher erforderlich).',
'While Movable Type may run, it is an <strong>untested and unsupported environment</strong>. We strongly recommend upgrading to at least Perl [_1].' => 'Wir empfehlen dringend, die Perl-Installation mindestens auf Version [_1] zu aktualisieren. Movable Type läuft zwar möglicherweise auch mit der vorhandenen Perl-Version, es handelt sich aber um eine <strong>nicht getestete und nicht unterstützte Umgebung</strong>.',
'Do you want to proceed with the installation anyway?' => 'Möchten Sie die Installation dennoch fortsetzen?',
'View MT-Check (x)' => 'MT-Check anzeigen (x)',
'Please create an administrator account for your system. When you are done, Movable Type will initialize your database.' => 'Legen Sie nun ein Administratoren-Konto für Ihr System an. Movable Type wird daraufhin Ihre Datenbank initialisieren.',
'To proceed, you must authenticate properly with your LDAP server.' => 'Um fortfahren zu können, müssen Sie sich gegenüber Ihrem LDAP-Server authentifizieren',
'The name used by this user to login.' => 'Anmeldename dieses Benutzerkontos',
'The name used when published.' => 'Anzeigename (für Veröffentlichung)',
'The user’s email address.' => 'E-Mail-Adresse dieses Benutzers',
'The email address used in the From: header of each email sent from the system.' => 'Die E-Mail-Adresse, die als Absenderadresse vom System versandter E-Mails verwendet wird',
'Use this as system email address' => 'Diese Adresse als System-E-Mail-Adresse verwenden',
'The user’s preferred language.' => 'Gewünschte Spracheinstellung',
'Select a password for your account.' => 'Passwort dieses Benutzerkontos',
'Your LDAP username.' => 'Ihr LDAP-Benutzername.',
'Enter your LDAP password.' => 'Geben Sie Ihr LDAP-Passwort ein.',
'The initial account name is required.' => 'Benutzername erforderlich',
'The display name is required.' => 'Anzeigename erforderlich',
'The e-mail address is required.' => 'Bitte geben Sie Ihre E-Mail-Adresse an.',
## tmpl/cms/list_category.tmpl
'Manage [_1]' => '[_1] verwalten',
'Top Level' => 'Hauptebene',
'[_1] label' => 'Bezeichnung',
'Change and move' => 'Ändern und verschieben',
'Rename' => 'Umbenennen',
'Label is required.' => 'Bezeichnung erforderlich.',
'Duplicated label on this level.' => 'Bezeichnung auf dieser Ebene bereits vorhanden.',
'Basename is required.' => 'Basisname erforderlich.',
'Invalid Basename.' => 'Basisname ungültig.',
'Duplicated basename on this level.' => 'Basisname auf dieser Ebene bereits vorhanden.',
'Add child [_1]' => 'Unter-[_1] hinzufügen',
'Remove [_1]' => '[_1] löschen',
'[_1] \'[_2]\' already exists.' => '[_1] \'[_2]\' bereits vorhanden.',
'Are you sure you want to remove [_1] [_2]?' => '[_1] [_2] wirklich entfernen?',
'Are you sure you want to remove [_1] [_2] with [_3] sub [_4]?' => '[_1] [_2] mit [_3] Unter-[_4] wirklich entfernen?',
'Alert' => 'Hinweis',
## tmpl/cms/list_common.tmpl
'25 rows' => '25 Zeilen',
'50 rows' => '50 Zeilen',
'100 rows' => '100 Zeilen',
'200 rows' => '200 Zeilen',
'Column' => 'Spalte',
'<mt:var name="js_message">' => '<mt:var name="js_message">',
'Filter:' => 'Filter:',
'Select Filter...' => 'Filter wählen...',
'Remove Filter' => 'Aufheben',
'Select Filter Item...' => 'Filterelement wählen...',
'Apply' => 'Anwenden',
'Save As' => 'Speichern als',
'Filter Label' => 'Filter-Bezeichnung',
'My Filters' => 'Meine Filter',
'Built in Filters' => 'Eingebaute Filter',
'Remove item' => 'Element entfernen',
'Unknown Filter' => 'Unbekannter Filter',
'act upon' => 'reagieren',
'Are you sure you want to remove the filter \'[_1]\'?' => 'Filter \'[_1]\' wirklich entfernen?',
'Label "[_1]" is already in use.' => 'Bezeichnung "[_1]" bereits vorhanden.',
'Communication Error ([_1])' => 'Kommunikations-Fehler ([_1])',
'[_1] - [_2] of [_3]' => '[_1]-[_2] von [_3]',
'Select all [_1] items' => 'Alle [_1] Elemente auswählen',
'All [_1] items are selected' => 'Alle [_1] Elemente ausgewählt',
'[_1] Filter Items have errors' => '[_1] Filterelemente fehlerhaft',
'[_1] - Filter [_2]' => '[_1]-Filter [_2]',
'Save Filter' => 'Filter speichern',
'Save As Filter' => 'Als Filter speichern',
'Select Filter' => 'Filter wählen',
## tmpl/cms/list_entry.tmpl
'Entries Feed' => 'Eintragsfeed',
'Pages Feed' => 'Seitenfeed',
'The entry has been deleted from the database.' => 'Eintrag aus der Datenbank gelöscht.',
'The page has been deleted from the database.' => 'Seite aus der Datenbank gelöscht.',
'Quickfilters' => 'Schnellfilter',
'[_1] (Disabled)' => '[_1] (deaktiviert)',
'Showing only: [_1]' => 'Zeige nur: [_1]',
'Remove filter' => 'aufheben',
'change' => 'ändern',
'[_1] where [_2] is [_3]' => '[_1] mit [_2] [_3]',
'Show only entries where' => 'Zeige nur Einträge mit',
'Show only pages where' => 'Zeige nur Seiten mit',
'status' => 'Status',
'tag (exact match)' => 'Tag (genau)',
'tag (fuzzy match)' => 'Tag (unscharf)',
'asset' => 'Asset',
'is' => ' ',
'published' => 'veröffentlicht',
'unpublished' => 'nicht veröffentlicht',
'review' => 'zur Überprüfung',
'scheduled' => 'zeitgeplant',
'spam' => 'Spam',
'Select A User:' => 'Benutzerkonto wählen: ',
'User Search...' => 'Benutzer suchen...',
'Recent Users...' => 'Aktuelle Benutzer...',
'Select...' => 'Wählen...',
## tmpl/cms/listing/asset_list_header.tmpl
'You have successfully deleted the asset(s).' => 'Assets erfolgreich gelöscht.',
## tmpl/cms/listing/association_list_header.tmpl
'You have successfully revoked the given permission(s).' => 'Berechtigungen erfolgreich entzogen',
'You have successfully granted the given permission(s).' => 'Berechtigungen erfolgreich zugewiesen',
## tmpl/cms/listing/author_list_header.tmpl
'You have successfully disabled the selected user(s).' => 'Gewählte Benutzerkonten erfolgreich deaktiviert',
'You have successfully enabled the selected user(s).' => 'Gewählte Benutzerkonten erfolgreich aktiviert',
'You have successfully unlocked the selected user(s).' => 'Gewählte Benutzerkonten erfolgreich entsperrt',
'You have successfully deleted the user(s) from the Movable Type system.' => 'Gewählte Benutzerkonten erfolgreich aus Movable Type gelöscht',
'The deleted user(s) still exist in the external directory. As such, they will still be able to login to Movable Type Advanced.' => 'Die gelöschten Benutzerkonten sind im externen Verzeichnis weiterhin vorhanden. Die Benutzer können sich daher weiterhin an Movable Type Advanced anmelden.',
q{You have successfully synchronized users' information with the external directory.} => q{Benutzerinformationen erfolgreich mit externem Verzeichnis synchronisiert.},
'Some ([_1]) of the selected user(s) could not be re-enabled because they were no longer found in the external directory.' => 'Einige ([_1]) der gewählten Benutzerkonten konnten nicht reaktiviert werden, da sie im externen Verzeichnis nicht mehr vorhanden sind.',
q{An error occured during synchronization. See the <a href='[_1]'>activity log</a> for detailed information.} => q{Bei der Synchronisierung ist ein Fehler aufgetreten. Das <a href='[_1]'>Aktivitätsprotokoll</a> enthält nähere Informationen.},
## tmpl/cms/listing/banlist_list_header.tmpl
'You have added [_1] to your list of banned IP addresses.' => 'Sie haben [_1] zur Liste mit gesperrten IP-Adressen hinzugefügt.',
'You have successfully deleted the selected IP addresses from the list.' => 'Sie haben die ausgewählten IP-Adressen erfolgreich aus der Liste entfernt.',
'Invalid IP address.' => 'Ungültige IP-Adresse.',
## tmpl/cms/listing/blog_list_header.tmpl
'You have successfully deleted the website from the Movable Type system.' => 'Website erfolgreich aus diesem Movable Type-System gelöscht.',
'You have successfully deleted the blog from the website.' => 'Blog erfolgreich aus der Website gelöscht.',
'You have successfully refreshed your templates.' => 'Vorlagen erfolgreich zurückgesetzt.',
'You have successfully moved selected blogs to another website.' => 'Blogs erfolgreich in andere Website verschoben.',
'Warning: You need to copy uploaded assets to new locations manually. You should consider maintaining copies of uploaded assets in their original locations to avoid broken links.' => 'Wichtig: Bereits hochgeladene Assets müssen manuell in das neue Verzeichnis übertragen werden. Um sicher zu gehen, daß dadurch keine Veweise ungültig werden, belassen Sie danach die Originaldateien an ihrem ursprünglichen Ort.',
## tmpl/cms/listing/comment_list_header.tmpl
'The selected comment(s) has been approved.' => 'Die gewählten Kommentare wurden freigeschaltet.',
'All comments reported as spam have been removed.' => 'Alle als Spam markierten Kommentare wurden entfernt.',
'The selected comment(s) has been unapproved.' => 'Die gewählten Kommentare sind nicht mehr freigeschaltet',
'The selected comment(s) has been reported as spam.' => 'Die gewählten Kommentare wurden als Spam gemeldet',
'The selected comment(s) has been recovered from spam.' => 'Die gewählten Kommentare wurden aus dem Spam wiederhergestellt',
'The selected comment(s) has been deleted from the database.' => 'Die gewählten Kommentar(e) wurden aus der Datenbank gelöscht.',
'One or more comments you selected were submitted by an unauthenticated commenter. These commenters cannot be banned or trusted.' => 'Nicht authentifizierten Kommentarautoren können weder gesperrt werden noch das Vertrauen ausgesprochen bekommen.',
'No comments appear to be spam.' => 'Scheinbar ist kein Kommentar Spam.',
## tmpl/cms/listing/entry_list_header.tmpl
## tmpl/cms/listing/filter_list_header.tmpl
## tmpl/cms/listing/log_list_header.tmpl
'All times are displayed in GMT[_1].' => 'Alle Zeiten in GMT[_1]',
'All times are displayed in GMT.' => 'Alle Zeiten in GMT',
## tmpl/cms/listing/member_list_header.tmpl
## tmpl/cms/listing/notification_list_header.tmpl
'You have added [_1] to your address book.' => '[_1] zum Adressbuch hinzugefügt.',
'You have successfully deleted the selected contacts from your address book.' => 'Gewählte Kontakte erfolgreich aus dem Adressbuch gelöscht.',
## tmpl/cms/listing/ping_list_header.tmpl
'The selected TrackBack(s) has been approved.' => 'Gewählte TrackBacks freigeschaltet.',
'All TrackBacks reported as spam have been removed.' => 'Alle als Spam gemeldeten TrackBacks entfernt.',
'The selected TrackBack(s) has been unapproved.' => 'Gewählte TrackBacks nicht mehr freigeschaltet.',
'The selected TrackBack(s) has been reported as spam.' => 'Gewählte TrackBack(s) als Spam gemeldet.',
'The selected TrackBack(s) has been recovered from spam.' => 'Gewählte TrackBacks(s) aus Spam wiederhergestellt',
'The selected TrackBack(s) has been deleted from the database.' => 'TrackBack(s) aus Datenbank gelöscht.',
'No TrackBacks appeared to be spam.' => 'Kein TrackBack scheint Spam zu sein.',
## tmpl/cms/listing/role_list_header.tmpl
'You have successfully deleted the role(s).' => 'Rolle(n) erfolgreich gelöscht.',
## tmpl/cms/listing/tag_list_header.tmpl
'Your tag changes and additions have been made.' => 'Tag-Änderungen übernommen',
'You have successfully deleted the selected tags.' => 'Markierte Tags erfolgreich gelöscht',
'Specify new name of the tag.' => 'Geben Sie den neuen Namen des Tags an',
'The tag \'[_2]\' already exists. Are you sure you want to merge \'[_1]\' with \'[_2]\' across all blogs?' => 'Das Tag „[_2]“ ist schon vorhanden. „[_1]“ wirklich in allen Blogs mit „[_2]“ zusammenführen?',
## tmpl/cms/list_template.tmpl
'Manage [_1] Templates' => '[_1]-Vorlagen verwalten',
'Manage Global Templates' => 'Gobale Vorlagen verwalten',
'Show All Templates' => 'Alle Vorlagen anzeigen',
'Publishing Settings' => 'Veröffentlichungs-Einstellungen',
'You have successfully deleted the checked template(s).' => 'Vorlage(n) erfolgreich gelöscht.',
'Your templates have been published.' => 'Die Vorlagen wurden veröffentlicht.',
'Selected template(s) has been copied.' => 'Die gewählte(n) Vorlage(n) wurden kopiert.',
## tmpl/cms/list_theme.tmpl
'[_1] Themes' => '[_1]-Themen',
'All Themes' => 'Alle Themen',
'_THEME_DIRECTORY_URL' => 'http://plugins.movabletype.org/',
'Find Themes' => 'Themen finden',
'Theme [_1] has been uninstalled.' => 'Thema [_1] deinstalliert.',
'Theme [_1] has been applied (<a href="[_2]">[quant,_3,warning,warnings]</a>).' => 'Thema [_1] angewendet (<a href="[_2]">[quant,_3,Warnung,Warnungen]</a>). ',
'Theme [_1] has been applied.' => 'Thema [_1] angewendet.',
'Failed' => 'Fehlgeschlagen',
'[quant,_1,warning,warnings]' => '[quant,_1,Warnung,Warnungen]',
'Reapply' => 'Erneut anwenden',
'In Use' => 'Verwendet',
'Uninstall' => 'Deinstallieren',
'Author: ' => 'Autor:',
'This theme cannot be applied to the website due to [_1] errors' => 'Dieses Thema kann wegen [_1]Fehlern nicht auf die Website angewendet werden.',
'Errors' => 'Fehler',
'Warnings' => 'Warnungen',
'Theme Errors' => 'Themen-Fehler',
'Theme Warnings' => 'Themen-Warnungen',
'Portions of this theme cannot be applied to the website. [_1] elements will be skipped.' => 'Teile dieses Themas können nicht auf die Website angewendet werden. [_1] Elemente werden übersprungen.',
'Theme Information' => 'Themen-Infos',
'No themes are installed.' => 'Keine Themen installiert.',
'Current Theme' => 'Derzeitiges Thema',
'Available Themes' => 'Verfügbare Themen',
'Themes for Both Blogs and Websites' => 'Themen für Blogs und Websites',
'Themes for Blogs' => 'Themen für Blogs',
'Themes for Websites' => 'Themen für Websites',
## tmpl/cms/list_widget.tmpl
'Manage [_1] Widgets' => '[_1]-Widgets verwalten',
'Manage Global Widgets' => 'Globale Widgets verwalten',
'Delete selected Widget Sets (x)' => 'Gewählte Widget-Gruppen löschen (x)',
'Helpful Tips' => 'Nützliche Hinweise',
'To add a widget set to your templates, use the following syntax:' => 'Um eine Widgetgruppe in eine Vorlage einzubinden, verwenden Sie folgenden Code:',
'<strong><$MTWidgetSet name="Name of the Widget Set"$></strong>' => '<strong><$MTWidgetSet name="Name der Widgetgruppe"$></strong>',
'Your changes to the widget set have been saved.' => 'Änderungen gespeichert.',
'You have successfully deleted the selected widget set(s) from your blog.' => 'Widget-Gruppe(n) erfolgreich gelöscht.',
'No widget sets could be found.' => 'Keine Widgetgruppen gefunden.',
'Create widget template' => 'Widgetvorlage anlegen',
## tmpl/cms/login.tmpl
'Sign in' => 'Anmelden',
'Your Movable Type session has ended.' => 'Ihre Movable Type-Sitzung ist abgelaufen oder Sie haben sich abgemeldet.',
'Your Movable Type session has ended. If you wish to sign in again, you can do so below.' => 'Ihre Movable Type-Sitzung ist abgelaufen. Unten können Sie sich erneut anmelden.',
'Your Movable Type session has ended. Please sign in again to continue this action.' => 'Ihre Movable Type-Sitzung ist abgelaufen. Bitte melden Sie sich erneut an, um den Vorgang fortzusetzen.',
'Sign In (s)' => 'Anmelden (s)',
'Forgot your password?' => 'Passwort vergessen?',
## tmpl/cms/pinging.tmpl
'Pinging sites...' => 'Sende Pings...',
## tmpl/cms/popup/pinged_urls.tmpl
'Successful Trackbacks' => 'Erfolgreiche TrackBacks',
'Failed Trackbacks' => 'Fehlgeschlagene TrackBacks',
'To retry, include these TrackBacks in the Outbound TrackBack URLs list for your entry.' => 'Kopieren Sie diese Adressen im Eintragseditor in das Formularfeld für die zu verschickenden TrackBacks, um es erneut zu versuchen.',
## tmpl/cms/popup/rebuild_confirm.tmpl
'Publish [_1]' => 'Veröffentliche [_1]',
'Publish <em>[_1]</em>' => '<em>[_1]</em> veröffentlichen',
'_REBUILD_PUBLISH' => 'Veröffentlichen',
'All Files' => 'Alle Dateien',
'Index Template: [_1]' => 'Index-Vorlagen: [_1]',
'Only Indexes' => 'Nur Indizes',
'Only [_1] Archives' => 'Nur Archive: [_1]',
'Publish (s)' => 'Veröffentlichen (s)',
## tmpl/cms/popup/rebuilt.tmpl
'Success' => 'Erfolg',
'The files for [_1] have been published.' => 'Dateien für [_1] veröffentlicht.',
'Your [_1] archives have been published.' => '[_1]-Archive veröffentlicht.',
'Your [_1] templates have been published.' => '[_1]-Vorlagen veröffentlicht.',
'Publish time: [_1].' => 'Dauer: [_1]',
'View your site.' => 'Site ansehen',
'View this page.' => 'Seite ansehen',
'Publish Again (s)' => 'Erneut veröffentlichen (s)',
'Publish Again' => 'Erneut veröffentlichen',
## tmpl/cms/preview_entry.tmpl
'Preview [_1] Content' => 'Vorschau auf [_1]',
'Return to the compose screen' => 'Zurück zur Eingabe',
'Return to the compose screen (e)' => 'Zurück zur Eingabe (e)',
'Save this entry' => 'Eintrag speichern',
'Save this entry (s)' => 'Eintrag speichern (s)',
'Re-Edit this entry' => 'Eintrag erneut bearbeiten',
'Re-Edit this entry (e)' => 'Eintrag erneut bearbeiten (e)',
'Save this page' => 'Seite speichern',
'Save this page (s)' => 'Seite speichern (s)',
'Re-Edit this page' => 'Seite erneut bearbeiten',
'Re-Edit this page (e)' => 'Seite erneut bearbeiten (e)',
## tmpl/cms/preview_strip.tmpl
'Publish this entry' => 'Eintrag veröffentlichen',
'Publish this entry (s)' => 'Eintrag veröffentlichen (s)',
'Publish this page' => 'Seite veröffentlichen',
'Publish this page (s)' => 'Seite veröffentlichen (s)',
'You are previewing the entry entitled “[_1]”' => 'Vorschau auf Eintrag „[_1]“',
'You are previewing the page entitled “[_1]”' => 'Vorschau auf Seite „[_1]6#8220;',
## tmpl/cms/preview_template_strip.tmpl
'You are previewing the template named “[_1]”' => 'Sie sehen eine Vorschau auf die Vorlage „[_1]”',
'(Publish time: [_1] seconds)' => '(Ausgegeben in [_1] Sekunden)',
'Save this template (s)' => 'Vorlage speichern (s)',
'Save this template' => 'Vorlage speichern',
'Re-Edit this template (e)' => 'Vorlage erneut bearbeiten (e)',
'Re-Edit this template' => 'Vorlage erneut bearbeiten',
'There are no categories in this blog. Limited preview of category archive templates is possible with a virtual category displayed. Normal, non-preview output cannot be generated by this template unless at least one category is created.' => 'Es wurden noch keine Kategorien angelegt. Für die Vorschau werden daher Beispieldaten verwendet. Veröffentlicht werden kann die Vorlage erst, wenn mindestens eine Kategorie angelegt wurde., ',
## tmpl/cms/rebuilding.tmpl
'Publishing...' => 'Veröffentliche...',
'Publishing [_1]...' => 'Veröffentliche [_1]...',
'Publishing <em>[_1]</em>...' => 'Veröffentliche <em>[_1]</em>...',
'Publishing [_1] [_2]...' => 'Veröffentliche [_1] [_2]',
'Publishing [_1] dynamic links...' => 'Veröffentliche [_1] (dynamisch)',
'Publishing [_1] archives...' => 'Veröffentliche [_1]...',
'Publishing [_1] templates...' => 'Veröffentliche [_1]...',
'Complete [_1]%' => '[_1]% fertig',
## tmpl/cms/recover_lockout.tmpl
'Recovered from lockout' => 'Entsperren',
q{User '[_1]' has been unlocked.} => q{Benutzer '[_1]' entsperrt.},
## tmpl/cms/recover_password_result.tmpl
'Recover Passwords' => 'Passwörter anfordern',
'No users were selected to process.' => 'Keine Benutzer zur Bearbeitung ausgewählt.',
'Return' => 'Zurück',
## tmpl/cms/refresh_results.tmpl
'Template Refresh' => 'Vorlagen zurücksetzen',
'No templates were selected to process.' => 'Keine Vorlagen gewählt.',
'Return to templates' => 'Zurück zu Vorlagen',
## tmpl/cms/restore_end.tmpl
q{Make sure that you remove the files that you restored from the 'import' folder, so that if/when you run the restore process again, those files will not be re-restored.} => q{Vergessen Sie nicht, die verwendeten Dateien aus dem „import“-Ordner zu entfernen, damit sie bei künftigen Wiederherstellungen nicht erneut wiederhergestellt werden.},
'An error occurred during the restore process: [_1] Please check activity log for more details.' => 'Bei der Wiederherstellung ist ein Fehler aufgetreten: [_1]. Bitte überprüfen Sie das Aktivitätsprotokoll.',
## tmpl/cms/restore_start.tmpl
'Restoring Movable Type' => 'Movable Type wiederherstellen',
## tmpl/cms/restore.tmpl
'Restore from a Backup' => 'System aus Sicherheitskopie wiederherstellen',
'Perl module XML::SAX and/or some of its dependencies are missing. Movable Type cannot restore the system without these modules.' => 'XML::SAX und/oder Abhängigkeiten dieses Perl-Moduls fehlen. Ohne diese Module kann Movable Type das System nicht wiederherstellen.',
'Backup File' => 'Sicherungsdatei',
q{If your backup file is located on a remote computer, you can upload it here. Otherwise, Movable Type will automatically look in the 'import' folder within your Movable Type directory.} => q{Befindet sich die Sicherungsdatei nicht auf dem Server, können Sie sie hier hochladen. Andersfalls prüft Movable Type automatisch das Verzeichnis „import“ Ihrer Movable Type-Installation auf gültige Sicherungsdateien. },
'Check this and files backed up from newer versions can be restored to this system. NOTE: Ignoring Schema Version can damage Movable Type permanently.' => 'Anwählen, um auch Dateien mit einer neueren Schemaversionen wiederherstellen zu können. HINWEIS: Nichtbeachtung der Schemaverion kann Ihre Movable Type-Installation dauerhaft beschädigen.',
'Ignore schema version conflicts' => 'Versionskonflikte ignorieren',
'Allow existing global templates to be overwritten by global templates in the backup file.' => 'Vorhandene globale Vorlagen mit globalen Vorlagen aus der Sicherungsdatei überschreiben',
'Overwrite global templates.' => 'Globale Vorlagen überschreiben',
'Restore (r)' => 'Wiederherstellen (r)',
## tmpl/cms/search_replace.tmpl
'You must select one or more item to replace.' => 'Wählen Sie mindestens ein Element aus, das ersetzt werden soll.',
'Search Again' => 'Erneut suchen',
'Case Sensitive' => 'Groß/Kleinschreibung beachten',
'Regex Match' => 'Reguläre Ausdrücke verwenden',
'Limited Fields' => 'Felder eingrenzen',
'Date Range' => 'Zeitraum eingrenzen',
'Reported as Spam?' => 'Als Spam gemeldet?',
'_DATE_FROM' => 'Von',
'_DATE_TO' => 'Bis',
'Submit search (s)' => 'Suchen (s)',
'Search For' => 'Suchen nach',
'Replace With' => 'Ersetzen durch',
'Replace Checked' => 'Gewählte ersetzen',
'Successfully replaced [quant,_1,record,records].' => '[quant,_1,Element,Elemente] erfolgreich ersetzt.',
'Showing first [_1] results.' => 'Zeige die ersten [_1] Treffer.',
'Show all matches' => 'Zeige alle Treffer',
'[quant,_1,result,results] found' => '[quant,_1,Treffer,Treffer] gefunden',
## tmpl/cms/setup_initial_website.tmpl
'Create Your First Website' => 'Erstellen Sie Ihre erste Website',
q{In order to properly publish your website, you must provide Movable Type with your website's URL and the filesystem path where its files should be published.} => q{Geben Sie die gewünschte URL und den gewünschten Pfad im Dateisystem Ihres Servers an, unter denen Movable Type Ihre Website veröffentlichen soll.},
'My First Website' => 'Meine erste Website',
q{The 'Website Root' is the directory in your web server's filesystem where Movable Type will publish the files for your website. The web server must have write access to this directory.} => q{Das Wurzelverzeichnis der Website ist das Verzeichnis auf Ihrem Webserver, in dem Movable Type die Dateien Ihrer Website ablegt. Der Webserver muss daher über Schreibrechte für dieses Verzeichnis verfügen.},
'Select the theme you wish to use for this new website.' => 'Wählen Sie das Thema, das Sie für die neue Website verwenden möchten.',
'Finish install (s)' => 'Installation abschließen (s)',
'Finish install' => 'Installation abschließen',
'The website name is required.' => 'Bitte geben Sie den gewünschten Namen der Website ein.',
'The website URL is required.' => 'Bitte geben Sie die gewünschte URL der Website ein.',
'Your website URL is not valid.' => 'Die angegebene URL ist nicht gültig.',
'The publishing path is required.' => 'Pfadangabe erforderlich.',
'The timezone is required.' => 'Zeitzone erforderlich.',
## tmpl/cms/system_check.tmpl
'Total Users' => 'Benutzer insgesamt',
'Memcache Status' => 'Memcache-Status',
'Memcache is [_1].' => 'Memcache ist [_1].',
'Memcache Server is [_1].' => 'Der Memcache-Server ist [_1].',
'Server Model' => 'Server-Modell',
q{Movable Type could not find the script named 'mt-check.cgi'. To resolve this issue, ensure that the mt-check.cgi script exists and that the CheckScript configuration parameter (if it is necessary) references it properly.} => q{Movable Type konnte das Skript „mt-check.cgi“ nicht finden. Überprüfen Sie, ob das Skript vorhanden ist und, falls erforderlich, ob das CheckScript-Parameter korrekt gesetzt ist.},
## tmpl/cms/theme_export_replace.tmpl
q{Export theme folder already exists '[_1]'. You can overwrite a existing theme, or cancel to change the Basename?} => q{Der Exportordner existiert bereits: „[_1]“. Setzen Sie fort, um das vorhandene Thema zu überschreiben oder brechen Sie ab, um den Ordnernamen zu ändern.},
'Overwrite' => 'Überschreiben',
## tmpl/cms/upgrade_runner.tmpl
'Initializing database...' => 'Initialisiere Datenbank...',
'Upgrading database...' => 'Aktualisiere Datenbank...',
'Error during installation:' => 'Fehler während Installation:',
'Error during upgrade:' => 'Fehler während Upgrade:',
'Return to Movable Type (s)' => 'Zurück zu Movable Type (s)',
'Return to Movable Type' => 'Zurück zu Movable Type',
'Your database is already current.' => 'Ihre Datenbank ist bereits auf dem aktuellen Stand.',
'Installation complete!' => 'Installation abgeschlossen!',
'Upgrade complete!' => 'Aktualisierung abgeschlossen!',
## tmpl/cms/upgrade.tmpl
'Time to Upgrade!' => 'Zeit für eine Aktualisierung!',
'Upgrade Check' => 'Aktualisierungs-Überprüfung',
'Do you want to proceed with the upgrade anyway?' => 'Aktualisierung dennoch durchführen?',
q{A new version of Movable Type has been installed. We'll need to complete a few tasks to update your database.} => q{Es wurde eine neue Version von Movable Type installiert. Ihre Datenbank wird nun auf den aktuellen Stand gebracht.},
q{The Movable Type Upgrade Guide can be found <a href='[_1]' target='_blank'>here</a>.} => q{Den Movable Type Upgrade Guide finden Sie <a href='[_1]' target='_blank'>hier</a>.},
'In addition, the following Movable Type components require upgrading or installation:' => 'Zusätzlich müssen folgende Movable Type-Komponenten installiert oder aktualisiert werden:',
'The following Movable Type components require upgrading or installation:' => 'Die folgenden Movable Type-Komponenten müssen installiert oder aktualisiert werden:',
'Begin Upgrade' => 'Aktualisierung durchführen',
'Congratulations, you have successfully upgraded to Movable Type [_1].' => 'Herzlichen Glückwunsch, Sie haben Ihre Installation erfolgreich auf Movable Type [_1] aktualisiert!',
'Your Movable Type installation is already up to date.' => 'Ihre Movable Type-Installation ist bereits auf dem neuesten Stand.',
## tmpl/cms/view_log.tmpl
'The activity log has been reset.' => 'Aktivitätsprotokoll zurückgesetzt',
'System Activity Log' => 'System-Aktivitätsprotokoll',
'Filtered' => 'Gefilterte',
'Filtered Activity Feed' => 'Gefilterter Aktivitätsfeed',
'Download Filtered Log (CSV)' => 'Gefiltertes Protokoll herunterladen (CSV)',
'Showing all log records' => 'Alle Einträge',
'Showing log records where' => 'Einträge mit',
'Show log records where' => 'Zeige Einträge mit',
'level' => 'Art',
'classification' => 'Thema',
## tmpl/cms/view_rpt_log.tmpl
'Schwartz Error Log' => 'Schwartz-Fehler-Log',
'Showing all Schwartz errors' => 'Alle Schwartz-Fehler zeigen',
## tmpl/cms/widget/blog_stats_comment.tmpl
'Most Recent Comments' => 'Aktuelle Kommentare',
'[_1] [_2], [_3] on [_4]' => '[_1] [_2], [_3] zu [_4]',
'View all comments' => 'Alle Kommentare',
'No comments available.' => 'Keine Kommentare vorhanden.',
## tmpl/cms/widget/blog_stats_entry.tmpl
'Most Recent Entries' => 'Aktuelle Einträge',
'Posted by [_1] [_2] in [_3]' => 'Von [_1] [_2] in [_3]',
'Posted by [_1] [_2]' => 'Von [_1] [_2]',
'Tagged: [_1]' => 'Getaggt: [_1]',
'View all entries' => 'Alle Einträge',
'No entries have been created in this blog. <a href="[_1]">Create a entry</a>' => 'In diesem Blog wurden noch keine Einträge angelegt. <a href="[_1]">Jetzt Eintrag anlegen</a>',
## tmpl/cms/widget/blog_stats_recent_entries.tmpl
'[quant,_1,entry,entries] tagged “[_2]”' => '[quant,_1,Eintrag,Einträge] getaggt mit „[_2]”',
'No entries available.' => 'Keine Einträge vorhanden.',
## tmpl/cms/widget/blog_stats_tag_cloud.tmpl
## tmpl/cms/widget/blog_stats.tmpl
'Error retrieving recent entries.' => 'Fehler beim Einlesen der aktuellen Einträge.',
'Loading recent entries...' => 'Lade aktuelle Einträge...',
'Jan.' => 'Januar',
'Feb.' => 'Februar',
'March' => 'März',
'April' => 'April',
'May' => 'Mai',
'June' => 'Juni',
'July.' => 'Juli',
'Aug.' => 'August',
'Sept.' => 'September',
'Oct.' => 'Oktober',
'Nov.' => 'November',
'Dec.' => 'Dezember',
'[_1] [_2] - [_3] [_4]' => '[_1] [_2] - [_3] [_4]',
'You have <a href=\'[_3]\'>[quant,_1,comment,comments] from [_2]</a>' => 'Sie haben <a href=\'[_3]\'>[quant,_1,Kommentar,Kommentare] von [_2]</a>',
'You have <a href=\'[_3]\'>[quant,_1,entry,entries] from [_2]</a>' => 'Sie haben <a href=\'[_3]\'>[quant,_1,Eintrag,Einträge] von [_2]</a>',
## tmpl/cms/widget/custom_message.tmpl
'This is you' => 'Das sind Sie',
'Welcome to [_1].' => 'Willkommen zu [_1].',
'You can manage your blog by selecting an option from the menu located to the left of this message.' => 'Sie können Ihr Blog vom links befindlichen Menü aus verwalten.',
'If you need assistance, try:' => 'Falls Sie Hilfe benötigen, stehen folgende Möglichkeiten zur Verfügung:',
'Movable Type User Manual' => 'Movable Type Benutzerhandbuch',
'http://www.sixapart.com/movabletype/support' => 'http://www.sixapart.com/movabletype/support',
'Movable Type Technical Support' => 'Movable Type Technischer Support',
'Movable Type Community Forums' => 'Movable Type Community-Foren',
'Change this message.' => 'Diese Nachricht ändern.',
'Edit this message.' => 'Diese Nachricht bearbeiten.',
## tmpl/cms/widget/favorite_blogs.tmpl
'Your recent websites and blogs' => 'Ihre aktuellen Websites und Blogs',
'[quant,_1,blog,blogs]' => '[quant,_1,Blog,Blogs]',
'[quant,_1,page,pages]' => '[quant,_1,Seite,Seiten]',
'[quant,_1,comment,comments]' => '[quant,_1,Kommentar,Kommentare]',
'No website could be found. [_1]' => 'Keine Website gefunden. [_1]',
'Create a new' => 'Neu anlegen',
'[quant,_1,entry,entries]' => '[quant,_1,Eintrag,Einträge]',
'No blogs could be found.' => 'Keine Blogs gefunden.',
## tmpl/cms/widget/mt_news.tmpl
'News' => 'Neues',
'MT News' => 'MT Aktuell',
'Learning MT' => 'MT lernen',
'Hacking MT' => 'MT hacken',
'Pronet' => 'Pronet',
'No Movable Type news available.' => 'Es liegen keine Movable Type-Nachrichten vor.',
'No Learning Movable Type news available.' => 'Es liegen keine Learning Movable Type-Nachrichten vor',
## tmpl/cms/widget/mt_shortcuts.tmpl
'Handy Shortcuts' => 'Schnellzugriff',
'Import Content' => 'Importieren',
'Blog Preferences' => 'Blog-Einstellungen',
## tmpl/cms/widget/new_install.tmpl
'Thank you for installing Movable Type' => 'Vielen Dank, daß Sie sich für Movable Type entschieden haben',
'You are now ready to:' => 'Sie können jetzt:',
'Create a new page on your website' => 'Eine neue Seite auf Ihrer Website anlegen',
'Create a blog on your website' => 'Ein neues Blog auf Ihrer Website anlegen',
'Create a blog (many blogs can exist in one website) to start posting.' => 'Ein Blog anlegen und sofort anfangen, zu veröffentlichen. Eine Website kann dabei mehrere Weblogs umfassen.',
'Movable Type Online Manual' => 'Movable Type Online-Handbuch',
q{Whether you're new to Movable Type or using it for the first time, learn more about what this tool can do for you.} => q{Für Neueinsteiger wie für erfahrende Movable Type-Anwender: Erfahren Sie, was Movable Type für Sie leisten kann!},
## tmpl/cms/widget/new_user.tmpl
q{Welcome to Movable Type, the world's most powerful blogging, publishing and social media platform:} => q{Herzlich willkommen zu Movable Type, der leistungsstärksten Blogging-, Publishing- und Social Media-Plattform:},
## tmpl/cms/widget/new_version.tmpl
q{What's new in Movable Type [_1]} => q{Neu in Movable Type [_1]},
## tmpl/cms/widget/recent_blogs.tmpl
'No blogs could be found. [_1]' => 'Keine Blogs gefunden. [_1]',
## tmpl/cms/widget/recent_websites.tmpl
## tmpl/cms/widget/this_is_you.tmpl
'Your <a href="[_1]">last entry</a> was [_2] in <a href="[_3]">[_4]</a>.' => 'Ihr <a href="[_1]">letzter Eintrag</a> war [_2] in <a href="[_3]">[_4]</a>',
'Your last entry was [_1] in <a href="[_2]">[_3]</a>.' => 'Ihr letzter Eintrag war [_1] auf <a href="[_2]">[_3]</a>.',
'You have <a href="[_1]">[quant,_2,draft,drafts]</a>.' => 'Sie haben <a href="[_1]>[quant,_2,Entwurf,Entwürfe]</a>.',
'You have [quant,_1,draft,drafts].' => 'Sie haben [quant,_1,Entwurf,Entwürfe].',
q{You've written <a href="[_1]">[quant,_2,entry,entries]</a>, <a href="[_3]">[quant,_4,page,pages]</a> with <a href="[_5]">[quant,_6,comment,comments]</a>.} => q{Soe haben <a href="[_1]">[quant,_2,Eintrag,Einträge]</a> und <a href="[_3]">[quant,_4,Seite,Seiten]</a> mit <a href="[_5]">[quant,_6,Kommentar,Kommentaren]</a>.},
q{You've written <a href="[_1]">[quant,_2,entry,entries]</a>, <a href="[_3]">[quant,_4,page,pages]</a> with [quant,_5,comment,comments].} => q{Sie haben <a href="[_1]">[quant,_2,Eintrag,Einträge]</a> und <a href="[_3]">[quant,_4,Seite,Seiten]</a> mit [quant,_5,Kommentar,Kommentaren] geschrieben.},
q{You've written <a href="[_1]">[quant,_2,entry,entries]</a>, [quant,_3,page,pages] with <a href="[_4]">[quant,_5,comment,comments]</a>.} => q{Sie haben <a href="[_1]">[quant,_2,Eintrag,Einträge]</a> und [quant,_3,Seite,Seiten] mit <a href="[_4]">[quant,_5,Kommentar,Kommentaren]</a> geschrieben.},
q{You've written <a href="[_1]">[quant,_2,entry,entries]</a>, [quant,_3,page,pages] with [quant,_4,comment,comments].} => q{Sie haben <a href="[_1]">[quant,_2,Eintrag,Einträge]</a> und [quant,_3,Seite,Seiten] mit [quant,_4,Kommentar,Kommentaren] geschrieben.},
q{You've written [quant,_1,entry,entries], <a href="[_2]">[quant,_3,page,pages]</a> with <a href="[_4]">[quant,_5,comment,comments]</a>.} => q{Sie haben [quant,_1,Eintrag,Einträge] und <a href="[_2]">[quant,_3,Seite,Seiten]</a> mit <a href="[_4]">[quant,_5,Kommentar,Kommentaren]</a> geschrieben.},
q{You've written [quant,_1,entry,entries], <a href="[_2]">[quant,_3,page,pages]</a> with [quant,_4,comment,comments].} => q{Sie haben [quant,_1,Eintrag,Einträge] und <a href="[_2]">[quant,_3,Seite,Seiten]</a> mit [quant,_4,Kommentar,Kommentaren] geschrieben.},
q{You've written [quant,_1,entry,entries], [quant,_2,page,pages] with <a href="[_3]">[quant,_4,comment,comments]</a>.} => q{Sie haben [quant,_1,Eintrag,Einträge] und [quant,_2,Seite,Seiten] mit <a href="[_3]">[quant,_4,Kommentar,Kommentaren]</a> geschrieben.},
q{You've written [quant,_1,entry,entries], [quant,_2,page,pages] with [quant,_3,comment,comments].} => q{Sie haben [quant,_1,Eintrag,Einträge] und [quant,_2,Seite,Seiten] mit [quant,_3,Kommentar,Kommentaren] geschrieben.},
q{You've written <a href="[_1]">[quant,_2,entry,entries]</a>, <a href="[_3]">[quant,_4,page,pages]</a>.} => q{Sie haben <a href="[_1]">[quant,_2,Eintrag,Einträge]</a> und <a href="[_3]">[quant,_4,Seite,Seiten]</a> geschrieben.},
q{You've written <a href="[_1]">[quant,_2,entry,entries]</a>, [quant,_3,page,pages].} => q{Sie haben <a href="[_1]">[quant,_2,Eintrag,Einträge]</a> und [quant,_3,Seite,Seiten] geschrieben.},
q{You've written [quant,_1,entry,entries], <a href="[_2]">[quant,_3,page,pages]</a>.} => q{Sie haben [quant,_1,Eintrag,Einträge] und <a href="[_2]">[quant,_3,Seite,Seiten]</a> geschrieben.},
q{You've written [quant,_1,entry,entries], [quant,_2,page,pages].} => q{Sie haben [quant,_1,Eintrag,Einträge] und [quant,_2,Seite,Seiten] geschrieben.},
q{You've written <a href="[_1]">[quant,_2,page,pages]</a> with <a href="[_3]">[quant,_4,comment,comments]</a>.} => q{Sie haben <a href="[_1]">[quant,_2,Eintrag,Einträge]</a> mit <a href="[_3]">[quant,_4,Kommentar,Kommentaren]</a> geschrieben.},
q{You've written <a href="[_1]">[quant,_2,page,pages]</a> with [quant,_3,comment,comments].} => q{Sie haben <a href="[_1]">[quant,_2,Seite,Seiten]</a> mit [quant,_3,Kommentar,Kommentaren] geschrieben.},
q{You've written [quant,_1,page,pages] with <a href="[_2]">[quant,_3,comment,comments]</a>.} => q{Sie haben [quant,_1,Seite,Seiten] mit <a href="[_2]">[quant,_3,Kommentar,Kommentaren]</a> geschrieben.},
q{You've written [quant,_1,page,pages] with [quant,_2,comment,comments].} => q{Sie haben [quant,_1,Seite,Seiten] mit [quant,_2,Kommentar,Kommentaren]geschrieben.},
'Edit your profile' => 'Profil bearbeiten',
## tmpl/comment/auth_aim.tmpl
'Your AIM or AOL Screen Name' => 'Ihr AIM- oder AOL-Bildschirmname',
'Sign in using your AIM or AOL screen name. Your screen name will be displayed publicly.' => 'Mit Ihrem AIM- oder AOL-Bildschirmnamen anmelden. Ihr Bildschirmname wird öffentlich angezeigt.',
## tmpl/comment/auth_googleopenid.tmpl
'Sign in using your Gmail account' => 'Mit Ihrem Gmail-Konto anmelden',
'Sign in to Movable Type with your[_1] Account[_2]' => 'Bei Movable Type mit Ihrem[_1]-Konto[_2] anmelden',
## tmpl/comment/auth_hatena.tmpl
'Your Hatena ID' => 'Ihre Hatena-ID',
## tmpl/comment/auth_livedoor.tmpl
## tmpl/comment/auth_livejournal.tmpl
'Your LiveJournal Username' => 'Ihr LiveJournal-Benutzername',
'Learn more about LiveJournal.' => 'Mehr über LiveJournal erfahren',
## tmpl/comment/auth_openid.tmpl
'OpenID URL' => 'OpenID-URL',
'Sign in with one of your existing third party OpenID accounts.' => 'Mit einer Ihrer vorhandenen OpenID-Kennungen anmelden',
'http://www.openid.net/' => 'http://www.openid.net/',
'Learn more about OpenID.' => 'Mehr über OpenID erfahren',
## tmpl/comment/auth_typepad.tmpl
'TypePad is a free, open system providing you a central identity for posting comments on weblogs and logging into other websites. You can register for free.' => 'TypePad ist ein kostenloses und offenes Identitäts-System, mit dem Sie Kommentare auf Weblogs verfassen und sich bei Websites anmelden können. Melden Sie sich kostenlos an.',
'Sign in or register with TypePad.' => 'Anmelden oder bei TypePad registrieren',
## tmpl/comment/auth_vox.tmpl
'Your Vox Blog URL' => 'Ihre Vox-Blog-URL',
'Learn more about Vox.' => 'Mehr über Vox erfahren',
## tmpl/comment/auth_wordpress.tmpl
'Your Wordpress.com Username' => 'Ihr Wordpress.com-Benutzername',
'Sign in using your WordPress.com username.' => 'Mit Ihrem Wordpress.com-Benutzernamen anmelden',
## tmpl/comment/auth_yahoojapan.tmpl
'Turn on OpenID for your Yahoo! Japan account now' => 'OpenID für Ihr Yahoo! Japan-Konto jetzt aktivieren',
## tmpl/comment/auth_yahoo.tmpl
'Turn on OpenID for your Yahoo! account now' => 'Aktivieren Sie jetzt OpenID für Ihr Yahoo!-Benutzerkonto',
## tmpl/comment/error.tmpl
'Back (s)' => 'Zurück (s)',
## tmpl/comment/login.tmpl
'Sign in to comment' => 'Anmelden zum Kommentieren',
'Sign in using' => 'Anmelden mit',
'Not a member? <a href="[_1]">Sign Up</a>!' => 'Noch nicht Mitglied? <a href="[_1]">Jetzt anmelden</a>!',
## tmpl/comment/profile.tmpl
'Your Profile' => 'Ihr Profil',
'Your login name.' => 'Ihr Benutzername',
'The name appears on your comment.' => 'Dieser Name wird unter Ihren Kommentaren angezeigt.',
'Your email address.' => 'Ihre E-Mail-Adresse',
'Select a password for yourself.' => 'Eigenes Passwort',
'The URL of your website. (Optional)' => 'URL Ihrer Website (optional)',
'Return to the <a href="[_1]">original page</a>.' => 'Zurück zur <a href="[_1]">Ausgangsseite</a>.',
## tmpl/comment/register.tmpl
'Create an account' => 'Konto anlegen',
'Register' => 'Registrieren',
## tmpl/comment/signup_thanks.tmpl
'Thanks for signing up' => 'Vielen Dank für Ihre Anmeldung',
'Before you can leave a comment you must first complete the registration process by confirming your account. An email has been sent to [_1].' => 'Bevor Sie kommentieren können, müssen Sie Ihre Registrierung noch bestätigen. Dazu haben wir Ihnen eine E-Mail an [_1] geschickt.',
'To complete the registration process you must first confirm your account. An email has been sent to [_1].' => 'Um die Registrierung abzuschließen, bestätigen Sie bitte Ihre Anmeldung. Dazu haben wir Ihnen eine E-Mail an [_1] geschickt.',
'To confirm and activate your account please check your inbox and click on the link found in the email we just sent you.' => 'Um Ihre Registrierung zu bestätigen und Ihr Konto zu aktivieren, klicken Sie bitte auf den Link in dieser E-Mail.',
'Return to the original entry.' => 'Zurück zum ursprünglichen Eintrag',
'Return to the original page.' => 'Zurück zur ursprünglichen Seite',
## tmpl/comment/signup.tmpl
'Password Confirm' => 'Passwortbestätigung',
## tmpl/error.tmpl
'Missing Configuration File' => 'Fehlende Konfigurationsdatei',
'_ERROR_CONFIG_FILE' => 'Ihre Movable Type-Konfigurationsdatei fehlt, ist fehlerhaft oder kann nicht gelesen werden. Anweisungen zur Konfigurierung finden Sie im Abschnitt <a href="javascript:void(0)">Installation and Configuration</a> der Movable Type-Dokumentation.',
'Database Connection Error' => 'Verbindung mit Datenbank fehlgeschlagen',
'_ERROR_DATABASE_CONNECTION' => 'Die Datenbankeinstellungen in Ihrer Konfigurationsdatei fehlen oder sind fehlerhaft. Anweisungen zur Konfigurierung finden Sie im Abschnitt <a href="javascript:void(0)">Installation and Configuration</a> der Movable Type-Dokumentation.',
'CGI Path Configuration Required' => 'CGI-Pfad muß eingestellt sein',
'_ERROR_CGI_PATH' => 'Die CGIPath-Angabe in Ihrer Konfigurationsdatei fehlt oder ist fehlerhaft. Anweisungen zur Konfigurierung finden Sie im Abschnitt <a href="javascript:void(0)">Installation and Configuration</a> der Movable Type-Dokumentation.',
## tmpl/feeds/error.tmpl
'Movable Type Activity Log' => 'Movable Type-Aktivitätsprotokoll',
## tmpl/feeds/feed_comment.tmpl
'Unpublish' => 'Nicht mehr veröffentlichen',
'More like this' => 'Ähnliche Einträge',
'From this blog' => 'Aus diesem Blog',
'On this entry' => 'Zu diesem Eintrag',
'By commenter identity' => 'Nach Identität des Kommentarautoren',
'By commenter name' => 'Nach Namen des Kommentarautoren',
'By commenter email' => 'Nach E-Mail-Adresse des Kommentarautoren',
'By commenter URL' => 'Nach Web-Adresse (URL) des Kommentarautoren',
'On this day' => 'An diesem Tag',
## tmpl/feeds/feed_entry.tmpl
'From this author' => 'Von diesem Autoren',
## tmpl/feeds/feed_page.tmpl
## tmpl/feeds/feed_ping.tmpl
'Source blog' => 'Quelle',
'By source blog' => 'Nach Quelle',
'By source title' => 'Nach Name der Quelle',
'By source URL' => 'Nach URL der Quelle',
## tmpl/feeds/login.tmpl
'This link is invalid. Please resubscribe to your activity feed.' => 'Dieser Link ist ungültig. Bitte abonnieren Sie Ihren Aktivitäts-Feed erneut.',
## tmpl/include/chromeless_header.tmpl
## tmpl/wizard/blog.tmpl
'Setup Your First Blog' => 'Richten Sie Ihr erstes Blog ein',
q{In order to properly publish your blog, you must provide Movable Type with your blog's URL and the path on the filesystem where its files should be published.} => q{Damit Ihr Blog veröffentlicht werden kann, geben Sie bitte die Webadresse (URL), unter der der Blog erscheinen soll, und den Pfad im Dateisystem, unter dem Movable Type die Dateien dieses Blog ablegen soll, an.},
'My First Blog' => 'Mein erstes Blog',
'Publishing Path' => 'Veröffentlichungspfad',
q{Your 'Publishing Path' is the path on your web server's file system where Movable Type will publish all the files for your blog. Your web server must have write access to this directory.} => q{Der Veröffentlichungspfad ist der Pfad auf Ihrem Webserver, in dem Movable Type die Dateien dieses Blogs ablegt.},
## tmpl/wizard/cfg_dir.tmpl
'Temporary Directory Configuration' => 'Konfigurierung des temporären Verzeichnisses',
'You should configure you temporary directory settings.' => 'Hier legen Sie fest, in welchem Verzeichnis temporäre Dateien gespeichert werden.',
q{Your TempDir has been successfully configured. Click 'Continue' below to continue configuration.} => q{TempDir erfolgreich konfiguriert. Klicken Sie auf „Weiter“, um die Konfigurierung fortsetzen.},
'[_1] could not be found.' => '[_1] nicht gefunden.',
'TempDir is required.' => 'TempDir ist erforderlich.',
'TempDir' => 'TempDir',
'The physical path for temporary directory.' => 'Pfad Ihres temporären Verzeichnisses',
## tmpl/wizard/complete.tmpl
'Configuration File' => 'Konfigurationsdatei',
q{The [_1] configuration file can't be located.} => q{Die [_1]-Konfigurationsdatei kann nicht gefunden werden.},
q{Please use the configuration text below to create a file named 'mt-config.cgi' in the root directory of [_1] (the same directory in which mt.cgi is found).} => q{Kopieren Sie folgenden Text in eine Datei namens „mt-config.cgi“ und legen diese im Movable Type-Hauptverzeichnis ab (das Verzeichnis, in dem sich auch die Datei mt.cgi befindet)},
'The wizard was unable to save the [_1] configuration file.' => 'Die [_1]-Konfigurationsdatei konnte nicht gespeichert werden.',
q{Confirm that your [_1] home directory (the directory that contains mt.cgi) is writable by your web server and then click 'Retry'.} => q{Stellen Sie sicher, daß Ihr Webserver Schreibrechte für Ihr [_1]-Wurzelverzeichnis hat (also für den Ordner, der die Datei mt.cgi enthält) und klicken Sie dann auf „Erneut versuchen“.},
q{Congratulations! You've successfully configured [_1].} => q{Herzlichen Glückwunsch! Sie haben die [_1] erfolgreich konfiguriert.},
'Show the mt-config.cgi file generated by the wizard' => 'Vom Konfigurationsassistenten erzeugte mt-config.cgi-Datei anzeigen',
'The mt-config.cgi file has been created manually.' => 'Die mt-congig.cgi-Konfigurationsdatei wurde manuell erstellt.',
'Retry' => 'Erneut versuchen',
## tmpl/wizard/configure.tmpl
'Database Configuration' => 'Datenbankkonfigurierung',
'Your database configuration is complete.' => 'Ihre Datenbankkonfigurierung ist abgeschlossen.',
'You may proceed to the next step.' => 'Sie können mit dem nächsten Schritt fortfahren.',
'Show Current Settings' => 'Einstellungen anzeigen',
'Please enter the parameters necessary for connecting to your database.' => 'Bitte geben Sie zur Herstellung der Datenkbankverbindung notwendigen Daten ein.',
'Database Type' => 'Datenbanktyp',
'Select One...' => 'Auswählen...',
'http://www.movabletype.org/documentation/[_1]' => 'http://www.movabletype.org/documentation/[_1]',
'Is your preferred database not listed? View the <a href="[_1]" target="_blank">Movable Type System Check</a> see if additional modules are necessary.' => 'Wird Ihr Datenbanksystem nicht aufgeführt? Führen Sie die <a href="[_1]" target="_blank">Movable Type Systemüberprüfung</a> durch, um zu erfahren, ob zusätzliche Module erforderlich sind.',
'Once installed, <a href="javascript:void(0)" onclick="[_1]">click here to refresh this screen</a>.' => 'Klicken Sie nach der Installation <a href="javascript:void(0)" onclick="[_1]">hier, um diese Ansicht zu aktualisieren</a>.',
'Read more: <a href="[_1]" target="_blank">Setting Up Your Database</a>' => 'Mehr über <a href="[_1]" target="blank">Datenbankkonfiguration</a> erfahren',
'Show Advanced Configuration Options' => 'Erweiterte Optionen anzeigen',
'Test Connection' => 'Verbindung testen',
'You must set your Database Path.' => 'Pfad zur Datenbank erforderlich',
'You must set your Username.' => 'Geben Sie Ihren Benutzernamen an.',
'You must set your Database Server.' => 'Geben Sie Ihren Datenbankserver an.',
## tmpl/wizard/optional.tmpl
'Mail Configuration' => 'Mailkonfigurierung',
'Your mail configuration is complete.' => 'Ihre Mail-Konfigurierung ist abgeschlossen.',
'Check your email to confirm receipt of a test email from Movable Type and then proceed to the next step.' => 'Überprüfen Sie den Eingang der Testmail in Ihrem Postfach und fahren Sie dann mit dem nächsten Schritt fort.',
'Show current mail settings' => 'Mail-Einstellungen anzeigen',
'Periodically Movable Type will send email for password recovery, to inform authors of new comments, and other events. If not using Sendmail (default on unix servers), an SMTP Server must be specified.' => 'Geben Sie an, auf welchem Wege Movable Type E-Mails verschicken soll. E-Mails werden beispielsweise zur Benachrichtigung über neue Kommentare verschickt.',
'An error occurred while attempting to send mail: ' => 'Mailversand fehlgeschlagen: ',
'Send email via:' => 'E-Mails versenden per:',
'sendmail Path' => 'sendmail-Pfad',
'The physical file path for your sendmail binary.' => 'Pfad zu sendmail',
'Outbound Mail Server (SMTP)' => 'SMTP-Server',
'Address of your SMTP Server.' => 'Adresse Ihres SMTP-Servers',
'Mail address to which test email should be sent' => 'Zieladresse der Testmail',
'From mail address' => 'Absenderadresse',
## tmpl/wizard/packages.tmpl
'Requirements Check' => 'Überprüfung der Systemvoraussetzungen',
q{The following Perl modules are required in order to make a database connection. Movable Type requires a database in order to store your blog's data. Please install one of the packages listed here in order to proceed. When you are ready, click the 'Retry' button.} => q{Die folgenden Perl-Module sind zur Herstellung einer Datenbankverbindung erforderlich (Movable Type speichert Ihre Daten in einer Datenbank). Bitte installieren Sie die hier genannten Pakete und klicken Sie danach auf „Erneut versuchen“.},
'All required Perl modules were found.' => 'Alle erforderlichen Perl-Module sind vorhanden.',
'You are ready to proceed with the installation of Movable Type.' => 'Sie können die Installation von Movable Type fortsetzen.',
'Some optional Perl modules could not be found. <a href="javascript:void(0)" onclick="[_1]">Display list of optional modules</a>' => 'Einige optionale Perl-Module wurden nicht gefunden. <a href="javascript:void(0)" onclick="[_1]">Optionale Module anzeigen</a>',
'One or more Perl modules required by Movable Type could not be found.' => 'Mindestens ein von Movable Type erforderliche Perl-Modul wurde nicht gefunden.',
q{The following Perl modules are required for Movable Type to run properly. Once you have met these requirements, click the 'Retry' button to re-test for these packages.} => q{Die folgenden Pakete sind nicht vorhanden, zur Ausführung von Movable Type aber erforderlich. Bitte installieren Sie sie und klicken dann auf „Erneut versuchen“.},
q{Some optional Perl modules could not be found. You may continue without installing these optional Perl modules. They may be installed at any time if they are needed. Click 'Retry' to test for the modules again.} => q{Einige optionale Perl-Module wurden nicht gefunden. Die Installation kann ohne diese Module fortgesetzt werden. Sie können jederzeit bei Bedarf nachinstalliert werden. „Erneut versuchen“ wiederholt die Modulsuche.},
'Missing Database Modules' => 'Fehlende Datenbank-Module',
'Missing Optional Modules' => 'Nicht vorhandene optionale Module',
'Minimal version requirement: [_1]' => 'Mindestens erforderliche Version: [_1]',
'http://www.movabletype.org/documentation/installation/perl-modules.html' => 'http://www.movabletype.org/documentation/installation/perl-modules.html',
'Learn more about installing Perl modules.' => 'Mehr über die Installation von Perl-Modulen erfahren',
'Your server has all of the required modules installed; you do not need to perform any additional module installations.' => 'Alle erforderlichen Pakete vorhanden. Sie brauchen keine weiteren Pakete zu installieren.',
## tmpl/wizard/start.tmpl
'Configuration File Exists' => 'Es ist bereits eine Konfigurationsdatei vorhanden',
'Movable Type requires that you enable JavaScript in your browser. Please enable it and refresh this page to proceed.' => 'Movable Type erfordert JavaScript. Bitte aktivieren Sie es in Ihren Browsereinstellungen und laden diese Seite dann neu.',
'This wizard will help you configure the basic settings needed to run Movable Type.' => 'Dieser Konfigurationsassistent hilft Ihnen, die zum Betrieb von Movable Type erforderlichen Grundeinstellungen vorzunehmen.',
'Default language.' => 'Standardsprache',
'Configure Static Web Path' => 'Statischen Web-Pfad konfigurieren',
q{<strong>Error: '[_1]' could not be found.</strong> Please move your static files to the directory first or correct the setting if it is incorrect.} => q{<strong>Fehler: „[_1]“ nicht gefunden.</strong> Bitte verschieben Sie die statischen Dateien erst in das Verzeichnis oder überprüfen Sie die Einstellungen.},
'Movable Type ships with directory named [_1] which contains a number of important files such as images, javascript files and stylesheets.' => 'Movable Type wird mit einem Verzeichnis namens [_1] ausgeliefert, das einige wichtige Bild-, JavaScript- und Stylesheet-Dateien enthält.',
q{The [_1] directory is in the main Movable Type directory which this wizard script resides, but due to your web server's configuration, the [_1] directory is not accessible in this location and must be moved to a web-accessible location (e.g., your web document root directory).} => q{Der [_1]-Ordner befindet sich im Hauptverzeichnis von Movable Type, ist aufgrund der Serverkonfiguration vom Webserver aber nicht erreichbar. Verschieben Sie den Ordner [_1] daher an einen Ort, auf dem der Webserver zugreifen kann (z.B. in das Web-Wurzelverzeichnis).},
'This directory has either been renamed or moved to a location outside of the Movable Type directory.' => 'Das Verzeichnis wurde entweder umbenannt oder an einen Ort außerhalb des Movable Type-Verzeichnisses verschoben.',
'Once the [_1] directory is in a web-accessible location, specify the location below.' => 'Wenn Sie den [_1]-Ordner an einen vom Webserver erreichbaren Ort verschoben haben, geben Sie die Adresse unten an.',
'This URL path can be in the form of [_1] or simply [_2]' => 'Die Adresse kann in dieser Form: [_1] oder einfach als [_2] angegeben werden. ',
'This path must be in the form of [_1]' => 'Der Pfad muss in dieser Form angegeben werden: [_1]',
'Static web path' => 'Statischer Webpfad',
'Static file path' => 'Statischer Dateipfad',
'Begin' => 'Anfangen',
'A configuration (mt-config.cgi) file already exists, <a href="[_1]">sign in</a> to Movable Type.' => 'Es ist bereits eine Konfigurationsdatei (mt-config.cgi) vorhanden. Sie können sich daher sofort <a href="[_1]">bei Movable Type anmelden</a>.',
'To create a new configuration file using the Wizard, remove the current configuration file and then refresh this page' => 'Um mit dem Konfigurationsassistenten eine neue Konfigurationsdatei zu erzeugen, entfernen Sie die vorhandene Konfigurationsdatei und laden Sie diese Seite neu.',
## addons/Commercial.pack/config.yaml
'Professional designed, well structured and easily adaptable web site. You can customize default pages, footer and top navigation easily.' => 'Eine professionell gestaltete, übersichtlich strukturierte und leicht anpass- und erweiterbare Website. ',
'_PWT_ABOUT_BODY' => '
<p><strong>Platzhalter - Geben Sie hier Ihren eigenen Text ein.</strong></p>
<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit. In nec
tellus sed turpis varius sagittis. Nullam pulvinar. Fusce dapibus neque
pellentesque nulla. Maecenas condimentum quam. Vestibulum pretium
fringilla quam. Nam elementum. Suspendisse odio magna, aliquam vitae,
vulputate et, dignissim at, pede. Integer pellentesque orci at nibh.
Morbi ante.</p>
<p>Maecenas convallis mattis justo. Ut mauris sapien, consequat a,
bibendum vitae, sagittis ac, nisi. Nulla et sapien. Class aptent taciti
sociosqu ad litora torquent per conubia nostra, per inceptos hymenaeos.
Ut condimentum turpis ut elit. Quisque ultricies sollicitudin justo.
Duis vitae magna nec risus pulvinar ultricies.</p>
',
'_PWT_CONTACT_BODY' => '
<p><strong>Platzhalter - Geben Sie hier Ihren eigenen Text ein.</strong></p>
<p>Wir freuen uns darauf, von Ihnen zu hören. Schicken Sie Ihre E-Mail bitte an email (at) domainname.de</p>
',
'Welcome to our new website!' => 'Willkommen auf unserer neuen Website!',
'_PWT_HOME_BODY' => '
<p><strong>Platzhalter - Geben Sie hier Ihren eigenen Text ein.</strong></p>
<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit. In nec
tellus sed turpis varius sagittis. Nullam pulvinar. Fusce dapibus neque
pellentesque nulla. Maecenas condimentum quam. Aliquam erat volutpat. Ut
placerat porta nibh. Donec vitae nulla. Pellentesque nisi leo, pretium
a, gravida quis, sollicitudin non, eros. Vestibulum pretium fringilla
quam. Nam elementum. Suspendisse odio magna, aliquam vitae, vulputate
et, dignissim at, pede. Integer pellentesque orci at nibh. Morbi ante.</p>
<p>Maecenas convallis mattis justo. Ut mauris sapien, consequat a,
bibendum vitae, sagittis ac, nisi. Nulla et sapien. Class aptent taciti
sociosqu ad litora torquent per conubia nostra, per inceptos hymenaeos.
Ut condimentum turpis ut elit. Quisque ultricies sollicitudin justo.
Duis vitae magna nec risus pulvinar ultricies. Aliquam sagittis volutpat
metus.</p>
<p>Sed enim. Integer hendrerit, arcu ac pretium nonummy, velit turpis
faucibus risus, pulvinar egestas enim elit sed ante. Curabitur orci
diam, placerat a, faucibus id, condimentum vitae, magna. Etiam enim
massa, convallis quis, rutrum vitae, porta quis, turpis.</p>
',
'Create a blog as a part of structured website. This works best with Professional Website theme.' => 'Legen Sie ein Blog als Teil einer umfangreicheren Website an. Das funktioniert besonders gut mit der Vorlage „Professionelle Website“.',
'Unknown Type' => 'Unbekannter Typ',
'Unknown Object' => 'Unbekannts Objekt',
'Not Required' => 'Nicht erforderlich',
'Are you sure you want to delete the selected CustomFields?' => 'Gewählte eigene Felder wirklich löschen?',
'Photo' => 'Foto',
'Embed' => 'Einbetten',
'Custom Fields' => 'Eigene Felder',
'Field' => 'Feld',
'Template tag' => 'Vorlagenbefehl',
'Updating Universal Template Set to Professional Website set...' => 'Aktualisiere \'Universelle Vorlagengruppe\' in Vorlagengruppe \'Profesionelle Website\'',
'Migrating CustomFields type...' => 'Migriere Arten der eigenen Felder...',
'Professional Styles' => 'Pro-Themen',
'A collection of styles compatible with Professional themes.' => 'Mit Pro-Themen kompatible Designs',
'Professional Website' => 'Professionelle Website',
'Blog Index' => 'Blog-Index',
'Header' => 'Kopf',
'Footer' => 'Fußzeile',
'Entry Metadata' => 'Eintrags-Metadaten',
'Page Detail' => 'Seiteninformationen',
'Footer Links' => 'Fußzeilen-Links',
'Powered By (Footer)' => 'Powered by (Fußzeile)',
'Recent Entries Expanded' => 'Neueste Einträge (erweitert)',
'Main Sidebar' => 'Haupt-Seitenspalte',
'Blog Activity' => 'Blog-Aktivität',
'Professional Blog' => 'Professionelles Blog',
'Entry Detail' => 'Eintragsdetails',
'Blog Archives' => 'Blog-Archive',
## addons/Commercial.pack/lib/CustomFields/App/CMS.pm
'Show' => 'Anzeigen',
'Date & Time' => 'Datum- und Uhrzeit',
'Date Only' => 'Nur Datum',
'Time Only' => 'Nur Uhrzeit',
'Please enter all allowable options for this field as a comma delimited list' => 'Bitte geben Sie alle für dieses Feld zulässigen Optionen als kommagetrennte Liste ein.',
'Exclude Custom Fields' => 'Eigene Felder ausschließen',
'[_1] Fields' => '[_1]-Felder',
'Edit Field' => 'Feld bearbeiten',
'Invalid date \'[_1]\'; dates must be in the format YYYY-MM-DD HH:MM:SS.' => 'Ungültige Datumsangabe \'[_1]\' - Datumsangaben müssen das Format JJJJ-MM-TT HH:MM:SS haben.',
'Invalid date \'[_1]\'; dates should be real dates.' => 'Ungültige Datumsangabe \'[_1]\' - Datumsangaben sollten tatsächliche Daten sein',
'Please enter valid URL for the URL field: [_1]' => 'Bitte geben Sie eine gültige Web-Adresse in das Feld [_1] ein.',
'Please enter some value for required \'[_1]\' field.' => 'Bitte füllen Sie das erforderliche Feld \'[_1]\' aus.',
'Please ensure all required fields have been filled in.' => 'Bitte füllen Sie alle erforderlichen Felder aus.',
'The template tag \'[_1]\' is an invalid tag name.' => '\'[_1]\' ist ein ungültiger Befehlsname.',
'The template tag \'[_1]\' is already in use.' => 'Vorlagenbefehl \'[_1]\' bereits vorhanden',
'blog and the system' => 'Blog und das system',
'website and the system' => 'Website und das System',
'The basename \'[_1]\' is already in use. It must be unique within this [_2].' => 'Der Basisname \'[_1]\' wird bereits verwendent. Er muss auf dieser [_2] eindeutig sein.',
'You must select other type if object is the comment.' => 'Wählen Sie einen anderen Typ, wenn sich das Feld auf Kommentare bezieht.',
'type' => 'Typ',
'Customize the forms and fields for entries, pages, folders, categories, and users, storing exactly the information you need.' => 'Speichern Sie genau die Informationen, die Sie möchten, indem Sie die Formulare und Felder von Einträgen, Seiten, Ordnern, Kategorien und Benutzerkonten frei anpassen.',
' ' => ' ',
'Single-Line Text' => 'Einzeiliger Text',
'Multi-Line Text' => 'Mehrzeiliger Text',
'Checkbox' => 'Auswahlkästchen',
'Date and Time' => 'Datum und Uhrzeit',
'Drop Down Menu' => 'Drop-Down-Menü',
'Radio Buttons' => 'Auswahlknöpfe',
'Embed Object' => 'Objekt einbetten',
'Post Type' => 'Eintragsart',
## addons/Commercial.pack/lib/CustomFields/BackupRestore.pm
'Restoring custom fields data stored in MT::PluginData...' => 'Stelle eigene Felder aus MT::PluginData wieder her...',
'Restoring asset associations found in custom fields ( [_1] ) ...' => 'Stelle Assetverknüpfungen aus eigenen Feldern wieder her...',
'Restoring url of the assets associated in custom fields ( [_1] )...' => 'Stelle die Adressen der in eigenen Feldern verwendeten Assets wieder her...',
## addons/Commercial.pack/lib/CustomFields/Field.pm
'The template tag \'[_1]\' is already in use in the system level' => 'Der Vorlagenbefehl \'[_1]\' wird auf Systemebene bereits verwendet.',
'The template tag \'[_1]\' is already in use in [_2]' => 'Der Vorlagenbefehl \'[_1]\' wird bereits in [_2] verwendet.',
'The template tag \'[_1]\' is already in use in this blog' => 'Der Vorlagenbefehl \'[_1]\' wird in diesem Blog bereits verwendet.',
'The \'[_1]\' of the template tag \'[_2]\' that is already in use in [_3] is [_4].' => 'Das bereits in [_3] verwendete \'[_1]\' des Vorlagenbefehls \'[_2]\' ist [_4].',
'_CF_BASENAME' => 'Basisname',
## addons/Commercial.pack/lib/CustomFields/Template/ContextHandlers.pm
'Are you sure you have used a \'[_1]\' tag in the correct context? We could not find the [_2]' => 'Wird der \'[_1]\'-Befehl im richtigen Kontext verwendet? Kann [_2] nicht finden',
'You used an \'[_1]\' tag outside of the context of the correct content; ' => '\'[_1]\'-Befehl außerhalb des passenden Kontexts verwendet.',
## addons/Commercial.pack/lib/CustomFields/Theme.pm
'[_1] custom fields' => '[_1] eigene Felder',
'a field on this blog' => 'Ein Feld dieses Blogs',
'a field on system wide' => 'Ein systemweites Feld',
'Conflict of [_1] "[_2]" with [_3]' => ' [_1] "[_2]" steht in Konflikt mit [_3]',
'Template Tag' => 'Vorlagenbefehl',
## addons/Commercial.pack/lib/CustomFields/Upgrade.pm
'Moving metadata storage for pages...' => 'Verschiebe Metadatenspeicher für Seiten...',
'Removing CustomFields display-order from plugin data...' => 'Entferne Anzeigereihenfolge eigener Felder aus Plugin-Daten...',
'Removing unlinked CustomFields...' => 'Entferne nicht verwendete eigene Felder...',
## addons/Commercial.pack/lib/CustomFields/Util.pm
'Cloning fields for blog:' => 'Klone Felder dieses Blogs:',
## addons/Commercial.pack/templates/professional/blog/about_this_page.mtml
## addons/Commercial.pack/templates/professional/blog/archive_index.mtml
## addons/Commercial.pack/templates/professional/blog/archive_widgets_group.mtml
## addons/Commercial.pack/templates/professional/blog/author_archive_list.mtml
## addons/Commercial.pack/templates/professional/blog/calendar.mtml
## addons/Commercial.pack/templates/professional/blog/categories.mtml
## addons/Commercial.pack/templates/professional/blog/category_archive_list.mtml
## addons/Commercial.pack/templates/professional/blog/comment_detail.mtml
## addons/Commercial.pack/templates/professional/blog/comment_form.mtml
## addons/Commercial.pack/templates/professional/blog/comment_listing.mtml
## addons/Commercial.pack/templates/professional/blog/comment_preview.mtml
## addons/Commercial.pack/templates/professional/blog/comment_response.mtml
## addons/Commercial.pack/templates/professional/blog/comments.mtml
## addons/Commercial.pack/templates/professional/blog/creative_commons.mtml
## addons/Commercial.pack/templates/professional/blog/current_author_monthly_archive_list.mtml
## addons/Commercial.pack/templates/professional/blog/current_category_monthly_archive_list.mtml
## addons/Commercial.pack/templates/professional/blog/date_based_author_archives.mtml
## addons/Commercial.pack/templates/professional/blog/date_based_category_archives.mtml
## addons/Commercial.pack/templates/professional/blog/dynamic_error.mtml
## addons/Commercial.pack/templates/professional/blog/entry_detail.mtml
## addons/Commercial.pack/templates/professional/blog/entry_listing.mtml
'Recently by <em>[_1]</em>' => 'Neues von <em>[_1]</em>',
## addons/Commercial.pack/templates/professional/blog/entry_metadata.mtml
## addons/Commercial.pack/templates/professional/blog/entry.mtml
## addons/Commercial.pack/templates/professional/blog/entry_summary.mtml
## addons/Commercial.pack/templates/professional/blog/footer_links.mtml
'Links' => 'Links',
## addons/Commercial.pack/templates/professional/blog/footer.mtml
## addons/Commercial.pack/templates/professional/blog/header.mtml
## addons/Commercial.pack/templates/professional/blog/javascript.mtml
## addons/Commercial.pack/templates/professional/blog/main_index.mtml
## addons/Commercial.pack/templates/professional/blog/main_index_widgets_group.mtml
## addons/Commercial.pack/templates/professional/blog/monthly_archive_dropdown.mtml
## addons/Commercial.pack/templates/professional/blog/monthly_archive_list.mtml
## addons/Commercial.pack/templates/professional/blog/navigation.mtml
## addons/Commercial.pack/templates/professional/blog/openid.mtml
## addons/Commercial.pack/templates/professional/blog/page.mtml
## addons/Commercial.pack/templates/professional/blog/pages_list.mtml
## addons/Commercial.pack/templates/professional/blog/powered_by_footer.mtml
## addons/Commercial.pack/templates/professional/blog/recent_assets.mtml
## addons/Commercial.pack/templates/professional/blog/recent_comments.mtml
'<a href="[_1]">[_2] commented on [_3]</a>: [_4]' => '<a href="[_1]">[_2] meinte zu [_3]</a>: [_4]',
## addons/Commercial.pack/templates/professional/blog/recent_entries.mtml
## addons/Commercial.pack/templates/professional/blog/search.mtml
## addons/Commercial.pack/templates/professional/blog/search_results.mtml
## addons/Commercial.pack/templates/professional/blog/sidebar.mtml
## addons/Commercial.pack/templates/professional/blog/signin.mtml
## addons/Commercial.pack/templates/professional/blog/syndication.mtml
## addons/Commercial.pack/templates/professional/blog/tag_cloud.mtml
## addons/Commercial.pack/templates/professional/blog/tags.mtml
## addons/Commercial.pack/templates/professional/blog/trackbacks.mtml
## addons/Commercial.pack/templates/professional/website/blog_index.mtml
## addons/Commercial.pack/templates/professional/website/blogs.mtml
'Entries ([_1]) Comments ([_2])' => 'Einträge ([_1]) Kommentare ([_2])',
## addons/Commercial.pack/templates/professional/website/comment_detail.mtml
## addons/Commercial.pack/templates/professional/website/comment_form.mtml
## addons/Commercial.pack/templates/professional/website/comment_listing.mtml
## addons/Commercial.pack/templates/professional/website/comment_preview.mtml
## addons/Commercial.pack/templates/professional/website/comment_response.mtml
## addons/Commercial.pack/templates/professional/website/comments.mtml
## addons/Commercial.pack/templates/professional/website/dynamic_error.mtml
## addons/Commercial.pack/templates/professional/website/entry_metadata.mtml
## addons/Commercial.pack/templates/professional/website/entry_summary.mtml
## addons/Commercial.pack/templates/professional/website/footer_links.mtml
## addons/Commercial.pack/templates/professional/website/footer.mtml
## addons/Commercial.pack/templates/professional/website/header.mtml
## addons/Commercial.pack/templates/professional/website/javascript.mtml
## addons/Commercial.pack/templates/professional/website/main_index.mtml
## addons/Commercial.pack/templates/professional/website/navigation.mtml
## addons/Commercial.pack/templates/professional/website/openid.mtml
## addons/Commercial.pack/templates/professional/website/page.mtml
## addons/Commercial.pack/templates/professional/website/pages_list.mtml
## addons/Commercial.pack/templates/professional/website/powered_by_footer.mtml
## addons/Commercial.pack/templates/professional/website/recent_entries_expanded.mtml
'on [_1]' => 'zu [_1]',
'By [_1] | Comments ([_2])' => 'Von [_1] | Kommentare ([_2])',
## addons/Commercial.pack/templates/professional/website/search.mtml
## addons/Commercial.pack/templates/professional/website/search_results.mtml
## addons/Commercial.pack/templates/professional/website/sidebar.mtml
## addons/Commercial.pack/templates/professional/website/signin.mtml
## addons/Commercial.pack/templates/professional/website/syndication.mtml
## addons/Commercial.pack/templates/professional/website/tag_cloud.mtml
## addons/Commercial.pack/templates/professional/website/tags.mtml
## addons/Commercial.pack/templates/professional/website/trackbacks.mtml
## addons/Commercial.pack/tmpl/asset-chooser.tmpl
'Choose [_1]' => '[_1] wählen',
## addons/Commercial.pack/tmpl/category_fields.tmpl
'Show These Fields' => 'Diese Felder anzeigen',
## addons/Commercial.pack/tmpl/cfg_customfields.tmpl
'Data have been saved to custom fields.' => 'Daten in eigenen Feldern gespeichert.',
'Save changes to blog (s)' => 'Änderungen des Blogs speichern (s)',
'No custom fileds could be found. <a href="[_1]">Create a field</a> now.' => 'Keine eigenen Felder gefunden. Jetzt ein <a href="[_1]">Feld anlegen</a>.',
## addons/Commercial.pack/tmpl/edit_field.tmpl
'Edit Custom Field' => 'Eigenes Feld bearbeiten',
'Create Custom Field' => 'Eigenes Feld anlegen',
'The selected field(s) has been deleted from the database.' => 'Gewählten Felder aus Datenbank gelöscht.',
'You must enter information into the required fields highlighted below before the custom field can be created.' => 'Bitte füllen Sie alle hervorgehobenen Felder aus.',
'You must save this custom field before setting a default value.' => 'Speichern Sie das Feld, um den Standardwert festlegen zu können.',
'Choose the system object where this custom field should appear.' => 'Wählen Sie das Systemobjekt, auf das sich dieses Feld beziehen soll.',
'Required?' => 'Erforderlich?',
'Is data entry required in this custom field?' => 'Muss dieses Feld ausgefüllt werden?',
'Must the user enter data into this custom field before the object may be saved?' => 'Sollen Benutzer dieses Feld ausfüllen müssen, bevor sie das Objekt speichern können?',
'Default' => 'Standardwert',
'The basename must be unique within this [_1].' => 'Der Basisname muss in diesem [_1] eindeutig sein.',
q{Warning: Changing this field's basename may require changes to existing templates.} => q{Hinweis: Eine Änderung des Basisnamens eines Feldes kann die Bearbeitung vorhandener Vorlagen notwendig machen.},
'Example Template Code' => 'Beispiel-Vorlagencode',
'Show In These [_1]' => 'In diesen [_1] anzeigen',
'Save this field (s)' => 'Dieses Feld speichern (s)',
'field' => 'Feld',
'fields' => 'Felder',
'Delete this field (x)' => 'Dieses Feld löschen (x)',
## addons/Commercial.pack/tmpl/export_field.tmpl
'Object' => 'Objekt',
## addons/Commercial.pack/tmpl/listing/field_list_header.tmpl
## addons/Commercial.pack/tmpl/reorder_fields.tmpl
'open' => 'öffnen',
'click-down and drag to move this field' => 'bei gedrückter Maustaste ziehen, um das Feld zu verschieben',
'click to %toggle% this box' => 'klicken um das Feld an- oder abzuwählen',
'use the arrow keys to move this box' => 'mit den Pfeiltasten verschieben',
', or press the enter key to %toggle% it' => 'oder Enter drücken zum An- oder Abwählen',
## addons/Community.pack/config.yaml
'Increase reader engagement - deploy features to your website that make it easier for your readers to engage with your content and your company.' => 'Leser-Interaktion fördern: rollen Sie neue Funktionen aus, die es Ihren Lesern leicht machen, mit Ihnen und Ihrem Unternehmen zu interagieren',
'Create forums where users can post topics and responses to topics.' => 'Bieten Sie Foren an, in denen Ihre Leser untereinander diskutieren können.',
'Users followed by [_1]' => 'Benutzer, denen [_1] folgt',
'Users following [_1]' => 'Benutzer, die [_1] folgt',
'Community' => 'Feedback',
'Sanitize' => 'Bereinigen',
'Followed by' => 'Gefolgt von',
'Followers' => 'Ihnen folgen',
'Following' => 'Sie folgen',
'Pending Entries' => 'Wartende Einträge',
'Spam Entries' => 'Spam-Einträge',
'Recently Scored' => 'Kürzlich bewertet',
'Recent Submissions' => 'Aktuelle Beiträge',
'Most Popular Entries' => 'Beliebteste Einträge',
'Registrations' => 'Registrierungen',
'Login Form' => 'Anmeldeformular',
'Registration Form' => 'Registrierungsformular',
'Registration Confirmation' => 'Registrierungsbestätigung',
'Profile Error' => 'Profilfehler',
'Profile View' => 'Profilansicht',
'Profile Edit Form' => 'Formular zur Profilbearbeitung',
'Profile Feed' => 'Profil-Feed',
'New Password Form' => 'Formular zur Anforderung neuer Passwörter',
'New Password Reset Form' => 'Formular zum Zurücksetzen neuer Passwörter',
'Form Field' => 'Formularfeld',
'Status Message' => 'Statusnachricht',
'Simple Header' => 'Einfache Kopfzeile',
'Simple Footer' => 'Einfache Fußzeile',
'Header' => 'Kopf',
'Footer' => 'Fußzeile',
'GlobalJavaScript' => 'GlobalJavaScript',
'Email verification' => 'E-Mail-Bestätigung',
'Registration notification' => 'Registrierungsbenachrichtigung',
'New entry notification' => 'Neuer Eintragsbenachrichtigung',
'Community Styles' => 'Community-Styles',
'A collection of styles compatible with Community themes.' => 'Mit Community-Themen kompatible Designs',
'Community Blog' => 'Community-Blog',
'Atom ' => 'Atom ',
'Entry Response' => 'Antwort auf Eintrag',
'Displays error, pending or confirmation message when submitting an entry.' => 'Zeigt Bestätigungs-, Moderations- und Fehlermeldungen zu neuen Beiträgen an.',
'Entry Detail' => 'Eintragsdetails',
'Entry Metadata' => 'Eintrags-Metadaten',
'Page Detail' => 'Seitendetails',
'Entry Form' => 'Eintragsformular',
'Content Navigation' => 'Inhaltsnavigation',
'Activity Widgets' => 'Aktivitäten-Widgets',
'Archive Widgets' => 'Archiv-Widgets',
'Community Forum' => 'Community-Forum',
'Entry Feed' => 'Eintrags-Feed',
'Displays error, pending or confirmation message when submitting a entry.' => 'Zeigt Bestätigungs-, Moderations- und Fehlermeldungen zu neuen Beiträgen an.',
'Popular Entry' => 'Beliebter Eintrag',
'Entry Table' => 'Eintragstabelle',
'Content Header' => 'Inhaltskopf',
'Category Groups' => 'Kategoriegruppen',
'Default Widgets' => 'Standard-Widgets',
## addons/Community.pack/lib/MT/App/Community.pm
'No login form template defined' => 'Keine Vorlage für das Anmeldeformular definiert',
'Before you can sign in, you must authenticate your email address. <a href="[_1]">Click here</a> to resend the verification email.' => 'Bevor Sie sich anmelden können, bestätigen Sie bitte Ihre E-Mail-Adresse. <a href="[_1]">Bestätigungsmail erneut senden</a>.',
'You are trying to redirect to external resources: [_1]' => 'Weiterleitung zu externer Seite: [_1]', # Translate - New # OK
'(No email address)' => '(Keine E-Mail-Adresse)',
'User \'[_1]\' (ID:[_2]) has been successfully registered.' => 'Benutzer \'[_1]\' (ID:[_2]) erfolgreich registriert.',
'Thanks for the confirmation. Please sign in.' => 'Danke für die Bestätigung. Bitte melden Sie sich an.',
'[_1] registered to Movable Type.' => '[_1] hat sich bei Movable Type registriert',
'Login required' => 'Anmeldung erforderlich',
'Title or Content is required.' => 'Titel oder Text erforderlich',
'System template entry_response not found in blog: [_1]' => 'Systemvorlage entry_response für Blog [_1] nicht gefunden',
'New entry \'[_1]\' added to the blog \'[_2]\'' => 'Neuer Eintrag \'[_1]\' zu Blog \'[_2]\' hinzugefügt.',
'Id or Username is required' => 'ID oder Benutzername erforderlich',
'Unknown user' => 'Unbekannter Benutzer',
'Recent Entries from [_1]' => 'Aktuelle Eintrage von [_1]',
'Responses to Comments from [_1]' => 'Reaktionen auf Kommentare von [_1]',
'Actions from [_1]' => 'Aktionen von [_1]',
## addons/Community.pack/lib/MT/Community/CMS.pm
## addons/Community.pack/lib/MT/Community/Tags.pm
'You used an \'[_1]\' tag outside of the block of MTIfEntryRecommended; perhaps you mistakenly placed it outside of an \'MTIfEntryRecommended\' container?' => '\'[_1]\'-Befehl außerhalb eines MtIfEntryRecommended-Blocks verwendet - \'MTIfEntryRecommended\'-Block erforderlich',
'Click here to recommend' => 'Empfehlen',
'Click here to follow' => 'Klicken, um zu folgen',
'Click here to leave' => 'Klicken, um nicht mehr zu folgen',
## addons/Community.pack/php/function.mtentryrecommendvotelink.php
## addons/Community.pack/templates/blog/about_this_page.mtml
'This page contains a single entry by <a href="[_1]">[_2]</a> published on <em>[_3]</em>.' => 'Diese Seite enthält einen einen einzelnen Eintrag von <a href="[_1]">[_2]</a> vom <em>[_3]</em>.',
## addons/Community.pack/templates/blog/archive_index.mtml
## addons/Community.pack/templates/blog/archive_widgets_group.mtml
## addons/Community.pack/templates/blog/categories.mtml
## addons/Community.pack/templates/blog/category_archive_list.mtml
## addons/Community.pack/templates/blog/comment_detail.mtml
## addons/Community.pack/templates/blog/comment_form.mtml
## addons/Community.pack/templates/blog/comment_listing.mtml
## addons/Community.pack/templates/blog/comment_preview.mtml
'Comment on [_1]' => 'Kommentar zu [_1]',
## addons/Community.pack/templates/blog/comment_response.mtml
## addons/Community.pack/templates/blog/comments.mtml
'The data in #comments-content will be replaced by some calls to paginate script' => 'Der Inhalt von #comments-content wird durch Aufrufe des Paginierungs-Skripts ersetzt',
## addons/Community.pack/templates/blog/content_nav.mtml
'Blog Home' => 'Startseite',
## addons/Community.pack/templates/blog/current_category_monthly_archive_list.mtml
## addons/Community.pack/templates/blog/dynamic_error.mtml
## addons/Community.pack/templates/blog/entry_create.mtml
## addons/Community.pack/templates/blog/entry_detail.mtml
## addons/Community.pack/templates/blog/entry_form.mtml
'In order to create an entry on this blog you must first register.' => 'Um einen Eintrag in diesem Blog anzulegen, registrieren Sie sich bitte erst.',
q{You don't have permission to post.} => q{Sie haben nicht genügend Benutzerrechte um zu veröffentlichen.},
'Sign in to create an entry.' => 'Melden Sie sich an, um einen Eintrag zu schreiben.',
'Select Category...' => 'Kategorie wählen...',
## addons/Community.pack/templates/blog/entry_listing.mtml
'Recently by <em>[_1]</em>' => 'Neues von <em>[_1]</em>',
## addons/Community.pack/templates/blog/entry_metadata.mtml
'Vote' => 'Stimme',
'Votes' => 'Stimmen',
## addons/Community.pack/templates/blog/entry.mtml
## addons/Community.pack/templates/blog/entry_response.mtml
'Thank you for posting an entry.' => 'Danke, daß Sie einen Eintrag geschrieben haben.',
'Entry Pending' => 'Eintrag noch nicht freigegeben',
'Your entry has been received and held for approval by the blog owner.' => 'Ihr Eintrag ist eingegangen und muss nun vom Blogbetreiber freigeschaltet werden.',
'Entry Posted' => 'Eintrag veröffentlicht',
'Your entry has been posted.' => 'Ihr Eintrag wurde veröffentlicht.',
'Your entry has been received.' => 'Ihr Eintrag ist eingegangen.',
q{Return to the <a href="[_1]">blog's main index</a>.} => q{Zurück zur <a href="[_1]">Startseite</a>.},
## addons/Community.pack/templates/blog/entry_summary.mtml
## addons/Community.pack/templates/blog/javascript.mtml
## addons/Community.pack/templates/blog/main_index.mtml
## addons/Community.pack/templates/blog/main_index_widgets_group.mtml
## addons/Community.pack/templates/blog/monthly_archive_list.mtml
## addons/Community.pack/templates/blog/openid.mtml
## addons/Community.pack/templates/blog/page.mtml
## addons/Community.pack/templates/blog/pages_list.mtml
## addons/Community.pack/templates/blog/powered_by.mtml
## addons/Community.pack/templates/blog/recent_assets.mtml
## addons/Community.pack/templates/blog/recent_comments.mtml
'<a href="[_1]">[_2] commented on [_3]</a>: [_4]' => '<a href="[_1]">[_2] meinte zu [_3]</a>: [_4]',
## addons/Community.pack/templates/blog/recent_entries.mtml
## addons/Community.pack/templates/blog/search.mtml
## addons/Community.pack/templates/blog/search_results.mtml
## addons/Community.pack/templates/blog/sidebar.mtml
## addons/Community.pack/templates/blog/syndication.mtml
## addons/Community.pack/templates/blog/tag_cloud.mtml
## addons/Community.pack/templates/blog/tags.mtml
## addons/Community.pack/templates/blog/trackbacks.mtml
## addons/Community.pack/templates/forum/archive_index.mtml
## addons/Community.pack/templates/forum/category_groups.mtml
'Forum Groups' => 'Forengruppen',
'Last Topic: [_1] by [_2] on [_3]' => 'Letztes Thema: [_1] von [_2] um [_3]',
'Be the first to <a href="[_1]">post a topic in this forum</a>' => 'Seien Sie die erste Person, <a href="[_1]">die ein Thema in diesem Forum eröffnet</a>!',
## addons/Community.pack/templates/forum/comment_detail.mtml
'[_1] replied to <a href="[_2]">[_3]</a>' => '[_1] antwortete auf <a href="[_2]">[_3]</a>',
## addons/Community.pack/templates/forum/comment_form.mtml
'Add a Reply' => 'Antwort schreiben',
## addons/Community.pack/templates/forum/comment_listing.mtml
## addons/Community.pack/templates/forum/comment_preview.mtml
'Reply to [_1]' => 'Antwort auf [_1]',
'Previewing your Reply' => 'Vorschau Ihrer Antwort',
## addons/Community.pack/templates/forum/comment_response.mtml
'Reply Submitted' => 'Antwort eingegangen',
'Your reply has been accepted.' => 'Ihre Antwort ist bei uns eingegangen.',
'Thank you for replying.' => 'Vielen Dank, daß Sie geantwortet haben.',
'Your reply has been received and held for approval by the forum administrator.' => 'Ihre Antwort ist bei uns eingegangen. Sie wird veröffentlicht, sobald der Forums-Administrator sie freigeschaltet hat.',
'Reply Submission Error' => 'Es ist ein Fehler aufgetreten',
'Your reply submission failed for the following reasons: [_1]' => 'Ihr konnte aus folgendem Grund nicht angemommen werden:',
'Return to the <a href="[_1]">original topic</a>.' => 'Zurück zum <a href="[_1]">Ausgangsthema</a>.',
## addons/Community.pack/templates/forum/comments.mtml
'1 Reply' => '1 Antwort',
'# Replies' => '# Antworten',
'No Replies' => 'Keine Antworten',
## addons/Community.pack/templates/forum/content_header.mtml
'Start Topic' => 'Thema eröffnen',
## addons/Community.pack/templates/forum/content_nav.mtml
## addons/Community.pack/templates/forum/dynamic_error.mtml
## addons/Community.pack/templates/forum/entry_create.mtml
'Start a Topic' => 'Neues Thema eröffnen',
## addons/Community.pack/templates/forum/entry_detail.mtml
## addons/Community.pack/templates/forum/entry_form.mtml
'Topic' => 'Thema',
'Select Forum...' => 'Forum wählen...',
'Forum' => 'Forum',
## addons/Community.pack/templates/forum/entry_listing.mtml
## addons/Community.pack/templates/forum/entry_metadata.mtml
## addons/Community.pack/templates/forum/entry.mtml
## addons/Community.pack/templates/forum/entry_popular.mtml
'Popular topics' => 'Beliebte Themen',
'Last Reply' => 'Letzte Antwort',
'Permalink to this Reply' => 'Peramanenter Link zu dieser Antwort',
'By [_1]' => 'Von [_1]',
## addons/Community.pack/templates/forum/entry_response.mtml
'Thank you for posting a new topic to the forums.' => 'Danke, daß Sie ein neues Thema eröffnet haben!',
'Topic Pending' => 'Thema noch nicht freigegeben',
'The topic you posted has been received and held for approval by the forum administrators.' => 'Ihr Thema ist eingegangen und muss nun vom Forenadministrator freigeschaltet werden.',
'Topic Posted' => 'Thema veröffentlicht',
'The topic you posted has been received and published. Thank you for your submission.' => 'Ihr Thema ist eingegangen und wurde veröffentlicht. Vielen Dank!',
q{Return to the <a href="[_1]">forum's homepage</a>.} => q{Zurück zur <a href="[_1]">Startseite</a> des Forums.},
## addons/Community.pack/templates/forum/entry_summary.mtml
## addons/Community.pack/templates/forum/entry_table.mtml
'Recent Topics' => 'Aktuelle Themen',
'Replies' => 'Antworten',
'Closed' => 'Geschlossen',
'Post the first topic in this forum.' => 'Eröffnen Sie das erste Thema in diesem Forum',
## addons/Community.pack/templates/forum/javascript.mtml
'Thanks for signing in,' => 'Danke für Ihre Anmeldung, ',
'. Now you can reply to this topic.' => '. Sie können nun Ihre Antwort schreiben.',
'You do not have permission to comment on this blog.' => 'Sie haben nicht die notwendige Berechtigung, um in diesem Blog Kommentare zu schreiben.',
' to reply to this topic.' => 'um auf dieses Thema zu antworten.',
' to reply to this topic,' => 'um auf dieses Thema zu antworten',
'or ' => 'oder ',
'reply anonymously.' => 'antworten Sie anonym.',
## addons/Community.pack/templates/forum/main_index.mtml
'Forum Home' => 'Startseite',
## addons/Community.pack/templates/forum/openid.mtml
## addons/Community.pack/templates/forum/page.mtml
## addons/Community.pack/templates/forum/search_results.mtml
'Topics matching “[_1]”' => 'Themen zu „[_1]&8220;',
'Topics tagged “[_1]”' => 'Mit „[_1]&8220; getaggte Themen',
'Topics' => 'Themen',
## addons/Community.pack/templates/forum/sidebar.mtml
## addons/Community.pack/templates/forum/syndication.mtml
'All Forums' => 'Alle Foren',
'[_1] Forum' => '[_1]-Forum',
## addons/Community.pack/templates/global/email_verification_email.mtml
'Thank you registering for an account to [_1].' => 'Danke, daß Sie sich ein [_1]-Konto angelegt haben.',
'For your own security and to prevent fraud, we ask that you please confirm your account and email address before continuing. Once confirmed you will immediately be allowed to sign in to [_1].' => 'Zur Ihren eigenen Sicherheit und um Mißbrauch vorzubeugen bestätigen Sie nun bitte Ihre Angaben. Daraufhin können Sie sich sofort bei [_1] anmelden.',
q{If you did not make this request, or you don't want to register for an account to [_1], then no further action is required.} => q{Sollten Sie sich nicht angemeldet haben oder sollten Sie sich doch nicht registrieren wollen, brauchen Sie nichts weiter zu tun.},
## addons/Community.pack/templates/global/footer.mtml
## addons/Community.pack/templates/global/header.mtml
'Blog Description' => 'Blogbeschreibung',
## addons/Community.pack/templates/global/javascript.mtml
## addons/Community.pack/templates/global/login_form_module.mtml
'Logged in as <a href="[_1]">[_2]</a>' => 'Als <a href="[_1]">[_2]</a> angemeldet',
'Logout' => 'Abmelden',
'Hello [_1]' => 'Hallo [_1]',
'Forgot Password' => 'Passwort vergessen',
'Sign up' => 'Registrieren',
## addons/Community.pack/templates/global/login_form.mtml
'Not a member? <a href="[_1]">Sign Up</a>!' => 'Noch nicht registriert? <a href="[_1]">Einfach jetzt registrieren</a>!',
## addons/Community.pack/templates/global/navigation.mtml
## addons/Community.pack/templates/global/new_entry_email.mtml
q{A new entry '[_1]([_2])' has been posted on your blog [_3].} => q{In Ihrem Blog [_3] wurde ein neuer Eintrag '[_1]([_2])' veröffentlicht.},
'Author name: [_1]' => 'Name des Autors: [_1]',
'Author nickname: [_1]' => 'Nickname des Autors: [_1]',
'Title: [_1]' => 'Titel: [_1]',
'Edit entry:' => 'Eintrag bearbeiten:',
## addons/Community.pack/templates/global/new_password.mtml
## addons/Community.pack/templates/global/new_password_reset_form.mtml
'Go Back (x)' => 'Zurück (x)',
## addons/Community.pack/templates/global/profile_edit_form.mtml
'Go <a href="[_1]">back to the previous page</a> or <a href="[_2]">view your profile</a>.' => '<a href="[_1]>Zurück zur Ausgangsseite</a> oder <a href="[_2]>Profil ansehen</a>.',
## addons/Community.pack/templates/global/profile_error.mtml
'ERROR MSG HERE' => 'ERROR MSG HERE',
'Go Back' => 'Zurück',
## addons/Community.pack/templates/global/profile_feed.mtml
'Posted [_1] to [_2]' => '[_1] in [_2] veröffentlicht',
'Commented on [_1] in [_2]' => '[_1] in [_2] kommentiert',
'Voted on [_1] in [_2]' => 'Für [_1] in [_2] gestimmt',
'[_1] voted on <a href="[_2]">[_3]</a> in [_4]' => '[_1] hat für <a href="[_2]">[_3]</a> in [_4] gestimmt',
## addons/Community.pack/templates/global/profile_view.mtml
'User Profile' => 'Benutzerprofil',
'Recent Actions from [_1]' => 'Aktuelle Aktionen von [_1]',
'You are following [_1].' => 'Sie folgen [_1]',
'Unfollow' => 'Nicht mehr folgen',
'Follow' => 'Folgen',
'You are followed by [_1].' => '[_1] folgt Ihnen.',
'You are not followed by [_1].' => '[_1] folgt Ihnen nicht.',
'Website:' => 'Website:',
'Recent Actions' => 'Aktuelle Aktionen',
'Comment Threads' => 'Kommentar-Threads',
'Commented on [_1]' => '[_1] kommentiert',
'Favorited [_1] on [_2]' => '[_1] in [_2] zum Favoriten gemacht',
'No recent actions.' => 'Keine aktuellen Aktionen',
'[_1] commented on ' => '[_1] kommentierte',
'No responses to comments.' => 'Keine Kommentarantworten',
'Not following anyone' => 'Sie folgen niemandem',
'Not being followed' => 'Niemand folgt Ihnen',
## addons/Community.pack/templates/global/register_confirmation.mtml
'Authentication Email Sent' => 'Authentifizierungsmail verschickt',
'Profile Created' => 'Profil angelegt',
## addons/Community.pack/templates/global/register_form.mtml
## addons/Community.pack/templates/global/register_notification_email.mtml
## addons/Community.pack/templates/global/search.mtml
## addons/Community.pack/templates/global/signin.mtml
'You are signed in as <a href="[_1]">[_2]</a>' => 'Sie sind als <a href="[_1]">[_2]</a> angemeldet.',
'You are signed in as [_1]' => 'Sie sind als [_1] angemeldet.',
'Edit profile' => 'Profil bearbeiten',
'Not a member? <a href="[_1]">Register</a>' => 'Noch kein Mitglied? <a href="[_1]">Registieren</a>',
## addons/Community.pack/tmpl/cfg_community_prefs.tmpl
'Community Settings' => 'Community',
'Anonymous Recommendation' => 'Anonyme Empfehlungen',
'Check to allow anonymous users (users not logged in) to recommend discussion. IP address is recorded and used to identify each user.' => 'Anonymen (nicht angemeldeten) Benutzern erlauben, Diskussionen zu empfehlen. Die IP-Adressen nicht angemeldeter Benutzer werden gespeichert.',
'Allow anonymous user to recommend' => 'Anonymen Benutzern erlauben Empfehlen auszusprechen',
'Junk Filter' => 'Spam-Filter',
'If enabled, all moderated entries will be filtered by Junk Filter.' => 'Wenn diese Option aktiviert ist, werden moderierte Einträge automatisch auf Spam überprüft.',
'Save changes to blog (s)' => 'Blog-Änderungen speichern (s)',
## addons/Community.pack/tmpl/widget/blog_stats_registration.mtml
'Recent Registrations' => 'Aktuelle Registrierungen',
'default userpic' => 'Standard-Benutzerbild',
'You have [quant,_1,registration,registrations] from [_2]' => 'Sie haben [quant,_1,Registrierung,Registrierungen] von [_2]',
## addons/Community.pack/tmpl/widget/most_popular_entries.mtml
'There are no popular entries.' => 'Keine beliebten Einträge.',
## addons/Community.pack/tmpl/widget/recently_scored.mtml
'There are no recently favorited entries.' => 'Keine kürzlich als Favoriten gespeicherte Einträge.',
## addons/Community.pack/tmpl/widget/recent_submissions.mtml
## addons/Enterprise.pack/app-cms.yaml
'Groups ([_1])' => 'Gruppen ([_1])',
'Are you sure you want to delete the selected group(s)?' => 'Gewählte Gruppe(n) wirklich löschen?',
'Are you sure you want to remove the selected member(s) from the group?' => 'Gewählte(n) Benutzer wirklich aus Gruppe entfernen?',
'[_1]\'s Group' => 'Gruppen von [_1]', # Translate - New # OK
'Groups' => 'Gruppen',
'Manage Member' => 'Mitglieder verwalten',
'Bulk Author Export' => 'Stapelexport von Autoren',
'Bulk Author Import' => 'Stapelimport von Autoren',
'Synchronize Users' => 'Benutzer synchronisieren',
'Synchronize Groups' => 'Gruppen synchronisieren',
'Add user to group' => 'Benutzer zu Gruppe hinzufügen',
## addons/Enterprise.pack/app-wizard.yaml
'This module is required in order to use the LDAP Authentication.' => 'Dieses Modul ist zur Nutzung der LDAP-Authentifizierung erforderlich.',
'This module is required in order to use SSL/TLS connection with the LDAP Authentication.' => 'Dieses Modul ist zur Nutzung von SSL/TLS-Verbindungen bei der LDAP-Authentifizierung erforderlich.',
'This module and its dependencies are required in order to use CRAM-MD5, DIGEST-MD5 or LOGIN as a SASL mechanism.' => 'Dieses Modul und seine Abhängigkeiten sind zur Verwendung von CRAM-MD5, DIGEST-MD5 oder LOGIN als SASL-Mechanismus erforderlich.',
## addons/Enterprise.pack/config.yaml
'Permissions of group: [_1]' => 'Gruppen-Berechtigungen: [_1]',
'Group' => 'Gruppe',
'Groups associated with author: [_1]' => 'Mit Autor verknüpfte Gruppen: [_1]',
'Inactive' => 'Inaktiv',
'Members of group: [_1]' => 'Gruppenmitglieder: [_1]',
'Advanced Pack' => 'Advanced-Pack',
'User/Group' => 'Benutzer/Gruppe',
'User/Group Name' => 'Benutzer-/Gruppen-Name',
'__GROUP_MEMBER_COUNT' => 'Mitglieder',
'My Groups' => 'Meine Gruppen',
'Group Name' => 'Gruppenname',
'Manage Group Members' => 'Gruppenmitglieder verwalten',
'Group Members' => 'Gruppenmitglieder',
'Group Member' => 'Groupmember',
'Permissions for Users' => 'Benutzer-Berechtigungen',
'Permissions for Groups' => 'Gruppen-Berechtigungen',
'Active Groups' => 'Aktive Gruppen',
'Disabled Groups' => 'Deaktivierte Gruppen',
'Oracle Database (Recommended)' => 'Oracle-Datenbank (empfohlen)',
'Microsoft SQL Server Database' => 'Microsoft SQL Server-Datenbank',
'Microsoft SQL Server Database UTF-8 support (Recommended)' => 'Microsoft SQL Server-Datenbank mit UTF-8-Unterstützung (empfohlen)',
'Publish Charset' => 'Zeichenkodierung',
'ODBC Driver' => 'ODBC-Treiber',
'External Directory Synchronization' => 'Synchronisierung mit externem Verzeichnis',
'Populating author\'s external ID to have lower case user name...' => 'Setze externe Benutzerkennung für kleingeschriebene Benutzernamen...',
## addons/Enterprise.pack/lib/MT/Auth/LDAP.pm
'User [_1]([_2]) not found.' => 'Benutzerkonto [_1]([_2]) nicht gefunden.',
'User \'[_1]\' cannot be updated.' => 'Benutzerkonto \'[_1]\' kann nicht aktualisiert werden.',
'User \'[_1]\' updated with LDAP login ID.' => 'Benutzerkonto \'[_1]\' mit LDAP-Login-ID aktualisiert.',
'LDAP user [_1] not found.' => 'LDAP-Benutzerkonto [_1] nicht gefunden.',
'User [_1] cannot be updated.' => 'Benutzerkonto [_1] kann nicht aktualisiert werden.',
'User cannot be updated: [_1].' => 'Benutzerkonto kann nicht aktualisiert werden: [_1].',
'Failed login attempt by user \'[_1]\' who was deleted from LDAP.' => 'Fehlgeschlagener Anmeldeversuch von aus LDAP gelöschtem Benutzer \'[_1]\'.',
'User \'[_1]\' updated with LDAP login name \'[_2]\'.' => 'Benutzerkonto \'[_1]\' mit LDAP-Login-Name aktualisiert.',
'Failed login attempt by user \'[_1]\'. A user with that username already exists in the system with a different UUID.' => 'Fehlgeschlagener Anmeldeversuch von Benutzer \'[_1]\'. Es ist weiterer Benutzer mit gleichem Benutzernamen, aber anderer UUID im System vorhanden.',
'User \'[_1]\' account is disabled.' => 'Benutzerkonto \'[_1]\' ist deaktiviert.',
'LDAP users synchronization interrupted.' => 'LDAP-Benutzersynchronisierung unterbrochen.',
'Loading MT::LDAP failed: [_1]' => 'Beim Laden von MT::LDAP ist ein Fehler aufgetreten: [_1]',
'External user synchronization failed.' => 'Synchronisierung externer Benutzer fehlgeschlagen.',
'An attempt to disable all system administrators in the system was made. Synchronization of users was interrupted.' => 'Es wurde versucht, alle Administratorenkonten zu deaktivieren. Synchronisation unterbrochen.',
'Information about the following users was modified:' => 'Folgende Benutzerkonten wurden bearbeitet:',
'The following users were disabled:' => 'Folgende Benutzerkonten wurden deaktiviert:',
'LDAP users synchronized.' => 'LDAP-Benutzer synchronisiert.',
'Synchronization of groups can not be performed without LDAPGroupIdAttribute and/or LDAPGroupNameAttribute being set.' => 'Zur Synchronisierung von Gruppen muss LDAPGroupIDAttribute und/oder LDAPGroupNameAttribute gesetzt sein.',
'LDAP groups synchronized with existing groups.' => 'LDAP-Gruppen mit vorhandenen Gruppen sychnronisiert.',
'Information about the following groups was modified:' => 'Folgende Gruppen wuirden bearbeitet:',
'No LDAP group was found using the filter provided.' => 'Keine LDAP-Gruppe mit dem angegebenen Filter gefunden.',
'The filter used to search for groups was: \'[_1]\'. Search base was: \'[_2]\'' => 'Für die Gruppensuche verwendeter Filter: \'[_1]\'. Suchbasis: \'[_2]\'',
'(none)' => '(Keine)',
'The following groups were deleted:' => 'Die folgenden Gruppen wurden gelöscht:',
'Failed to create a new group: [_1]' => 'Fehler beim Anlegen einer neuen Gruppe: [_1]',
'[_1] directive must be set to synchronize members of LDAP groups to Movable Type Advanced.' => '[_1]-Direktive muss gesetzt sein, um LDAP-Gruppenmitgliedschaften mit Movable Type Advanced zu synchronisieren.',
'Members removed: ' => 'Entfernte Mitglieder:',
'Members added: ' => 'Hinzugefügte Mitglieder:',
'Memberships in the group \'[_2]\' (#[_3]) were changed as a result of synchronizing with the external directory.' => 'Mitgliedschaften der Gruppe \'[_2]\' (#[_3]) wurden durch die Synchronisierung mit dem externen Verzeichnis verändert.',
'LDAPUserGroupMemberAttribute must be set to enable synchronizing of members of groups.' => 'Zur Synchronisierung von Gruppen muss LDAPUserGroupMemberAttribute gesetzt sein.',
## addons/Enterprise.pack/lib/MT/Enterprise/Author.pm
'Loading MT::LDAP failed: [_1].' => 'MT::LDAP konnte nicht geladen werden: [_1]',
## addons/Enterprise.pack/lib/MT/Enterprise/BulkCreation.pm
'Formatting error at line [_1]: [_2]' => 'Formatierungsfehler in Zeile [_1]: [_2]',
'Invalid command: [_1]' => 'Unbekannter Befehl: [_1]',
'Invalid number of columns for [_1]' => 'Ungültige Spaltenzahl für [_1]',
'Invalid user name: [_1]' => 'Ungültiger Benutzername: [_1]',
'Invalid display name: [_1]' => 'Ungültiger Anzeigename: [_1]',
'Invalid email address: [_1]' => 'Ungültige E-Mail-Adresse: [_1]',
'Invalid language: [_1]' => 'Ungültige Sprache: [_1]',
'Invalid password: [_1]' => 'Ungültiges Passwort: [_1]',
'\'Personal Blog Location\' setting is required to create new user blogs.' => 'Zum Anlegen neuer Benutzerblogs muss in den Einstellungen deren Speicherort angegeben sein.',
'Invalid weblog name: [_1]' => 'Ungültiger Weblogname: [_1]',
'Invalid blog URL: [_1]' => 'Ungültige Blog-URL: [_1]',
'Invalid site root: [_1]' => 'Ungültiges Wurzelverzeichnis: [_1]',
'Invalid timezone: [_1]' => 'Ungültige Zeitzone: [_1]',
'Invalid theme ID: [_1]' => 'Ungültige Themen-ID: [_1]',
'A user with the same name was found. The registration was not processed: [_1]' => 'Benutzer mit gleichem Namen gefunden und Konto daher nicht angelegt: [_1]',
'Blog for user \'[_1]\' can not be created.' => 'Blog für Benutzer \'[_1]\' kann nicht angelegt werden.',
'Blog \'[_1]\' for user \'[_2]\' has been created.' => 'Blog \'[_1]\' für Benutzer \'[_2]\' angelegt.',
'Error assigning weblog administration rights to user \'[_1] (ID: [_2])\' for weblog \'[_3] (ID: [_4])\'. No suitable weblog administrator role was found.' => 'Fehler bei der Zuweisung von Blog-Administrationsrechten für Blog \'[_3] (ID: [_4])\' an Benutzer \'[_1] (ID: [_2])\'. Keine geeignete Administratorenrolle gefunden.',
'Permission granted to user \'[_1]\'' => 'Berechtigungenga an Benutzer \'[_1]\' vergeben',
'User \'[_1]\' already exists. The update was not processed: [_2]' => 'Benutzer \'[_1]\' bereits vorhanden, Konto daher nicht aktualisiert: [_2]',
'User \'[_1]\' not found. The update was not processed.' => 'Benutzer \'[_1]\' nicht gefunden, Konto daher nicht aktualisiert.',
'User \'[_1]\' has been updated.' => 'Benutzerkonto \'[_1]\' aktualisiert.',
'User \'[_1]\' was found, but the deletion was not processed' => 'Benutzer \'[_1]\' gefunden, Konto aber nicht gelöscht',
'User \'[_1]\' not found. The deletion was not processed.' => 'Benutzer \'[_1]\' nicht gefunden, Konto daher nicht gelöscht',
'User \'[_1]\' has been deleted.' => 'Benutzerkonto \'[_1]\' gelöscht.',
## addons/Enterprise.pack/lib/MT/Enterprise/CMS.pm
'Movable Type Advanced has just attempted to disable your account during synchronization with the external directory. Some of the external user management settings must be wrong. Please correct your configuration before proceeding.' => 'Movable Type Advanced hat während der Synchronisation versucht, Ihr Benutzerkonto zu deaktivieren. Das deutet auf einen Fehler in der externen Benutzerverwaltung hin. Überprüfen Sie daher die dortigen Einstellungen, bevor Sie Ihre Arbeit in Movable Type forsetzen.',
'Each group must have a name.' => 'Jede Gruppe muss einen eigenen Namen haben.',
'Search Users' => 'Benutzer suchen',
'Select Groups' => 'Gruppen auswählen',
'Groups Selected' => 'Gewählte Gruppen',
'Search Groups' => 'Gruppen suchen',
'Add Users to Groups' => 'Benutzer zu Gruppen hinzufügen',
'Invalid group' => 'Ungültige Gruppe',
'Add Users to Group [_1]' => 'Benutzer zu Gruppe [_1] hinzufügen',
'User \'[_1]\' (ID:[_2]) removed from group \'[_3]\' (ID:[_4]) by \'[_5]\'' => 'Benutzer \'[_1]\' (ID:[_2]) von \'[_5]\' aus Gruppe \'[_3]\' (ID:[_4]) entfernt',
'Group load failed: [_1]' => 'Fehler beim Laden einer Gruppe:',
'User load failed: [_1]' => 'Fehler beim Laden eines Benutzers:',
'User \'[_1]\' (ID:[_2]) was added to group \'[_3]\' (ID:[_4]) by \'[_5]\'' => 'Benutzer \'[_1]\' (ID:[_2]) von \'[_5]\' zu Gruppe \'[_3]\' (ID:[_4]) hinzugefügt',
'Users & Groups' => 'Benutzer und Gruppen',
'Group Profile' => 'Gruppenprofile',
'Author load failed: [_1]' => 'Fehler beim Laden eines Autoren: [_1]',
'Invalid user' => 'Ungültiger Benutzer',
'Assign User [_1] to Groups' => 'Gruppen an Benutzer [_1] zuweisen',
'Type a group name to filter the choices below.' => 'Geben Sie einen Gruppennamen ein, um die Auswahl einzuschränken.',
'Bulk import cannot be used under external user management.' => 'Stapelimport ist bei externer Benutzerverwaltung nicht möglich.',
'Bulk management' => 'Stapelverwaltung',
'No records were found in the file. Make sure the file uses CRLF as the line-ending characters.' => 'Keine Einträge in Datei gefunden. Bitte stellen Sie sicher, daß für die Zeilenenden CRLF verwendet wird.',
'Registered [quant,_1,user,users], updated [quant,_2,user,users], deleted [quant,_3,user,users].' => '[quant,_1,Benutzer] registiert, [quant,_2,Benutzerkonto,Benutzerkonten] aktualisiert, [quant,_3,Benutzerkonto,Benutzerkonten] gelöscht.',
'Bulk author export cannot be used under external user management.' => 'Stapelexport von Benutzerkonten bei externer Benutzerverwaltung nicht möglich.',
'A user can\'t change his/her own username in this environment.' => 'Benutzer können ihre eigenen Benutzernamen in diesem Kontext nicht ändern.',
'An error occurred when enabling this user.' => 'Bei der Aktivierung dieses Benutzerkontos ist ein Fehler aufgetreten',
## addons/Enterprise.pack/lib/MT/Enterprise/Upgrade.pm
'Fixing binary data for Microsoft SQL Server storage...' => 'Bereite Binärdaten zur Speicherung in Microsoft SQL Server vor...',
## addons/Enterprise.pack/lib/MT/Enterprise/Wizard.pm
'PLAIN' => 'PLAIN',
'CRAM-MD5' => 'CRAM-MD5',
'Digest-MD5' => 'Digest-MD5',
'Login' => 'Login',
'Found' => 'Gefunden',
'Not Found' => 'Nicht gefunden',
## addons/Enterprise.pack/lib/MT/Group.pm
## addons/Enterprise.pack/lib/MT/LDAP.pm
'Invalid LDAPAuthURL scheme: [_1].' => 'Ungültiges LDAPAuthURL-Schema: [_1].',
'Error connecting to LDAP server [_1]: [_2]' => 'Verbindung zu LDAP-Server [_1] fehlgeschlagen: [_2]',
'User not found in LDAP: [_1]' => 'Benutzer nicht im LDAP-Verzeichnis gefunden: [_1]',
'Binding to LDAP server failed: [_1]' => 'Bindung an LDAP-Server fehlgeschlagen: [_1]',
'More than one user with the same name found in LDAP: [_1]' => 'Mehrere Benutzer mit dem gleichen Namen im LDAP-Verzeichnis gefunden: [_1]',
## addons/Enterprise.pack/lib/MT/ObjectDriver/Driver/DBD/MSSQLServer.pm
'PublishCharset [_1] is not supported in this version of the MS SQL Server Driver.' => 'PublishCharset [_1] wird von dieser Version des MS SQL Server-Treibers nicht unterstützt.',
## addons/Enterprise.pack/lib/MT/ObjectDriver/Driver/DBD/UMSSQLServer.pm
'This version of UMSSQLServer driver requires DBD::ODBC version 1.14.' => 'Diese Version des UMSSQLServer-Treibers erfordert DBD::ODBC in der Version 1.14.',
'This version of UMSSQLServer driver requires DBD::ODBC compiled with Unicode support.' => 'Diese Version des UMSSQLServer-Treiber erfodert ein mit Unicode-Unterstützung compiliertes DBD::ODBC.',
## addons/Enterprise.pack/tmpl/author_bulk.tmpl
'Manage Users in bulk' => 'Benutzerverwaltung im Stapel',
'_USAGE_AUTHORS_2' => 'Sie können Benutzerkonto im Stapel anlegen, bearbeiten und löschen, indem Sie CSV-formatierte Steuerungsdatei mit den entsprechenden Daten und Befehlen hochladen.',
q{New user blog would be created on '[_1]'.} => q{Neue Benutzerblogs werden auf '[_1]' angelegt.},
'[_1] Edit</a>' => '[_1] bearbeiten</a>',
q{You must set 'Personal Blog Location' to create a new blog for each new user.} => q{Um für neue Benutzer automatisch neue Blogs anzulegen, legen Sie bitte deren Speicherort fest.},
'[_1] Setting</a>' => '[_1]-Einstellungen</a>',
'Upload source file' => 'Quelldatei hochladen',
'Specify the CSV-formatted source file for upload' => 'Geben Sie die hochzuladende CSV-Quelldatei an',
'Source File Encoding' => 'Zeichenkodierung der Quelldatei',
'Movable Type will automatically try to detect the character encoding of your import file. However, if you experience difficulties, you can set the character encoding explicitly.' => 'Movable Type versucht automatisch die Zeichenkodierung Ihrer Importdatei zu ermitteln. Sie können die Kodierung aber auch selbst angeben.',
'Upload (u)' => 'Hochladen (u)',
## addons/Enterprise.pack/tmpl/cfg_ldap.tmpl
'Authentication Configuration' => 'Authentifizierungs- Einstellungen',
'You must set your Authentication URL.' => 'Authentifizierungs-URL erforderlich',
'You must set your Group search base.' => 'Groupsearchbase-Attribut erforderlich',
'You must set your UserID attribute.' => 'UserID-Attribut erforderlich',
'You must set your email attribute.' => 'Email-Attribut erforderlich',
'You must set your user fullname attribute.' => 'Userfullname-Attribut erforderlich',
'You must set your user member attribute.' => 'Usermember-Attribut erforderlich',
'You must set your GroupID attribute.' => 'GroupID-Attribut erforderlich',
'You must set your group name attribute.' => 'Groupname-Attribut erforderlich',
'You must set your group fullname attribute.' => 'Groupfullname-Attribut erforderlich',
'You must set your group member attribute.' => 'Groupmember-Attribut erforderlich',
'An error occurred while attempting to connect to the LDAP server: ' => 'Es konnte keine Verbindung zum LDAP-Server aufgebaut werden: ',
'You can configure your LDAP settings from here if you would like to use LDAP-based authentication.' => 'Wenn Sie LDAP-Authentifizierung verwenden möchten, können Sie hier die entsprechenden Einstellungen vornehmen.',
'Your configuration was successful.' => 'Konfigurierung erfolgreich.',
q{Click 'Continue' below to configure the External User Management settings.} => q{Klicken Sie auf 'Weiter', um die externe Benutzerverwaltung zu konfigurieren.},
q{Click 'Continue' below to configure your LDAP attribute mappings.} => q{Klicken Sie auf 'Weiter', um die LDAP-Attribute zuzuweisen.},
'Your LDAP configuration is complete.' => 'Ihre LDAP-Konfigurierung ist abgeschlossen.',
q{To finish with the configuration wizard, press 'Continue' below.} => q{Mit einem Klick auf 'Weiter' schließen Sie die Konfigurierung ab.},
q{Can't locate Net::LDAP. Net::LDAP module is required to use LDAP authentication.} => q{Kann Net::LDAP nicht finden. Net::LDAP ist zur Authentifizierung über LDAP erforderlich.},
'Use LDAP' => 'LDAP verwenden',
'Authentication URL' => 'Authentifizierungs-URL',
'The URL to access for LDAP authentication.' => 'Adresse (URL) zur LDAP-Authentifizierung',
'Authentication DN' => 'Authentifizierungs-DN',
'An optional DN used to bind to the LDAP directory when searching for a user.' => 'Optionaler DN zur LDAP-Bindung bei der Benutzersuche',
'Authentication password' => 'Authentifizierungs- Passwort',
'Used for setting the password of the LDAP DN.' => 'Wird zur Einstellung des LDAP DN-Passworts verwendet',
'SASL Mechanism' => 'SASL-Mechanismus',
'The name of the SASL Mechanism used for both binding and authentication.' => 'Name des zur Bindung und zur Authentifizierung verwendeten SASL-Mechanismus',
'Test Username' => 'Test-Benutzername',
'Test Password' => 'Test-Passwort',
'Enable External User Management' => 'Externe Benutzerverwaltung aktivieren',
'Synchronization Frequency' => 'Aktualisierungsintervall',
'The frequency of synchronization in minutes. (Default is 60 minutes)' => 'Synchronisierungintervall in Minuten (Standard: alle 60 Minuten)',
'15 Minutes' => '15 Minuten',
'30 Minutes' => '30 Minuten',
'60 Minutes' => '60 Minuten',
'90 Minutes' => '90 Minuten',
'Group Search Base Attribute' => 'Groupsearchbase-Attribut',
'Group Filter Attribute' => 'Groupfilter-Attribut',
'Search Results (max 10 entries)' => 'Suchergebnis (ersten 10 Treffer)',
'CN' => 'CN (Common Name)',
'No groups were found with these settings.' => 'Keine Gruppe mit diesen Einstellungen gefunden.',
'Attribute mapping' => 'Attributzuordnung',
'LDAP Server' => 'LDAP-Server',
'Other' => 'Anderer',
'User ID Attribute' => 'UserID-Attribut',
'Email Attribute' => 'Email-Attribut',
'User Fullname Attribute' => 'Userfullname-Attribut',
'User Member Attribute' => 'Usermember-Attribut',
'GroupID Attribute' => 'GroupID-Attribut',
'Group Name Attribute' => 'Groupname-Attribut',
'Group Fullname Attribute' => 'Groupfullname-Attribut',
'Group Member Attribute' => 'Groupmember-Attribut',
'Search Result (max 10 entries)' => 'Suchergebnis (ersten 10 Treffer)',
'Group Fullname' => 'Groupfullname',
'(and [_1] more members)' => '(und [_1] weitere Mitglieder)',
'No groups could be found.' => 'Keine Gruppen gefunden.',
'User Fullname' => 'Userfullname',
'(and [_1] more groups)' => '(und [_1] weitere Gruppen)',
'No users could be found.' => 'Keine Benutzer gefunden.',
'Test connection to LDAP' => 'LDAP-Verbindung testen',
'Test search' => 'Testsuche',
## addons/Enterprise.pack/tmpl/create_author_bulk_end.tmpl
'All users were updated successfully.' => 'Alle Benutzerkonten erfolgreich aktualisiert.',
'An error occurred during the update process. Please check your CSV file.' => 'Bei der Aktualisierung ist ein Fehler aufgetreten. Überprüfen Sie die CSV-Datei.',
## addons/Enterprise.pack/tmpl/create_author_bulk_start.tmpl
## addons/Enterprise.pack/tmpl/dialog/dialog_select_group_user.tmpl
## addons/Enterprise.pack/tmpl/dialog/select_groups.tmpl
'You need to create some groups.' => 'Bitte legen Sie einige Gruppen an.',
q{Before you can do this, you need to create some groups. <a href="javascript:void(0);" onclick="closeDialog('[_1]');">Click here</a> to create a group.} => q{Bitte legen Sie zuerst einige Gruppen an. <a href="javascript:void(0);" onclick="closeDialog('[_1]');">Klicken Sie hier </a> um Gruppen anzulegen.},
## addons/Enterprise.pack/tmpl/edit_group.tmpl
'Edit Group' => 'Gruppe bearbeiten',
'Create Group' => 'Gruppe anlegen',
'This group profile has been updated.' => 'Gruppenprofil aktualisiert.',
'This group was classified as pending.' => 'Gruppe auf wartend gesetzt.',
'This group was classified as disabled.' => 'Gruppe deaktiviert.',
'Member ([_1])' => 'Mitglied ([_1])',
'Members ([_1])' => 'Mitglieder ([_1])',
'Permission ([_1])' => 'Berechtigung ([_1])',
'Permissions ([_1])' => 'Berechtigungen ([_1])',
'LDAP Group ID' => 'LDAP-Gruppen-ID',
'The LDAP directory ID for this group.' => 'Die ID dieser Gruppe im LDAP-Verzeichnis',
'Status of this group in the system. Disabling a group prohibits its members’ from accessing the system but preserves their content and history.' => 'Systemweiter Gruppenstatus. Die Deaktivierung einer Gruppe entzieht ihren Mitgliedern den Zugang zum System. Inhalte und Nutzungsverläufe der Mitglieder bleiben jedoch erhalten.',
'The name used for identifying this group.' => 'Der zur Idenfifizierung diesser Gruppe verwendete Name',
'The display name for this group.' => 'Der Anzeigename dieser Gruppe',
'The description for this group.' => 'Die Beschreibung dieser Gruppe.',
'Save changes to this field (s)' => 'Feld-?nderungen speichern (s)',
## addons/Enterprise.pack/tmpl/include/group_table.tmpl
'Enable selected group (e)' => 'Gew?hlte Gruppe aktivieren (e)',
'Disable selected group (d)' => 'Gew?hlte Gruppe deaktivieren (d)',
'group' => 'Gruppe',
'groups' => 'Gruppen',
'Remove selected group (d)' => 'Gew?hlte Gruppe entfernen (d)',
## addons/Enterprise.pack/tmpl/include/list_associations/page_title.group.tmpl
'Users & Groups for [_1]' => 'Benutzer und Gruppen für [_1]',
## addons/Enterprise.pack/tmpl/listing/group_list_header.tmpl
'You successfully disabled the selected group(s).' => 'Gruppe(n) erfolgreich deaktiviert.',
'You successfully enabled the selected group(s).' => 'Gruppe(n) erfolgreich aktiviert.',
'You successfully deleted the groups from the Movable Type system.' => 'Gruppen erfolgreich aus der Movable Type-Installation gelöscht.',
q{You successfully synchronized the groups' information with the external directory.} => q{Gruppendaten erfolgreich mit externem Verzeichnis synchronisiert.},
## addons/Enterprise.pack/tmpl/listing/group_member_list_header.tmpl
'You successfully deleted the users.' => 'Benutzerkonten erfolgreich gelöscht.',
'You successfully added new users to this group.' => 'Benutzer erfolgreich zu Gruppe hinzugefügt.',
q{You successfully synchronized users' information with the external directory.} => q{Benutzerdaten erfolgreich mit externem Verzeichnis synchronisiert.},
'Some ([_1]) of the selected users could not be re-enabled because they are no longer found in LDAP.' => 'Einige ([_2]) der Benutzerkonten wurden nicht wieder aktiviert, da sie nicht mehr im LDAP vorhanden sind.',
'You successfully removed the users from this group.' => 'Benutzer erfolgreich aus Gruppe entfernt.',
## plugins/FacebookCommenters/config.yaml
'Provides commenter registration through Facebook Connect.' => 'Ermöglicht es Kommentarautoren, sich über Facebook Connect zu registrieren',
'Facebook' => 'Facebook',
## plugins/FacebookCommenters/lib/FacebookCommenters/Auth.pm
'Set up Facebook Commenters plugin' => 'Facebook Kommentarautoren-Plugin einrichten',
## plugins/FacebookCommenters/tmpl/blog_config_template.tmpl
'Facebook Application Key' => 'Facebook Application Key',
'The key for the Facebook application associated with your blog.' => 'Der Application Key der mit Ihrem Blog verknüpften Facebook-Anwendung',
'Edit Facebook App' => 'Facebook-Anwendung bearbeiten',
'Create Facebook App' => 'Facebook-Anwendung erstellen',
'Facebook Application Secret' => 'Facebook Application Secret',
'The secret for the Facebook application associated with your blog.' => 'Das Application Secret der mit Ihrem Blog verknüpften Facebook-Anwendung',
## plugins/feeds-app-lite/lib/MT/Feeds/Lite.pm
'An error occurred processing [_1]. The previous version of the feed was used. A HTTP status of [_2] was returned.' => 'Beim Einlesen von [_1] ist ein Fehler aufgetreten (zurückgegebener HTTP-Status: [_2]). Es wird die zuletzt erfolgreich eingelesene Version des Feeds verwendet.',
'An error occurred processing [_1]. A previous version of the feed was not available.A HTTP status of [_2] was returned.' => 'Beim Einlesen von [_1] ist ein Fehler aufgetreten (zurückgegebener HTTP-Status: [_2]). Es liegt keine vorherige Version des Feeds vor.',
## plugins/feeds-app-lite/lib/MT/Feeds/Tags.pm
'\'[_1]\' is a required argument of [_2]' => '\'[_1]\' ist ein erforderliches Argument von [_2]',
'MT[_1] was not used in the proper context.' => 'MT[_1] außerhalb seines Kontexts verwendet.',
## plugins/feeds-app-lite/mt-feeds.pl
'Feeds.App Lite helps you republish feeds on your blogs. Want to do more with feeds in Movable Type? <a href="http://code.appnel.com/feeds-app" target="_blank">Upgrade to Feeds.App</a>.' => 'Mit Feeds.App Lite binden Sie externe Newsfeeds in Ihre Blogs ein. Noch mehr Möglichkeiten erhalten Sie durch ein <a href="http://code.appnel.com/feeds-app" target="_blank">Upgrade auf Feeds.App</a>.',
'Create a Feed Widget' => 'Feed-Widget anlegen',
## plugins/feeds-app-lite/tmpl/config.tmpl
'Feeds.App Lite Widget Creator' => 'Feeds.App Lite Widget Creator',
'Configure feed widget settings' => 'Feed-Widget konfigurieren',
'Enter a title for your widget. This will also be displayed as the title of the feed when used on your published blog.' => 'Vergeben Sie einen Namen für das Widget. Dieser Name wird auch als Name des Feeds in Ihrem Blog angezeigt werden.',
'[_1] Feed Widget' => '[_1]-Feed-Widget',
'Select the maximum number of entries to display.' => 'Anzahl der höchstens anzuzeigenden Einträge',
'3' => '3',
'5' => '5',
'10' => '10',
'All' => 'Alle',
## plugins/feeds-app-lite/tmpl/msg.tmpl
'No feeds could be discovered using [_1]' => 'Keine Feeds per [_1] entdeckt.',
q{An error occurred processing [_1]. Check <a href="javascript:void(0)" onclick="closeDialog('http://www.feedvalidator.org/check.cgi?url=[_2]')">here</a> for more detail and please try again.} => q{Fehler beim Einlesen von [_1]. Beachten Sie die <a href="javascript:void(0)" onclick="closeDialog('http://www.feedvalidator.org/check.cgi?url=[_2]')">Hinweise des Feed Validators</a> und versuchen Sie es ggf. erneut.},
'A widget named <strong>[_1]</strong> has been created.' => 'Widget <strong>[_1]</strong> angelegt.',
q{You may now <a href="javascript:void(0)" onclick="closeDialog('[_2]')">edit “[_1]”</a> or include the widget in your blog using <a href="javascript:void(0)" onclick="closeDialog('[_3]')">WidgetManager</a> or the following MTInclude tag:} => q{Sie können “[_1]” jetzt <a href="javascript:void(0)" onclick="closeDialog('[_2]')">bearbeiten</a> oder in Ihr Blog <a href="javascript:void(0)" onclick="closeDialog('[_3]')">einbinden</a>. Alternativ können Sie dazu auch diesen MTInclude-Befehl verwenden:},
q{You may now <a href="javascript:void(0)" onclick="closeDialog('[_2]')">edit “[_1]”</a> or include the widget in your blog using the following MTInclude tag:} => q{Sie können “[_1]” jetzt <a href="javascript:void(0)" onclick="closeDialog('[_2]')">bearbeiten</a> oder mit diesem MTInclude-Befehl in Ihr Blog einbinden:},
'Create Another' => 'Weiteres Widget anlegen',
## plugins/feeds-app-lite/tmpl/select.tmpl
'Multiple feeds were found' => 'Mehrere Feeds gefunden',
'Select the feed you wish to use. <em>Feeds.App Lite supports text-only RSS 1.0, 2.0 and Atom feeds.</em>' => 'Wählen Sie den zu verwendenden Feed. <em>Feeds.App Lite unterstützt RSS 1.0-, RSS 2.0- und ATOM-Feeds.</em>',
'URI' => 'URI',
## plugins/feeds-app-lite/tmpl/start.tmpl
'You must enter a feed or site URL to proceed' => 'Geben Sie die Adresse eines Feeds oder einer Website an.',
'Create a widget from a feed' => 'Feed als Widget anzeigen',
'Feed or Site URL' => 'Feed- oder Website-URL',
'Enter the URL of a feed, or the URL of a site that has a feed.' => 'Geben Sie die URL eines Feeds oder einer Website, die Feeds anbietet, ein:',
## plugins/Markdown/Markdown.pl
'A plain-text-to-HTML formatting plugin.' => 'Ein Plugin, mit dem HTML wie normaler Text eingegeben werden kann.',
'Markdown' => 'Markdown',
'Markdown With SmartyPants' => 'Markdown mit SmartyPants',
## plugins/Markdown/SmartyPants.pl
q{Easily translates plain punctuation characters into 'smart' typographic punctuation.} => q{Wandelt einfache Interpunktionszeichen in typographisch korrekte Zecichen um.},
## plugins/mixiComment/lib/mixiComment/App.pm
'mixi reported that you failed to login. Try again.' => 'Ihre Anmeldung über mixi ist fehlgeschlagen. Bitte versuchen Sie es erneut.',
## plugins/mixiComment/mixiComment.pl
'Allows commenters to sign in to Movable Type using their own mixi username and password via OpenID.' => 'Ermöglicht es Kommentarautoren, sich per OpenID mit ihrem mixi-Benutzernamen und -Passwort bei Movable Type anzumelden',
'mixi' => 'mixi',
## plugins/mixiComment/tmpl/config.tmpl
'A mixi ID has already been registered in this blog. If you want to change the mixi ID for the blog, <a href="[_1]">click here</a> to sign in using your mixi account. If you want all of the mixi users to comment to your blog (not only your my mixi users), click the reset button to remove the setting.' => 'Es ist bereits eine mixi-ID für Ihr Blog registriert. <a href="[_1]">Klicken Sie hier</a>, um die mixi-ID dieses Blogs zu ändern. Klicken Sie auf Zurücksetzen, um alle mixi-Benutzer kommentieren zu lassen. Derzeit können nur Ihre my mixi-Benutzer kommentieren.',
'If you want to restrict comments only from your my mixi users, <a href="[_1]">click here</a> to sign in using your mixi account.' => 'Wenn Sie nur Ihre my mixi-Benutzer kommentieren lassen wollen, <a href="[_1]">klicken Sie hier</a>, um sich mit Ihrer mixi-ID anzumelden.',
## plugins/Motion/config.yaml
'A Movable Type theme with structured entries and action streams.' => 'Ein Movable Type-Thema mit strukturierten Einträgen und Action Streams.',
'Adjusting field types for embed custom fields...' => 'Passe Feldtypen für eingebettete individuelle Felder an...',
'Updating favoriting namespace for Motion...' => 'Aktualisieren Favoriten-Namespace für Motion...',
'Motion Themes' => 'Motion-Designs',
'Themes for Motion template set' => 'Designs für die Motion-Vorlagengruppe',
'Motion' => 'Motion',
'Post Type' => 'Eintragsart',
'Photo' => 'Foto',
'Embed Object' => 'Objekt einbetten',
'MT JavaScript' => 'MT-JavaScript',
'Motion MT JavaScript' => 'Motion MT JavaScript',
'Motion JavaScript' => 'Motion JavaScript',
'Entry Listing: Monthly' => 'Eintragsliste: Monatlich',
'Entry Listing: Category' => 'Eintragsliste: Kategorie',
'|' => '|',
'Entry Response' => 'Eintragsantworten',
'Profile View' => 'Profilansicht',
'Profile Edit Form' => 'Profilbearbeitungsformular',
'Profile Error' => 'Profilfehler',
'Profile Feed' => 'Profil-Feed',
'Login Form' => 'Anmeldeformular',
'Register Confirmation' => 'Registrierungs-Bestätigung',
'New Password Reset Form' => 'Formular zum Zurücksetzen neuer Passwörter',
'New Password Form' => 'Formular für neues Passwort',
'User Profile' => 'Benutzerprofil',
'Actions (Local)' => 'Aktionen (lokal)',
'Single Entry' => 'Einzeleintrag',
'Messaging' => 'Messaging',
'Form Field' => 'Formularfeld',
'About Pages' => 'Über-Seiten',
'About Site' => 'Über-Site',
'Gallery' => 'Galerie',
'Main Column Actions' => 'Hauptspalte: Aktionen',
'Main Column Posting Form (All Media)' => 'Hauptspalte: Eingabeformular (alle Medien)',
'Main Column Posting Form (Text Only, Like Twitter)' => 'Hauptspalte: Eingabeformular (nur Text, z.B. Twitter)',
'Main Column Registration' => 'Hauptspalte: Registrierung',
'Fans' => 'Fans',
'Popular Entries' => 'Beliebte Einträge',
'Elsewhere' => 'Anderswo',
'Following' => 'Benutzer, denen Sie folgen',
'Followers' => 'Benutzer, die Ihnen folgen',
'User Archives' => 'Benutzerarchiv',
'Blogroll' => 'Blogrolle',
'Feeds' => 'Feeds',
'Main Column Content' => 'Hauptspalten-Inhalt',
'Main Index Widgets' => 'Hauptspalten-Widgets',
'Archive Widgets' => 'Archiv-Widgets',
'Entry Widgets' => 'Eintrags-Widgets',
'Footer Widgets' => 'Fußzeilen-Widgets',
'Default Widgets' => 'Standard-Widgets',
'Profile Widgets' => 'Profil-Widgets',
## plugins/Motion/lib/Motion/Search.pm
'This module works with MT::App::Search.' => 'Dieses Modul verwendet MT::App:Search.',
'Specify the blog_id of a blog that has Motion template set.' => 'Geben Sie die blog_id eines Blogs mit der Motion-Vorlagengruppe an.',
'Error loading template: [_1]' => 'Fehler beim Laden der Vorlage: [_1]',
## plugins/Motion/templates/Motion/actions_local.mtml
'[_1] commented on [_2]' => '[_1] kommentierte auf [_2]',
'[_1] favorited [_2]' => '[_1] hat [_2] zum Favoriten gemacht',
'No recent actions.' => 'Keine aktuellen Aktionen',
## plugins/Motion/templates/Motion/actions.mtml
'[_1] is now following [_2]' => '[_1] folgt jetzt [_2]',
'[_1] favorited [_2] on [_3]' => '[_1] hat [_2] auf [_3] zum Favoriten gemacht',
## plugins/Motion/templates/Motion/archive_index.mtml
## plugins/Motion/templates/Motion/banner_footer.mtml
## plugins/Motion/templates/Motion/banner_header.mtml
## plugins/Motion/templates/Motion/comment_detail.mtml
## plugins/Motion/templates/Motion/comment_listing.mtml
## plugins/Motion/templates/Motion/comment_preview.mtml
## plugins/Motion/templates/Motion/comment_response.mtml
'<strong>Bummer....</strong> [_1]' => '<strong>Huch...</strong>',
## plugins/Motion/templates/Motion/comments.mtml
'what will you say?' => 'Was würden Sie sagen?',
'[_1] [_2]in reply to comment from [_3][_4]' => '[_1] [_2] alt Antwort auf den Kommentar von [_3][_4]',
'Write a comment...' => 'Schreiben Sie einen Kommmentar...',
## plugins/Motion/templates/Motion/dynamic_error.mtml
## plugins/Motion/templates/Motion/entry_listing_author.mtml
'Archived Entries from [_1]' => 'Archivierte Einträge von [_1]',
'Recent Entries from [_1]' => 'Aktuelle Eintrage von [_1]',
## plugins/Motion/templates/Motion/entry_listing_category.mtml
## plugins/Motion/templates/Motion/entry_listing_monthly.mtml
## plugins/Motion/templates/Motion/entry.mtml
## plugins/Motion/templates/Motion/entry_response.mtml
## plugins/Motion/templates/Motion/entry_summary.mtml
'By [_1] <span class="date">on [_2]</span>' => 'Von [_1] <span class="date">am [_2]</span>',
'Unpublish this post' => 'Eintrag nicht mehr veröffentlichen',
'1 <span>Comment</span>' => '1 <span>Kommentar</span>',
'# <span>Comments</span>' => '# <span>Kommentare</span>',
'0 <span>Comments</span>' => '0 <span>Kommentare</span>',
'1 <span>TrackBack</span>' => '1 <span>TrackBack</span>',
'# <span>TrackBacks</span>' => '# <span>TrackBacks</span>',
'0 <span>TrackBacks</span>' => '0 <span>TrackBacks</span>',
'Posted to [_1]' => 'Veröffentlicht in [_1]',
## plugins/Motion/templates/Motion/form_field.mtml
'(Optional)' => '(Optional)',
## plugins/Motion/templates/Motion/javascript.mtml
'Please select a file to post.' => 'Bitte wählen die Datei, die Sie hochladen möchten',
'You selected an unsupported file type.' => 'Das gewählte Dateiformat wird nicht unterstützt.',
## plugins/Motion/templates/Motion/login_form.mtml
'Not a member? <a href="[_1]">Sign Up</a>!' => 'Noch nicht registriert? <a href="[_1]">Einfach jetzt registrieren</a>!',
'Forgot?' => 'Vergessen?',
## plugins/Motion/templates/Motion/main_index.mtml
## plugins/Motion/templates/Motion/member_index.mtml
## plugins/Motion/templates/Motion/motion_js.mtml
'Add userpic' => 'Benutzerbild einfügen',
## plugins/Motion/templates/Motion/new_password.mtml
'Choose New Password' => 'Wählen Sie Ihr neues Passwort',
## plugins/Motion/templates/Motion/page.mtml
## plugins/Motion/templates/Motion/password_reset.mtml
'Recover (s)' => 'Passwort anfordern (s)',
## plugins/Motion/templates/Motion/profile_feed.mtml
'Posted [_1] to [_2]' => '[_1] in [_2] veröffentlicht',
'Commented on [_1] in [_2]' => '[_1] in [_2] kommentiert',
'followed [_1]' => 'folgt [_1]',
## plugins/Motion/templates/Motion/register_confirmation.mtml
'Authentication Email Sent' => 'Authentifizierungsmail verschickt',
'Profile Created' => 'Profil angelegt',
## plugins/Motion/templates/Motion/register.mtml
'Enter a password for yourself.' => 'Geben Sie Ihr gewünschtes Passwort ein.',
'The URL of your website.' => 'Die Adresse (URL) Ihrer Website.',
## plugins/Motion/templates/Motion/search_results.mtml
## plugins/Motion/templates/Motion/sidebar.mtml
## plugins/Motion/templates/Motion/single_entry.mtml
'Note: This post is being held for approval by the site owner.' => 'Hinweis: Dieser Eintrag ist vom Betreiber der Site noch nicht freigeschaltet worden.',
'<a href="[_1]">Most recent comment by <strong>[_2]</strong> on [_3]</a>' => '<a href="[_1]">Aktuelle Kommentare von <strong>[_2]</strong> zu [_3]</a>',
'[_1] posted [_2] on [_3]' => '[_1] hat [_2] auf [_3] veröfentlicht',
## plugins/Motion/templates/Motion/trackbacks.mtml
## plugins/Motion/templates/Motion/user_profile_edit.mtml
'Go <a href="[_1]">back to the previous page</a> or <a href="[_2]">view your profile</a>.' => '<a href="[_1]">Zurück zur Ausgangsseite</a> oder <a href="[_2]">Profil ansehen</a>.',
## plugins/Motion/templates/Motion/user_profile.mtml
'Recent Actions from [_1]' => 'Aktuelle Aktionen von [_1]',
'Responses to Comments from [_1]' => 'Reaktionen auf Kommentare von [_1]',
'You are following [_1].' => 'Sie folgen [_1]',
'Unfollow' => 'Nicht mehr folgen',
'Follow' => 'Folgen',
'Profile Data' => 'Profil-Daten',
'More Entries by [_1]' => 'Weitere Einträge von [_1]',
'Recent Actions' => 'Aktuelle Aktionen',
'_PROFILE_COMMENT_LENGTH' => '10',
'Comment Threads' => 'Kommentar-Threads',
'[_1] commented on ' => '[_1] kommentierte',
'No responses to comments.' => 'Keine Kommentarantworten',
## plugins/Motion/templates/Motion/widget_about_ssite.mtml
'About' => 'Über',
'The Motion Template Set is a great example of the type of site you can build with Movable Type.' => 'Die Motion-Vorlagengruppe ist ein tolles Beispiel für die große Bandbreite von Websites, die Sie mit Movable Type erstellen können.',
## plugins/Motion/templates/Motion/widget_categories.mtml
## plugins/Motion/templates/Motion/widget_elsewhere.mtml
'Are you sure you want to remove the [_1] from your profile?' => '[_1] wirklich aus Ihrem Profil entfernen?',
'Your user name or ID is required.' => 'Ihr Benutzername oder Ihre ID ist erforderlich.',
'Add a Service' => 'Einen Dienst hinzufügen',
'Service' => 'Dienst',
'Select a service...' => 'Wählen Sie einen Dienst aus',
'Your Other Profiles' => 'Ihre anderen Profile',
'Find [_1] Elsewhere' => '[_1] anderswo finden',
'Remove service' => 'Dienst entfernen',
## plugins/Motion/templates/Motion/widget_fans.mtml
## plugins/Motion/templates/Motion/widget_followers.mtml
'Not being followed' => 'Niemand folgt Ihnen',
## plugins/Motion/templates/Motion/widget_following.mtml
'Not following anyone' => 'Sie folgen niemandem',
## plugins/Motion/templates/Motion/widget_gallery.mtml
'Recent Photos' => 'Aktuelle Fotos',
## plugins/Motion/templates/Motion/widget_main_column_actions.mtml
## plugins/Motion/templates/Motion/widget_main_column_posting_form.mtml
'QuickPost' => 'QuickPost',
'Text post' => 'Text',
'Photo post' => 'Foto',
'Link post' => 'Link',
'Embed post' => 'Eingebettet',
'Audio post' => 'Töne',
'URL of web page' => 'Adresse (URL) der Webseite',
'Select photo file' => 'Bilddatei wählen',
'Only GIF, JPEG and PNG image files are supported.' => 'Unterstützt werden die Formate GIF, JPG und PNG.',
'Select audio file' => 'Audiodatei wählen',
'Only MP3 audio files are supported.' => 'Unterstützt wird das Format MP3.',
'Paste embed code' => 'Einbett-Code einfügen',
'Content' => 'Inhalt',
'more options' => 'Weitere Optionen',
'Post' => 'Veröffentlichen',
## plugins/Motion/templates/Motion/widget_main_column_posting_form_text.mtml
## plugins/Motion/templates/Motion/widget_main_column_registration.mtml
'<a href="javascript:void(0)" onclick="[_1]">Sign In</a>' => '<a href="javascript:void(0)" onclick="[_1]">Anmelden</a>',
'Not a member? <a href="[_1]">Register</a>' => 'Noch kein Mitglied? <a href="[_1]">Registieren</a>',
'(or <a href="javascript:void(0)" onclick="[_1]">Sign In</a>)' => '(oder <a href="javascript:void(0)" onclick="[_1]">anmelden</a>)',
'No posting privileges.' => 'Keine Veröffentlichungs-Rechte.',
## plugins/Motion/templates/Motion/widget_members.mtml
## plugins/Motion/templates/Motion/widget_monthly_archives.mtml
## plugins/Motion/templates/Motion/widget_popular_entries.mtml
'posted by <a href="[_1]">[_2]</a> on [_3]' => 'von <a href="[_1]">[_2]</a> auf [_3]',
## plugins/Motion/templates/Motion/widget_powered_by.mtml
## plugins/Motion/templates/Motion/widget_recent_comments.mtml
'<p>[_3]...</p><div class="comment-attribution">[_4]<br /><a href="[_1]">[_2]</a></div>' => '<p>[_3]...</p><div class="comment-attribution">[_4]<br /><a href="[_1]">[_2]</a></div>',
## plugins/Motion/templates/Motion/widget_recent_entries.mtml
'posted by [_1] on [_2]' => 'veröffentlicht von [_1] auf [_2]',
## plugins/Motion/templates/Motion/widget_search.mtml
## plugins/Motion/templates/Motion/widget_signin.mtml
'You are signed in as <a href="[_1]">[_2]</a>' => 'Sie sind als <a href="[_1]">[_2]</a> angemeldet.',
'You are signed in as [_1]' => 'Sie sind als [_1] angemeldet.',
'Edit profile' => 'Profil bearbeiten',
## plugins/Motion/templates/Motion/widget_tag_cloud.mtml
## plugins/Motion/templates/Motion/widget_user_archives.mtml
'Recenty entries from [_1]' => 'Aktuelle Einträge von [_1]',
## plugins/Motion/tmpl/edit_linkpost.tmpl
## plugins/Motion/tmpl/edit_videopost.tmpl
'Embed code' => 'Einbett-Code',
## plugins/MultiBlog/lib/MultiBlog.pm
'Restoring MultiBlog rebuild trigger for blog #[_1]...' => 'Stelle MultiBlog-Trigger für Blog #[_1] wieder her....',
## plugins/MultiBlog/lib/MultiBlog/Tags.pm
'MTMultiBlog tags cannot be nested.' => 'MTMultiBlog-Tags können nicht veschachtelt werden.',
'Unknown "mode" attribute value: [_1]. Valid values are "loop" and "context".' => 'Ungültiges "mode"-Attribut [_1]. Gültige Werte sind "loop" und "context".',
## plugins/MultiBlog/multiblog.pl
'MultiBlog allows you to publish content from other blogs and define publishing rules and access controls between them.' => 'Mit MultiBlog können Sie Inhalte anderer Blogs übernehmen und die dazu erforderlichen Veröffentlichungsregeln definieren.',
'MultiBlog' => 'MultiBlog',
'Create Trigger' => 'Neuen Auslöser anlegen',
'Search Weblogs' => 'Weblogs suchen',
'When this' => 'Wenn',
'(All blogs in this website)' => '(Alle Blogs dieser Website)',
'Select to apply this trigger to all blogs in this website.' => 'Diesen Trigger auf alle Blogs dieser Website anwenden',
'(All websites and blogs in this system)' => '(Alle Websites und Blogs in diesem System)',
'Select to apply this trigger to all websites and blogs in this system.' => 'Diesen Trigger auf alle Websites und Blogs dieser Installation anwenden',
'saves an entry/page' => 'ein Eintrag / eine Seite gespeichert wird',
'publishes an entry/page' => 'ein Eintrag / eine Seite veröffentlicht wird',
'publishes a comment' => 'ein Kommentar veröffentlicht wird',
'publishes a TrackBack' => 'ein TrackBack veröffentlicht wird',
'rebuild indexes.' => 'Indizes neu aufbauen.',
'rebuild indexes and send pings.' => 'Indizes neu aufbauen und Pings senden.',
## plugins/MultiBlog/tmpl/blog_config.tmpl
'When' => 'Wenn in',
'Trigger' => 'Auslöser',
'Action' => 'Aktion',
'Weblog' => 'Weblog',
'Content Privacy' => 'Externer Zugriff auf Inhalte',
'Specify whether other blogs in the installation may publish content from this blog. This setting takes precedence over the default system aggregation policy found in the system-level MultiBlog configuration.' => 'Hier können Sie festlegen, ob andere Blogs dieser Movable Type-Installation die Inhalte dieses Blogs verwenden dürfen oder nicht. Diese Einstellung hat Vorrang vor der globalen MultiBlog-Konfiguration.',
'Use system default' => 'System-Voreinstellung verwenden',
'Allow' => 'Aggregation zulassen',
'Disallow' => 'Aggregation nicht zulassen',
'MTMultiBlog tag default arguments' => 'MultiBlog- Standardargumente',
q{Enables use of the MTMultiBlog tag without include_blogs/exclude_blogs attributes. Comma-separated BlogIDs or 'all' (include_blogs only) are acceptable values.} => q{Ermöglicht die Verwendung von MTMultiBlog ohne include_blogs- und exclude_blogs-Attribute. Erlaubte Werte sind 'all' oder per Kommata getrennte BlogIDs.},
'Include blogs' => 'Einzuschließende Blogs',
'Exclude blogs' => 'Auszuschließende Blogs',
'Rebuild Triggers' => 'Auslöser für Neuaufbau',
'Create Rebuild Trigger' => 'Auslöser für Neuaufbau definieren',
'You have not defined any rebuild triggers.' => 'Es sind keine Auslöser definiert.',
## plugins/MultiBlog/tmpl/dialog_create_trigger.tmpl
'Create MultiBlog Trigger' => 'MultiBlog-Auslöser definieren',
## plugins/MultiBlog/tmpl/system_config.tmpl
'Default system aggregation policy' => 'Systemwite Aggregations- Voreinstellung',
'Cross-blog aggregation will be allowed by default. Individual blogs can be configured through the blog-level MultiBlog settings to restrict access to their content by other blogs.' => 'Verwendung von Bloginhalten in anderen Blogs dieser Installation systemweit erlauben. Auf Blog-Ebene gemachte Einstellungen sind vorranging, so daß diese Voreinstellung für einzelne Blogs außer Kraft gesetzt werden kann.',
'Cross-blog aggregation will be disallowed by default. Individual blogs can be configured through the blog-level MultiBlog settings to allow access to their content by other blogs.' => 'Verwendung von Bloginhalten in anderen Blogs dieser Installation systemweit nicht erlauben. Auf Blog-Ebene gemachte Einstellungen sind vorranging, so daß diese Voreinstellung für einzelne Blogs außer Kraft gesetzt werden kann.',
## plugins/spamlookup/lib/spamlookup.pm
'Failed to resolve IP address for source URL [_1]' => 'Kann IP-Adresse der Quelladresse [_1] nicht auflösen',
'Moderating: Domain IP does not match ping IP for source URL [_1]; domain IP: [_2]; ping IP: [_3]' => 'Moderation: Die IP-Adresse der Domain ([_2]) stimmt nicht mit der Ping-IP-Adresse ([_3]) überein. URL: [_1]',
'Domain IP does not match ping IP for source URL [_1]; domain IP: [_2]; ping IP: [_3]' => 'Die IP-Adresse der Domain ([_2]) stimmt nicht mit der Ping-IP-Adresse ([_3]) überein. URL: [_1]',
'No links are present in feedback' => 'Keine Links enthalten',
'Number of links exceed junk limit ([_1])' => 'Anzahl der Links übersteigt Spam-Schwellenwert ([_1] Links)',
'Number of links exceed moderation limit ([_1])' => 'Anzahl der Links übersteigt Moderations-Schwellenwert ([_1] Links)',
'Link was previously published (comment id [_1]).' => 'Link wurde bereits veröffentlicht (Kommentar [_1])',
'Link was previously published (TrackBack id [_1]).' => 'Link wurde bereits veröffentlicht (TrackBack [_1])',
'E-mail was previously published (comment id [_1]).' => 'E-Mail-Adresse wurde bereits veröffentlicht (Kommentar [_1])',
'Word Filter match on \'[_1]\': \'[_2]\'.' => 'Schlüsselwortfilter angesprochen bei „[_1]“: „[_2]“.',
'Moderating for Word Filter match on \'[_1]\': \'[_2]\'.' => 'Moderierung: Schlüsselwortfilter angesprochen bei „[_1]“: „[_2]“.',
'domain \'[_1]\' found on service [_2]' => 'Domain „[_1]“gefunden bei [_2]',
'[_1] found on service [_2]' => '[_1] gefunden bei [_2]',
## plugins/spamlookup/spamlookup.pl
'SpamLookup module for using blacklist lookup services to filter feedback.' => 'SpamLookup-Modul zur Nutzung von Sperrlisten zur Feedback-Überprüfung',
'SpamLookup IP Lookup' => 'SpamLookup für IP-Adressen',
'SpamLookup Domain Lookup' => 'SpamLookup für Domains',
'SpamLookup TrackBack Origin' => 'SpamLookup für TrackBack-Herkunft',
'Despam Comments' => 'Spam aus Kommentaren entfernen',
'Despam TrackBacks' => 'Spam aus TrackBacks entfernen',
'Despam' => 'Spam entfernen',
## plugins/spamlookup/spamlookup_urls.pl
'SpamLookup module for junking and moderating feedback based on link filters.' => 'SpamLookup-Modul zur Überprüfung von Links in Feedback',
'SpamLookup Link Filter' => 'SpamLookup zur Linkfilterung',
'SpamLookup Link Memory' => 'SpamLookup zur Betrachtung bereits veröffentlichter Links',
'SpamLookup Email Memory' => 'SpamLookup zur Betrachtung bereits veröffentlichter E-Mail-Adressen',
## plugins/spamlookup/spamlookup_words.pl
'SpamLookup module for moderating and junking feedback using keyword filters.' => 'SpamLookup-Modul zur automatischen Einordnung von Feedback nach Schlüsselbegriffen zur Moderation oder als Spam.',
'SpamLookup Keyword Filter' => 'SpamLookup Schlüsselbegriff-Filter',
## plugins/spamlookup/tmpl/lookup_config.tmpl
q{Lookups monitor the source IP addresses and hyperlinks of all incoming feedback. If a comment or TrackBack comes from a blacklisted IP address or contains a blacklisted domain, it can be held for moderation or scored as junk and placed into the blog's Junk folder. Additionally, advanced lookups on TrackBack source data can be performed.} => q{Von eingehendem Feedback können die IP-Adressen und die enthaltenen Hyperlinks in Schwarzlisten nachgeschlagen werden. Stammt ein eingehender Kommentar oder TrackBack von einer dort gelisteten IP-Adresse oder enthält er Links zu einer dort gelisteten Domain, kann er automatisch zur Moderation zurückgehalten oder als Spam angesehen werden. Für TrackBacks sind zusätzliche Prüfungen möglich.},
'IP Address Lookups' => 'Nachschlagen von IP-Adressen',
'Moderate feedback from blacklisted IP addresses' => 'Feedback von schwarzgelisteten IP-Adressen moderieren',
'Junk feedback from blacklisted IP addresses' => 'Feedback von schwarzgelisteten IP-Adressen als Spam ansehen',
'Adjust scoring' => 'Gewichtung anpassen',
'Score weight:' => 'Gewichtung',
'Less' => 'kleiner',
'More' => 'größer',
'block' => 'sperren',
'IP Blacklist Services' => 'IP-Schwarzlisten',
'Domain Name Lookups' => 'Nachschlagen von Domain-Namen',
'Moderate feedback containing blacklisted domains' => 'Feedback von schwarzgelisteten Domains moderieren',
'Junk feedback containing blacklisted domains' => 'Feedback von schwarzgelisteten Domains als Spam ansehen',
'Domain Blacklist Services' => 'Domain-Schwarzlisten',
'Advanced TrackBack Lookups' => 'Zusätzliche TrackBack-Prüfungen',
'Moderate TrackBacks from suspicious sources' => 'TrackBacks aus dubiosen Quellen moderieren',
'Junk TrackBacks from suspicious sources' => 'TrackBacks aus dubiosen Quellen als Spam ansehen',
'Lookup Whitelist' => 'Weißliste',
'To prevent lookups for specific IP addresses or domains, list each on a line by itself.' => 'Tragen Sie hier IP-Adressen und Domains, die nicht nachgeschlagen werden sollten, ein. Verwenden Sie pro Eintrag eine Zeile. ',
## plugins/spamlookup/tmpl/url_config.tmpl
'Link filters monitor the number of hyperlinks in incoming feedback. Feedback with many links can be held for moderation or scored as junk. Conversely, feedback that does not contain links or only refers to previously published URLs can be positively rated. (Only enable this option if you are sure your site is already spam-free.)' => 'Die Anzahl der in eingehendem Feedback enthaltenen Hyperlinks kann kontrolliert werden. Feedback mit sehr vielen Links kann automatisch zur Moderation zurückgehalten oder als Spam angesehen werden. Umgekehrt kann Feedback, das gar keine Links enthält oder nur solche, die zuvor bereits freigegeben wurden, automatisch positiv bewertet werden.',
'Link Limits' => 'Link-Schwellenwert',
'Credit feedback rating when no hyperlinks are present' => 'Feedback ohne Hyperlinks positiv bewerten',
'Moderate when more than' => 'Moderieren bei mehr als',
'link(s) are given' => 'Link(s)',
'Junk when more than' => 'Als Spam ansehen bei mehr als',
'Link Memory' => 'Bereits veröffentlichte Links',
'Credit feedback rating when "URL" element of feedback has been published before' => 'Feedback positiv bewerten, wenn die Quelladresse (URL) bereits veröffentlicht wurde.',
'Only applied when no other links are present in message of feedback.' => 'Nur anwenden, wenn keine anderen Links im Feedbacktext enthalten sind',
'Exclude URLs from comments published within last [_1] days.' => 'URLs aus Kommentaren, die in den letzten [_1] Tagen veröffentlicht wurden, ausnehmen.',
'Email Memory' => 'Bereits veröffentlichte E-Mail-Adressen',
'Credit feedback rating when previously published comments are found matching on the "Email" address' => 'Feedback positiv bewerten, wenn bereits zuvor Kommentare von der gleichen E-Mail-Adresse veröffentlicht wurden.',
'Exclude Email addresses from comments published within last [_1] days.' => 'E-Mail-Adressen aus Kommentaren, die in den letzten [_1] Tagen veröffentlicht wurden, ausnehmen.',
## plugins/spamlookup/tmpl/word_config.tmpl
'Incoming feedback can be monitored for specific keywords, domain names, and patterns. Matches can be held for moderation or scored as junk. Additionally, junk scores for these matches can be customized.' => 'Eingehendes Feedback kann auf wählbare Schlüsselbegriffe, Domainnamen und Muster durchsucht werden. Feedback mit Treffern kann automatisch zur Moderation zurückgehalten oder als Spam angesehen werden.',
'Keywords to Moderate' => 'Bei Auftreten dieser Schlüsselwörter Feedback moderieren',
'Keywords to Junk' => 'Bei Auftreten dieser Schlüsselwörter Feedback als Spam ansehen',
## plugins/StyleCatcher/config.yaml
'StyleCatcher lets you easily browse through styles and then apply them to your blog in just a few clicks.' => 'Mit StyleCatchter können Sie spielend leicht neue Designvorlagen für Ihre Blogs finden und mit wenigen Klicks direkt installieren. ',
'MT 4 Style Library' => 'MT 4-Designs',
'A collection of styles compatible with Movable Type 4 default templates.' => 'Mit den Standardvorlagen von MT 3.3+ kompatible Designvorlagen',
'Styles' => 'Designs',
## plugins/StyleCatcher/lib/StyleCatcher/CMS.pm
'Your mt-static directory could not be found. Please configure \'StaticFilePath\' to continue.' => 'Ihr mt-static-Ordner konnte nicht gefunden werden. Bitte konfigurieren Sie \'StaticFilePath\' um fortzufahren.',
'Permission Denied.' => 'Zugriff verweigert.',
'Could not create [_1] folder - Check that your \'themes\' folder is webserver-writable.' => 'Konnte den Ordner [_1] nicht anlegen. Stellen Sie sicher, daß der Webserver Schreibrechte auf dem \'themes\'-Ordner hat.',
'Successfully applied new theme selection.' => 'Neue Themenauswahl erfolgreich angewendet.',
'Invalid URL: [_1]' => 'Ungültige URL: [_1]',
'(Untitled)' => '(ohne Überschrift)',
## plugins/StyleCatcher/tmpl/view.tmpl
'Select a [_1] Style' => '[_1]-Stil wählen',
'3-Columns, Wide, Thin, Thin' => 'Dreispaltig: breit - schmal - schmal',
'3-Columns, Thin, Wide, Thin' => 'Dreispaltig: schmal - breit - schmal',
'3-Columns, Thin, Thin, Wide' => 'Dreispaltig: schmal - schmal - breit',
'2-Columns, Thin, Wide' => 'Zweispaltig: schmal - breit',
'2-Columns, Wide, Thin' => 'Zweispaltig: breit - schmal',
'2-Columns, Wide, Medium' => 'Zweispaltig: breit - mittel',
'2-Columns, Medium, Wide' => 'Zweispaltig: mittel - breit',
'1-Column, Wide, Bottom' => 'Einspaltig: breit - Fußzeile',
'None available' => 'Keine verfügbar',
'Applying...' => 'Wende an...',
'Apply Design' => 'Design übernehmen',
'Error applying theme: ' => 'Fehler bei der Übernahme des Themas:',
'The selected theme has been applied, but as you have changed the layout, you will need to republish your blog to apply the new layout.' => 'Das gewählte Thema wurde übernommen. Da das Layout geändert wurde, veröffentlichen Sie das Blog bitte erneut, um die Änderungen wirksam werden zu lassen.',
'The selected theme has been applied!' => 'Das Thema wurde übernommen!',
'Error loading themes! -- [_1]' => 'Fehler beim Laden der Themen -- [_1]',
'Stylesheet or Repository URL' => 'URL des Stylesheets oder der Sammlung',
'Stylesheet or Repository URL:' => 'URL des Stylesheets oder der Sammlung:',
'Download Styles' => 'Designs herunterladen',
'Current theme for your weblog' => 'Aktuelles Theme Ihres Weblogs',
'Current Style' => 'Derzeitige Design',
'Locally saved themes' => 'Lokal gespeicherte Themes',
'Saved Styles' => 'Gespeicherte Designs',
'Default Styles' => 'Standarddesigns',
'Single themes from the web' => 'Einzelne Themes aus dem Web',
'More Styles' => 'Weitere Designs',
'Selected Design' => 'Gewähltes Design',
'Layout' => 'Layout',
## plugins/Textile/textile2.pl
'A humane web text generator.' => 'Korrekt formatierter Text leicht gemacht',
'Textile 2' => 'Textile 2',
## plugins/TypePadAntiSpam/config.yaml
'TypePad AntiSpam is a free service from Six Apart that helps protect your blog from comment and TrackBack spam. The TypePad AntiSpam plugin will send every comment or TrackBack submitted to your blog to the service for evaluation, and Movable Type will filter items if TypePad AntiSpam determines it is spam. If you discover that TypePad AntiSpam incorrectly classifies an item, simply change its classification by marking it as "Spam" or "Not Spam" from the Manage Comments screen, and TypePad AntiSpam will learn from your actions. Over time the service will improve based on reports from its users, so take care when marking items as "Spam" or "Not Spam."' => 'TypePad AntiSpam schützt Ihr Blog vor Kommentar- und TrackBack-Spam. Mit dem TypePad AntiSpam-Plugin wird jeder eingehende Kommentar und jedes eingehende TrackBack vom TypePad AntiSpam-Service überprüft und, falls es sich um Spam handelt, von Movable Type automatisch herausgefiltert. Kommentare und TrackBacks können auch manuell als Spam oder gültiges Feedback markiert werden. TypePad AntiSpam ist adaptiv und lernt dabei nicht nur aus Ihren Eingaben, sondern aus denen aller Benutzer des Dienstes. TypePad AntiSpam ist ein kostenloser Dienst von Six Apart.',
'"TypePad AntiSpam"' => 'TypePad AntiSpam',
## plugins/TypePadAntiSpam/lib/MT/TypePadAntiSpam.pm
'API key is a required parameter.' => 'API-Schlüssel erforderlich',
## plugins/TypePadAntiSpam/lib/TypePadAntiSpam.pm
'So far, TypePad AntiSpam has blocked [quant,_1,message,messages] for this blog, and [quant,_2,message,messages] system-wide.' => 'Bisher [quant,_1,Spam-Nachricht,Spam-Nachrichten] in diesem Blog und [quant,_2,Spam-Nachricht,Spam-Nachrichten] systemweit von TypePad AntiSpam blockiert.',
'So far, TypePad AntiSpam has blocked [quant,_1,message,messages] system-wide.' => 'Bisher [quant,_1,Spam-Nachricht,Spam-Nachrichten] von TypePad AntiSpam blockiert.',
'Failed to verify your TypePad AntiSpam API key: [_1]' => 'Verifizierung des TypePad AntiSpam API-Schlüssels fehlgeschlagen: [_1]',
'The TypePad AntiSpam API key provided is invalid.' => 'Der angegebene TypePad AntiSpam API-Schlüssel ist ungültig.',
## plugins/TypePadAntiSpam/tmpl/config.tmpl
'Junk Score Weight' => 'Spamfilter-Gewichtung',
'Least Weight' => 'Geringstes Gewicht',
'Most Weight' => 'Größtes Gewicht',
'Comments and TrackBacks receive a junk score between -10 (definitely spam) and +10 (definitely not spam). This setting allows you to control the weight of the TypePad AntiSpam rating relative to other filters you may have installed to help you filter comments and TrackBacks.' => 'Kommentare und TrackBacks erhalten eine Spam-Bewertung zwischen -10 (mit Sicherheit Spam) und +10 (mit Sicherheit kein Spam). Hier können Sie einstellen, wieviel Gewicht diese Bewertung im Verhältnis zu anderen Spamfiltern, die Sie möglicherweise ebenfalls installiert haben, erhalten soll.',
## plugins/TypePadAntiSpam/tmpl/stats_widget.tmpl
'TypePad AntiSpam' => 'TypePad AntiSpam',
'Spam Blocked' => 'Blockierter Spam',
'on this blog' => 'in diesem Blog',
'on this system' => 'in diesem System',
## plugins/TypePadAntiSpam/tmpl/system.tmpl
'API Key' => 'API-Schlüssel',
q{To enable this plugin, you'll need a free TypePad AntiSpam API key. You can <strong>get your free API key at [_1]antispam.typepad.com[_2]</strong>. Once you have your key, return to this page and enter it in the field below.} => q{Um dieses Plugin zu aktivieren, benötigen Sie einen kostenlosen TypePad AntiSpam API-Schlüssel. <strong>Sie erhalten Ihren kostenlosen API-Schlüssel auf [_1]antispam.typepad.com[_2]</strong>. Geben Sie Ihren Schlüssel in das folgende Feld ein.},
'Service Host' => 'Dienstadresse',
'The default service host for TypePad AntiSpam is api.antispam.typepad.com. You should only change this if you are using a different service that is compatible with the TypePad AntiSpam API.' => 'Die Standard-Dienstadresse für TypePad AntiSpam ist api.antispam.typepad.com. Ändern Sie diese Angabe nur dann, wenn Sie einen anderen Dienst verwenden, der mit der TypePad Antispam-API kompatibel ist.',
## plugins/WidgetManager/WidgetManager.pl
'Widget Manager version 1.1; This version of the plugin is to upgrade data from older version of Widget Manager that has been shipped with Movable Type to the Movable Type core schema. No other features are included. You can safely remove this plugin after installing/upgrading Movable Type.' => 'Widget Manager 1.1 - Diese Version des Plugins dient ausschließlich dazu, Daten älterer Versionen auf das Movable Type Core-Schema zu aktualisieren. Sie können diese Plugin daher nach Installation bzw. Aktualisierung von Movable Type gefahrlos löschen.',
'Moving storage of Widget Manager [_2]...' => 'Verschiebe Speicherort des Widget Managers [_2]...',
## plugins/WXRImporter/config.yaml
'Import WordPress exported RSS into MT.' => 'Aus WordPress exportiertes RSS in Movable Type importieren',
'"WordPress eXtended RSS (WXR)"' => '"WordPress eXtended RSS (WXR)"',
'"Download WP attachments via HTTP."' => 'WordPress-Anhänge via HTTP herunterladen.',
## plugins/WXRImporter/lib/WXRImporter/Import.pm
## plugins/WXRImporter/lib/WXRImporter/WXRHandler.pm
'File is not in WXR format.' => 'Datei ist nicht im WXR-Format.',
'Creating new tag (\'[_1]\')...' => 'Lege neuen Tag (\'[_1]\') an...',
'Saving tag failed: [_1]' => 'Speichern des Tags fehlgeschlagen: [_1]',
'Duplicate asset (\'[_1]\') found. Skipping.' => 'Doppeltes Asset (\'[_1]\') gefunden. Überspringe...',
'Saving asset (\'[_1]\')...' => 'Speichere Asset (\'[_1]\')...',
' and asset will be tagged (\'[_1]\')...' => ' und tagge Asset (\'[_1]\')...',
'Duplicate entry (\'[_1]\') found. Skipping.' => 'Doppelter Eintrag gefunden. Überspringe...',
'Saving page (\'[_1]\')...' => 'Speichere Seite (\'[_1]\')...',
'Entry has no MT::Trackback object!' => 'Eintrag hat kein MT::Trackback-Objekt!',
'Assigning permissions for new user...' => 'Weise neuem Benutzer Berechtigungen zu...',
'Saving permission failed: [_1]' => 'Die Berechtigungen konnten nicht gespeichert werden: [_1]',
## plugins/WXRImporter/tmpl/options.tmpl
q{Before you import WordPress posts to Movable Type, we recommend that you <a href='[_1]'>configure your blog's publishing paths</a> first.} => q{Bevor Sie WordPress-Einträge in Movable Type importieren, sollten Sie zuerst die <a href='[_1]'>Veröffentlichungspfade Ihres Weblogs einstellen</a>.},
'Upload path for this WordPress blog' => 'Uploadpfad für dieses WordPress-Blog',
'Replace with' => 'Ersetzen durch',
'Download attachments' => 'Anhänge herunterladen',
'Requires the use of a cron job to download attachments from WordPress powered blog in the background.' => 'Lädt Anhänge von Wordpress-Blogs im Hintergrund herunter. Cronjob erforderlich.',
'Download attachments (images and files) from the imported WordPress powered blog.' => 'Anhänge (Bilder und Dateien) des importierten Wordpress-Blogs herunterladen.',
);
## New words: 147
1;
|