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
|
# J-Pilot p dansk/J-Pilot in Danish
# Copyright (C) 2001 Free Software Foundation, Inc.
# Keld Simonsen <keld@dkuug.dk>, 2001.
#
msgid ""
msgstr ""
"Project-Id-Version: jpilot 0.99.4\n"
"Report-Msgid-Bugs-To: jpilot-devel@jpilot.org\n"
"POT-Creation-Date: 2006-09-28 15:06-0700\n"
"PO-Revision-Date: 2003-03-08 18:04+0100\n"
"Last-Translator: Keld Simonsen <keld@dkuug.dk>\n"
"Language-Team: Danish <dansk@klid.dk>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=iso-8859-1\n"
"Content-Transfer-Encoding: 8bit\n"
#: ../address.c:288 ../address.c:552 ../alarms.c:382 ../dat.c:181 ../dat.c:655
#: ../dat.c:857 ../dat.c:991 ../dat.c:1130 ../datebook.c:89 ../datebook.c:390
#: ../datebook.c:397 ../datebook.c:427 ../datebook.c:1046 ../jpilot.c:1558
#: ../libplugin.c:442 ../libplugin.c:724 ../libplugin.c:832 ../libplugin.c:911
#: ../libplugin.c:952 ../memo.c:95 ../memo.c:367 ../plugins.c:108
#: ../prefs.c:316 ../prefs.c:341 ../prefs.c:880 ../sync.c:252 ../sync.c:1155
#: ../sync.c:2319 ../todo.c:206 ../todo.c:548 ../utils.c:2349
msgid "Out of memory"
msgstr ""
#: ../address.c:345 ../address.c:352 ../datebook.c:340 ../libplugin.c:179
#: ../memo.c:163 ../memo.c:170 ../todo.c:291 ../todo.c:298 ../utils.c:2010
#: ../utils.c:2015 ../utils.c:2026 ../utils.c:2031 ../utils.c:2042
#: ../utils.c:2047 ../utils.c:2059 ../utils.c:2064
msgid "error"
msgstr "fejl"
#: ../address.c:412 ../address_gui.c:1657 ../datebook.c:686 ../libplugin.c:784
#: ../libplugin.c:809 ../memo.c:244 ../memo_gui.c:977 ../todo_gui.c:1289
#: ../Expense/expense.c:1122 ../Expense/expense.c:2127
#, fuzzy, c-format
msgid "Error reading file: %s\n"
msgstr "Fejl ved lsning af %s\n"
#: ../address_gui.c:249 ../datebook_gui.c:2537 ../memo_gui.c:166
#: ../todo_gui.c:280 ../KeyRing/keyring.c:619
msgid ""
"This record is deleted.\n"
"Undelete it or copy it to make changes.\n"
msgstr ""
#: ../address_gui.c:457 ../category.c:159 ../category.c:165 ../category.c:213
#: ../category.c:270 ../datebook_gui.c:368 ../memo_gui.c:283 ../sync.c:1118
#: ../sync.c:1124 ../sync.c:2294 ../sync.c:2514 ../sync.c:2520 ../sync.c:2637
#: ../sync.c:2903 ../todo_gui.c:420 ../utils.c:2758 ../utils.c:2807
#: ../utils.c:2813 ../utils.c:2886 ../utils.c:2892 ../utils.c:2955
#: ../utils.c:3018 ../utils.c:3024 ../utils.c:3087 ../utils.c:3094
#, fuzzy, c-format
msgid "Unable to open file: %s\n"
msgstr "Kan ikke bne %s\n"
#: ../address_gui.c:535
msgid "File doesn't appear to be address.dat format\n"
msgstr "Filen lader ikke til at vre i address.dat-format\n"
#: ../address_gui.c:545 ../datebook_gui.c:577 ../memo_gui.c:417
#: ../todo_gui.c:545 ../Expense/expense.c:603 ../Expense/expense.c:1397
msgid "Unfiled"
msgstr "Ikke gemt"
#. JPA
#. current category name
#. previous category name
#. yes!
#. entry text, in Pilot character set
#: ../address_gui.c:682 ../alarms.c:289 ../category.c:420 ../category.c:899
#: ../category.c:952 ../datebook_gui.c:662 ../datebook_gui.c:1161
#: ../export_gui.c:353 ../jpilot.c:361 ../jpilot.c:406 ../jpilot.c:474
#: ../jpilot.c:518 ../jpilot.c:991 ../jpilot.c:1892 ../memo_gui.c:505
#: ../password.c:368 ../restore_gui.c:322 ../todo_gui.c:633 ../utils.c:1122
#: ../utils.c:1303 ../KeyRing/keyring.c:1582
msgid "OK"
msgstr "O.k."
#: ../address_gui.c:683 ../datebook_gui.c:663 ../memo_gui.c:506
#: ../todo_gui.c:634 ../utils.c:1321
msgid "No"
msgstr "Nej"
#: ../address_gui.c:683 ../datebook_gui.c:663 ../memo_gui.c:506
#: ../todo_gui.c:634 ../utils.c:1321
msgid "Yes"
msgstr "Ja"
#: ../address_gui.c:706 ../datebook_gui.c:689 ../memo_gui.c:516
#: ../todo_gui.c:659
#, c-format
msgid "%s is a directory"
msgstr "%s er et katalog"
#: ../address_gui.c:708 ../address_gui.c:725 ../datebook_gui.c:691
#: ../datebook_gui.c:708 ../memo_gui.c:518 ../memo_gui.c:535 ../todo_gui.c:661
#: ../todo_gui.c:678
msgid "Error Opening File"
msgstr "Fejl ved bning af fil"
#: ../address_gui.c:712 ../datebook_gui.c:695 ../memo_gui.c:522
#: ../todo_gui.c:665
#, c-format
msgid "Do you want to overwrite file %s?"
msgstr "nsker du at overskrive filen %s?"
#: ../address_gui.c:714 ../datebook_gui.c:697 ../memo_gui.c:524
#: ../todo_gui.c:667
msgid "Overwrite File?"
msgstr "Overskriv fil?"
#: ../address_gui.c:723 ../datebook_gui.c:706 ../memo_gui.c:533
#: ../todo_gui.c:676
#, fuzzy, c-format
msgid "Error opening file: %s"
msgstr "Fejl ved bning af fil"
#: ../address_gui.c:734
#, c-format
msgid "Can't export address %d\n"
msgstr ""
#: ../address_gui.c:799 ../address_gui.c:807 ../address_gui.c:824
#, fuzzy
msgid "Field"
msgstr "mislykkedes.\n"
#: ../address_gui.c:1024 ../datebook_gui.c:982 ../memo_gui.c:591
#: ../todo_gui.c:815
msgid "Unknown export type\n"
msgstr ""
#: ../address_gui.c:1207 ../address_gui.c:2625
msgid "Company/Name"
msgstr "Firma/navn"
#: ../address_gui.c:1209 ../address_gui.c:2627
msgid "Name/Company"
msgstr "Navn/firma"
#: ../address_gui.c:1306 ../datebook_gui.c:2615 ../memo_gui.c:894
#: ../todo_gui.c:1217 ../KeyRing/keyring.c:959
msgid "You can't modify a record that is deleted\n"
msgstr ""
#. Illegal category
#: ../address_gui.c:1449 ../address_gui.c:1834 ../address_gui.c:2355
#: ../memo_gui.c:800 ../memo_gui.c:1065 ../memo_gui.c:1355 ../todo_gui.c:1083
#: ../todo_gui.c:1506 ../todo_gui.c:1519 ../todo_gui.c:1966
msgid "Category is not legal\n"
msgstr ""
#: ../address_gui.c:1508 ../alarms.c:639 ../dialer.c:163
#, fuzzy, c-format
msgid "executing command = [%s]\n"
msgstr "Udfr denne kommando"
#. Category menu
#: ../address_gui.c:1752 ../Expense/expense.c:1594 ../KeyRing/keyring.c:2097
#: ../KeyRing/keyring.c:2194
msgid "Category: "
msgstr "Kategori: "
#: ../address_gui.c:1784 ../address_gui.c:2796
msgid "kana("
msgstr "kana("
#: ../address_gui.c:1896 ../address_gui.c:2906
msgid "E-mail"
msgstr ""
#: ../address_gui.c:1898 ../address_gui.c:1901 ../address_gui.c:2907
msgid "Mail"
msgstr ""
#. Dial Phone Button
#: ../address_gui.c:1906 ../address_gui.c:1909 ../address_gui.c:2910
#: ../dialer.c:306 ../dialer.c:331
msgid "Dial"
msgstr ""
#: ../address_gui.c:2129 ../address_gui.c:2153
msgid "-Unnamed-"
msgstr "-Navnls-"
#: ../address_gui.c:2226 ../memo_gui.c:1265 ../todo_gui.c:1855
msgid "0 records"
msgstr "0 poster"
#: ../address_gui.c:2229 ../datebook_gui.c:2414 ../memo_gui.c:1268
#: ../todo_gui.c:1858
#, c-format
msgid "%d of %d records"
msgstr "%d af %d poster"
#. Edit category button
#: ../address_gui.c:2600 ../category.c:450 ../category.c:496 ../category.c:514
#: ../category.c:593 ../category.c:786 ../memo_gui.c:1483 ../todo_gui.c:2099
#: ../Expense/expense.c:1600
msgid "Edit Categories"
msgstr "Redigr kategorier"
#: ../address_gui.c:2631
msgid "Phone"
msgstr "Telefon"
#: ../address_gui.c:2653
#, fuzzy
msgid "Quick Find: "
msgstr "Hurtig sgning"
#. Create Cancel button
#. Add record modification buttons on right side
#. Create "event" button
#. Create Cancel button
#. Add record modification buttons on right side
#. Create Cancel button
#. Cancel button
#: ../address_gui.c:2669 ../category.c:421 ../category.c:889 ../category.c:942
#: ../datebook_gui.c:1152 ../datebook_gui.c:1599 ../datebook_gui.c:4384
#: ../export_gui.c:344 ../install_user.c:207 ../memo_gui.c:1517
#: ../password.c:358 ../print_gui.c:348 ../restore_gui.c:313
#: ../todo_gui.c:2152 ../utils.c:1108 ../KeyRing/keyring.c:1572
#: ../KeyRing/keyring.c:2135
msgid "Cancel"
msgstr "Annullr"
#: ../address_gui.c:2669 ../datebook_gui.c:4384 ../memo_gui.c:1517
#: ../todo_gui.c:2152 ../KeyRing/keyring.c:2135
msgid "Cancel the modifications"
msgstr ""
#. Delete Button
#. Create "Delete" button
#. Delete Button
#. Delete button
#. Delete, Copy, New, etc. buttons
#. Delete button
#: ../address_gui.c:2674 ../category.c:421 ../category.c:854
#: ../datebook_gui.c:4389 ../memo_gui.c:1522 ../todo_gui.c:2157
#: ../Expense/expense.c:1637 ../KeyRing/keyring.c:2140
msgid "Delete"
msgstr "Slet"
#: ../address_gui.c:2674 ../datebook_gui.c:4389 ../memo_gui.c:1522
#: ../todo_gui.c:2157 ../Expense/expense.c:1637 ../KeyRing/keyring.c:2140
#, fuzzy
msgid "Delete the selected record"
msgstr "Slettede en %s-post."
#. Undelete Button
#. Create "Undelete" button
#. Undelete Button
#. Undelete button
#: ../address_gui.c:2680 ../datebook_gui.c:4395 ../memo_gui.c:1528
#: ../todo_gui.c:2163 ../KeyRing/keyring.c:2146
#, fuzzy
msgid "Undelete"
msgstr "Slet"
#: ../address_gui.c:2680 ../datebook_gui.c:4395 ../memo_gui.c:1528
#: ../todo_gui.c:2163 ../KeyRing/keyring.c:2146
#, fuzzy
msgid "Undelete the selected record"
msgstr "Slettede en %s-post."
#. Create "Copy" button
#. Copy button
#: ../address_gui.c:2686 ../datebook_gui.c:4401 ../memo_gui.c:1534
#: ../todo_gui.c:2169 ../Expense/expense.c:1642 ../KeyRing/keyring.c:2152
msgid "Copy"
msgstr "Kopir"
#: ../address_gui.c:2686 ../datebook_gui.c:4401 ../memo_gui.c:1534
#: ../todo_gui.c:2169 ../Expense/expense.c:1642 ../KeyRing/keyring.c:2152
#, fuzzy
msgid "Copy the selected record"
msgstr "Tilfj post"
#. Create "New" button
#. New Record button
#: ../address_gui.c:2692 ../datebook_gui.c:4407 ../memo_gui.c:1540
#: ../todo_gui.c:2175 ../Expense/expense.c:1647 ../KeyRing/keyring.c:2158
msgid "New Record"
msgstr "Ny post"
#: ../address_gui.c:2692 ../datebook_gui.c:4407 ../memo_gui.c:1540
#: ../todo_gui.c:2175 ../Expense/expense.c:1647 ../KeyRing/keyring.c:2158
#, fuzzy
msgid "Add a new record"
msgstr "Tilfj post"
#. Create "Add Record" button
#. Add Record button
#: ../address_gui.c:2697 ../datebook_gui.c:4413 ../memo_gui.c:1546
#: ../todo_gui.c:2181 ../Expense/expense.c:1652 ../KeyRing/keyring.c:2164
msgid "Add Record"
msgstr "Tilfj post"
#: ../address_gui.c:2697 ../datebook_gui.c:4413 ../memo_gui.c:1546
#: ../todo_gui.c:2181 ../Expense/expense.c:1652 ../KeyRing/keyring.c:2164
#, fuzzy
msgid "Add the new record"
msgstr "Tilfj post"
#. Create "apply changes" button
#. Apply Changes button
#: ../address_gui.c:2707 ../datebook_gui.c:4423 ../memo_gui.c:1556
#: ../todo_gui.c:2191 ../Expense/expense.c:1661 ../KeyRing/keyring.c:2174
msgid "Apply Changes"
msgstr "Udfr ndringer"
#: ../address_gui.c:2707 ../datebook_gui.c:4423 ../memo_gui.c:1556
#: ../todo_gui.c:2191 ../Expense/expense.c:1661 ../KeyRing/keyring.c:2174
msgid "Commit the modifications"
msgstr ""
#. Private check box
#: ../address_gui.c:2724 ../datebook_gui.c:4474 ../memo_gui.c:1574
#: ../todo_gui.c:2254
msgid "Private"
msgstr "Privat"
#. Page 1
#: ../address_gui.c:2744 ../KeyRing/keyring.c:2009
msgid "Name"
msgstr "Navn"
#. Page 2
#: ../address_gui.c:2752 ../prefs_gui.c:370
msgid "Address"
msgstr "Adresse"
#. Page 3
#: ../address_gui.c:2760 ../Expense/expense.c:555 ../Expense/expense.c:1418
msgid "Other"
msgstr "Andre oplysninger"
#. Page 4
#. Create a "All" button
#: ../address_gui.c:2768 ../datebook_gui.c:1350 ../datebook_gui.c:1599
#: ../utils.c:2714
msgid "All"
msgstr "Alt"
#: ../address_gui.c:2973
msgid ""
"Show\n"
"In List"
msgstr ""
"Vis\n"
"i listen"
#. The Quickview page
#: ../address_gui.c:2981
msgid "Quick View"
msgstr "Oversigt"
#: ../alarms.c:257 ../datebook_gui.c:4456
msgid "Minutes"
msgstr "Minutter"
#: ../alarms.c:259 ../datebook_gui.c:4460
msgid "Hours"
msgstr "Timer"
#: ../alarms.c:280
msgid "Remind me"
msgstr "Pmindelse"
#: ../alarms.c:469
#, fuzzy, c-format
msgid "Unable to open %s%s file\n"
msgstr "Kan ikke bne %s\n"
#: ../alarms.c:554
msgid "Appointment Reminder"
msgstr "Pmindelse om aftale"
#: ../alarms.c:557
msgid "Past Appointment"
msgstr "Tidligere aftale"
#: ../alarms.c:560
msgid "Postponed Appointment"
msgstr "Udsat aftale"
#: ../alarms.c:563 ../datebook_gui.c:4292
msgid "Appointment"
msgstr "Aftale"
#: ../alarms.c:646
msgid "J-Pilot Alarm"
msgstr ""
#: ../alarms.c:1163
msgid "infinite loop, breaking\n"
msgstr ""
#: ../alarms.c:1531
#, fuzzy, c-format
msgid "Unable to open %s.alarms file\n"
msgstr "Kan ikke bne %s\n"
#: ../category.c:192 ../sync.c:2551 ../utils.c:2834 ../utils.c:2922
#: ../utils.c:3044 ../utils.c:3114
#, fuzzy
msgid "rename failed"
msgstr "Installering af %s mislykkedes"
#: ../category.c:229 ../category.c:286 ../sync.c:1147 ../sync.c:2310
msgid "PC file corrupt?\n"
msgstr "Er pc-filen beskadiget?\n"
#: ../category.c:236 ../category.c:246 ../category.c:293 ../category.c:304
#: ../category.c:314 ../sync.c:1192 ../sync.c:1212 ../sync.c:1272
#: ../sync.c:1283 ../sync.c:2372 ../sync.c:2399 ../sync.c:2451 ../sync.c:2461
msgid "fseek failed - fatal error\n"
msgstr "fseek mislykkedes - alvorlig fejl\n"
#: ../category.c:421
#, fuzzy
msgid "Move"
msgstr "ma"
#: ../category.c:451
msgid "The maximum number of categories (16) are already used"
msgstr ""
#: ../category.c:454
#, fuzzy
msgid "Enter New Category"
msgstr "Redigr kategorier"
#: ../category.c:464 ../category.c:471 ../category.c:489
#, fuzzy
msgid "Edit Categories Error"
msgstr "Redigr kategorier"
#: ../category.c:465
#, fuzzy
msgid "You must select a category to rename"
msgstr "Kunne ikke tilfje kategori %s p ekstern.\n"
#: ../category.c:469
#, fuzzy, c-format
msgid "You can't edit category %s.\n"
msgstr "Kunne ikke tilfje kategori %s p ekstern.\n"
#: ../category.c:476
msgid "Enter New Category Name"
msgstr ""
#: ../category.c:490
#, fuzzy
msgid "You must select a category to delete"
msgstr "Kunne ikke tilfje kategori %s p ekstern.\n"
#: ../category.c:494
#, fuzzy, c-format
msgid "You can't delete category %s.\n"
msgstr "Kunne ikke tilfje kategori %s p ekstern.\n"
#: ../category.c:510
#, c-format
msgid ""
"There are %d records in %s.\n"
"Do you want to move them to %s, or delete them?"
msgstr ""
#: ../category.c:569
#, c-format
msgid "invalid state file %s line %d\n"
msgstr ""
#: ../category.c:591
#, c-format
msgid "The category %s can't be used more than once"
msgstr ""
#. correctly translate title
#: ../category.c:813
#, fuzzy
msgid "category name"
msgstr "Kategori: "
#: ../category.c:838
msgid "New"
msgstr ""
#: ../category.c:845
#, fuzzy
msgid "Rename"
msgstr "navn: "
#: ../category.c:960
msgid "debug"
msgstr ""
#: ../dat.c:455
msgid "unknown type ="
msgstr ""
#: ../dat.c:536
#, c-format
msgid "fields per row count != %d, unknown format\n"
msgstr ""
#: ../dat.c:550
#, c-format
msgid "field count != %d, unknown format\n"
msgstr ""
#: ../dat.c:558
msgid "Unknown format, file has wrong schema\n"
msgstr ""
#: ../dat.c:559
msgid "File schema is:"
msgstr ""
#: ../dat.c:564
msgid "It should be: "
msgstr ""
#: ../dat.c:674 ../dat.c:692 ../dat.c:874 ../dat.c:887 ../dat.c:1010
#: ../dat.c:1023 ../dat.c:1147 ../dat.c:1160
#, c-format
msgid "%s:%d Record %d, field %d: Invalid type. Expected %d, found %d\n"
msgstr ""
#: ../dat.c:675 ../dat.c:693 ../dat.c:875 ../dat.c:888 ../dat.c:992
#: ../dat.c:1011 ../dat.c:1024 ../dat.c:1148 ../dat.c:1161
msgid "read of file terminated\n"
msgstr ""
#: ../datebook.c:643
#, c-format
msgid "Unknown repeatType (%d) found in DatebookDB\n"
msgstr ""
# These days of the week are put in the buttons above the calendar and
# the little buttons in the repeat weekly window.
# They should be one letter if possible. The English ones get truncated to
# one letter.
#: ../datebook_gui.c:218 ../datebook_gui.c:225 ../datebook_gui.c:4117
#: ../datebook_gui.c:4124
msgid "Su"
msgstr "s"
#: ../datebook_gui.c:219 ../datebook_gui.c:4118
msgid "Mo"
msgstr "ma"
#: ../datebook_gui.c:220 ../datebook_gui.c:4119
msgid "Tu"
msgstr "ti"
#: ../datebook_gui.c:221 ../datebook_gui.c:4120
msgid "We"
msgstr "on"
#: ../datebook_gui.c:222 ../datebook_gui.c:4121
msgid "Th"
msgstr "to"
#: ../datebook_gui.c:223 ../datebook_gui.c:4122
msgid "Fr"
msgstr "fr"
#: ../datebook_gui.c:224 ../datebook_gui.c:4123
msgid "Sa"
msgstr "l"
#: ../datebook_gui.c:556 ../datebook_gui.c:2070
#, fuzzy, c-format
msgid "Appointment description text > %d, truncating to %d\n"
msgstr "Advarsel ToDo-beskrivelsen er for lagn, forkorter til %d\n"
#: ../datebook_gui.c:566 ../datebook_gui.c:983 ../datebook_gui.c:2131
#: ../datebook_gui.c:2138
#, fuzzy
msgid "Error"
msgstr "fejl"
#: ../datebook_gui.c:567
msgid "File doesn't appear to be datebook.dat format\n"
msgstr "Filen lader ikke til at vre i datebook.dat-format\n"
#: ../datebook_gui.c:983
msgid "Unknown export type"
msgstr ""
#: ../datebook_gui.c:1092 ../export_gui.c:257 ../jpilot.c:551
msgid "Export"
msgstr "Eksportr"
#. Label for instructions
#: ../datebook_gui.c:1109
msgid "Export All Datebook Records"
msgstr "Eksportr alle kalenderposter"
#: ../datebook_gui.c:1128 ../export_gui.c:319
msgid "Save as"
msgstr "Gem som"
#: ../datebook_gui.c:1138 ../export_gui.c:330
msgid "Browse"
msgstr "Gennembladr"
#: ../datebook_gui.c:1300
#, fuzzy
msgid "Datebook Categories"
msgstr "Redigr kategorier"
#: ../datebook_gui.c:1343 ../import_gui.c:533 ../install_gui.c:341
#: ../monthview_gui.c:545 ../search_gui.c:620 ../weekview_gui.c:369
msgid "Close"
msgstr "Luk"
#. Create a "None" button
#. labels for notebook
#: ../datebook_gui.c:1356 ../datebook_gui.c:4639
msgid "None"
msgstr "Ingen"
#: ../datebook_gui.c:1468
msgid "Begin On Date"
msgstr "Startdato"
#: ../datebook_gui.c:1473
msgid "End On Date"
msgstr "Slutdato"
#: ../datebook_gui.c:1567 ../prefs.c:424
msgid "Sunday"
msgstr "sndag"
#: ../datebook_gui.c:1568 ../prefs.c:425
msgid "Monday"
msgstr "mandag"
#: ../datebook_gui.c:1569
msgid "Tuesday"
msgstr "tirsdag"
#: ../datebook_gui.c:1570
msgid "Wednesday"
msgstr "onsdag"
#: ../datebook_gui.c:1571
msgid "Thursday"
msgstr "torsdag"
#: ../datebook_gui.c:1572
msgid "Friday"
msgstr "fredag"
#: ../datebook_gui.c:1573
msgid "Saturday"
msgstr "lrdag"
#: ../datebook_gui.c:1576
msgid "4th"
msgstr "Fjerde"
#: ../datebook_gui.c:1576
msgid "Last"
msgstr "Sidste"
#: ../datebook_gui.c:1579
#, c-format
msgid ""
"This appointment can either\n"
"repeat on the 4th %s\n"
"of the month, or on the last\n"
"%s of the month.\n"
"Which do you want?"
msgstr ""
#: ../datebook_gui.c:1586 ../datebook_gui.c:1603
msgid "Question?"
msgstr ""
#. ---------------------------
#: ../datebook_gui.c:1594
msgid ""
"This is a repeating event.\n"
"Do you want to apply these\n"
"changes to just the CURRENT\n"
"event, or ALL of the\n"
"occurrences of this event?"
msgstr ""
"Denne hndelse gentages.\n"
"Skal ndringerne kun glde\n"
"den aktuelle hndelse eller\n"
"for alle gentagelserne?"
#: ../datebook_gui.c:1599
msgid "Current"
msgstr "Aktuelle"
#: ../datebook_gui.c:1838
msgid "none"
msgstr "ingen"
#: ../datebook_gui.c:1839
msgid "day"
msgstr "dag"
#: ../datebook_gui.c:1840
msgid "week"
msgstr "uge"
#: ../datebook_gui.c:1841
msgid "month"
msgstr "mned"
#: ../datebook_gui.c:1842
msgid "year"
msgstr "r"
#: ../datebook_gui.c:2126 ../datebook_gui.c:2129
#, c-format
msgid "You cannot have an appointment that repeats every %d %s(s)\n"
msgstr "Du kan ikke have en aftale som gentages hver %d %s\n"
#: ../datebook_gui.c:2139
#, fuzzy
msgid ""
"You can not have a weekly repeating appointment that doesn't repeat on any "
"day of the week."
msgstr ""
"Du kan ikke have en aftale med ugentlig gentagelse som ikke gentages p en "
"bestemt ugedag.\n"
#. This is a timeless event
#: ../datebook_gui.c:2292
msgid "No Time"
msgstr "Intet tidspunkt"
#: ../datebook_gui.c:2631
#, fuzzy
msgid "Invalid Appointment"
msgstr "Tidligere aftale"
#: ../datebook_gui.c:2632
msgid ""
"The End Date of this appointment\n"
"is before the start date."
msgstr ""
#. The No due date check box
#: ../datebook_gui.c:2901 ../datebook_gui.c:4673 ../datebook_gui.c:4703
#: ../datebook_gui.c:4758 ../datebook_gui.c:4807 ../todo_gui.c:130
#: ../todo_gui.c:2245
msgid "No Date"
msgstr "Ingen dato"
#: ../datebook_gui.c:3021
#, c-format
msgid "Error in DateBookDB advanceUnits = %d\n"
msgstr ""
#: ../datebook_gui.c:3192
msgid "Unknown repeatType found in DatebookDB\n"
msgstr ""
#: ../datebook_gui.c:3225
#, c-format
msgid "%%a., %s"
msgstr ""
#: ../datebook_gui.c:3230 ../monthview_gui.c:230 ../weekview_gui.c:219
msgid " (TODAY)"
msgstr ""
#. Make Weekview button
#: ../datebook_gui.c:4200 ../datebook_gui.c:4641
msgid "Week"
msgstr "Uge"
#: ../datebook_gui.c:4206
#, fuzzy
msgid "W"
msgstr "on"
#: ../datebook_gui.c:4208
msgid "View appointments by week"
msgstr ""
#. Make Monthview button
#: ../datebook_gui.c:4211 ../datebook_gui.c:4642
msgid "Month"
msgstr "Mned"
#: ../datebook_gui.c:4218
#, fuzzy
msgid "M"
msgstr "ma"
#: ../datebook_gui.c:4220
msgid "View appointments by month"
msgstr ""
#. Make Category button
#: ../datebook_gui.c:4225
msgid "Cats"
msgstr "kategorier"
#: ../datebook_gui.c:4291
msgid "Time"
msgstr "Tid"
#.
#. * Hide ToDo button
#.
#: ../datebook_gui.c:4328
msgid "Show ToDos"
msgstr ""
#: ../datebook_gui.c:4343 ../todo_gui.c:2114
msgid "Task"
msgstr "Opgave"
#: ../datebook_gui.c:4344 ../todo_gui.c:2115
msgid "Due"
msgstr "Forfald"
#: ../datebook_gui.c:4441
msgid "Alarm"
msgstr "Alarm"
#: ../datebook_gui.c:4462
msgid "Days"
msgstr "Dage"
#: ../datebook_gui.c:4485
msgid "This Event has no particular time"
msgstr "Denne aftale har ingen tidsangivelse"
#: ../datebook_gui.c:4493
msgid "Starts on"
msgstr "Starter den"
#: ../datebook_gui.c:4507
msgid "Start Time"
msgstr "Starttidspunk"
#: ../datebook_gui.c:4525
#, fuzzy
msgid "End Time"
msgstr "Tid"
#: ../datebook_gui.c:4623
msgid "DateBk Tags"
msgstr "DateBk-mrker"
#: ../datebook_gui.c:4640
msgid "Day"
msgstr "dag"
# msgid "WeekView"
# msgstr "Pr. uge"
# msgid "MonthView"
# msgstr "Pr. mnd"
#: ../datebook_gui.c:4643
msgid "Year"
msgstr "r"
#. no repeat page for notebook
#: ../datebook_gui.c:4647
msgid "This event will not repeat"
msgstr "Denne aftale skal ikke gentages"
#: ../datebook_gui.c:4657 ../datebook_gui.c:4689 ../datebook_gui.c:4744
#: ../datebook_gui.c:4791
msgid "Frequency is Every"
msgstr "Forekomst hver"
#: ../datebook_gui.c:4662
msgid "Day(s)"
msgstr "dage"
#. checkbutton
#: ../datebook_gui.c:4665 ../datebook_gui.c:4697 ../datebook_gui.c:4752
#: ../datebook_gui.c:4799
msgid "End on"
msgstr "Slut-dato"
#: ../datebook_gui.c:4694
msgid "Week(s)"
msgstr "uger"
#: ../datebook_gui.c:4710
msgid "Repeat on Days:"
msgstr "Gentag p flgende dage:"
#: ../datebook_gui.c:4749
msgid "Month(s)"
msgstr "mneder"
#: ../datebook_gui.c:4766
msgid "Repeat by:"
msgstr "Gentag p:"
#: ../datebook_gui.c:4770
msgid "Day of week"
msgstr "ugedag"
#: ../datebook_gui.c:4779
msgid "Date"
msgstr "dato"
#: ../datebook_gui.c:4796
msgid "Year(s)"
msgstr "r"
#: ../dialer.c:194
msgid "Phone Dialer"
msgstr "Telefon-opkalder"
#: ../dialer.c:229
msgid "Prefix 1"
msgstr "Prfiks 1"
#: ../dialer.c:251
msgid "Prefix 2"
msgstr "Prfiks 2"
#: ../dialer.c:273
msgid "Prefix 3"
msgstr "Prfiks 3"
#: ../dialer.c:288
msgid "Phone number:"
msgstr "Telefonnummer:"
#: ../dialer.c:319
msgid "Extension"
msgstr "Lokal"
#: ../dialer.c:342
msgid "Dial Command"
msgstr "Opkalds-kommando"
#: ../dialer.c:367
msgid "Dismiss"
msgstr "Afbryd"
#: ../export_gui.c:115
msgid "File Browser"
msgstr "Filbladrer"
#. Label for instructions
#: ../export_gui.c:275
msgid "Select records to be exported"
msgstr "Vlg poster der skal eksporteres"
#: ../export_gui.c:277
msgid "Use Ctrl and Shift Keys"
msgstr "Brug tasterne Ctrl og Shift"
#. Import button
#: ../import_gui.c:265 ../import_gui.c:315 ../import_gui.c:423
#: ../import_gui.c:509 ../jpilot.c:507
msgid "Import"
msgstr "Importr"
#: ../import_gui.c:298 ../install_gui.c:310
msgid "To change to a hidden directory type it below and hit TAB"
msgstr ""
"For at ndre til et skjult katalog skal du angive det nedenunder og trykke "
"TAB"
#: ../import_gui.c:307 ../prefs_gui.c:771
msgid "Done"
msgstr "Frdig"
#: ../import_gui.c:328
msgid "Import File Type"
msgstr "Importfil-type"
#: ../import_gui.c:442
msgid "Record was marked as private"
msgstr "Indgangen er markeret som privat"
#: ../import_gui.c:444
msgid "Record was not marked as private"
msgstr "Indgangen er ikke markeret privat"
#: ../import_gui.c:453
#, c-format
msgid "Category before import was: [%s]"
msgstr ""
#: ../import_gui.c:461
#, fuzzy, c-format
msgid "Record will be put in category [%s]"
msgstr "Alle poster i denne kategori"
#. Import All button
#: ../import_gui.c:516
msgid "Import All"
msgstr "Importr alt"
#. Skip button
#: ../import_gui.c:523
msgid "Skip"
msgstr "Spring over"
#: ../install_gui.c:257
msgid "Install"
msgstr "Installr"
#. i18n hack to have title correctly translated
#: ../install_gui.c:287
msgid "Files to be installed"
msgstr "Filer som skal installeres"
#: ../install_gui.c:319
msgid "Add"
msgstr "Tilfj"
#: ../install_gui.c:330
msgid "Remove"
msgstr "Fjern"
#: ../install_user.c:115 ../install_user.c:214
#, fuzzy
msgid "Install User"
msgstr "/Filer/_Installr"
#: ../install_user.c:138
msgid ""
"A PalmOS(c) device needs a user name and a user ID in order to sync properly."
msgstr ""
#: ../install_user.c:145
msgid ""
"If you want to sync more than 1 PalmOS(c) device each one should have a "
"different ID and preferably a different user name."
msgstr ""
#: ../install_user.c:175
msgid "Most people choose their name or nickname for the user name."
msgstr ""
#: ../install_user.c:182
#, fuzzy
msgid "User name"
msgstr "Brugernavn"
#: ../install_user.c:187
msgid "The ID should be a random number."
msgstr ""
#: ../install_user.c:194 ../restore_gui.c:295
msgid "User ID"
msgstr "Bruger-id"
#: ../jpilot-dump.c:95
msgid " +D +A +T +M format like date +format.\n"
msgstr ""
#: ../jpilot-dump.c:96
msgid " -v displays version and exits.\n"
msgstr ""
#: ../jpilot-dump.c:97 ../utils.c:73
msgid " -h displays help and exits.\n"
msgstr ""
#: ../jpilot-dump.c:98
msgid " -f displays help for format codes.\n"
msgstr ""
#: ../jpilot-dump.c:99
#, fuzzy
msgid " -D dump DateBook.\n"
msgstr "Adressebog"
#: ../jpilot-dump.c:100
msgid " -N dump appts for today in DateBook.\n"
msgstr ""
#: ../jpilot-dump.c:101
msgid " -NYYYY/MM/DD dump appts on YYYY/MM/DD in DateBook.\n"
msgstr ""
#: ../jpilot-dump.c:102
#, fuzzy
msgid " -A dump Address book.\n"
msgstr "Adressebog"
#: ../jpilot-dump.c:103
msgid " -T dump ToDo list as CSV.\n"
msgstr ""
#: ../jpilot-dump.c:104
msgid " -M dump Memos.\n"
msgstr ""
#: ../jpilot-sync.c:66
msgid ""
" J-Pilot preferences are read to get port, rate, number of backups, etc.\n"
msgstr ""
#: ../jpilot-sync.c:67
msgid " -v = version\n"
msgstr ""
#: ../jpilot-sync.c:68
msgid " -h = help\n"
msgstr ""
#: ../jpilot-sync.c:69
msgid " -d = run in debug mode\n"
msgstr ""
#: ../jpilot-sync.c:70
msgid " -P = do not load plugins.\n"
msgstr ""
#: ../jpilot-sync.c:71
msgid " -b = Do a sync and then a backup, otherwise just do a sync.\n"
msgstr ""
#: ../jpilot-sync.c:72
msgid " -l = loop, otherwise sync once and exit.\n"
msgstr ""
#: ../jpilot-sync.c:73
msgid ""
" -p {port} = Use this port to sync with instead of getting preferences.\n"
msgstr ""
#. The log window hasn't been created yet
#: ../jpilot.c:140
#, c-format
msgid "Invalid geometry specification: \"%s\"\n"
msgstr ""
#: ../jpilot.c:447 ../monthview_gui.c:555 ../print_gui.c:338
#: ../weekview_gui.c:379
msgid "Print"
msgstr "Udskriv"
#: ../jpilot.c:448
msgid "There is no print support for this conduit."
msgstr "Der findes ikke skriverunderstttelse for dette tillg."
#: ../jpilot.c:508
msgid "There is no import support for this conduit."
msgstr "Der findes ikke understttelse af importering for dette tillg."
#: ../jpilot.c:552
msgid "There is no export support for this conduit."
msgstr "Der findes ikke understttelse af eksportering for dette tillg."
#. -------------------------------------------
#: ../jpilot.c:728
msgid ""
"This palm doesn't have the same user name\n"
"or user ID as the one that was synced the\n"
"last time. Syncing could have unwanted effects.\n"
"Read the user manual if you are uncertain."
msgstr ""
#. -------------------------------------------
#: ../jpilot.c:735
msgid ""
"This palm has a NULL user id.\n"
"Every palm must have a unique user id in order to sync properly.\n"
"If it has been hard reset, use restore from the menu to restore it,\n"
"or use pilot-xfer.\n"
"To add a user name and ID use the install-user command line tool,\n"
"or use install-user from the menu\n"
"Read the user manual if you are uncertain."
msgstr ""
#: ../jpilot.c:742
msgid "Cancel Sync"
msgstr "Annullr sync"
#: ../jpilot.c:742
msgid "Sync Anyway"
msgstr "Synkronisr alligevel"
#: ../jpilot.c:751 ../jpilot.c:755
#, fuzzy
msgid "Sync Problem"
msgstr "Synk notat"
#: ../jpilot.c:982
msgid "Unknown command from sync process\n"
msgstr ""
#: ../jpilot.c:1003 ../Expense/expense.c:500 ../KeyRing/keyring.c:1737
#: ../SyncTime/synctime.c:48
#, c-format
msgid "About %s"
msgstr "Om %s"
#: ../jpilot.c:1406
#, fuzzy
msgid "/_File"
msgstr "/Filer"
#: ../jpilot.c:1407
msgid "/File/tear"
msgstr "/Filer/afriv"
#: ../jpilot.c:1408
msgid "/File/_Find"
msgstr "/Filer/_Find"
#: ../jpilot.c:1409 ../jpilot.c:1415 ../jpilot.c:1418
msgid "/File/sep1"
msgstr "/Filer/sep1"
#: ../jpilot.c:1410
msgid "/File/_Install"
msgstr "/Filer/_Installr"
#: ../jpilot.c:1411
msgid "/File/Import"
msgstr "/Filer/Importr"
#: ../jpilot.c:1412
msgid "/File/Export"
msgstr "/Filer/Eksportr"
#: ../jpilot.c:1413 ../jpilot.c:2895
msgid "/File/Preferences"
msgstr "/Filer/Indstillinger"
#: ../jpilot.c:1414
msgid "/File/_Print"
msgstr "/Filer/_Udskriv"
#: ../jpilot.c:1416
#, fuzzy
msgid "/File/Install User"
msgstr "/Filer/_Installr"
#: ../jpilot.c:1417
msgid "/File/Restore Handheld"
msgstr "/Filer/Genskab hndholdt"
#: ../jpilot.c:1419
msgid "/File/_Quit"
msgstr "/Filer/Afslut"
#: ../jpilot.c:1420
msgid "/_View"
msgstr "/_Vis"
#: ../jpilot.c:1421 ../jpilot.c:1422 ../jpilot.c:1423 ../jpilot.c:1677
#, fuzzy
msgid "/View/Hide Private Records"
msgstr "/Vis/Skjul-vis private poster"
#: ../jpilot.c:1422
#, fuzzy
msgid "/View/Show Private Records"
msgstr "/Vis/Skjul-vis private poster"
#: ../jpilot.c:1423
#, fuzzy
msgid "/View/Mask Private Records"
msgstr "/Vis/Skjul-vis private poster"
#: ../jpilot.c:1424
#, fuzzy
msgid "/View/sep1"
msgstr "/Filer/sep1"
#: ../jpilot.c:1425
msgid "/View/Datebook"
msgstr "/Vis/Kalender"
#: ../jpilot.c:1426
msgid "/View/Addresses"
msgstr "/Vis/Adresser"
#: ../jpilot.c:1427
msgid "/View/Todos"
msgstr "/Vis/Huskelister"
#: ../jpilot.c:1428
msgid "/View/Memos"
msgstr "/Vis/Notater"
#: ../jpilot.c:1429 ../jpilot.c:1563
#, fuzzy
msgid "/_Plugins"
msgstr "/Indstik"
#: ../jpilot.c:1431
#, fuzzy
msgid "/_Web"
msgstr "on"
#. web
#: ../jpilot.c:1432
msgid "/Web/Netscape"
msgstr ""
#: ../jpilot.c:1436
msgid "/Web/Mozilla"
msgstr ""
#: ../jpilot.c:1441
msgid "/Web/Galeon"
msgstr ""
#: ../jpilot.c:1446
msgid "/Web/Opera"
msgstr ""
#: ../jpilot.c:1450
msgid "/Web/GnomeUrl"
msgstr ""
#: ../jpilot.c:1452
msgid "/Web/Lynx"
msgstr ""
#: ../jpilot.c:1454
msgid "/Web/Links"
msgstr ""
#: ../jpilot.c:1456
msgid "/Web/W3M"
msgstr ""
#: ../jpilot.c:1458
msgid "/Web/Konqueror"
msgstr ""
#: ../jpilot.c:1461
msgid "/_Help"
msgstr "/_Hjlp"
#: ../jpilot.c:1462
msgid "/Help/PayBack program"
msgstr "/Hjlp/PayBack program"
#: ../jpilot.c:1463
#, fuzzy
msgid "/Help/About J-Pilot"
msgstr "/Hjlp/J-Pilot"
#: ../jpilot.c:1530
#, fuzzy, c-format
msgid "/_Plugins/%s"
msgstr "/Indstik/%s"
#: ../jpilot.c:1541
#, c-format
msgid "/_Help/%s"
msgstr "/_Hjlp/%s"
#: ../jpilot.c:1840
msgid "Font Selection Dialog"
msgstr ""
#: ../jpilot.c:2211
msgid "calendar:week_start:0"
msgstr ""
#: ../jpilot.c:2260
msgid "Not loading plugins.\n"
msgstr ""
#: ../jpilot.c:2264
msgid "Ignoring all alarms.\n"
msgstr ""
#: ../jpilot.c:2268
msgid "Ignoring past alarms.\n"
msgstr ""
#: ../jpilot.c:2363 ../jpilot.c:2371
#, fuzzy
msgid "Unable to open pipe\n"
msgstr "Kan ikke bne %s\n"
#: ../jpilot.c:2422
#, fuzzy
msgid " User: "
msgstr "Bruger-id"
#: ../jpilot.c:2564
msgid "Clear"
msgstr "Ryd"
#: ../jpilot.c:2649
#, fuzzy
msgid "Show private records Ctrl-Z"
msgstr "Vis private poster"
#: ../jpilot.c:2654
#, fuzzy
msgid "Show private records"
msgstr "Vis private poster"
#: ../jpilot.c:2659
#, fuzzy
msgid "Hide private records Ctrl-Z"
msgstr "Skjul private poster"
#: ../jpilot.c:2664
#, fuzzy
msgid "Hide private records"
msgstr "Skjul private poster"
#: ../jpilot.c:2669
#, fuzzy
msgid "Mask private records Ctrl-Z"
msgstr "Skjul private poster"
#: ../jpilot.c:2674
#, fuzzy
msgid "Mask private records"
msgstr "Skjul private poster"
#: ../jpilot.c:2684
#, fuzzy
msgid "Sync your palm to the desktop Ctrl-Y"
msgstr "Synkronisr din Palm med pc'en"
#. Create "Font" button
#: ../jpilot.c:2690
#, fuzzy
msgid "Font"
msgstr "Mned"
#: ../jpilot.c:2705
msgid ""
"Sync your palm to the desktop\n"
"and then do a backup"
msgstr ""
"Synkronisr din Palm med pc'en\n"
"og tag derefter sikkerhedskopi"
#: ../jpilot.c:2819
msgid "Datebook/Go to Today"
msgstr "Kalender/G til i dag"
#: ../jpilot.c:2821
msgid "Address Book"
msgstr "Adressebog"
#: ../jpilot.c:2823
msgid "ToDo List"
msgstr "Huskeliste"
#: ../jpilot.c:2825
msgid "Memo Pad"
msgstr "Notater"
#: ../jpilot.c:2877
msgid "Do it now"
msgstr ""
#: ../jpilot.c:2877
#, fuzzy
msgid "Remind me later"
msgstr "Pmindelse"
#: ../jpilot.c:2877
msgid "Don't tell me again!"
msgstr ""
#: ../jpilot.c:2891
msgid ""
"J-Pilot is using the GTK2 graphical toolkit. This version of the toolkit "
"uses UTF-8 to encode characters.\n"
"You should select a UTF-8 charset so you can see the non-ASCII characters "
"(accents for example).\n"
"\n"
msgstr ""
#: ../jpilot.c:2894
msgid "Go to the menu \""
msgstr ""
#: ../jpilot.c:2896
msgid "\" and change the \""
msgstr ""
#. Character Set
#: ../jpilot.c:2897 ../prefs_gui.c:390
msgid "Character Set "
msgstr "Tegnst"
#: ../jpilot.c:2898
msgid "\"."
msgstr ""
#: ../jpilot.c:2900
msgid "Select a UTF-8 encoding"
msgstr ""
#: ../libplugin.c:153
#, c-format
msgid "Unknown PC header version = %d\n"
msgstr ""
#: ../libplugin.c:416
#, fuzzy, c-format
msgid "%s:%d Error opening file: %s\n"
msgstr "Fejl ved lsning af %s\n"
#: ../libplugin.c:422 ../libplugin.c:451 ../sync.c:2879 ../todo.c:391
#, fuzzy, c-format
msgid "%s:%d Error reading file: %s\n"
msgstr "Fejl ved lsning af %s\n"
#: ../libplugin.c:478 ../utils.c:1944
msgid ""
"This record is already deleted.\n"
"It is scheduled to be deleted from the Palm on the next sync.\n"
msgstr ""
#: ../libplugin.c:487 ../utils.c:1953 ../utils.c:1990
#, fuzzy
msgid "Unable to open PC records file\n"
msgstr "Kan ikke bne %s\n"
#: ../libplugin.c:493 ../utils.c:1959
#, fuzzy
msgid "Couldn't find record to delete\n"
msgstr "Kunne ikke tilfje kategori %s p ekstern.\n"
#: ../libplugin.c:511 ../utils.c:1977
#, c-format
msgid "Unknown header version %d\n"
msgstr ""
#: ../libplugin.c:524
#, fuzzy
msgid "Couldn't open PC records file\n"
msgstr "Kan ikke bne fil %s\n"
#: ../libplugin.c:685 ../libplugin.c:777 ../utils.c:1504 ../utils.c:1517
#, fuzzy, c-format
msgid "Error opening file: %s\n"
msgstr "Fejl ved bning af fil"
#: ../libplugin.c:714
#, fuzzy
msgid "Error reading PC file 1\n"
msgstr "Fejl ved lsning af %s\n"
#: ../libplugin.c:730
#, fuzzy
msgid "Error reading PC file 2\n"
msgstr "Fejl ved lsning af %s\n"
#: ../libplugin.c:903
#, fuzzy, c-format
msgid "Error reading %s 5\n"
msgstr "Fejl ved lsning af %s\n"
#: ../log.c:95
#, fuzzy, c-format
msgid "Unable to open log file, giving up.\n"
msgstr "Kan ikke bne logfil, giver op.\n"
#: ../log.c:102
#, fuzzy, c-format
msgid "Unable to open log file\n"
msgstr "Kan ikke bne %s\n"
#: ../memo_gui.c:300
msgid "Memo text > 65535, truncating\n"
msgstr ""
#: ../memo_gui.c:330
#, c-format
msgid "Imported Memo %s\n"
msgstr ""
#: ../memo_gui.c:400
msgid "File doesn't appear to be memopad.dat format\n"
msgstr "Filen lader ikke til at vre i memopad.dat-format\n"
#: ../memo_gui.c:547 ../memo_gui.c:562
#, c-format
msgid "Can't export memo %d\n"
msgstr ""
#: ../monthview_gui.c:500
msgid "Monthly View"
msgstr "Mnedlig visning"
#: ../password.c:302
msgid "Palm Password"
msgstr "Palm-adgangskode"
#: ../password.c:333
msgid "Incorrect, Reenter PalmOS Password"
msgstr "Forkert, genindtast PalmOS-adgangskode"
#: ../password.c:335
msgid "Enter PalmOS Password"
msgstr "Indtast PalmOS-adgangskode"
#: ../plugins.c:88 ../plugins.c:200 ../restore_gui.c:133
msgid "infinite loop"
msgstr ""
#: ../plugins.c:213
#, c-format
msgid "While reading %s%s line 1:[%s]\n"
msgstr ""
#: ../plugins.c:214
msgid "Wrong Version\n"
msgstr ""
#: ../plugins.c:215
msgid "Check preferences->conduits\n"
msgstr ""
#: ../plugins.c:271
#, c-format
msgid ""
"Open failed on plugin [%s]\n"
" error [%s]\n"
msgstr ""
#: ../plugins.c:288 ../plugins.c:314
#, c-format
msgid " plugin is invalid: [%s]\n"
msgstr ""
#: ../plugins.c:296
#, fuzzy, c-format
msgid "Plugin:[%s]\n"
msgstr "/Indstik/%s"
#: ../plugins.c:297
#, c-format
msgid "This plugin is version (%d.%d).\n"
msgstr ""
#: ../plugins.c:299
msgid "It is too old to work with this version of J-Pilot.\n"
msgstr ""
#: ../prefs.c:393
msgid "%B %d, %Y"
msgstr ""
#: ../prefs.c:394
msgid "%d %B %Y"
msgstr ""
#: ../prefs.c:395
msgid "%d. %B %Y"
msgstr ""
#: ../prefs.c:396
msgid "%d %B, %Y"
msgstr ""
#: ../prefs.c:397
msgid "%Y. %B. %d"
msgstr ""
#: ../prefs.c:398
msgid "%Y %B %d"
msgstr ""
#: ../prefs_gui.c:334
msgid "Preferences"
msgstr "Indstillinger"
#: ../prefs_gui.c:364
msgid "Locale"
msgstr "Lokale"
#: ../prefs_gui.c:366
msgid "Settings"
msgstr "Opstning"
#: ../prefs_gui.c:368
#, fuzzy
msgid "Datebook"
msgstr "aftalebog"
#: ../prefs_gui.c:372
msgid "ToDo"
msgstr "Huskeliste"
#: ../prefs_gui.c:374
#, fuzzy
msgid "Memo"
msgstr "notat"
#: ../prefs_gui.c:376
msgid "Alarms"
msgstr "Alarm"
#: ../prefs_gui.c:378
msgid "Conduits"
msgstr "Tillg"
#. Shortdate
#: ../prefs_gui.c:403
msgid "Short date format "
msgstr "Kort datoangivelse "
#. Longdate
#: ../prefs_gui.c:416
msgid "Long date format "
msgstr "Lang datoangivelse "
#. Time
#: ../prefs_gui.c:429
msgid "Time format "
msgstr "Tidsangivelse "
#: ../prefs_gui.c:443
msgid "The first day of the week is "
msgstr "Frste dag i ugen er "
#. GTK colors file
#: ../prefs_gui.c:464
msgid "My GTK colors file is "
msgstr "Min GTK-farvefil er "
#. Port
#: ../prefs_gui.c:477
msgid "Serial Port (/dev/ttyS0, /dev/pilot)"
msgstr "Seriel port (/dev/ttyS0, /dev/pilot)"
#. Rate
#: ../prefs_gui.c:494
msgid "Serial Rate (Does not affect USB)"
msgstr ""
#. Number of backups
#: ../prefs_gui.c:507
msgid "Number of backups to be archived"
msgstr "Antal kopier som skal arkiveres?"
#. Show deleted files check box
#: ../prefs_gui.c:524
msgid "Show deleted records (default NO)"
msgstr "Vis slettede poster? (standard: nej)"
#. Show modified files check box
#: ../prefs_gui.c:528
msgid "Show modified deleted records (default NO)"
msgstr "Vis ndrede slettede poster? (standard: nej)"
#: ../prefs_gui.c:533
msgid "Ask confirmation for file installation (J-Pilot -> PDA) (default YES)"
msgstr ""
#. Show tooltips check box
#: ../prefs_gui.c:537
msgid "Show popup tooltips (default YES)"
msgstr ""
#. ********************************************************************
#. Datebook preference tab
#. Show highlight days check box
#: ../prefs_gui.c:545
msgid "Highlight calendar days with appointments"
msgstr "Markr dage med aftaler"
#. Show use DateBk check box
#: ../prefs_gui.c:551
#, fuzzy
msgid "Use DateBk note tags"
msgstr "Brug DateBk notat-markeringer"
#: ../prefs_gui.c:554
#, fuzzy
msgid "DateBk support disabled in this build"
msgstr "Understttelsen af DateBk er deaktiveret i denne udgave"
#. Highlight today on month and week view
#: ../prefs_gui.c:561
msgid "Annotate today in day, week, and month views"
msgstr ""
#: ../prefs_gui.c:566
msgid "Append years on anniversaries in day, week, and month views"
msgstr ""
#: ../prefs_gui.c:578
#, fuzzy
msgid "Mail Command"
msgstr "Opkalds-kommando"
#: ../prefs_gui.c:592
#, fuzzy, c-format
msgid "%s is replaced by the e-mail address"
msgstr "%t bliver erstattet med alarm-tiden"
#. ********************************************************************
#. ToDo preference tab
#. The hide completed check box
#: ../prefs_gui.c:600
msgid "Hide Completed ToDos"
msgstr "Skjul afsluttede huskelister?"
#. The hide todos not yet due check box
#: ../prefs_gui.c:604
msgid "Hide ToDos not yet due"
msgstr ""
#. The record todo completion date check box
#: ../prefs_gui.c:608
msgid "Record Completion Date"
msgstr ""
#. Use Manana check box
#: ../prefs_gui.c:613
msgid "Use Manana database"
msgstr "Brug Manana-database"
#: ../prefs_gui.c:621
msgid "Use default number of days due"
msgstr ""
#. ********************************************************************
#. Memo preference tab
#. Memo32 check box
#: ../prefs_gui.c:641
msgid "Use Memo32 (pedit32)"
msgstr "Brug Memo32 (pedit32)"
#. ********************************************************************
#. Alarms preference tab
#. Show open alarm windows check box
#: ../prefs_gui.c:648
msgid "Open alarm windows for appointment reminders"
msgstr "bn alarmvinduer for pmindelser om aftaler"
#. Show open alarm windows check box
#: ../prefs_gui.c:652
msgid "Execute this command"
msgstr "Udfr denne kommando"
#. Shell warning
#: ../prefs_gui.c:656
msgid "WARNING: executing arbitrary shell commands can be dangerous!!!"
msgstr "ADVARSEL: udfrelse af vilkrlige skal-kommandoer kan vre farligt!!!"
#: ../prefs_gui.c:664
msgid "Alarm Command"
msgstr "Alarm-kommando"
#: ../prefs_gui.c:677
msgid "%t is replaced with the alarm time"
msgstr "%t bliver erstattet med alarm-tiden"
#: ../prefs_gui.c:681
#, c-format
msgid "%d is replaced with the alarm date"
msgstr "%d bliver erstattet med alarm-datoen"
#: ../prefs_gui.c:686
msgid "%D is replaced with the alarm description"
msgstr "%D bliver erstattet med alarm-beskrivelsen"
#: ../prefs_gui.c:690
msgid "%N is replaced with the alarm note"
msgstr "%d bliver erstattet med alarm-notatet"
#: ../prefs_gui.c:694
msgid "%D (description substitution) is disabled in this build"
msgstr "%D (beskrivelseserstatning) er deaktiveret i denne udgave"
#: ../prefs_gui.c:698
msgid "%N (note substitution) is disabled in this build"
msgstr "%N (note-erstatning) er deaktiveret i denne udgave"
#. ********************************************************************
#. Conduits preference tab
#. Show sync datebook check box
#: ../prefs_gui.c:707
msgid "Sync datebook"
msgstr "Synk aftalebog"
#. Show sync address check box
#: ../prefs_gui.c:711
msgid "Sync address"
msgstr "Synk adresse"
#. Show sync todo check box
#: ../prefs_gui.c:715
msgid "Sync todo"
msgstr "Synk huskeliste"
#. Show sync memo check box
#: ../prefs_gui.c:719
msgid "Sync memo"
msgstr "Synk notat"
#. Show sync Memo32 check box
#: ../prefs_gui.c:723
msgid "Sync memo32 (pedit32)"
msgstr "Synk memo32 (pedit32)"
#. Show sync Ma~nana check box
#: ../prefs_gui.c:728
msgid "Sync Manana"
msgstr "Synkronisr Manana"
#. Show use Japanese Kana extention check box
#: ../prefs_gui.c:734
msgid "Use J-OS (Not Japanese PalmOS:WorkPad/CLIE)"
msgstr ""
#. Make a checkbox for each plugin
#: ../prefs_gui.c:747
#, fuzzy, c-format
msgid "Sync %s (%s)"
msgstr "Synkroniserer %s\n"
#: ../print_gui.c:178
msgid "Print Options"
msgstr "Skriverindstilinger"
#: ../print_gui.c:192
msgid "Paper Size"
msgstr "Papirstrrelse"
#: ../print_gui.c:209
msgid "Daily Printout"
msgstr "Udskriv dagsplan"
#: ../print_gui.c:215
msgid "Weekly Printout"
msgstr "Udskriv ugeplan"
#: ../print_gui.c:221
msgid "Monthly Printout"
msgstr "Udskriv mnedsplan"
#: ../print_gui.c:261
msgid "One record"
msgstr "En post"
#: ../print_gui.c:265
msgid "All records in this category"
msgstr "Alle poster i denne kategori"
#: ../print_gui.c:269
msgid "Print all records"
msgstr "Udskriv alle poster"
#: ../print_gui.c:292
msgid "One record per page"
msgstr "En post per side"
#: ../print_gui.c:308
msgid " Blank lines between each record"
msgstr " Tomme linjer mellem hver post"
#. Print Command
#: ../print_gui.c:318
msgid "Print Command (e.g. lpr, or cat > file.ps)"
msgstr "Udskriftskommando (fx lpr, eller cat > fil.ps)"
#: ../restore_gui.c:68 ../restore_gui.c:229
msgid "Restore Handheld"
msgstr "Genskab hndholdt"
#. Label for instructions
#: ../restore_gui.c:249
msgid "To restore your handheld:"
msgstr "Genskab indhold p hndholdt ved:"
#: ../restore_gui.c:252
msgid ""
"1. Choose all the applications you wish to restore. The default is all."
msgstr "1. Vlg alle de programmer du vil genskabe. Normalt alle."
#: ../restore_gui.c:255
msgid "2. Enter the User Name and User ID."
msgstr "2. Indtast brugernavn og bruger-id."
#: ../restore_gui.c:258
msgid "3. Press the OK button."
msgstr "3. Tryk p O.k.-knappen."
#: ../restore_gui.c:261
msgid "This will overwrite data that is currently on the handheld."
msgstr "Dette vil overskive alle data som der aktuelt er p den hndholdte."
#: ../restore_gui.c:282
msgid "User Name"
msgstr "Brugernavn"
#: ../search_gui.c:120
msgid "datebook"
msgstr "aftalebog"
#: ../search_gui.c:201
msgid "address"
msgstr "adresse"
#: ../search_gui.c:267
#, fuzzy
msgid "todo"
msgstr "Synk huskeliste"
#: ../search_gui.c:321
msgid "memo"
msgstr "notat"
#: ../search_gui.c:377
msgid "plugin ?"
msgstr "modul ?"
#: ../search_gui.c:449
msgid "No records found"
msgstr "Ingen poster fundet"
#: ../search_gui.c:547 ../search_gui.c:610
msgid "Search"
msgstr "Sg"
#: ../search_gui.c:563
msgid "Search for: "
msgstr "Sg efter: "
#: ../search_gui.c:570
msgid "Case Sensitive"
msgstr "Skeln mellem store/sm bogstaver"
#: ../sync.c:139
#, fuzzy
msgid "open lock file failed\n"
msgstr "Kan ikke bne logfil\n"
#: ../sync.c:152
#, fuzzy
msgid "lock failed\n"
msgstr "mislykkedes.\n"
#: ../sync.c:155
#, c-format
msgid "sync file is locked by pid %d\n"
msgstr ""
#: ../sync.c:189
msgid "unlock failed\n"
msgstr ""
#: ../sync.c:192
#, c-format
msgid "sync is locked by pid %d\n"
msgstr ""
#: ../sync.c:244
#, fuzzy, c-format
msgid "%s: press the hotsync button on the cradle or \"kill %d\"\n"
msgstr "Tryk p HotSync-knappen nu\n"
#: ../sync.c:297
#, c-format
msgid "Exiting with status %s\n"
msgstr "Afsluttede med status %s\n"
#: ../sync.c:298
msgid "Finished\n"
msgstr "Afsluttet\n"
#: ../sync.c:432
msgid "Finished installing user information.\n"
msgstr ""
#: ../sync.c:457 ../sync.c:575
msgid "Check your serial port and settings\n"
msgstr "Kontrollr serielporten og indstillingerne\n"
#: ../sync.c:674
#, c-format
msgid " Syncing on device %s\n"
msgstr " Synkroniserer p enhed %s\n"
#: ../sync.c:675
msgid " Press the HotSync button now\n"
msgstr "Tryk p HotSync-knappen nu\n"
#: ../sync.c:727 ../sync.c:749 ../sync.c:771
#, c-format
msgid "Last Synced Username-->\"%s\"\n"
msgstr "Seneste synket brugernavn -->\"%s\"\n"
#: ../sync.c:728 ../sync.c:750 ../sync.c:772
#, c-format
msgid "Last Synced UserID-->\"%d\"\n"
msgstr "Seneste synket bruger-id -->\"%d\"\n"
#: ../sync.c:729 ../sync.c:751 ../sync.c:773
#, c-format
msgid " This Username-->\"%s\"\n"
msgstr " Dette brugernavn -->\"%s\"\n"
#: ../sync.c:730 ../sync.c:752 ../sync.c:774
#, c-format
msgid " This User ID-->%d\n"
msgstr " Denne bruger-id-->%d\n"
#: ../sync.c:795
#, c-format
msgid "Username is \"%s\"\n"
msgstr "Brugernavn er \"%s\"\n"
#: ../sync.c:796
#, c-format
msgid "User ID is %d\n"
msgstr "Bruger-id er %d\n"
#: ../sync.c:798 ../sync.c:804
#, c-format
msgid "lastSyncPC = %d\n"
msgstr "Seneste SyncPC = %d\n"
#: ../sync.c:799
#, c-format
msgid "This PC = %lu\n"
msgstr "Denne pc = %lu\n"
#: ../sync.c:800
#, c-format
msgid "Last Username = [%s]\n"
msgstr "Seneste brugernavn [%s]\n"
#: ../sync.c:801
#, c-format
msgid "Last UserID = %d\n"
msgstr "Seneste bruger-id = %d\n"
#: ../sync.c:802
#, c-format
msgid "Username = [%s]\n"
msgstr "Brugernavn = [%s]\n"
#: ../sync.c:803
#, c-format
msgid "userID = %d\n"
msgstr "Bruger-id = %d\n"
#: ../sync.c:821
msgid "Sync canceled\n"
msgstr "Synkronisering annulleret\n"
#: ../sync.c:843
msgid "Finished restoring handheld.\n"
msgstr "Afsluttede genskabelse af hndholdt.\n"
#: ../sync.c:844
msgid "You may need to sync to update J-Pilot.\n"
msgstr "Du skal mske synkronisere for at opdatere J-Pilot.\n"
#: ../sync.c:874
msgid "Doing a fast sync.\n"
msgstr "Udfrer hurtig synkronisering\n"
#: ../sync.c:913
msgid "Doing a slow sync.\n"
msgstr "Udfrer en langsom synkronisering\n"
#: ../sync.c:1014
msgid "Thank you for using J-Pilot."
msgstr "Tak for at du bruger J-Pilot."
#: ../sync.c:1056
msgid "Finished.\n"
msgstr "Frdig.\n"
#: ../sync.c:1092 ../sync.c:2611
#, c-format
msgid "Syncing %s\n"
msgstr "Synkroniserer %s\n"
#: ../sync.c:1098 ../sync.c:2275 ../sync.c:2617
#, c-format
msgid "Wrote an %s record."
msgstr "Udskrev en %s-post."
#: ../sync.c:1100 ../sync.c:2277 ../sync.c:2619
#, c-format
msgid "Writing an %s record failed."
msgstr "Udskrivning af en %s-post mislykkedes."
#: ../sync.c:1102 ../sync.c:2279 ../sync.c:2621
#, c-format
msgid "Deleting an %s record failed."
msgstr "Sletning af en %s-post mislykkedes."
#: ../sync.c:1104 ../sync.c:2281 ../sync.c:2623
#, c-format
msgid "Deleted an %s record."
msgstr "Slettede en %s-post."
#: ../sync.c:1107 ../sync.c:2284 ../sync.c:2626
#, c-format
msgid "Wrote a %s record."
msgstr "Udskrev en %s-post."
#: ../sync.c:1109 ../sync.c:2286 ../sync.c:2628
#, c-format
msgid "Writing a %s record failed."
msgstr "Udskrivning af en %s-post mislykkedes."
#: ../sync.c:1111 ../sync.c:2288 ../sync.c:2630
#, c-format
msgid "Deleting a %s record failed."
msgstr "Sletning af en %s-post mislykkedes."
#: ../sync.c:1113 ../sync.c:2290 ../sync.c:2632
#, c-format
msgid "Deleted a %s record."
msgstr "Slettede en %s-post."
#: ../sync.c:1133
#, c-format
msgid "number of records = %d\n"
msgstr "Antal poster = %d\n"
#: ../sync.c:1260 ../sync.c:2435
msgid ""
"dlp_DeleteRecord failed\n"
"This could be because the record was already deleted on the Palm\n"
msgstr ""
"dlp_DeleteRecord mislykkedes\n"
"Det kan vre fordi posten allerede var slettet p Palm'en\n"
#: ../sync.c:1358 ../sync.c:1770
#, c-format
msgid "%s (Creator ID '%s') is up to date, fetch skipped.\n"
msgstr "%s (oprettet af '%s') er opdateret, dropper overfring\n"
#: ../sync.c:1362 ../sync.c:1774
#, c-format
msgid "Fetching '%s' (Creator ID '%s')... "
msgstr "Henter '%s' (oprettet af '%s')... "
#: ../sync.c:1369 ../sync.c:1780
#, c-format
msgid "Failed, unable to create file %s\n"
msgstr "Fejlede, kunne ikke oprette filen %s\n"
#: ../sync.c:1380 ../sync.c:1789
#, fuzzy, c-format
msgid "Failed, unable to back up database %s\n"
msgstr "Fejlede, kunne ikke sikkerhedskopiere databasen\n"
#: ../sync.c:1384 ../sync.c:1793 ../sync.c:1975
msgid "OK\n"
msgstr "O.k.\n"
#: ../sync.c:1687
#, c-format
msgid "Skipping %s (Creator ID '%s')\n"
msgstr "Overspringer %s (oprettet af '%s')\n"
#: ../sync.c:1861
#, c-format
msgid "Installing %s "
msgstr "Installerer %s "
#: ../sync.c:1867
#, fuzzy, c-format
msgid ""
"\n"
"Unable to open file: '%s': %s!\n"
msgstr ""
"\n"
"Kan ikke bne '%s'!\n"
#: ../sync.c:1871
#, fuzzy, c-format
msgid ""
"\n"
"Unable to sync file: '%s': file corrupted?\n"
msgstr ""
"\n"
"Kan ikke bne '%s'!\n"
#: ../sync.c:1883
#, c-format
msgid "(Creator ID is '%s')..."
msgstr "(oprettet af '%s') ..."
#: ../sync.c:1903 ../sync.c:1916 ../sync.c:1931 ../sync.c:1944
#, fuzzy, c-format
msgid ""
"\n"
"Unable to open file: %s\n"
msgstr "Kan ikke bne %s\n"
#: ../sync.c:1960
#, c-format
msgid "Install %s failed"
msgstr "Installering af %s mislykkedes"
#: ../sync.c:1964
msgid "Failed.\n"
msgstr "mislykkedes.\n"
#. the space after the %s is a hack, the last char gets cut off
#: ../sync.c:1971
#, c-format
msgid "Installed %s "
msgstr "%s installeret"
#: ../sync.c:1995 ../sync.c:2001
#, fuzzy, c-format
msgid "Unable to open file: %s%s\n"
msgstr "Kan ikke bne %s\n"
#: ../sync.c:2180
#, fuzzy
msgid "Unable to read home dir\n"
msgstr "Kan ikke bne %s\n"
#: ../sync.c:2709
#, c-format
msgid "palm: number of records = %d\n"
msgstr "Palm: antal poster = %d\n"
#: ../sync.c:2710
#, c-format
msgid "disk: number of records = %d\n"
msgstr "Disk: antal poster = %d\n"
#: ../sync.c:2888
#, fuzzy, c-format
msgid "%s:%d Error getting app info %s\n"
msgstr "Fejl ved lsning af appinfo-blok for %s\n"
#: ../sync.c:2894 ../sync.c:2936
#, fuzzy, c-format
msgid "%s:%d Error unpacking app info %s\n"
msgstr "Fejl ved lsning af appinfo-blok for %s\n"
#: ../sync.c:2916 ../sync.c:2928
#, c-format
msgid "Error reading appinfo block for %s\n"
msgstr "Fejl ved lsning af appinfo-blok for %s\n"
#. Fix - need a func for this logging
#: ../sync.c:3072 ../sync.c:3076
#, c-format
msgid "Could not add category %s to remote.\n"
msgstr "Kunne ikke tilfje kategori %s p ekstern.\n"
#: ../sync.c:3073 ../sync.c:3079
msgid "Too many categories on remote.\n"
msgstr "For mange kategorier p ekstern.\n"
#: ../sync.c:3074 ../sync.c:3082
#, c-format
msgid "All records on desktop in %s will be moved to %s.\n"
msgstr ""
#: ../todo.c:248
#, fuzzy, c-format
msgid "ToDo description text > %d, truncating to %d\n"
msgstr "Advarsel ToDo-beskrivelsen er for lagn, forkorter til %d\n"
#: ../todo.c:255
#, fuzzy, c-format
msgid "ToDo note text > %d, truncating to %d\n"
msgstr "Advarsel ToDo-noten er for lang, afkorter til %d\n"
#: ../todo.c:380
#, fuzzy, c-format
msgid "%s:%d Error reading category info %s\n"
msgstr "Fejl ved lsning af %s: %s %d\n"
#: ../todo_gui.c:149
msgid "Due Date"
msgstr "Forfaldsdato"
#: ../todo_gui.c:535
msgid "File doesn't appear to be todo.dat format\n"
msgstr "Filen lader ikke til at vre i todo.dat-format\n"
#: ../todo_gui.c:691 ../todo_gui.c:706
#, c-format
msgid "Can't export todo %d\n"
msgstr ""
#: ../todo_gui.c:1547
msgid "Priority out of range\n"
msgstr ""
#: ../todo_gui.c:1774 ../KeyRing/keyring.c:1077
#, c-format
msgid "No date"
msgstr "Ingen dato"
#. The completed check box
#: ../todo_gui.c:2206
msgid "Completed"
msgstr "Udfrt"
#: ../todo_gui.c:2214
msgid "Priority: "
msgstr "Prioritet: "
#: ../todo_gui.c:2234
msgid "Date Due:"
msgstr "Forfaldsdato:"
#. Note textbox
#: ../todo_gui.c:2296 ../Expense/expense.c:1853 ../KeyRing/keyring.c:2237
msgid "Note"
msgstr "Notat"
#: ../utils.c:72
msgid " -v displays version and compile options and exits.\n"
msgstr ""
#: ../utils.c:74
msgid " -d displays debug info to stdout.\n"
msgstr ""
#: ../utils.c:75
msgid " -p skips loading plugins.\n"
msgstr ""
#: ../utils.c:76
msgid " -a ignores missed alarms since the last time program was run.\n"
msgstr ""
#: ../utils.c:77
msgid " -A ignores all alarms past and future.\n"
msgstr ""
#: ../utils.c:78
msgid " -i makes program iconify itself upon launch.\n"
msgstr ""
#: ../utils.c:79
msgid " The PILOTPORT, and PILOTRATE env variables are used to specify\n"
msgstr ""
#: ../utils.c:80
msgid " which port to sync on, and at what speed.\n"
msgstr ""
#: ../utils.c:81
msgid " If PILOTPORT is not set then it defaults to /dev/pilot.\n"
msgstr ""
#: ../utils.c:107
msgid "Date compiled"
msgstr ""
#: ../utils.c:108
msgid "Compiled with these options:"
msgstr ""
#: ../utils.c:110
#, fuzzy
msgid "Installed Path"
msgstr "%s installeret"
#: ../utils.c:112
msgid "pilot-link version"
msgstr ""
#: ../utils.c:116
msgid "USB support"
msgstr ""
#: ../utils.c:118 ../utils.c:124 ../utils.c:130 ../utils.c:136 ../utils.c:142
#: ../utils.c:148 ../utils.c:154
#, fuzzy
msgid "yes"
msgstr "Ja"
#: ../utils.c:120 ../utils.c:126 ../utils.c:132 ../utils.c:138 ../utils.c:144
#: ../utils.c:150 ../utils.c:156
#, fuzzy
msgid "no"
msgstr "ingen"
#: ../utils.c:122
#, fuzzy
msgid "Private record support"
msgstr "Udskriv alle poster"
#: ../utils.c:128
msgid "Datebk support"
msgstr ""
#: ../utils.c:134
#, fuzzy
msgid "Plugin support"
msgstr "/Indstik"
#: ../utils.c:140
msgid "Manana support"
msgstr ""
#: ../utils.c:146
msgid "NLS support (foreign languages)"
msgstr ""
#: ../utils.c:152
msgid "GTK2 support"
msgstr ""
#: ../utils.c:207
#, c-format
msgid "Today is %A, %x %X"
msgstr "I dag er det %A %x %X"
#: ../utils.c:209
#, c-format
msgid "Today is %%A, %s %s"
msgstr "I dag er det %%A %s %s"
#: ../utils.c:1114
msgid "Today"
msgstr "I dag"
#: ../utils.c:1330
msgid "Save Changed Record?"
msgstr "Gem ndret post?"
#: ../utils.c:1331
msgid "Do you want to save the changes to this record?"
msgstr "Vil du gemme ndringerne i denne post?"
#: ../utils.c:1336
msgid "Save New Record?"
msgstr "Gem ny post?"
#: ../utils.c:1337
msgid "Do you want to save this new record?"
msgstr "nsker du at gemme denne nye post?"
#. Not home;
#: ../utils.c:1357 ../KeyRing/keyring.c:1631
msgid "Can't get HOME environment variable\n"
msgstr ""
#: ../utils.c:1364
msgid "Your HOME environment variable is too long for me\n"
msgstr ""
#. Can't create directory
#: ../utils.c:1389 ../utils.c:1393
#, fuzzy, c-format
msgid "Can't create directory %s\n"
msgstr "Kunne ikke tilfje kategori %s p ekstern.\n"
#: ../utils.c:1399
#, fuzzy, c-format
msgid ""
"%s doesn't appear to be a directory.\n"
"I need it to be.\n"
msgstr "Filen lader ikke til at vre i address.dat-format\n"
#: ../utils.c:1405
#, fuzzy, c-format
msgid "I can't write files in directory %s\n"
msgstr "Kunne ikke tilfje kategori %s p ekstern.\n"
#: ../utils.c:1461 ../utils.c:1470
msgid "Error writing PC header to file: next_id\n"
msgstr ""
#: ../utils.c:1466
msgid "Error writing next id to file: next_id\n"
msgstr ""
#: ../utils.c:1483
#, fuzzy
msgid "Error opening file: next_id\n"
msgstr "Fejl ved bning af fil"
#: ../utils.c:1657
#, fuzzy, c-format
msgid "Couldn't find empty DB file %s: %s\n"
msgstr "Kunne ikke finde top DB-fil.\n"
#. EPN is jpilot, or copilot depending on configure
#: ../utils.c:1660
#, fuzzy
msgid " may not be installed.\n"
msgstr "jpilot kan ikke installeres.\n"
#: ../utils.c:1839
#, fuzzy
msgid "Error reading file"
msgstr "Fejl ved lsning af %s\n"
#: ../utils.c:2516
msgid "PC ID is 0.\n"
msgstr "pc id er 0.\n"
#: ../utils.c:2517
#, c-format
msgid "I generated a new PC ID. It is %lu\n"
msgstr "En ny pc id er lavet. Den er %lu\n"
#: ../weekview_gui.c:326
msgid "Weekly View"
msgstr "Ugentlig visning"
#: ../Expense/expense.c:99
msgid "Australia"
msgstr ""
#: ../Expense/expense.c:100
msgid "Austria"
msgstr ""
#: ../Expense/expense.c:101
msgid "Belgium"
msgstr ""
#: ../Expense/expense.c:102
msgid "Brazil"
msgstr ""
#: ../Expense/expense.c:103
msgid "Canada"
msgstr ""
#: ../Expense/expense.c:104
msgid "Denmark"
msgstr ""
#: ../Expense/expense.c:105
msgid "EU (Euro)"
msgstr ""
#: ../Expense/expense.c:106
msgid "Finland"
msgstr ""
#: ../Expense/expense.c:107
#, fuzzy
msgid "France"
msgstr "Annullr"
#: ../Expense/expense.c:108
msgid "Germany"
msgstr ""
#: ../Expense/expense.c:109
msgid "Hong Kong"
msgstr ""
#: ../Expense/expense.c:110
msgid "Iceland"
msgstr ""
#: ../Expense/expense.c:111
msgid "India"
msgstr ""
#: ../Expense/expense.c:112
#, fuzzy
msgid "Indonesia"
msgstr "ingen"
#: ../Expense/expense.c:113
msgid "Ireland"
msgstr ""
#: ../Expense/expense.c:114
#, fuzzy
msgid "Italy"
msgstr "Installr"
#: ../Expense/expense.c:115
msgid "Japan"
msgstr ""
#: ../Expense/expense.c:116
msgid "Korea"
msgstr ""
#: ../Expense/expense.c:117
msgid "Luxembourg"
msgstr ""
#: ../Expense/expense.c:118
msgid "Malaysia"
msgstr ""
#: ../Expense/expense.c:119
msgid "Mexico"
msgstr ""
#: ../Expense/expense.c:120
msgid "Netherlands"
msgstr ""
#: ../Expense/expense.c:121
msgid "New Zealand"
msgstr ""
#: ../Expense/expense.c:122
msgid "Norway"
msgstr ""
#: ../Expense/expense.c:123
msgid "P.R.C."
msgstr ""
#: ../Expense/expense.c:124
msgid "Philippines"
msgstr ""
#: ../Expense/expense.c:125
msgid "Singapore"
msgstr ""
#: ../Expense/expense.c:126
#, fuzzy
msgid "Spain"
msgstr "Tog"
#: ../Expense/expense.c:127
#, fuzzy
msgid "Sweden"
msgstr "uge"
#: ../Expense/expense.c:128
msgid "Switzerland"
msgstr ""
#: ../Expense/expense.c:129
#, fuzzy
msgid "Taiwan"
msgstr "Tog"
#: ../Expense/expense.c:130
#, fuzzy
msgid "Thailand"
msgstr "Tog"
#: ../Expense/expense.c:131
msgid "United Kingdom"
msgstr ""
#: ../Expense/expense.c:132
msgid "United States"
msgstr ""
#: ../Expense/expense.c:489 ../Expense/expense.c:500
msgid "Expense"
msgstr "Expense"
#: ../Expense/expense.c:521 ../Expense/expense.c:1401
msgid "Airfare"
msgstr "Flyrejse"
#: ../Expense/expense.c:523 ../Expense/expense.c:1402
msgid "Breakfast"
msgstr "Morgenmad"
#: ../Expense/expense.c:525 ../Expense/expense.c:1403
msgid "Bus"
msgstr "Bus"
#: ../Expense/expense.c:527 ../Expense/expense.c:1404
msgid "BusinessMeals"
msgstr "Forretningsfrokoster"
#: ../Expense/expense.c:529 ../Expense/expense.c:1405
msgid "CarRental"
msgstr "Billeje"
#: ../Expense/expense.c:531 ../Expense/expense.c:1406
msgid "Dinner"
msgstr "Middag"
#: ../Expense/expense.c:533 ../Expense/expense.c:1407
msgid "Entertainment"
msgstr "Fornjelse"
#: ../Expense/expense.c:535 ../Expense/expense.c:1408
msgid "Fax"
msgstr "Fax"
#: ../Expense/expense.c:537 ../Expense/expense.c:1409
msgid "Gas"
msgstr "Benzin"
#: ../Expense/expense.c:539 ../Expense/expense.c:1410
msgid "Gifts"
msgstr "Gaver"
#: ../Expense/expense.c:541 ../Expense/expense.c:1411
msgid "Hotel"
msgstr "Hotel"
#: ../Expense/expense.c:543 ../Expense/expense.c:1412
msgid "Incidentals"
msgstr "Uforudsete"
#: ../Expense/expense.c:545 ../Expense/expense.c:1413
msgid "Laundry"
msgstr "Tjvask"
#: ../Expense/expense.c:547 ../Expense/expense.c:1414
msgid "Limo"
msgstr "Limousine"
#: ../Expense/expense.c:549 ../Expense/expense.c:1415
msgid "Lodging"
msgstr "Overnatning"
#: ../Expense/expense.c:551 ../Expense/expense.c:1416
msgid "Lunch"
msgstr "Frokost"
#: ../Expense/expense.c:553 ../Expense/expense.c:1417
msgid "Mileage"
msgstr "Krsel"
#: ../Expense/expense.c:557 ../Expense/expense.c:1419
msgid "Parking"
msgstr "Parkering"
#: ../Expense/expense.c:559 ../Expense/expense.c:1420
msgid "Postage"
msgstr "Porto"
#: ../Expense/expense.c:561 ../Expense/expense.c:1421
msgid "Snack"
msgstr "Snack"
#: ../Expense/expense.c:563 ../Expense/expense.c:1422
msgid "Subway"
msgstr "Metro"
#: ../Expense/expense.c:565 ../Expense/expense.c:1423
msgid "Supplies"
msgstr "Leverencer"
#: ../Expense/expense.c:567 ../Expense/expense.c:1424
msgid "Taxi"
msgstr "Taxi"
#: ../Expense/expense.c:569 ../Expense/expense.c:1425
msgid "Telephone"
msgstr "Telefon"
#: ../Expense/expense.c:571 ../Expense/expense.c:1426
msgid "Tips"
msgstr "Drikkepenge"
#: ../Expense/expense.c:573 ../Expense/expense.c:1427
msgid "Tolls"
msgstr "Told"
#: ../Expense/expense.c:575 ../Expense/expense.c:1428
msgid "Train"
msgstr "Tog"
#: ../Expense/expense.c:589
msgid "AmEx"
msgstr "AmEx"
#: ../Expense/expense.c:591 ../Expense/expense.c:1391
msgid "Cash"
msgstr "Kontant"
#: ../Expense/expense.c:593 ../Expense/expense.c:1392
msgid "Check"
msgstr "Check"
#: ../Expense/expense.c:595
msgid "CreditCard"
msgstr "Kreditkort"
#: ../Expense/expense.c:597
msgid "MasterCard"
msgstr "MasterCard"
#: ../Expense/expense.c:599 ../Expense/expense.c:1395
msgid "Prepaid"
msgstr "Forudbetalt"
#: ../Expense/expense.c:601 ../Expense/expense.c:1396
msgid "VISA"
msgstr "VISA"
#: ../Expense/expense.c:1201
msgid "Expense: Unknown category\n"
msgstr ""
#: ../Expense/expense.c:1207
msgid "Expense: Unknown expense type\n"
msgstr ""
#: ../Expense/expense.c:1213
msgid "Expense: Unknown payment type\n"
msgstr ""
#: ../Expense/expense.c:1390
msgid "American Express"
msgstr "American Express"
#: ../Expense/expense.c:1393
msgid "Credit Card"
msgstr "Kreditkort"
#: ../Expense/expense.c:1394
msgid "Master Card"
msgstr "Master Card"
#. Category Menu
#: ../Expense/expense.c:1678
#, fuzzy
msgid "Category:"
msgstr "Kategori: "
#. Type Menu
#: ../Expense/expense.c:1691
#, fuzzy
msgid "Type:"
msgstr "Type: "
#. Payment Menu
#: ../Expense/expense.c:1704
#, fuzzy
msgid "Payment:"
msgstr "Betaling: "
#. Currency Menu
#: ../Expense/expense.c:1717
#, fuzzy
msgid "Currency:"
msgstr "Aktuelle"
#. Date Spinners
#: ../Expense/expense.c:1730
#, fuzzy
msgid "Date:"
msgstr "dato"
#: ../Expense/expense.c:1747
msgid "Month:"
msgstr "Mned:"
#: ../Expense/expense.c:1761
msgid "Day:"
msgstr "Dag:"
# msgid "WeekView"
# msgstr "Pr. uge"
# msgid "MonthView"
# msgstr "Pr. mnd"
#: ../Expense/expense.c:1775
msgid "Year:"
msgstr "r:"
#. Amount Entry
#: ../Expense/expense.c:1788
#, fuzzy
msgid "Amount:"
msgstr "Belb: "
#. Vendor Entry
#: ../Expense/expense.c:1802
#, fuzzy
msgid "Vendor:"
msgstr "Leverandr: "
#. City
#: ../Expense/expense.c:1816
#, fuzzy
msgid "City:"
msgstr "By: "
#. Attendees
#: ../Expense/expense.c:1830
msgid "Attendees"
msgstr "Deltagere"
#: ../KeyRing/keyring.c:206
msgid "KeyRing: pack_KeyRing(): buf_size too small\n"
msgstr ""
#: ../KeyRing/keyring.c:1546
msgid "Incorrect, Reenter KeyRing Password"
msgstr "Ugyldigt, indtast KeyRing-kode igen"
#: ../KeyRing/keyring.c:1548
#, fuzzy
msgid "Enter a NEW KeyRing Password"
msgstr "Indtast KeyRing-adgangskode"
#: ../KeyRing/keyring.c:1550
msgid "Enter KeyRing Password"
msgstr "Indtast KeyRing-adgangskode"
#: ../KeyRing/keyring.c:1636
msgid "Your HOME environment variable is too long(>1024)\n"
msgstr ""
#: ../KeyRing/keyring.c:1641
#, c-format
msgid "KeyRing: file %s not found.\n"
msgstr ""
#: ../KeyRing/keyring.c:1642
msgid "KeyRing: Try Syncing.\n"
msgstr ""
#: ../KeyRing/keyring.c:1726 ../KeyRing/keyring.c:1737
msgid "KeyRing"
msgstr ""
#: ../KeyRing/keyring.c:2009
#, fuzzy
msgid "Changed"
msgstr "Annullr"
#: ../KeyRing/keyring.c:2009
msgid "Account"
msgstr "Konto"
#. Change Password button
#: ../KeyRing/keyring.c:2024
#, fuzzy
msgid ""
"Change\n"
"KeyRing\n"
"Password"
msgstr "Indtast KeyRing-adgangskode"
#. Name entry
#: ../KeyRing/keyring.c:2200
msgid "name: "
msgstr "navn: "
#. Account entry
#: ../KeyRing/keyring.c:2207
msgid "account: "
msgstr "konto: "
#. Password entry
#: ../KeyRing/keyring.c:2214
msgid "password: "
msgstr "adgangskode: "
#. Last Changed entry
#: ../KeyRing/keyring.c:2221
msgid "last changed: "
msgstr ""
#. Generate Password button (creates random password)
#: ../KeyRing/keyring.c:2231
#, fuzzy
msgid "Generate Password"
msgstr "Indtast PalmOS-adgangskode"
#: ../SyncTime/synctime.c:48
#, fuzzy
msgid "SyncTime"
msgstr "Synk notat"
#: ../SyncTime/synctime.c:88
msgid "synctime: Palm OS Version 3.25 and 3.30 do not support SyncTime\n"
msgstr ""
#: ../SyncTime/synctime.c:89
msgid "synctime: NOT setting the time on the pilot\n"
msgstr ""
#: ../SyncTime/synctime.c:94
msgid "synctime: Setting the time on the pilot... "
msgstr ""
#: ../SyncTime/synctime.c:99
#, fuzzy
msgid "Done\n"
msgstr "Frdig"
#~ msgid "Quit"
#~ msgstr "Afslut"
#~ msgid "Help"
#~ msgstr "Hjlp"
#, fuzzy
#~ msgid "Directory"
#~ msgstr "%s er et katalog"
#~ msgid "Overwrite File"
#~ msgstr "Overskriver fil"
#, fuzzy
#~ msgid "Filename"
#~ msgstr "navn: "
#~ msgid "Sync"
#~ msgstr "Synk"
#, fuzzy
#~ msgid "Add the new record Ctrl+Enter"
#~ msgstr "Skjul private poster"
#~ msgid "Backup"
#~ msgstr "Tag sikkerhedskopi"
#~ msgid "Quit!"
#~ msgstr "Afslut!"
#, fuzzy
#~ msgid "Show Preferences"
#~ msgstr "Indstillinger"
#~ msgid "About Expense"
#~ msgstr "Om Expense"
#, fuzzy
#~ msgid "About KeyRing"
#~ msgstr "Om Expense"
#~ msgid "\n"
#~ msgstr "\n"
#, fuzzy
#~ msgid ""
#~ " [-v] || [-h] || [-d] || [-a] || [-A] || [-i]\n"
#~ " -v displays version and compile options and exits.\n"
#~ " -h displays help and exits.\n"
#~ " -d displays debug info to stdout.\n"
#~ " -p do not load plugins.\n"
#~ " -a ignore missed alarms since the last time this program was run.\n"
#~ " -A ignore all alarms, past and future.\n"
#~ " -i makes jpilot iconify itself upon launch\n"
#~ " The PILOTPORT, and PILOTRATE env variables are used to specify\n"
#~ " which port to sync on, and at what speed.\n"
#~ " If PILOTPORT is not set then it defaults to /dev/pilot.\n"
#~ msgstr ""
#~ " [ [-v] || [-h] || [-d] || [-a] || [-A]\n"
#~ " -v viser versionsnummer og afslutter.\n"
#~ " -h viser hjlp og afslutter.\n"
#~ " -d viser fejlsgningsoplysninger p stdud.\n"
#~ " -p undlader at indlse indstik.\n"
#~ " -a ignorerer ubehandlede alarmer, fra siden sidste gang programmet blev "
#~ "krt.\n"
#~ " -A ignorr alle alarmer, gamle og fremtidige\n"
#~ " Miljvariablene PILOTPORT og PILOTRATE bruges til at angive hvilken\n"
#~ " port der skal synkroniseres p samt med hvilken hastighed.\n"
#~ " Hvis PILOTPORT ikke er sat, benyttes /dev/pilot.\n"
#~ msgid "slow_sync_application(): Out of memory\n"
#~ msgstr "slow_sync_application(): Lb tr for hukommelse\n"
#~ msgid "dlp_WriteRecord failed\n"
#~ msgstr "dlp_WriteRecord mislykkedes\n"
#~ msgid ""
#~ "\n"
#~ "Unable to open '%s'!\n"
#~ msgstr ""
#~ "\n"
#~ "Kan ikke bne '%s'!\n"
#, fuzzy
#~ msgid "Cannot open %s_to_install file\n"
#~ msgstr "Kan ikke bne logfil\n"
#, fuzzy
#~ msgid "Cannot open %s_to_install.tmp file\n"
#~ msgstr "_to_install.tmp-fil\n"
#~ msgid "fast_sync_local_recs(): Out of memory\n"
#~ msgstr "fast_sync_local_recs(): Lbet tr for hukommelse\n"
#~ msgid "Error reading at %s : %s %d\n"
#~ msgstr "Fejl ved lsning af %s: %s %d\n"
#~ msgid "Warning ToDo description too long, truncating to %d\n"
#~ msgstr "Advarsel ToDo-beskrivelsen er for lagn, forkorter til %d\n"
#~ msgid "Serial Rate "
#~ msgstr "Seriel overfringshastighed "
#~ msgid "Cannot open "
#~ msgstr "Kan ikke bne "
#~ msgid "_to_install file\n"
#~ msgstr "_to_install-fil\n"
#~ msgid "RTh"
#~ msgstr "to"
#~ msgid "Time:"
#~ msgstr "Tid:"
#~ msgid ""
#~ "%s %s was written by\n"
#~ "Judd Montgomery (Copyright) 1999-2002.\n"
#~ "judd@jpilot.org\n"
#~ "http://jpilot.org\n"
#~ msgstr ""
#~ "%s %s blev skrevet af\n"
#~ "Judd Montgomery (c) 1999-2002.\n"
#~ "judd@jpilot.org\n"
#~ "http://jpilot.org\n"
#~ msgid "Last Syned UserID-->\"%d\"\n"
#~ msgstr "Seneste synket bruger-id -->\"%d\"\n"
|