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
|
<?xml version="1.0" encoding="utf-8" standalone="yes"?>
<Translation>
<StringTable Name="KPRes" Namespace="KeePass.Resources">
<Data Name="Abort">
<Value>Abort</Value>
</Data>
<Data Name="AbortTrigger">
<Value>Abort current trigger execution</Value>
</Data>
<Data Name="Action">
<Value>Action</Value>
</Data>
<Data Name="ActivateDatabaseTab">
<Value>Activate database (select tab)</Value>
</Data>
<Data Name="Active">
<Value>Active</Value>
</Data>
<Data Name="AddEntry">
<Value>Add Entry</Value>
</Data>
<Data Name="AddEntryDesc">
<Value>Create a new entry.</Value>
</Data>
<Data Name="AddGroup">
<Value>Add Group</Value>
</Data>
<Data Name="AddGroupDesc">
<Value>Create a new entry group.</Value>
</Data>
<Data Name="AddStringField">
<Value>Add Entry String Field</Value>
</Data>
<Data Name="AddStringFieldDesc">
<Value>Create a new string field for the current entry.</Value>
</Data>
<Data Name="AdminPassword">
<Value>Administrator password</Value>
</Data>
<Data Name="Advanced">
<Value>Advanced</Value>
</Data>
<Data Name="AfterDatabaseOpen">
<Value>After Opening a Database</Value>
</Data>
<Data Name="AlignCenter">
<Value>Align Center</Value>
</Data>
<Data Name="AlignLeft">
<Value>Align Left</Value>
</Data>
<Data Name="AlignRight">
<Value>Align Right</Value>
</Data>
<Data Name="All">
<Value>All</Value>
</Data>
<Data Name="AllDataInclOrg">
<Value>All Data (Incl. Organizational Data)</Value>
</Data>
<Data Name="AllFiles">
<Value>All Files</Value>
</Data>
<Data Name="AllSupportedFiles">
<Value>All Supported Files</Value>
</Data>
<Data Name="AllUsers">
<Value>All Users</Value>
</Data>
<Data Name="AlwaysP">
<Value>always '{PARAM}'</Value>
</Data>
<Data Name="Application">
<Value>Application</Value>
</Data>
<Data Name="ApplicationExit">
<Value>Application exit</Value>
</Data>
<Data Name="ApplicationInitialized">
<Value>Application initialized</Value>
</Data>
<Data Name="ApplicationStarted">
<Value>Application started and ready</Value>
</Data>
<Data Name="Arguments">
<Value>Arguments</Value>
</Data>
<Data Name="Ascending">
<Value>&Ascending</Value>
</Data>
<Data Name="AskContinue">
<Value>Do you want to continue?</Value>
</Data>
<Data Name="AssociationsLower">
<Value>association(s)</Value>
</Data>
<Data Name="Asterisks">
<Value>Asterisks</Value>
</Data>
<Data Name="AttachedExistsAlready">
<Value>The following file has already been attached to the current entry:</Value>
</Data>
<Data Name="AttachExtDiscardDesc">
<Value>Discard any changes made to the temporary file and do not modify the current attachment.</Value>
</Data>
<Data Name="AttachExtImportDesc">
<Value>Replace the attachment by the (modified) temporary file.</Value>
</Data>
<Data Name="AttachExtOpened">
<Value>KeePass has extracted the attachment to a (EFS-encrypted) temporary file and opened it using an external application.</Value>
</Data>
<Data Name="AttachExtOpenedPost">
<Value>After viewing/editing and closing the file in the external application, please choose how to continue</Value>
</Data>
<Data Name="AttachExtSecDel">
<Value>In any case, KeePass will securely delete the temporary file afterwards.</Value>
</Data>
<Data Name="AttachFailed">
<Value>Failed to attach file:</Value>
</Data>
<Data Name="AttachFiles">
<Value>Attach Files To Entry</Value>
</Data>
<Data Name="Attachments">
<Value>Attachments</Value>
</Data>
<Data Name="AttachmentSave">
<Value>Save Attached File As</Value>
</Data>
<Data Name="AttachmentsSave">
<Value>Save attached files to:</Value>
</Data>
<Data Name="AttachNewRename">
<Value>Do you wish to rename the new file or overwrite the existing attached file?</Value>
</Data>
<Data Name="AttachNewRenameRemarks0">
<Value>Click [Yes] to rename the new file.</Value>
</Data>
<Data Name="AttachNewRenameRemarks1">
<Value>Click [No] to overwrite the existing attached file.</Value>
</Data>
<Data Name="AttachNewRenameRemarks2">
<Value>Click [Cancel] to skip this file.</Value>
</Data>
<Data Name="Author">
<Value>Author</Value>
</Data>
<Data Name="Auto">
<Value>Auto</Value>
</Data>
<Data Name="AutoCreateNew">
<Value>Automatically create new</Value>
</Data>
<Data Name="AutoGeneratedPasswordSettings">
<Value>Automatically generated passwords for new entries</Value>
</Data>
<Data Name="Automatic">
<Value>Automatic</Value>
</Data>
<Data Name="AutoRememberOpenLastFile">
<Value>Remember and automatically open last used database on startup</Value>
</Data>
<Data Name="AutoSaveAfterEntryEdit">
<Value>Automatically save after modifying an entry using the entry editing dialog</Value>
</Data>
<Data Name="AutoSaveAtExit">
<Value>Automatically save when closing/locking the database</Value>
</Data>
<Data Name="AutoShowExpiredEntries">
<Value>Show expired entries (if any)</Value>
</Data>
<Data Name="AutoShowSoonToExpireEntries">
<Value>Show entries that will expire soon (if any)</Value>
</Data>
<Data Name="AutoSortDeactivateQ">
<Value>Do you want to deactivate automatic sorting?</Value>
</Data>
<Data Name="AutoSortNoRearrange">
<Value>Entries currently cannot be rearranged, because automatic sorting is activated.</Value>
</Data>
<Data Name="AutoType">
<Value>Auto-Type</Value>
</Data>
<Data Name="AutoTypeAbortedOnWindow">
<Value>Auto-Type has been aborted, because the target window is disallowed by the application policy (defined by your administrator).</Value>
</Data>
<Data Name="AutoTypeAlwaysShowSelDialog">
<Value>Always show global auto-type entry selection dialog</Value>
</Data>
<Data Name="AutoTypeCancelOnTitleChange">
<Value>Cancel auto-type when the target window title changes</Value>
</Data>
<Data Name="AutoTypeCancelOnWindowChange">
<Value>Cancel auto-type when the target window changes</Value>
</Data>
<Data Name="AutoTypeEntrySelection">
<Value>Auto-Type Entry Selection</Value>
</Data>
<Data Name="AutoTypeEntrySelectionDescLong2">
<Value>The following entries have been found for the currently active target window. Please select the entry that you want to auto-type into the target window.</Value>
</Data>
<Data Name="AutoTypeEntrySelectionDescShort">
<Value>Multiple entries exist for the current window.</Value>
</Data>
<Data Name="AutoTypeGlobalHint">
<Value>If you want KeePass to search the active database for a matching entry and auto-type it, use the 'Global auto-type' hot key.</Value>
</Data>
<Data Name="AutoTypeMatchByTagInTitle">
<Value>An entry matches if one of its tags is contained in the target window title</Value>
</Data>
<Data Name="AutoTypeMatchByTitle">
<Value>An entry matches if its title is contained in the target window title</Value>
</Data>
<Data Name="AutoTypeMatchByUrlHostInTitle">
<Value>An entry matches if the host component of its URL is contained in the target window title</Value>
</Data>
<Data Name="AutoTypeMatchByUrlInTitle">
<Value>An entry matches if its URL is contained in the target window title</Value>
</Data>
<Data Name="AutoTypeObfuscationHint">
<Value>Auto-Type obfuscation may not work with all windows.</Value>
</Data>
<Data Name="AutoTypePrependInitSeqForIE">
<Value>Prepend special initialization sequence for Internet Explorer windows</Value>
</Data>
<Data Name="AutoTypeReleaseAltWithKeyPress">
<Value>Send Alt keypress when only the Alt modifier is active</Value>
</Data>
<Data Name="AutoTypeSelectedNoEntry">
<Value>To use the 'Auto-type selected entry' hot key, you first need to select an entry in KeePass.</Value>
</Data>
<Data Name="AutoTypeSequenceInvalid">
<Value>The specified auto-type sequence is invalid.</Value>
</Data>
<Data Name="AutoTypeUnknownPlaceholder">
<Value>The following auto-type placeholder or special key code is unknown/unsupported:</Value>
</Data>
<Data Name="AutoTypeXDoToolRequired">
<Value>The 'xdotool' utility/package is required for auto-type.</Value>
</Data>
<Data Name="AutoTypeXDoToolRequiredGlobalVer">
<Value>For global auto-type, the 'xdotool' utility/package is required (version 2.20100818.3004 or higher!).</Value>
</Data>
<Data Name="Available">
<Value>Available</Value>
</Data>
<Data Name="BackgroundColor">
<Value>Background Color</Value>
</Data>
<Data Name="BackupDatabase">
<Value>You should regularly create a backup of the database file (onto an independent data storage device).</Value>
</Data>
<Data Name="BackupFile">
<Value>You should create a backup of this file.</Value>
</Data>
<Data Name="BackupLocation">
<Value>Backups are stored here:</Value>
</Data>
<Data Name="BinaryNoConv">
<Value>Binary (no conversion)</Value>
</Data>
<Data Name="Bits">
<Value>Bits</Value>
</Data>
<Data Name="BitsA">
<Value>{PARAM}-bit</Value>
</Data>
<Data Name="BitsEx">
<Value>{PARAM} bits</Value>
</Data>
<Data Name="Blue">
<Value>Blue</Value>
</Data>
<Data Name="Bold">
<Value>Bold</Value>
</Data>
<Data Name="BothForms">
<Value>Both forms</Value>
</Data>
<Data Name="Browser">
<Value>Browser</Value>
</Data>
<Data Name="BuiltIn">
<Value>built-in</Value>
</Data>
<Data Name="BuiltInU">
<Value>Built-in</Value>
</Data>
<Data Name="Button">
<Value>Button</Value>
</Data>
<Data Name="ButtonBack">
<Value>< &Back</Value>
</Data>
<Data Name="ButtonDefault">
<Value>Default button</Value>
</Data>
<Data Name="ButtonFinish">
<Value>&Finish</Value>
</Data>
<Data Name="ButtonNext">
<Value>&Next ></Value>
</Data>
<Data Name="Buttons">
<Value>Buttons</Value>
</Data>
<Data Name="Cancel">
<Value>Cancel</Value>
</Data>
<Data Name="CannotMoveEntriesBcsGroup">
<Value>Cannot move entries because they are not stored in the same group.</Value>
</Data>
<Data Name="ChangeMasterKey">
<Value>Change Master Key</Value>
</Data>
<Data Name="CharsAbbr">
<Value>ch.</Value>
</Data>
<Data Name="CharsStc">
<Value>characters</Value>
</Data>
<Data Name="CheckForUpdAtStart">
<Value>Check for update at KeePass startup</Value>
</Data>
<Data Name="CheckingForUpd">
<Value>Checking for updates</Value>
</Data>
<Data Name="ClassicAdj">
<Value>Classic</Value>
</Data>
<Data Name="ClearKeyCmdLineParams">
<Value>Clear master key command line parameters after using them once</Value>
</Data>
<Data Name="ClearMru">
<Value>&Clear List</Value>
</Data>
<Data Name="Clipboard">
<Value>Clipboard</Value>
</Data>
<Data Name="ClipboardClearDesc">
<Value>Copying sensitive data to the clipboard starts a countdown. After the specified time, the clipboard is cleared.</Value>
</Data>
<Data Name="ClipboardClearInSeconds">
<Value>Clipboard will be cleared in [PARAM] seconds</Value>
</Data>
<Data Name="ClipboardClearOnExit">
<Value>Clear clipboard when closing KeePass</Value>
</Data>
<Data Name="ClipboardClearTime">
<Value>&Clipboard auto-clear time (seconds; main entry list)</Value>
</Data>
<Data Name="ClipboardDataCopied">
<Value>Data copied to clipboard.</Value>
</Data>
<Data Name="ClipboardMain">
<Value>Clipboard (Main Entry List)</Value>
</Data>
<Data Name="ClipboardNoPersist">
<Value>Do not store data in the Windows clipboard history and the cloud clipboard</Value>
</Data>
<Data Name="ClipboardOptionME">
<Value>This option applies to entry clipboard commands in the main window (like 'Copy User Name' and 'Copy Password').</Value>
</Data>
<Data Name="ClipboardViewerIgnoreFormat">
<Value>Use 'Clipboard Viewer Ignore' clipboard format</Value>
</Data>
<Data Name="Close">
<Value>Close</Value>
</Data>
<Data Name="CloseActiveDatabase">
<Value>Close active database</Value>
</Data>
<Data Name="CloseButtonMinimizes">
<Value>Close button [X] minimizes main window instead of terminating the application</Value>
</Data>
<Data Name="CloseDatabase">
<Value>Close Database</Value>
</Data>
<Data Name="ClosingDatabaseFile">
<Value>Closing database file</Value>
</Data>
<Data Name="ClusterCenters2">
<Value>Clusters of similar passwords (excluding TANs).</Value>
</Data>
<Data Name="ClusterCentersDesc">
<Value>Each entry in the list below is the center of a cluster of entries that have similar, but not identical passwords. Click on an entry to see the cluster (list of entries with descending similarity).</Value>
</Data>
<Data Name="Column">
<Value>Column</Value>
</Data>
<Data Name="Columns">
<Value>Columns</Value>
</Data>
<Data Name="Comments">
<Value>Comments</Value>
</Data>
<Data Name="Company">
<Value>Company</Value>
</Data>
<Data Name="CompareEntries">
<Value>Compare Entries</Value>
</Data>
<Data Name="Comparison">
<Value>Comparison</Value>
</Data>
<Data Name="CompatWithOldVer">
<Value>compatible with older KeePass versions/ports</Value>
</Data>
<Data Name="Component">
<Value>Component</Value>
</Data>
<Data Name="Condition">
<Value>Condition</Value>
</Data>
<Data Name="ConfigAffectAdmin">
<Value>Changes to the configuration/policy will affect all users of this KeePass installation.</Value>
</Data>
<Data Name="ConfigAffectUser">
<Value>Changes to the configuration/policy will affect only you. Policy flags that are enforced by the administrator are reset when restarting KeePass.</Value>
</Data>
<Data Name="ConfigEnfAdminUac">
<Value>Write access to the enforced configuration file may require administrator permission. A User Account Control dialog will be displayed, if necessary.</Value>
</Data>
<Data Name="ConfigEnfAllUsers">
<Value>The enforced configuration file applies to all users who use this KeePass installation. Therefore, make sure that your items are suitable for all users.</Value>
</Data>
<Data Name="ConfigEnfChangeValue">
<Value>If you want to change the value of an enforced option, deactivate the enforcement (using this dialog), change the value (using the options dialog) and activate the enforcement again (using this dialog).</Value>
</Data>
<Data Name="ConfigEnfDialogSubset">
<Value>This dialog supports only a subset of all options. More options can be enforced by editing the enforced configuration file using an XML/text editor.</Value>
</Data>
<Data Name="ConfigEnfEdit">
<Value>Edit the enforced configuration file.</Value>
</Data>
<Data Name="ConfigEnfSaveItemsAbout">
<Value>You are about to save items to the enforced configuration file.</Value>
</Data>
<Data Name="ConfigError">
<Value>Configuration error</Value>
</Data>
<Data Name="ConfigOverwriteBackup">
<Value>KeePass will maybe overwrite the configuration file. Therefore, a backup has been created.</Value>
</Data>
<Data Name="ConfigureAutoType">
<Value>Configure Auto-Type</Value>
</Data>
<Data Name="ConfigureAutoTypeDesc">
<Value>Configure auto-type behaviour for this entry.</Value>
</Data>
<Data Name="ConfigureAutoTypeItem">
<Value>Configure Auto-Type Item</Value>
</Data>
<Data Name="ConfigureAutoTypeItemDesc">
<Value>Associate a window title with a keystroke sequence.</Value>
</Data>
<Data Name="ConfigureColumns">
<Value>Configure Columns</Value>
</Data>
<Data Name="ConfigureColumnsDesc">
<Value>Configure entry list columns.</Value>
</Data>
<Data Name="ConfigureKeystrokeSeq">
<Value>Configure Keystroke Sequence</Value>
</Data>
<Data Name="ConfigureKeystrokeSeqDesc">
<Value>Define a default keystroke sequence.</Value>
</Data>
<Data Name="ConfigureOnNewDatabase3">
<Value>Configure New Database</Value>
</Data>
<Data Name="ConfirmExport">
<Value>Confirm Export</Value>
</Data>
<Data Name="ConsiderDashesEq">
<Value>Consider similar dashes as identical</Value>
</Data>
<Data Name="Contact">
<Value>Contact</Value>
</Data>
<Data Name="ContainsOp">
<Value>Contains</Value>
</Data>
<Data Name="CopiedEntryData">
<Value>Copied entry data to clipboard</Value>
</Data>
<Data Name="Copy">
<Value>Copy</Value>
</Data>
<Data Name="CopyAll">
<Value>Copy All</Value>
</Data>
<Data Name="CopyEntriesECmd">
<Value>&Copy Entries (Encrypted)</Value>
</Data>
<Data Name="CopyEntriesUCmd">
<Value>C&opy Entries (Unencrypted)</Value>
</Data>
<Data Name="CopyEntryECmd">
<Value>&Copy Entry (Encrypted)</Value>
</Data>
<Data Name="CopyEntryUCmd">
<Value>C&opy Entry (Unencrypted)</Value>
</Data>
<Data Name="CopyHmacOtp">
<Value>Copy &HMAC-Based OTP</Value>
</Data>
<Data Name="CopyInitialPasswordDesc">
<Value>Copy the password that was current when the dialog was opened</Value>
</Data>
<Data Name="CopyLink">
<Value>Copy Link</Value>
</Data>
<Data Name="CopyNotes">
<Value>Copy &Notes</Value>
</Data>
<Data Name="CopyObject">
<Value>Copy {PARAM}</Value>
</Data>
<Data Name="CopyOfItem">
<Value>Copy</Value>
</Data>
<Data Name="CopyPasswordMenu">
<Value>Copy &Password</Value>
</Data>
<Data Name="CopyTanMenu">
<Value>Co&py TAN</Value>
</Data>
<Data Name="CopyTimeOtp">
<Value>Copy T&ime-Based OTP</Value>
</Data>
<Data Name="CopyTitle">
<Value>Copy &Title</Value>
</Data>
<Data Name="CopyUrls">
<Value>&Copy URL(s)</Value>
</Data>
<Data Name="CopyUrlsInsteadOfOpening">
<Value>Copy URLs to clipboard instead of opening them</Value>
</Data>
<Data Name="CopyUserName">
<Value>Copy User Name</Value>
</Data>
<Data Name="CopyWholeEntries">
<Value>Copy Whole Entries</Value>
</Data>
<Data Name="CorruptionByExt">
<Value>Such a corruption is usually caused by a plugin or a KeePass port. Please try to find out which plugin/port is causing it and report the issue to the corresponding developer.</Value>
</Data>
<Data Name="Count">
<Value>Count</Value>
</Data>
<Data Name="CreateMasterKey">
<Value>Create Master Key</Value>
</Data>
<Data Name="CreateNewDatabase2">
<Value>Create New Database</Value>
</Data>
<Data Name="CreateNewIDs">
<Value>Create new &IDs</Value>
</Data>
<Data Name="CreationTime">
<Value>Creation Time</Value>
</Data>
<Data Name="CredSaveAll">
<Value>Remember user name and password</Value>
</Data>
<Data Name="CredSaveNone">
<Value>Do not remember user name and password</Value>
</Data>
<Data Name="CredSaveUserOnly">
<Value>Remember user name only</Value>
</Data>
<Data Name="CredSpecifyDifferent">
<Value>&Specify different server credentials</Value>
</Data>
<Data Name="CsprojCountError">
<Value>There must be exactly one .csproj or .vbproj file.</Value>
</Data>
<Data Name="CsvImportDesc">
<Value>Import data from a file containing comma-separated values (CSV).</Value>
</Data>
<Data Name="CsvTextFile">
<Value>CSV/Text File</Value>
</Data>
<Data Name="CtrlAltAConflict">
<Value>KeePass' global auto-type hot key Ctrl+Alt+A is in conflict with a system key combination that is producing '{PARAM}'.</Value>
</Data>
<Data Name="CtrlAltAConflictHint">
<Value>You can change the global auto-type hot key to a different key combination in 'Tools' -> 'Options' -> tab 'Integration'.</Value>
</Data>
<Data Name="Current">
<Value>Current</Value>
</Data>
<Data Name="CurrentStyle">
<Value>Current style</Value>
</Data>
<Data Name="Custom">
<Value>Custom</Value>
</Data>
<Data Name="CustomColor">
<Value>custom color</Value>
</Data>
<Data Name="CustomFields">
<Value>Custom Fields</Value>
</Data>
<Data Name="CustomizableHtml">
<Value>Customizable HTML File</Value>
</Data>
<Data Name="CustomTbButtonAdd">
<Value>Add custom toolbar button</Value>
</Data>
<Data Name="CustomTbButtonClicked">
<Value>Custom toolbar button clicked</Value>
</Data>
<Data Name="CustomTbButtonRemove">
<Value>Remove custom toolbar button</Value>
</Data>
<Data Name="Cut">
<Value>Cut</Value>
</Data>
<Data Name="Dark">
<Value>Dark</Value>
</Data>
<Data Name="Data">
<Value>Data</Value>
</Data>
<Data Name="Database">
<Value>Database</Value>
</Data>
<Data Name="DatabaseDescPrompt">
<Value>Enter a short description of the database or leave it empty.</Value>
</Data>
<Data Name="DatabaseFile">
<Value>Database file</Value>
</Data>
<Data Name="DatabaseFileIntro">
<Value>Your data will be stored in a KeePass database file, which is a regular file. After clicking [OK], you will be prompted to specify the location where KeePass should save this file.</Value>
</Data>
<Data Name="DatabaseFileRem">
<Value>It is important that you remember where the database file is stored.</Value>
</Data>
<Data Name="DatabaseHasUnsavedChanges">
<Value>Database has unsaved changes</Value>
</Data>
<Data Name="DatabaseMaintenance">
<Value>Database Maintenance</Value>
</Data>
<Data Name="DatabaseMaintenanceDesc">
<Value>Here you can maintain the currently open database.</Value>
</Data>
<Data Name="DatabaseModifiedNoDot">
<Value>The database has been modified</Value>
</Data>
<Data Name="DatabaseNamePrompt">
<Value>Enter a name for the database or leave it empty.</Value>
</Data>
<Data Name="DatabaseOpenUnknownVersionAsk">
<Value>Show confirmation dialog when opening a database file whose minor format version is unknown</Value>
</Data>
<Data Name="DatabaseOpenUnknownVersionInfo">
<Value>The format version of the selected database file is higher than the one supported by the currently running KeePass instance. Most likely, the database file has been created by a newer KeePass version. KeePass can try to open the database file, but certain data may be lost.</Value>
</Data>
<Data Name="DatabaseOpenUnknownVersionQ">
<Value>Do you want to try opening the database file, possibly losing certain data?</Value>
</Data>
<Data Name="DatabaseOpenUnknownVersionRec">
<Value>In order to avoid data loss, it is recommended to install/use the latest version of KeePass.</Value>
</Data>
<Data Name="DatabaseSettings">
<Value>Database Settings</Value>
</Data>
<Data Name="DatabaseSettingsDesc">
<Value>Here you can configure various database settings.</Value>
</Data>
<Data Name="DataEditorKP">
<Value>KeePass Data Editor</Value>
</Data>
<Data Name="DataLoss">
<Value>If you lose the database file or any of the master key components (or forget the composition), all data stored in the database is lost. KeePass does not have any built-in file backup functionality. There is no backdoor and no universal key that can open your database.</Value>
</Data>
<Data Name="DataViewerKP">
<Value>KeePass Data Viewer</Value>
</Data>
<Data Name="DbMntncResults">
<Value>Show results of database maintenance in a dialog</Value>
</Data>
<Data Name="DbNoModBy">
<Value>{PARAM} has not modified the database.</Value>
</Data>
<Data Name="Default">
<Value>Default</Value>
</Data>
<Data Name="DefaultColor">
<Value>default color</Value>
</Data>
<Data Name="Delete">
<Value>Delete</Value>
</Data>
<Data Name="DeleteCmd">
<Value>&Delete</Value>
</Data>
<Data Name="DeleteEntriesCmd">
<Value>&Delete Entries</Value>
</Data>
<Data Name="DeleteEntriesQuestion">
<Value>Are you sure you want to permanently delete the selected entries?</Value>
</Data>
<Data Name="DeleteEntriesQuestionSingle">
<Value>Are you sure you want to permanently delete the selected entry?</Value>
</Data>
<Data Name="DeleteEntryCmd">
<Value>&Delete Entry</Value>
</Data>
<Data Name="DeleteGroupInfo">
<Value>Deleting a group will also delete all entries and subgroups in that group.</Value>
</Data>
<Data Name="DeleteGroupQuestion">
<Value>Are you sure you want to permanently delete the selected group?</Value>
</Data>
<Data Name="DeleteGroupTitle">
<Value>Delete Group</Value>
</Data>
<Data Name="Descending">
<Value>&Descending</Value>
</Data>
<Data Name="Description">
<Value>Description</Value>
</Data>
<Data Name="Destination">
<Value>Destination</Value>
</Data>
<Data Name="Details">
<Value>Details</Value>
</Data>
<Data Name="Dialog">
<Value>Dialog</Value>
</Data>
<Data Name="DialogNoShowAgain">
<Value>Do not show this dialog again.</Value>
</Data>
<Data Name="Dialogs">
<Value>Dialogs</Value>
</Data>
<Data Name="Disable">
<Value>Disable</Value>
</Data>
<Data Name="Disabled">
<Value>Disabled</Value>
</Data>
<Data Name="DisableSaveIfNotModified">
<Value>Disable 'Save' command (instead of graying it out) if the database hasn't been modified</Value>
</Data>
<Data Name="DiscardChangesCmd">
<Value>&Discard changes</Value>
</Data>
<Data Name="DocumentationHint">
<Value>Please see the documentation for more details.</Value>
</Data>
<Data Name="DragDrop">
<Value>Drag&Drop</Value>
</Data>
<Data Name="DropToBackOnCopy">
<Value>Drop to background after copying data to the clipboard</Value>
</Data>
<Data Name="DuplicateEntriesCmd">
<Value>Dupl&icate Entries...</Value>
</Data>
<Data Name="DuplicateEntryCmd">
<Value>Dupl&icate Entry...</Value>
</Data>
<Data Name="DuplicatePasswords">
<Value>Duplicate Passwords</Value>
</Data>
<Data Name="DuplicatePasswordsGroup">
<Value>Entries using the same password:</Value>
</Data>
<Data Name="DuplicatePasswordsList">
<Value>List of entries that are using the same passwords.</Value>
</Data>
<Data Name="DuplicatePasswordsNone">
<Value>No duplicate passwords have been found.</Value>
</Data>
<Data Name="DuplicateStringFieldName">
<Value>The string field name you specified already exists. String field names must be unique for each entry.</Value>
</Data>
<Data Name="EditEntriesCmd">
<Value>&Edit Entries...</Value>
</Data>
<Data Name="EditEntriesDesc">
<Value>Edit all currently selected entries.</Value>
</Data>
<Data Name="EditEntriesQuickCmd">
<Value>Edit Entries (&Quick)</Value>
</Data>
<Data Name="EditEntryCmd">
<Value>&Edit Entry...</Value>
</Data>
<Data Name="EditEntryDesc">
<Value>You are editing an existing entry.</Value>
</Data>
<Data Name="EditEntryQuickCmd">
<Value>Edit Entry (&Quick)</Value>
</Data>
<Data Name="EditGroup">
<Value>Edit Group</Value>
</Data>
<Data Name="EditGroupDesc">
<Value>Edit properties of the currently selected group.</Value>
</Data>
<Data Name="EditStringField">
<Value>Edit Entry String Field</Value>
</Data>
<Data Name="EditStringFieldDesc">
<Value>Edit one of the entry's string fields.</Value>
</Data>
<Data Name="EMail">
<Value>eMail</Value>
</Data>
<Data Name="EmergencySheet">
<Value>Emergency Sheet</Value>
</Data>
<Data Name="EmergencySheetAsk">
<Value>Ask whether to create an emergency sheet</Value>
</Data>
<Data Name="EmergencySheetInfo">
<Value>A KeePass emergency sheet contains all important information that is required to open your database. It should be printed, filled out and stored in a secure location, where only you and possibly a few other people that you trust have access to.</Value>
</Data>
<Data Name="EmergencySheetPrintInfo">
<Value>KeePass will print an emergency sheet, which you can then fill out.</Value>
</Data>
<Data Name="EmergencySheetQ">
<Value>Do you want to print an emergency sheet now?</Value>
</Data>
<Data Name="EmergencySheetRec">
<Value>It is recommended that you create an emergency sheet for your database.</Value>
</Data>
<Data Name="Empty">
<Value>Empty</Value>
</Data>
<Data Name="EmptyMasterPw">
<Value>You have selected to use an empty master password.</Value>
</Data>
<Data Name="EmptyMasterPwHint">
<Value>An empty master password is not the same as using no master password at all.</Value>
</Data>
<Data Name="EmptyMasterPwQuestion">
<Value>Are you sure you want to use an empty master password?</Value>
</Data>
<Data Name="EmptyRecycleBinQuestion">
<Value>Are you sure you want to permanently delete the items?</Value>
</Data>
<Data Name="Enable">
<Value>Enable</Value>
</Data>
<Data Name="Enabled">
<Value>Enabled</Value>
</Data>
<Data Name="Encoding">
<Value>Encoding</Value>
</Data>
<Data Name="EncodingFail">
<Value>Selected encoding is invalid. The file cannot be interpreted using the selected encoding.</Value>
</Data>
<Data Name="EndsWith">
<Value>Ends with</Value>
</Data>
<Data Name="Enforce">
<Value>Enforce</Value>
</Data>
<Data Name="EnforceOptions">
<Value>Enforce Options</Value>
</Data>
<Data Name="EnterCompositeKey">
<Value>Enter Master Key</Value>
</Data>
<Data Name="EnterCurrentCompositeKey">
<Value>Enter Current Master Key</Value>
</Data>
<Data Name="EntropyDesc">
<Value>Generate additional random bits.</Value>
</Data>
<Data Name="EntropyTitle">
<Value>Entropy Collection</Value>
</Data>
<Data Name="Entry">
<Value>Entry</Value>
</Data>
<Data Name="EntryDifferences">
<Value>Differences between the two entries</Value>
</Data>
<Data Name="EntryList">
<Value>Entry List</Value>
</Data>
<Data Name="EntryListAutoResizeColumns">
<Value>Automatically resize entry list columns when resizing the main window</Value>
</Data>
<Data Name="EntrySelGroupSel">
<Value>When selecting an entry, automatically select its parent group, too</Value>
</Data>
<Data Name="EnvironmentVariable">
<Value>Environment variable</Value>
</Data>
<Data Name="EqualsOp">
<Value>Equals</Value>
</Data>
<Data Name="Error">
<Value>Error</Value>
</Data>
<Data Name="ErrorCode">
<Value>Error Code</Value>
</Data>
<Data Name="Errors">
<Value>Errors</Value>
</Data>
<Data Name="Event">
<Value>Event</Value>
</Data>
<Data Name="ExecuteCmdLineUrl">
<Value>Execute command line / URL</Value>
</Data>
<Data Name="Exit">
<Value>Exit</Value>
</Data>
<Data Name="ExitInsteadOfLockingAfterTime">
<Value>Exit instead of locking the workspace after the specified time</Value>
</Data>
<Data Name="ExitInsteadOfLockingAlways">
<Value>Always exit instead of locking the workspace</Value>
</Data>
<Data Name="ExpiredEntries">
<Value>Expired Entries</Value>
</Data>
<Data Name="ExpiredEntriesCanMatch">
<Value>Expired entries can match</Value>
</Data>
<Data Name="ExpiryDefaultDays">
<Value>By default, &new entries expire in the following number of days</Value>
</Data>
<Data Name="ExpiryTime">
<Value>Expiry Time</Value>
</Data>
<Data Name="ExpiryTimeDateOnly">
<Value>Expiry Time (Date Only)</Value>
</Data>
<Data Name="Export">
<Value>Export</Value>
</Data>
<Data Name="ExportCmd">
<Value>&Export...</Value>
</Data>
<Data Name="ExportEntriesCmd">
<Value>&Export Entries...</Value>
</Data>
<Data Name="ExportEntryCmd">
<Value>&Export Entry...</Value>
</Data>
<Data Name="ExportFileDesc">
<Value>Export data to an external file.</Value>
</Data>
<Data Name="ExportFileTitle">
<Value>Export File/Data</Value>
</Data>
<Data Name="ExportHtml">
<Value>Export To HTML</Value>
</Data>
<Data Name="ExportHtmlDesc">
<Value>Export entries to a HTML file.</Value>
</Data>
<Data Name="ExportingStatusMsg">
<Value>Exporting...</Value>
</Data>
<Data Name="ExportStc">
<Value>Export active database</Value>
</Data>
<Data Name="ExportToPrompt">
<Value>Export to:</Value>
</Data>
<Data Name="External">
<Value>External</Value>
</Data>
<Data Name="ExternalApp">
<Value>External Application</Value>
</Data>
<Data Name="FatalError">
<Value>Fatal Error</Value>
</Data>
<Data Name="Feature">
<Value>Feature</Value>
</Data>
<Data Name="Field">
<Value>Field</Value>
</Data>
<Data Name="FieldName">
<Value>Field Name</Value>
</Data>
<Data Name="FieldNameExistsAlready">
<Value>The entered name exists already and cannot be used.</Value>
</Data>
<Data Name="FieldNameInvalid">
<Value>The entered name is invalid and cannot be used.</Value>
</Data>
<Data Name="FieldNamePrompt">
<Value>Please enter a field name.</Value>
</Data>
<Data Name="FieldRefInvalidChars">
<Value>The selected field, which identifies the source entry, contains illegal characters (like '{', '}', newline characters, ...).</Value>
</Data>
<Data Name="FieldRefMultiMatch">
<Value>Multiple entries match the specified identifying field.</Value>
</Data>
<Data Name="FieldRefMultiMatchHint">
<Value>To avoid ambiguity, entries can be identified by their UUIDs, which are unique.</Value>
</Data>
<Data Name="FieldValue">
<Value>Field Value</Value>
</Data>
<Data Name="File">
<Value>File</Value>
</Data>
<Data Name="FileChanged">
<Value>The file on disk/server has changed since it was loaded. Probably someone else has edited and saved the database.</Value>
</Data>
<Data Name="FileChangedOverwrite">
<Value>Save the current database to the file. Changes made by the other user will be lost.</Value>
</Data>
<Data Name="FileChangedSync">
<Value>Load the file on disk/server and merge it with the current database in memory.</Value>
</Data>
<Data Name="FileExists">
<Value>File exists</Value>
</Data>
<Data Name="FileExistsAlready">
<Value>The following file exists already:</Value>
</Data>
<Data Name="FileExtInstallFailed">
<Value>Failed to create the file association. Make sure you have write access to the file associations list.</Value>
</Data>
<Data Name="FileExtInstallSuccess">
<Value>Successfully associated KDBX files with KeePass! KDBX files will now be opened by KeePass when you double-click on them.</Value>
</Data>
<Data Name="FileExtName2">
<Value>KeePass Database</Value>
</Data>
<Data Name="FileFormatStc">
<Value>File format</Value>
</Data>
<Data Name="FileImportFailed">
<Value>Failed to import the specified file!</Value>
</Data>
<Data Name="FileNameContainsSemicolonError">
<Value>This file path contains a semicolon (;) and therefore cannot be processed. Replace the semicolon and repeat the procedure.</Value>
</Data>
<Data Name="FileNotFoundError">
<Value>The specified file could not be found.</Value>
</Data>
<Data Name="FileOrUrl">
<Value>File/URL</Value>
</Data>
<Data Name="FilePathFullReq">
<Value>Please specify the full path to the file.</Value>
</Data>
<Data Name="Files">
<Value>Files</Value>
</Data>
<Data Name="FileSaveQ">
<Value>Do you want to save the database now?</Value>
</Data>
<Data Name="FileSaveQClosing">
<Value>Save database changes before closing the file?</Value>
</Data>
<Data Name="FileSaveQExiting">
<Value>Save database changes before exiting KeePass?</Value>
</Data>
<Data Name="FileSaveQLocking">
<Value>Save database changes before locking the workspace?</Value>
</Data>
<Data Name="FileSaveQOpCancel">
<Value>Abort the current operation.</Value>
</Data>
<Data Name="FileSaveQOpCancelClosing">
<Value>The file will not be closed.</Value>
</Data>
<Data Name="FileSaveQOpCancelExiting">
<Value>KeePass will not be closed.</Value>
</Data>
<Data Name="FileSaveQOpCancelLocking">
<Value>The KeePass workspace will not be locked.</Value>
</Data>
<Data Name="FileSaveQOpNoClosing">
<Value>Discard all changes made to the database and close the file.</Value>
</Data>
<Data Name="FileSaveQOpNoExiting">
<Value>Discard all changes made to the database and exit KeePass.</Value>
</Data>
<Data Name="FileSaveQOpNoLocking">
<Value>Discard all changes made to the database and lock the KeePass workspace.</Value>
</Data>
<Data Name="FileSaveQOpYesClosing">
<Value>Save all changes made to the database and close the file.</Value>
</Data>
<Data Name="FileSaveQOpYesExiting">
<Value>Save all changes made to the database and exit KeePass.</Value>
</Data>
<Data Name="FileSaveQOpYesLocking">
<Value>Save all changes made to the database and lock the KeePass workspace.</Value>
</Data>
<Data Name="FileSearchModes">
<Value>There are two search modes: quick and normal.</Value>
</Data>
<Data Name="FileSearchNormalDesc">
<Value>A normal search finds all files (by looking at file contents), but requires a lot more time than a quick search.</Value>
</Data>
<Data Name="FileSearchQuickDesc">
<Value>In a quick search, KeePass only considers files that have one of the usual file name extensions. This is fast, but may not find all files.</Value>
</Data>
<Data Name="FileTooLarge">
<Value>The file is too large.</Value>
</Data>
<Data Name="FileTxExtra">
<Value>Extra-safe file transactions</Value>
</Data>
<Data Name="FileVerifyHashFail">
<Value>The new file's content does not match the data that KeePass has written, i.e. writing to the file has failed and it might be corrupted now.</Value>
</Data>
<Data Name="FileVerifyHashFailRec">
<Value>Please try saving again, and if that fails, save the database to a different location.</Value>
</Data>
<Data Name="Filter">
<Value>Filter</Value>
</Data>
<Data Name="Find">
<Value>Find</Value>
</Data>
<Data Name="FindEntries">
<Value>Find Entries</Value>
</Data>
<Data Name="FixByReinstall">
<Value>In order to fix this problem, it is recommended to reinstall KeePass.</Value>
</Data>
<Data Name="FocusQuickFindOnRestore">
<Value>Focus quick search box when restoring from taskbar</Value>
</Data>
<Data Name="FocusQuickFindOnUntray">
<Value>Focus quick search box when restoring from tray</Value>
</Data>
<Data Name="FocusResultsAfterQuickSearch">
<Value>Focus entry list after a successful quick search</Value>
</Data>
<Data Name="Folder">
<Value>Folder</Value>
</Data>
<Data Name="Font">
<Value>Font</Value>
</Data>
<Data Name="FontDefault">
<Value>Default &Font</Value>
</Data>
<Data Name="ForceSystemFontUnix">
<Value>Force usage of system font (Unix only)</Value>
</Data>
<Data Name="ForegroundColor">
<Value>Foreground Color</Value>
</Data>
<Data Name="Format">
<Value>Format</Value>
</Data>
<Data Name="FormatNoDatabaseDesc">
<Value>This file format doesn't support database descriptions.</Value>
</Data>
<Data Name="FormatNoDatabaseName">
<Value>This file format doesn't support database names.</Value>
</Data>
<Data Name="FormatNoRootEntries">
<Value>This file format doesn't support root groups. All entries in the root group are moved to the first subgroup.</Value>
</Data>
<Data Name="FormatNoSubGroupsInRoot">
<Value>To export to this file format, the root group must have at least one subgroup.</Value>
</Data>
<Data Name="FormatOnlyOneAttachment">
<Value>This file format only supports one attachment per entry. Only the first attachment is saved, the others are ignored.</Value>
</Data>
<Data Name="General">
<Value>General</Value>
</Data>
<Data Name="Generate">
<Value>Generate</Value>
</Data>
<Data Name="GenerateCount">
<Value>Generated Passwords Count</Value>
</Data>
<Data Name="GenerateCountDesc">
<Value>Enter number of passwords to generate.</Value>
</Data>
<Data Name="GenerateCountLongDesc">
<Value>Please enter the number of passwords to generate:</Value>
</Data>
<Data Name="GeneratedPasswords">
<Value>Generated passwords</Value>
</Data>
<Data Name="GeneratePassword">
<Value>Generate a password</Value>
</Data>
<Data Name="GenericCsvImporter">
<Value>Generic CSV Importer</Value>
</Data>
<Data Name="GenPwAccept">
<Value>Accept this password?</Value>
</Data>
<Data Name="GenPwBasedOnPrevious">
<Value>Derive from previous password</Value>
</Data>
<Data Name="GenPwSprVariant">
<Value>The generated password contains a placeholder. When using this password (e.g. by copying it to the clipboard or auto-typing it), the placeholder will be replaced, i.e. effectively a different password might be used.</Value>
</Data>
<Data Name="Gradient">
<Value>Gradient</Value>
</Data>
<Data Name="Group">
<Value>Group</Value>
</Data>
<Data Name="GroupCannotStoreEntries">
<Value>The selected group cannot store any entries.</Value>
</Data>
<Data Name="GroupsSkipped">
<Value>{PARAM} groups skipped</Value>
</Data>
<Data Name="GroupsSkipped1">
<Value>1 group skipped</Value>
</Data>
<Data Name="HelpPlh">
<Value>Help: {PARAM} placeholder</Value>
</Data>
<Data Name="HelpSourceNoLocalOption">
<Value>This option is disabled, because local help is not installed.</Value>
</Data>
<Data Name="HelpSourceSelection">
<Value>Help Source Selection</Value>
</Data>
<Data Name="HelpSourceSelectionDesc">
<Value>Choose between local help and online help center.</Value>
</Data>
<Data Name="HexKeyEx">
<Value>Hex Key - {PARAM}-Bit</Value>
</Data>
<Data Name="HexViewer">
<Value>Hex Viewer</Value>
</Data>
<Data Name="Hidden">
<Value>Hidden</Value>
</Data>
<Data Name="HideCloseDatabaseTb">
<Value>Hide 'Close Database' toolbar button when at most one database is open</Value>
</Data>
<Data Name="HideUsingAsterisks">
<Value>Hide field using asterisks</Value>
</Data>
<Data Name="History">
<Value>History</Value>
</Data>
<Data Name="HistoryBased">
<Value>based on history</Value>
</Data>
<Data Name="Homebanking">
<Value>Homebanking</Value>
</Data>
<Data Name="Host">
<Value>Host</Value>
</Data>
<Data Name="HotKeyAltOnly">
<Value>It is recommended not to use global hot keys with only Alt or Alt+Shift as modifier.</Value>
</Data>
<Data Name="HotKeyAltOnlyHint">
<Value>Recommended modifiers are Ctrl+Alt, Ctrl+Shift and Ctrl+Alt+Shift.</Value>
</Data>
<Data Name="HotKeyAltOnlyQuestion">
<Value>Are you sure you want to use the specified hot keys?</Value>
</Data>
<Data Name="Icon">
<Value>Icon</Value>
</Data>
<Data Name="Id">
<Value>ID</Value>
</Data>
<Data Name="IfEmpty">
<Value>if empty</Value>
</Data>
<Data Name="Ignore">
<Value>Ignore</Value>
</Data>
<Data Name="ImageFormatFeatureUnsupported">
<Value>This file uses a file format feature that is not supported.</Value>
</Data>
<Data Name="ImageViewer">
<Value>Image Viewer</Value>
</Data>
<Data Name="Import">
<Value>Import</Value>
</Data>
<Data Name="ImportBehavior">
<Value>Import Behavior</Value>
</Data>
<Data Name="ImportBehaviorDesc">
<Value>Select an import method.</Value>
</Data>
<Data Name="ImportFailed">
<Value>Import failed.</Value>
</Data>
<Data Name="ImportFileDesc">
<Value>Import an external file.</Value>
</Data>
<Data Name="ImportFileTitle">
<Value>Import File/Data</Value>
</Data>
<Data Name="ImportFinished">
<Value>The import process has finished!</Value>
</Data>
<Data Name="ImportingStatusMsg">
<Value>Importing...</Value>
</Data>
<Data Name="ImportMustRead">
<Value>It is indispensable that you read the documentation about this import method before continuing.</Value>
</Data>
<Data Name="ImportMustReadQuestion">
<Value>Have you understood how the import process works and want to start it now?</Value>
</Data>
<Data Name="ImportStc">
<Value>Import into active database</Value>
</Data>
<Data Name="Incompatible">
<Value>Incompatible</Value>
</Data>
<Data Name="IncompatibleEnv">
<Value>incompatible with current environment</Value>
</Data>
<Data Name="IncompatibleWithSorting">
<Value>incompatible with sorting</Value>
</Data>
<Data Name="Inherited">
<Value>Inherited</Value>
</Data>
<Data Name="InheritSettingFromParent">
<Value>Inherit setting from parent</Value>
</Data>
<Data Name="Installed">
<Value>Installed</Value>
</Data>
<Data Name="InstalledLanguages">
<Value>Installed Languages</Value>
</Data>
<Data Name="InstrAndGenInfo">
<Value>Instructions and General Information</Value>
</Data>
<Data Name="InterleavedKeySending">
<Value>Allow interleaved sending of keys</Value>
</Data>
<Data Name="InternalEditor">
<Value>Internal Editor</Value>
</Data>
<Data Name="InternalViewer">
<Value>Internal Viewer</Value>
</Data>
<Data Name="Internet">
<Value>Internet</Value>
</Data>
<Data Name="Interval">
<Value>Interval</Value>
</Data>
<Data Name="Invalid">
<Value>Invalid</Value>
</Data>
<Data Name="InvalidUrl">
<Value>The specified URL is invalid.</Value>
</Data>
<Data Name="InvalidUserPassword">
<Value>The specified user name / password combination is invalid.</Value>
</Data>
<Data Name="IOConnection">
<Value>I/O Connection</Value>
</Data>
<Data Name="IOConnectionLong">
<Value>File Input/Output Connections</Value>
</Data>
<Data Name="Italic">
<Value>Italic</Value>
</Data>
<Data Name="ItemsCheckEnable">
<Value>If you want to use these items, open the corresponding dialogs, check the items (with regard to security, privacy, functionality, compatibility, etc.) and enable them.</Value>
</Data>
<Data Name="ItemsDisabled">
<Value>The following items have been disabled:</Value>
</Data>
<Data Name="ItemsNoSensitiveEsp">
<Value>Especially, the items should not contain any sensitive data (for security/privacy reasons).</Value>
</Data>
<Data Name="Iterations">
<Value>Iterations</Value>
</Data>
<Data Name="KdbKeePassLibC">
<Value>The KeePassLibC library is required to open and save KDB files created by KeePass 1.x.</Value>
</Data>
<Data Name="KdbWUA">
<Value>KDB files can be encrypted using a master password and/or a key file, not using a Windows User Account.</Value>
</Data>
<Data Name="KdbxFiles">
<Value>KeePass KDBX Files</Value>
</Data>
<Data Name="KdfAdjust">
<Value>The value of a key derivation function parameter lies outside the range of valid values. KeePass adjusts the value to the nearest valid value.</Value>
</Data>
<Data Name="KdfParams1Sec">
<Value>Compute parameters that lead to a delay of 1 second on this computer.</Value>
</Data>
<Data Name="KeePassLibCLong">
<Value>KeePassLibC (1.x File Support)</Value>
</Data>
<Data Name="KeePassLibCNotFound">
<Value>KeePassLibC could not be found.</Value>
</Data>
<Data Name="KeePassLibCNotWindows">
<Value>Importing/exporting data from/to KDB files is only supported on Windows (because a library is used that contains the core code of KeePass 1.x, which is Windows-only).</Value>
</Data>
<Data Name="KeePassLibCNotWindowsHint">
<Value>Please use a different file format for migrating your data.</Value>
</Data>
<Data Name="KeepExisting">
<Value>&Keep existing</Value>
</Data>
<Data Name="KeyboardKeyAlt">
<Value>Alt</Value>
</Data>
<Data Name="KeyboardKeyCtrl">
<Value>Ctrl</Value>
</Data>
<Data Name="KeyboardKeyEsc">
<Value>Esc</Value>
</Data>
<Data Name="KeyboardKeyModifiers">
<Value>Key Modifiers</Value>
</Data>
<Data Name="KeyboardKeyReturn">
<Value>Enter</Value>
</Data>
<Data Name="KeyboardKeyShift">
<Value>Shift</Value>
</Data>
<Data Name="KeyFile">
<Value>Key file</Value>
</Data>
<Data Name="KeyFileBackup">
<Value>Key File Backup</Value>
</Data>
<Data Name="KeyFileContent">
<Value>Key file content</Value>
</Data>
<Data Name="KeyFileCreate">
<Value>Create a new key file</Value>
</Data>
<Data Name="KeyFileCreateTitle">
<Value>Create Key File</Value>
</Data>
<Data Name="KeyFileError">
<Value>The specified key file could not be found or its format is unknown.</Value>
</Data>
<Data Name="KeyFileFromBackup">
<Value>There are two ways to recreate a key file from this backup</Value>
</Data>
<Data Name="KeyFileFromBackupF2">
<Value>Start KeePass, click on 'Tools' -> 'Advanced Tools' -> 'Recreate Key File From Printed Backup', and fill out the form that is displayed on the screen.</Value>
</Data>
<Data Name="KeyFileFromBackupT">
<Value>Alternatively, start a text editor (e.g. Notepad), type the content above, and save it to a new file (with file extension 'keyx').</Value>
</Data>
<Data Name="KeyFileGenHint">
<Value>You can generate an XML key file in the master key creation dialog.</Value>
</Data>
<Data Name="KeyFileNoXml">
<Value>The file is not an XML key file.</Value>
</Data>
<Data Name="KeyFilePrintAlso">
<Value>Also print a key file backup</Value>
</Data>
<Data Name="KeyFilePrintLocal">
<Value>For security reasons, it is recommended to print a key file backup on a local printer, not over a network.</Value>
</Data>
<Data Name="KeyFilePrintReqXml">
<Value>Printing a key file backup is supported only for XML key files.</Value>
</Data>
<Data Name="KeyFiles">
<Value>Key Files</Value>
</Data>
<Data Name="KeyFileSafe">
<Value>KeyFile</Value>
</Data>
<Data Name="KeyFileSelect">
<Value>Select key file manually</Value>
</Data>
<Data Name="KeyFileUseAnywayQ">
<Value>Do you want to use the file as key file anyway?</Value>
</Data>
<Data Name="KeyFileUseExisting">
<Value>Use an existing key file</Value>
</Data>
<Data Name="KeyProvExclusive">
<Value>The selected key provider disallows combining it with any other master key component.</Value>
</Data>
<Data Name="KeyProvider">
<Value>Key provider</Value>
</Data>
<Data Name="KeyProvIncmpWithSD">
<Value>The selected key provider cannot be used, because it is incompatible with the secure desktop.</Value>
</Data>
<Data Name="KeyProvIncmpWithSDHint">
<Value>If you want to use the selected key provider, you have to disable the secure desktop option in 'Tools' -> 'Options' -> tab 'Security'.</Value>
</Data>
<Data Name="KeyTransformDefaultsQ">
<Value>Do you want to set them to the current default values (recommended)?</Value>
</Data>
<Data Name="KeyTransformWeak">
<Value>The key transformation settings of the database are weak.</Value>
</Data>
<Data Name="KeyTransformWeakWarning">
<Value>Show warning when the key transformation settings are weak</Value>
</Data>
<Data Name="LanguageSelected">
<Value>The selected language has been activated. KeePass must be restarted in order to load the language.</Value>
</Data>
<Data Name="LargeEntries">
<Value>Large Entries</Value>
</Data>
<Data Name="LargeEntriesList">
<Value>List of entries that require a lot of memory.</Value>
</Data>
<Data Name="LastAccessTime">
<Value>Last Access Time</Value>
</Data>
<Data Name="LastModificationTime">
<Value>Last Modification Time</Value>
</Data>
<Data Name="LastModified">
<Value>Last Modified</Value>
</Data>
<Data Name="LastModifiedEntriesList">
<Value>List of entries that have been modified recently.</Value>
</Data>
<Data Name="LastModTimePwHist">
<Value>Last Password Modification Time (Based on History)</Value>
</Data>
<Data Name="LatestVersionWeb">
<Value>The latest KeePass version can be found on the KeePass website</Value>
</Data>
<Data Name="Light">
<Value>Light</Value>
</Data>
<Data Name="LimitSingleInstance">
<Value>Limit to single instance</Value>
</Data>
<Data Name="Lng1xSel">
<Value>The selected LNG language file is compatible with KeePass 1.x only. KeePass 2.x uses LNGX language files.</Value>
</Data>
<Data Name="Lng2xWeb">
<Value>LNGX language files for KeePass 2.x are available on the KeePass website.</Value>
</Data>
<Data Name="LngInAppDir">
<Value>One or more language files have been found in the KeePass application directory.</Value>
</Data>
<Data Name="LngInAppDirNote">
<Value>Loading language files directly from the application directory is not supported. Language files should instead be stored in the 'Languages' folder of the application directory.</Value>
</Data>
<Data Name="LngInAppDirQ">
<Value>Do you want to open the application directory (in order to move or delete language files)?</Value>
</Data>
<Data Name="LockAfterGlobalTime">
<Value>L&ock workspace after global user inactivity (seconds)</Value>
</Data>
<Data Name="LockAfterTime">
<Value>&Lock workspace after KeePass inactivity (seconds)</Value>
</Data>
<Data Name="Locked">
<Value>Locked</Value>
</Data>
<Data Name="LockMenuLock">
<Value>&Lock Workspace</Value>
</Data>
<Data Name="LockMenuUnlock">
<Value>Un&lock Workspace</Value>
</Data>
<Data Name="LockOnMinimizeTaskbar">
<Value>Lock workspace when minimizing main window to taskbar</Value>
</Data>
<Data Name="LockOnMinimizeTray">
<Value>Lock workspace when minimizing main window to tray</Value>
</Data>
<Data Name="LockOnRemoteControlChange">
<Value>Lock workspace when the remote control mode changes</Value>
</Data>
<Data Name="LockOnSessionSwitch">
<Value>Lock workspace when locking the computer or switching the user</Value>
</Data>
<Data Name="LockOnSuspend">
<Value>Lock workspace when the computer is about to be suspended</Value>
</Data>
<Data Name="LockWorkspace">
<Value>Lock workspace</Value>
</Data>
<Data Name="MacAddress">
<Value>MAC Address</Value>
</Data>
<Data Name="MainInstruction">
<Value>Main instruction</Value>
</Data>
<Data Name="MainWindow">
<Value>Main Window</Value>
</Data>
<Data Name="MasterKey">
<Value>Master Key</Value>
</Data>
<Data Name="MasterKeyChanged">
<Value>The master key has been changed!</Value>
</Data>
<Data Name="MasterKeyChangedSave">
<Value>In order to apply the new master key, the database must be saved.</Value>
</Data>
<Data Name="MasterKeyChangedShort">
<Value>Master key changed</Value>
</Data>
<Data Name="MasterKeyChangeForce">
<Value>The master key for this database has been used for a while and must be changed now.</Value>
</Data>
<Data Name="MasterKeyChangeInfo">
<Value>Click [OK] to open the master key changing dialog.</Value>
</Data>
<Data Name="MasterKeyChangeQ">
<Value>Do you want to change the master key now?</Value>
</Data>
<Data Name="MasterKeyChangeRec">
<Value>The master key for this database has been used for a while and it is recommended to change it now.</Value>
</Data>
<Data Name="MasterKeyComponents">
<Value>The master key for this database file consists of the following components:</Value>
</Data>
<Data Name="MasterKeyOnSecureDesktop">
<Value>Enter master key on secure desktop</Value>
</Data>
<Data Name="MasterPassword">
<Value>Master password</Value>
</Data>
<Data Name="MasterPasswordConfirm">
<Value>Are you sure that you want to use this master password?</Value>
</Data>
<Data Name="MasterPasswordMinLengthFailed">
<Value>The master password must be at least {PARAM} characters long!</Value>
</Data>
<Data Name="MasterPasswordMinQualityFailed">
<Value>The estimated quality of the master password must be at least {PARAM} bits!</Value>
</Data>
<Data Name="MasterPasswordRmbWhileOpen">
<Value>Remember master password (in encrypted form) of a database while it is open</Value>
</Data>
<Data Name="MasterPasswordWeak">
<Value>The specified master password is weak.</Value>
</Data>
<Data Name="MatchesRegEx">
<Value>Matches regular expression</Value>
</Data>
<Data Name="MaxAttachmentSize">
<Value>The maximum supported attachment size is {PARAM}.</Value>
</Data>
<Data Name="Maximized">
<Value>Maximized</Value>
</Data>
<Data Name="Memory">
<Value>Memory</Value>
</Data>
<Data Name="Menus">
<Value>Menus</Value>
</Data>
<Data Name="Method">
<Value>Method</Value>
</Data>
<Data Name="Minimize">
<Value>Minimize</Value>
</Data>
<Data Name="MinimizeAfterAutoType">
<Value>Minimize main window after performing auto-type</Value>
</Data>
<Data Name="MinimizeAfterCopy">
<Value>Minimize main window after copying data to the clipboard</Value>
</Data>
<Data Name="MinimizeAfterLocking">
<Value>Minimize main window after locking the workspace</Value>
</Data>
<Data Name="MinimizeAfterOpeningDatabase">
<Value>Minimize main window after opening a database</Value>
</Data>
<Data Name="Minimized">
<Value>Minimized</Value>
</Data>
<Data Name="MinimizeToTray">
<Value>Minimize to tray instead of taskbar</Value>
</Data>
<Data Name="MinimizeToTrayStc">
<Value>Minimize to tray</Value>
</Data>
<Data Name="Modified">
<Value>Modified</Value>
</Data>
<Data Name="More">
<Value>More</Value>
</Data>
<Data Name="MoreAnd">
<Value>and {PARAM} more</Value>
</Data>
<Data Name="MoreEntries">
<Value>{PARAM} more entries</Value>
</Data>
<Data Name="MoreInfo">
<Value>More information</Value>
</Data>
<Data Name="MoveDown">
<Value>Move down</Value>
</Data>
<Data Name="MoveEntriesBottomCmd">
<Value>Move Entries to &Bottom</Value>
</Data>
<Data Name="MoveEntriesDownCmd">
<Value>Move Entries One &Down</Value>
</Data>
<Data Name="MoveEntriesTopCmd">
<Value>Move Entries to &Top</Value>
</Data>
<Data Name="MoveEntriesUpCmd">
<Value>Move Entries One &Up</Value>
</Data>
<Data Name="MoveEntryBottomCmd">
<Value>Move Entry to &Bottom</Value>
</Data>
<Data Name="MoveEntryDownCmd">
<Value>Move Entry One &Down</Value>
</Data>
<Data Name="MoveEntryTopCmd">
<Value>Move Entry to &Top</Value>
</Data>
<Data Name="MoveEntryUpCmd">
<Value>Move Entry One &Up</Value>
</Data>
<Data Name="MoveToPreviousParentGroup">
<Value>Move to &Previous Parent Group</Value>
</Data>
<Data Name="MoveUp">
<Value>Move up</Value>
</Data>
<Data Name="MultipleValues">
<Value>Multiple values</Value>
</Data>
<Data Name="Name">
<Value>Name</Value>
</Data>
<Data Name="NativeLibUse">
<Value>Use native library for faster key transformations</Value>
</Data>
<Data Name="Navigation">
<Value>Navigation</Value>
</Data>
<Data Name="Network">
<Value>Network</Value>
</Data>
<Data Name="NeverExpires">
<Value>Never expires</Value>
</Data>
<Data Name="New">
<Value>New</Value>
</Data>
<Data Name="NewDatabase">
<Value>New Database</Value>
</Data>
<Data Name="Newer">
<Value>Newer</Value>
</Data>
<Data Name="NewerNetRequired">
<Value>A newer .NET Framework is required.</Value>
</Data>
<Data Name="NewGroup">
<Value>New Group</Value>
</Data>
<Data Name="NewLine">
<Value>New line</Value>
</Data>
<Data Name="NewState">
<Value>New state</Value>
</Data>
<Data Name="NewVersionAvailable">
<Value>New version available</Value>
</Data>
<Data Name="No">
<Value>No</Value>
</Data>
<Data Name="NoCmd">
<Value>&No</Value>
</Data>
<Data Name="NoEncNoCompress">
<Value>Make sure that it is not encrypted and not compressed.</Value>
</Data>
<Data Name="NoFileAccessRead">
<Value>The operating system didn't grant KeePass read access to the specified file.</Value>
</Data>
<Data Name="NoKeyFileSpecifiedMeta">
<Value>(None)</Value>
</Data>
<Data Name="NoKeyRepeat">
<Value>No Key Repeat</Value>
</Data>
<Data Name="None">
<Value>None</Value>
</Data>
<Data Name="Normal">
<Value>Normal</Value>
</Data>
<Data Name="NoSort">
<Value>&No Sort</Value>
</Data>
<Data Name="Not">
<Value>Not</Value>
</Data>
<Data Name="Notes">
<Value>Notes</Value>
</Data>
<Data Name="NotInstalled">
<Value>Not installed</Value>
</Data>
<Data Name="NotNow">
<Value>Not now</Value>
</Data>
<Data Name="NotRecommended">
<Value>(not recommended)</Value>
</Data>
<Data Name="NoXslFile">
<Value>The selected file isn't a valid XSL stylesheet.</Value>
</Data>
<Data Name="ObjectNotFound">
<Value>The object with the specified name could not be found.</Value>
</Data>
<Data Name="ObjectsDeleted">
<Value>{PARAM} object(s) deleted</Value>
</Data>
<Data Name="ObjectsFound">
<Value>{PARAM} object(s) found</Value>
</Data>
<Data Name="Off">
<Value>Off</Value>
</Data>
<Data Name="OfLower">
<Value>of</Value>
</Data>
<Data Name="Ok">
<Value>OK</Value>
</Data>
<Data Name="Older">
<Value>Older</Value>
</Data>
<Data Name="OldFormat">
<Value>Old Format</Value>
</Data>
<Data Name="On">
<Value>On</Value>
</Data>
<Data Name="OpAborted">
<Value>Operation aborted.</Value>
</Data>
<Data Name="OpenCmd">
<Value>&Open</Value>
</Data>
<Data Name="OpenDatabase">
<Value>Open Database</Value>
</Data>
<Data Name="OpenDatabaseFile">
<Value>Open Database File</Value>
</Data>
<Data Name="OpenDatabaseFileStc">
<Value>Open database file</Value>
</Data>
<Data Name="Opened">
<Value>Opened</Value>
</Data>
<Data Name="OpenedDatabaseFile">
<Value>Opened database file</Value>
</Data>
<Data Name="OpeningDatabase2">
<Value>Opening database...</Value>
</Data>
<Data Name="OpenUrl">
<Value>&Open URL(s)</Value>
</Data>
<Data Name="OpenWith">
<Value>Open with {PARAM}</Value>
</Data>
<Data Name="OptimizeForScreenReader">
<Value>Optimize for screen reader (activate only if you are using a screen reader)</Value>
</Data>
<Data Name="OptionActivateAboutTo">
<Value>You are about to activate the following option:</Value>
</Data>
<Data Name="OptionActivateConfirm">
<Value>Are you sure you want to activate the option?</Value>
</Data>
<Data Name="OptionReqOn">
<Value>For this operation, the following option must be turned on:</Value>
</Data>
<Data Name="Options">
<Value>Options</Value>
</Data>
<Data Name="OptionsDesc">
<Value>Here you can configure the global KeePass program options.</Value>
</Data>
<Data Name="OrEarlier">
<Value>or earlier</Value>
</Data>
<Data Name="OtherPlaceholders">
<Value>Other Placeholders</Value>
</Data>
<Data Name="OtpAuthUri">
<Value>otpauth:// URI</Value>
</Data>
<Data Name="OtpGenSettings">
<Value>OTP Generator Settings</Value>
</Data>
<Data Name="OtpGenSettingsDesc">
<Value>One-time password (OTP) gen. settings for the entry.</Value>
</Data>
<Data Name="OtpUsage">
<Value>One-time passwords can be generated using the commands in the main window or using the {PARAM} placeholder.</Value>
</Data>
<Data Name="OverridesBuiltIn">
<Value>Built-In Overrides</Value>
</Data>
<Data Name="OverridesCustom">
<Value>Custom Overrides</Value>
</Data>
<Data Name="Overwrite">
<Value>Overwrite</Value>
</Data>
<Data Name="OverwriteExisting">
<Value>Overwrite &existing</Value>
</Data>
<Data Name="OverwriteExistingFileQuestion">
<Value>Overwrite the existing file?</Value>
</Data>
<Data Name="OverwriteIfNewer">
<Value>Overwrite if &newer</Value>
</Data>
<Data Name="OverwriteIfNewerAndApplyDel">
<Value>Overwrite if newer and apply &deletions</Value>
</Data>
<Data Name="PackageInstallHint">
<Value>Install this package and try again.</Value>
</Data>
<Data Name="Parallelism">
<Value>Parallelism</Value>
</Data>
<Data Name="ParamDescHelp">
<Value>Detailed descriptions of all parameters can be found in the help manual.</Value>
</Data>
<Data Name="Parameters">
<Value>Parameters</Value>
</Data>
<Data Name="Password">
<Value>Password</Value>
</Data>
<Data Name="PasswordLength">
<Value>Password length</Value>
</Data>
<Data Name="PasswordManagers">
<Value>Password Managers</Value>
</Data>
<Data Name="PasswordOptions">
<Value>Password Generation Options</Value>
</Data>
<Data Name="PasswordOptionsDesc">
<Value>Here you can define properties of generated passwords.</Value>
</Data>
<Data Name="PasswordPrompt">
<Value>Enter the password:</Value>
</Data>
<Data Name="PasswordQuality">
<Value>Password Quality</Value>
</Data>
<Data Name="PasswordQualityReport2">
<Value>Estimated quality of the entry passwords (excluding TANs).</Value>
</Data>
<Data Name="PasswordRepeatFailed">
<Value>Password and repeated password aren't identical!</Value>
</Data>
<Data Name="PasswordRepeatHint">
<Value>Repeat the password to prevent typing errors.</Value>
</Data>
<Data Name="Paste">
<Value>Paste</Value>
</Data>
<Data Name="PasteEntriesCmd">
<Value>&Paste Entries</Value>
</Data>
<Data Name="PasteEntryCmd">
<Value>&Paste Entry</Value>
</Data>
<Data Name="Path">
<Value>Path</Value>
</Data>
<Data Name="PerformAutoType">
<Value>Perform Auto-&Type</Value>
</Data>
<Data Name="PerformGlobalAutoType">
<Value>Perform global auto-type</Value>
</Data>
<Data Name="PerformSelectedAutoType">
<Value>Perform auto-type with selected entry</Value>
</Data>
<Data Name="Periodic">
<Value>Periodic</Value>
</Data>
<Data Name="PickCharacters">
<Value>Pick Characters</Value>
</Data>
<Data Name="PickCharactersDesc">
<Value>Select the requested character positions.</Value>
</Data>
<Data Name="PickField">
<Value>Pick Field</Value>
</Data>
<Data Name="PickFieldDesc">
<Value>Choose a field whose value will be inserted.</Value>
</Data>
<Data Name="PickIcon">
<Value>Pick an icon.</Value>
</Data>
<Data Name="Plugin">
<Value>Plugin</Value>
</Data>
<Data Name="Plugin1x">
<Value>This plugin appears to be a plugin for KeePass 1.x.</Value>
</Data>
<Data Name="Plugin1xHint">
<Value>KeePass 1.x plugins cannot be used together with KeePass 2.x and vice versa.</Value>
</Data>
<Data Name="PluginCacheClearInfo">
<Value>The plugin cache will be cleared and rebuilt if necessary when KeePass is restarted.</Value>
</Data>
<Data Name="PluginIncompatible">
<Value>The following plugin is incompatible with the current KeePass version:</Value>
</Data>
<Data Name="PluginLoadFailed">
<Value>The plugin cannot be loaded.</Value>
</Data>
<Data Name="PluginMonoComplete">
<Value>On some systems, the 'mono-complete' package may be required for plugins to work properly.</Value>
</Data>
<Data Name="PluginOperatingSystemUnsupported">
<Value>The current operating system is unsupported by the plugin.</Value>
</Data>
<Data Name="PluginProvided">
<Value>Provided by Plugins</Value>
</Data>
<Data Name="Plugins">
<Value>Plugins</Value>
</Data>
<Data Name="PluginsCompilingAndLoading">
<Value>Compiling and loading plugins...</Value>
</Data>
<Data Name="PluginsDesc">
<Value>Here you can configure all loaded KeePass plugins.</Value>
</Data>
<Data Name="PluginUpdateHint">
<Value>Have a look at the plugin's website for an appropriate version.</Value>
</Data>
<Data Name="Policy">
<Value>Policy</Value>
</Data>
<Data Name="PolicyAutoTypeDesc">
<Value>Allow auto-typing entries to other windows.</Value>
</Data>
<Data Name="PolicyAutoTypeWithoutContextDesc">
<Value>Allow auto-typing using the 'Perform Auto-Type' command (Ctrl+V).</Value>
</Data>
<Data Name="PolicyChangeMasterKey">
<Value>Allow changing the master key of a database.</Value>
</Data>
<Data Name="PolicyChangeMasterKeyNoKeyDesc">
<Value>Do not require entering current master key before changing it.</Value>
</Data>
<Data Name="PolicyClipboardDesc">
<Value>Allow copying entry information to clipboard (main window only).</Value>
</Data>
<Data Name="PolicyCopyWholeEntriesDesc">
<Value>Allow copying whole entries to clipboard.</Value>
</Data>
<Data Name="PolicyDisallowed">
<Value>This operation is disallowed by the application policy. Ask your administrator to allow this operation.</Value>
</Data>
<Data Name="PolicyDragDropDesc">
<Value>Allow sending information to other windows using drag&drop.</Value>
</Data>
<Data Name="PolicyExportDesc2">
<Value>Allow exporting entries.</Value>
</Data>
<Data Name="PolicyExportNoKeyDesc">
<Value>Do not require entering current master key before exporting.</Value>
</Data>
<Data Name="PolicyImportDesc">
<Value>Allow importing entries from external files.</Value>
</Data>
<Data Name="PolicyNewDatabaseDesc">
<Value>Allow creating new database files.</Value>
</Data>
<Data Name="PolicyPluginsDesc">
<Value>Allow loading plugins to extend KeePass functionality.</Value>
</Data>
<Data Name="PolicyPrintDesc">
<Value>Allow printing entry lists.</Value>
</Data>
<Data Name="PolicyPrintNoKeyDesc">
<Value>Do not require entering current master key before printing.</Value>
</Data>
<Data Name="PolicyRequiredFlag">
<Value>The following policy flag is required</Value>
</Data>
<Data Name="PolicySaveDatabaseDesc">
<Value>Allow saving databases to disk/URL.</Value>
</Data>
<Data Name="PolicyTriggersEditDesc">
<Value>Allow editing triggers.</Value>
</Data>
<Data Name="PreReleaseVersion">
<Value>Pre-release version</Value>
</Data>
<Data Name="PreventScreenCapture">
<Value>Prevent certain screen captures</Value>
</Data>
<Data Name="PreventScreenCaptureNote">
<Value>This may also prevent legitimate other software (remote desktop solutions, accessibility tools such as screen magnifiers, etc.) from seeing KeePass windows.</Value>
</Data>
<Data Name="Print">
<Value>Print</Value>
</Data>
<Data Name="PrintDesc">
<Value>Print password entries.</Value>
</Data>
<Data Name="PrintEntriesCmd">
<Value>P&rint Entries...</Value>
</Data>
<Data Name="PrintEntryCmd">
<Value>P&rint Entry...</Value>
</Data>
<Data Name="Private">
<Value>Private</Value>
</Data>
<Data Name="Professional">
<Value>Professional</Value>
</Data>
<Data Name="ProfileDelete">
<Value>Delete Profile</Value>
</Data>
<Data Name="ProfileDeleteDesc">
<Value>Delete the selected profile.</Value>
</Data>
<Data Name="ProfileSave">
<Value>Save as Profile</Value>
</Data>
<Data Name="ProfileSaveDesc">
<Value>Save the current settings as a profile.</Value>
</Data>
<Data Name="ProfileSavePrompt">
<Value>Enter a name for the new profile or select an existing profile to overwrite it:</Value>
</Data>
<Data Name="Properties">
<Value>Properties</Value>
</Data>
<Data Name="PwGenOpen">
<Value>Open Password Generator...</Value>
</Data>
<Data Name="PwGenProfiles">
<Value>Password Generator Profiles</Value>
</Data>
<Data Name="Quality">
<Value>Quality</Value>
</Data>
<Data Name="QualityCheckToggle">
<Value>Enable/disable quality estimation for this entry (here, in password quality reports, ...)</Value>
</Data>
<Data Name="QualityEstimation">
<Value>Quality Estimation</Value>
</Data>
<Data Name="Quick">
<Value>Quick</Value>
</Data>
<Data Name="QuickSearchDerefData">
<Value>Resolve field references in quick searches</Value>
</Data>
<Data Name="QuickSearchExclExpired">
<Value>Exclude expired entries in quick searches</Value>
</Data>
<Data Name="QuickSearchInPwFields">
<Value>Search for passwords in quick searches</Value>
</Data>
<Data Name="QuickSearchQ">
<Value>Would you like to perform a quick search?</Value>
</Data>
<Data Name="QuickSearchTb">
<Value>Quick Search (Toolbar)</Value>
</Data>
<Data Name="Ready">
<Value>Ready.</Value>
</Data>
<Data Name="Recommended">
<Value>recommended</Value>
</Data>
<Data Name="RecommendedCmd">
<Value>&Recommended</Value>
</Data>
<Data Name="RecycleBin">
<Value>Recycle Bin</Value>
</Data>
<Data Name="RecycleBinCollapse">
<Value>Collapse newly-created recycle bin tree node</Value>
</Data>
<Data Name="RecycleEntryConfirm">
<Value>Are you sure you want to move the selected entries to the recycle bin?</Value>
</Data>
<Data Name="RecycleEntryConfirmSingle">
<Value>Are you sure you want to move the selected entry to the recycle bin?</Value>
</Data>
<Data Name="RecycleGroupConfirm">
<Value>Are you sure you want to move the selected group to the recycle bin?</Value>
</Data>
<Data Name="RecycleMoveInfo">
<Value>At least one of the selected entries/groups will be moved into/within the recycle bin.</Value>
</Data>
<Data Name="RecycleShowConfirm">
<Value>Show confirmation dialog when moving entries/groups to the recycle bin</Value>
</Data>
<Data Name="Redo">
<Value>Redo</Value>
</Data>
<Data Name="RememberHidingPasswordsEntry">
<Value>Remember password hiding setting in the entry editing dialog</Value>
</Data>
<Data Name="RememberHidingPasswordsMain">
<Value>Remember password hiding setting in the main window</Value>
</Data>
<Data Name="RememberKeySources">
<Value>Remember key sources (key file paths, provider names, ...)</Value>
</Data>
<Data Name="RememberWorkingDirectories">
<Value>Remember working directories</Value>
</Data>
<Data Name="RemoteHostReachable">
<Value>Remote host is reachable (ping)</Value>
</Data>
<Data Name="RenameCmd">
<Value>&Rename...</Value>
</Data>
<Data Name="RepairCmd">
<Value>&Repair</Value>
</Data>
<Data Name="RepairMode">
<Value>Repair Mode</Value>
</Data>
<Data Name="RepairModeInt">
<Value>In repair mode, the integrity of the data is not checked (in order to rescue as much data as possible). When no integrity checks are performed, corrupted/malicious data might be incorporated into the database.</Value>
</Data>
<Data Name="RepairModeQ">
<Value>Are you sure you want to attempt to repair the selected file?</Value>
</Data>
<Data Name="RepairModeUse">
<Value>Thus the repair functionality should only be used when there really is no other solution. If you use it, afterwards you should thoroughly check your whole database for corrupted/malicious data.</Value>
</Data>
<Data Name="RepeatOnlyWhenHidden">
<Value>Require password repetition only when hiding using asterisks is enabled</Value>
</Data>
<Data Name="Replace">
<Value>Replace</Value>
</Data>
<Data Name="ReplaceNo">
<Value>Do not replace</Value>
</Data>
<Data Name="RestartKeePassQuestion">
<Value>Do you wish to restart KeePass now?</Value>
</Data>
<Data Name="Restore">
<Value>Restore</Value>
</Data>
<Data Name="Retry">
<Value>Retry</Value>
</Data>
<Data Name="RetryCmd">
<Value>&Retry</Value>
</Data>
<Data Name="RootDirectory">
<Value>Root Directory</Value>
</Data>
<Data Name="SameKeybLayout">
<Value>Ensure same keyboard layouts during auto-type</Value>
</Data>
<Data Name="SampleEntry">
<Value>Sample Entry</Value>
</Data>
<Data Name="Save">
<Value>Save</Value>
</Data>
<Data Name="SaveAllDatabases">
<Value>Save All Databases</Value>
</Data>
<Data Name="SaveBeforeCloseEntry">
<Value>Do you want to save the changes you have made to this entry?</Value>
</Data>
<Data Name="SaveBeforeCloseQuestion">
<Value>Do you want to save the changes before closing?</Value>
</Data>
<Data Name="SaveBeforeCloseTitle">
<Value>KeePass - Save Before Close/Lock?</Value>
</Data>
<Data Name="SaveCmd">
<Value>&Save</Value>
</Data>
<Data Name="SaveDatabase">
<Value>Save Database</Value>
</Data>
<Data Name="SaveDatabaseStc">
<Value>Save active database</Value>
</Data>
<Data Name="SavedDatabaseFile">
<Value>Saved database file</Value>
</Data>
<Data Name="SaveFilesTo">
<Value>Save File(s) To</Value>
</Data>
<Data Name="SaveForceSync">
<Value>Do not ask whether to synchronize or overwrite; force synchronization</Value>
</Data>
<Data Name="SaveObjectAs">
<Value>Save {PARAM} As</Value>
</Data>
<Data Name="SavingDatabase">
<Value>Saving database...</Value>
</Data>
<Data Name="SavingDatabaseFile">
<Value>Saving database file</Value>
</Data>
<Data Name="SavingPost">
<Value>after saving</Value>
</Data>
<Data Name="SavingPre">
<Value>before saving</Value>
</Data>
<Data Name="Scheme">
<Value>Scheme</Value>
</Data>
<Data Name="Search">
<Value>Search...</Value>
</Data>
<Data Name="SearchDesc2">
<Value>Search the database for entries.</Value>
</Data>
<Data Name="SearchEntriesFound">
<Value>{PARAM} entries found</Value>
</Data>
<Data Name="SearchEntriesFound1">
<Value>1 entry found</Value>
</Data>
<Data Name="SearchGroupName">
<Value>Search Results</Value>
</Data>
<Data Name="SearchingOp">
<Value>Searching</Value>
</Data>
<Data Name="SearchKeyFiles">
<Value>Automatically search key files</Value>
</Data>
<Data Name="SearchKeyFilesAlsoOnRemovable">
<Value>Automatically search key files also on removable media</Value>
</Data>
<Data Name="SearchQuickPrompt">
<Value>Type to search the database</Value>
</Data>
<Data Name="SearchResultsInSeparator">
<Value>in</Value>
</Data>
<Data Name="SearchTitle">
<Value>Find</Value>
</Data>
<Data Name="SecDeskFileDialogHint">
<Value>Note: KeePass shows this simple file browser dialog, because standard Windows file dialogs cannot be shown on the secure desktop for security reasons.</Value>
</Data>
<Data Name="SecDeskOpContinueOnNormal">
<Value>KeePass will cancel the current dialog and switch to the normal desktop. The requested operation will then be performed on the normal desktop.</Value>
</Data>
<Data Name="SecDeskOpUnsupported">
<Value>This operation cannot be performed on the secure desktop.</Value>
</Data>
<Data Name="SecDeskOtherSwitched">
<Value>An application has switched from the secure desktop to a different desktop.</Value>
</Data>
<Data Name="SecDeskPlaySound">
<Value>Play UAC sound when switching to secure desktop</Value>
</Data>
<Data Name="SecDeskSwitchBack">
<Value>Click [OK] to switch back to the secure desktop.</Value>
</Data>
<Data Name="SelectAll">
<Value>Select All</Value>
</Data>
<Data Name="SelectColor">
<Value>Select color</Value>
</Data>
<Data Name="SelectDifferentGroup">
<Value>Please select a different group.</Value>
</Data>
<Data Name="Selected">
<Value>Selected</Value>
</Data>
<Data Name="SelectedColumn">
<Value>Selected column</Value>
</Data>
<Data Name="SelectedGroup">
<Value>Selected Group</Value>
</Data>
<Data Name="SelectedLower">
<Value>selected</Value>
</Data>
<Data Name="SelectFile">
<Value>Select a file.</Value>
</Data>
<Data Name="SelectFont">
<Value>Select font</Value>
</Data>
<Data Name="SelectIcon">
<Value>Select an icon</Value>
</Data>
<Data Name="SelectLanguage">
<Value>Select Language</Value>
</Data>
<Data Name="SelectLanguageDesc">
<Value>Here you can change the user interface language.</Value>
</Data>
<Data Name="SelfTestFailed">
<Value>One or more of the KeePass self-tests failed.</Value>
</Data>
<Data Name="SendingNoun">
<Value>Sending</Value>
</Data>
<Data Name="Separator">
<Value>Separator</Value>
</Data>
<Data Name="Sequence">
<Value>Sequence</Value>
</Data>
<Data Name="Sequences">
<Value>Sequences</Value>
</Data>
<Data Name="ShowAdvAutoTypeCommands">
<Value>Show additional auto-type menu commands</Value>
</Data>
<Data Name="ShowDerefData">
<Value>Show dereferenced data</Value>
</Data>
<Data Name="ShowDerefDataAndRefs">
<Value>When showing dereferenced data, additionally show references</Value>
</Data>
<Data Name="ShowDerefDataAsync">
<Value>Show dereferenced data asynchronously</Value>
</Data>
<Data Name="ShowEntriesByTag">
<Value>Show entries by tag</Value>
</Data>
<Data Name="ShowFullPathInTitleBar">
<Value>Show full path in title bar (instead of file name only)</Value>
</Data>
<Data Name="ShowHmacOtp">
<Value>Show H&MAC-Based OTP</Value>
</Data>
<Data Name="ShowIn">
<Value>Show in</Value>
</Data>
<Data Name="ShowMessageBox">
<Value>Show message box</Value>
</Data>
<Data Name="ShowMore">
<Value>Show more</Value>
</Data>
<Data Name="ShowTimeOtp">
<Value>Show Tim&e-Based OTP</Value>
</Data>
<Data Name="ShowWithFileManager">
<Value>&Show with File Manager</Value>
</Data>
<Data Name="SimilarPasswords">
<Value>Similar Passwords</Value>
</Data>
<Data Name="SimilarPasswordsGroup">
<Value>Entries using similar passwords (similarity: {PARAM}):</Value>
</Data>
<Data Name="SimilarPasswordsList2">
<Value>List of entries that are using similar passwords (excluding TANs).</Value>
</Data>
<Data Name="SimilarPasswordsNoDup">
<Value>The list shows entries that are using similar, but not identical passwords. For finding entries that are using the same passwords, use the 'Duplicate Passwords' command (in the main menu).</Value>
</Data>
<Data Name="Size">
<Value>Size</Value>
</Data>
<Data Name="Skip">
<Value>Skip</Value>
</Data>
<Data Name="Slow">
<Value>slow</Value>
</Data>
<Data Name="SoonToExpireEntries">
<Value>Expired Entries and Entries That Will Expire Soon</Value>
</Data>
<Data Name="Source">
<Value>Source</Value>
</Data>
<Data Name="SpecialKeys">
<Value>Special Keys</Value>
</Data>
<Data Name="StandardExpireSelect">
<Value>Select one of the standard expiry times</Value>
</Data>
<Data Name="StandardFields">
<Value>Standard Fields</Value>
</Data>
<Data Name="StartAndExit">
<Value>Start and Exit</Value>
</Data>
<Data Name="StartMinimizedAndLocked">
<Value>Start minimized and locked</Value>
</Data>
<Data Name="StartsWith">
<Value>Starts with</Value>
</Data>
<Data Name="Status">
<Value>Status</Value>
</Data>
<Data Name="Strikeout">
<Value>Strikeout</Value>
</Data>
<Data Name="String">
<Value>String</Value>
</Data>
<Data Name="Success">
<Value>Success.</Value>
</Data>
<Data Name="SyncFailed">
<Value>Synchronization failed.</Value>
</Data>
<Data Name="Synchronize">
<Value>Synchronize</Value>
</Data>
<Data Name="SynchronizedDatabaseFile">
<Value>Synchronized database file</Value>
</Data>
<Data Name="SynchronizeStc">
<Value>Synchronize active database with a file/URL</Value>
</Data>
<Data Name="Synchronizing">
<Value>Synchronizing...</Value>
</Data>
<Data Name="SynchronizingDatabaseFile">
<Value>Synchronizing database file</Value>
</Data>
<Data Name="SynchronizingHint">
<Value>Make sure that the two databases use the same master key. This is required for a synchronization.</Value>
</Data>
<Data Name="SyncSuccess">
<Value>Synchronization completed successfully.</Value>
</Data>
<Data Name="System">
<Value>System</Value>
</Data>
<Data Name="SystemCodePage">
<Value>System Code Page</Value>
</Data>
<Data Name="Tag">
<Value>Tag</Value>
</Data>
<Data Name="TagAddNew">
<Value>Add a new tag.</Value>
</Data>
<Data Name="TagNew">
<Value>New Tag</Value>
</Data>
<Data Name="Tags">
<Value>Tags</Value>
</Data>
<Data Name="TagsAddRemove">
<Value>Add/remove tags</Value>
</Data>
<Data Name="TagsInheritedCount">
<Value>{PARAM} inherited tag(s)</Value>
</Data>
<Data Name="TagsNotFound">
<Value>No tags found</Value>
</Data>
<Data Name="TanExpiresOnUse">
<Value>Mark TAN entries as expired when using them</Value>
</Data>
<Data Name="TanWizard">
<Value>TAN Wizard</Value>
</Data>
<Data Name="TanWizardDesc">
<Value>With this TAN wizard you can easily add TAN entries.</Value>
</Data>
<Data Name="TargetWindow">
<Value>Target Window</Value>
</Data>
<Data Name="TemplatesNotFound">
<Value>No templates found</Value>
</Data>
<Data Name="TestSuccess">
<Value>Test succeeded!</Value>
</Data>
<Data Name="Text">
<Value>Text</Value>
</Data>
<Data Name="TextColor">
<Value>Text Color</Value>
</Data>
<Data Name="TextViewer">
<Value>Text Viewer</Value>
</Data>
<Data Name="Time">
<Value>Time</Value>
</Data>
<Data Name="TimeReq">
<Value>may take some time</Value>
</Data>
<Data Name="TimerRestartOnActivity">
<Value>Restart timer on KeePass activity</Value>
</Data>
<Data Name="TimeSpan">
<Value>Time span</Value>
</Data>
<Data Name="Title">
<Value>Title</Value>
</Data>
<Data Name="TlsCertsAcceptInvalid">
<Value>Accept invalid TLS/SSL certificates (self-signed, expired, ...)</Value>
</Data>
<Data Name="Toggle">
<Value>Toggle</Value>
</Data>
<Data Name="TogglePasswordAsterisks">
<Value>Show/hide password using asterisks</Value>
</Data>
<Data Name="TooManyFilesError">
<Value>Too many files have been selected. Select smaller groups and repeat the current procedure a few times.</Value>
</Data>
<Data Name="TransformTime">
<Value>The key transformation took {PARAM} seconds.</Value>
</Data>
<Data Name="TrayIcon">
<Value>Tray Icon</Value>
</Data>
<Data Name="TrayIconGray">
<Value>Use gray tray icon</Value>
</Data>
<Data Name="TrayIconSingleClick">
<Value>Single click instead of double click for default tray icon action</Value>
</Data>
<Data Name="TreeViewShowLines">
<Value>Show lines between nodes in tree views</Value>
</Data>
<Data Name="Trigger">
<Value>Trigger</Value>
</Data>
<Data Name="TriggerActionTypeUnknown">
<Value>The trigger action type is unknown.</Value>
</Data>
<Data Name="TriggerAdd">
<Value>Add Trigger</Value>
</Data>
<Data Name="TriggerAddDesc">
<Value>Create a new workflow automation.</Value>
</Data>
<Data Name="TriggerConditionTypeUnknown">
<Value>The trigger condition type is unknown.</Value>
</Data>
<Data Name="TriggerEdit">
<Value>Edit Trigger</Value>
</Data>
<Data Name="TriggerEditDesc">
<Value>Modify an existing workflow automation.</Value>
</Data>
<Data Name="TriggerEventTypeUnknown">
<Value>The trigger event type is unknown.</Value>
</Data>
<Data Name="TriggerExecutionFailed">
<Value>Trigger execution failed</Value>
</Data>
<Data Name="Triggering">
<Value>Triggering</Value>
</Data>
<Data Name="TriggerName">
<Value>Trigger name</Value>
</Data>
<Data Name="Triggers">
<Value>Triggers</Value>
</Data>
<Data Name="TriggersDesc">
<Value>Automate workflows using the trigger system.</Value>
</Data>
<Data Name="TriggersEdit">
<Value>Edit Triggers</Value>
</Data>
<Data Name="TriggerStateChange">
<Value>Change trigger on/off state</Value>
</Data>
<Data Name="Type">
<Value>Type</Value>
</Data>
<Data Name="TypeUnknownHint">
<Value>A newer KeePass version or a plugin might be required for this type.</Value>
</Data>
<Data Name="Underline">
<Value>Underline</Value>
</Data>
<Data Name="Undo">
<Value>Undo</Value>
</Data>
<Data Name="UnhidePasswords">
<Value>Unhide Passwords</Value>
</Data>
<Data Name="UnhidePasswordsDesc">
<Value>Allow displaying passwords as plain-text.</Value>
</Data>
<Data Name="UnhideSourceCharactersToo">
<Value>Unhide button also unhides source characters</Value>
</Data>
<Data Name="Unknown">
<Value>Unknown</Value>
</Data>
<Data Name="Unsaved">
<Value>unsaved</Value>
</Data>
<Data Name="UnsupportedByMono">
<Value>unsupported by Mono</Value>
</Data>
<Data Name="UpdateCheck">
<Value>Update Check</Value>
</Data>
<Data Name="UpdateCheckEnableQ">
<Value>Enable automatic update check?</Value>
</Data>
<Data Name="UpdateCheckFailedNoDl">
<Value>Update check failed. Version information file cannot be downloaded.</Value>
</Data>
<Data Name="UpdateCheckInfo">
<Value>KeePass can automatically check for updates on each program start.</Value>
</Data>
<Data Name="UpdateCheckInfoPriv">
<Value>No personal information is sent to the KeePass web server. KeePass just downloads a small version information file and compares the available version with the installed version.</Value>
</Data>
<Data Name="UpdateCheckInfoRes">
<Value>Automatic update checks are performed unintrusively in the background. A notification is only displayed when an update is available. Updates are not downloaded or installed automatically.</Value>
</Data>
<Data Name="UpdateCheckResults">
<Value>The results of the update check.</Value>
</Data>
<Data Name="UpdatedUIState">
<Value>User interface state updated</Value>
</Data>
<Data Name="UpToDate">
<Value>Up to date</Value>
</Data>
<Data Name="Url">
<Value>URL</Value>
</Data>
<Data Name="UrlFieldEmptyFirstTab">
<Value>The URL field (on the first tab page) is empty.</Value>
</Data>
<Data Name="UrlOpenDesc">
<Value>Open a database stored on a server.</Value>
</Data>
<Data Name="UrlOpenTitle">
<Value>Open From URL</Value>
</Data>
<Data Name="UrlOverride">
<Value>URL Override</Value>
</Data>
<Data Name="UrlOverrides">
<Value>URL Overrides</Value>
</Data>
<Data Name="UrlSaveDesc">
<Value>Save current database on a server.</Value>
</Data>
<Data Name="UrlSaveTitle">
<Value>Save To URL</Value>
</Data>
<Data Name="URtfCheck">
<Value>It is recommended to reopen the text and check it carefully.</Value>
</Data>
<Data Name="URtfProblem">
<Value>KeePass has detected that certain characters in your text may have been corrupted (due to a bug in Windows).</Value>
</Data>
<Data Name="URtfSuggestion">
<Value>In order to avoid text corruptions, turn off the Windows option 'Use Unicode UTF-8 for worldwide language support'.</Value>
</Data>
<Data Name="UseFileLocks">
<Value>Use database lock files</Value>
</Data>
<Data Name="UserName">
<Value>User Name</Value>
</Data>
<Data Name="UserNamePrompt">
<Value>Enter the user name:</Value>
</Data>
<Data Name="UserNameStc">
<Value>User name</Value>
</Data>
<Data Name="UseTransactedConfigWrites">
<Value>Use file transactions for writing configuration settings</Value>
</Data>
<Data Name="UseTransactedDatabaseWrites">
<Value>Use file transactions for writing databases</Value>
</Data>
<Data Name="Uuid">
<Value>UUID</Value>
</Data>
<Data Name="UuidDupInDb">
<Value>The database contains duplicate UUIDs.</Value>
</Data>
<Data Name="UuidFix">
<Value>When closing this dialog, KeePass will fix the problem (by generating new UUIDs for duplicates) and continue.</Value>
</Data>
<Data Name="ValidationFailed">
<Value>Validation failed</Value>
</Data>
<Data Name="Value">
<Value>Value</Value>
</Data>
<Data Name="Verb">
<Value>Verb</Value>
</Data>
<Data Name="VerifyWrittenFileAfterSave">
<Value>Verify written file after saving a database</Value>
</Data>
<Data Name="Version">
<Value>Version</Value>
</Data>
<Data Name="View">
<Value>View</Value>
</Data>
<Data Name="ViewCmd">
<Value>&View</Value>
</Data>
<Data Name="ViewEntryDesc">
<Value>You are viewing an entry.</Value>
</Data>
<Data Name="ViewEntryReadOnly">
<Value>View Entry (Read-Only)</Value>
</Data>
<Data Name="Wait">
<Value>Wait</Value>
</Data>
<Data Name="WaitForExit">
<Value>Wait for exit</Value>
</Data>
<Data Name="WaitPlease">
<Value>Please wait</Value>
</Data>
<Data Name="Warning">
<Value>Warning</Value>
</Data>
<Data Name="Warnings">
<Value>Warnings</Value>
</Data>
<Data Name="WebBrowser">
<Value>Web Browser</Value>
</Data>
<Data Name="WebSiteLogin">
<Value>Web Site Login</Value>
</Data>
<Data Name="WebSites">
<Value>Web Sites</Value>
</Data>
<Data Name="WindowsFavorites">
<Value>Windows Favorites</Value>
</Data>
<Data Name="WindowsOS">
<Value>Windows</Value>
</Data>
<Data Name="WindowStyle">
<Value>Window style</Value>
</Data>
<Data Name="WindowsUserAccount">
<Value>Windows user account</Value>
</Data>
<Data Name="WindowsUserAccountBackup">
<Value>You should create a complete backup of your Windows user account.</Value>
</Data>
<Data Name="WithoutContext">
<Value>Without Context</Value>
</Data>
<Data Name="WorkspaceLocked">
<Value>Workspace Locked</Value>
</Data>
<Data Name="XmlModInvalid">
<Value>The modified XML data is invalid.</Value>
</Data>
<Data Name="XmlReplace">
<Value>XML Replace</Value>
</Data>
<Data Name="XmlReplaceDesc">
<Value>Replace data in the XML representation of the database.</Value>
</Data>
<Data Name="XslExporter">
<Value>Transform using XSL Stylesheet</Value>
</Data>
<Data Name="XslFileType">
<Value>XSL Stylesheets</Value>
</Data>
<Data Name="XslSelectFile">
<Value>Select XSL Transformation File</Value>
</Data>
<Data Name="XslStylesheetsKdbx">
<Value>XSL Stylesheets for KDBX XML</Value>
</Data>
<Data Name="Yes">
<Value>Yes</Value>
</Data>
<Data Name="YesCmd">
<Value>&Yes</Value>
</Data>
<Data Name="Zoom">
<Value>Zoom</Value>
</Data>
</StringTable>
<StringTable Name="KLRes" Namespace="KeePassLib.Resources">
<Data Name="AlgorithmUnknown">
<Value>The algorithm is unknown.</Value>
</Data>
<Data Name="CharSetInvalid">
<Value>The character set is invalid.</Value>
</Data>
<Data Name="CharSetTooFewChars">
<Value>There are too few characters in the character set.</Value>
</Data>
<Data Name="CryptoStreamFailed">
<Value>Failed to initialize encryption/decryption stream!</Value>
</Data>
<Data Name="EncDataTooLarge">
<Value>The data is too large to be encrypted/decrypted securely using {PARAM}.</Value>
</Data>
<Data Name="EntryLower">
<Value>entry</Value>
</Data>
<Data Name="ErrorInClipboard">
<Value>An extended error report has been copied to the clipboard.</Value>
</Data>
<Data Name="Expect100Continue">
<Value>Expect 100-Continue responses</Value>
</Data>
<Data Name="FatalError">
<Value>Fatal Error</Value>
</Data>
<Data Name="FatalErrorText">
<Value>A fatal error has occurred!</Value>
</Data>
<Data Name="FileCorrupted">
<Value>The file is corrupted.</Value>
</Data>
<Data Name="FileHeaderCorrupted">
<Value>The file header is corrupted.</Value>
</Data>
<Data Name="FileIncomplete">
<Value>Data is missing at the end of the file, i.e. the file is incomplete.</Value>
</Data>
<Data Name="FileIncompleteExpc">
<Value>Less data than expected could be read from the file.</Value>
</Data>
<Data Name="FileLoadFailed">
<Value>Failed to load the specified file!</Value>
</Data>
<Data Name="FileLockedWrite">
<Value>The file is locked, because the following user is currently writing to it:</Value>
</Data>
<Data Name="FileNewVerOrPlgReq">
<Value>A newer KeePass version or a plugin is required to open this file.</Value>
</Data>
<Data Name="FileNewVerReq">
<Value>A newer KeePass version is required to open this file.</Value>
</Data>
<Data Name="FileSaveCorruptionWarning">
<Value>The target file might be corrupted. Please try saving again. If that fails, save the database to a different location.</Value>
</Data>
<Data Name="FileSaveFailed2">
<Value>Failed to save to the specified file!</Value>
</Data>
<Data Name="FileSigInvalid">
<Value>The file signature is invalid. Either the file isn't a KeePass database file at all or it is corrupted.</Value>
</Data>
<Data Name="FileUnknownCipher">
<Value>The file is encrypted using an unknown encryption algorithm!</Value>
</Data>
<Data Name="FileUnknownCompression">
<Value>The file is compressed using an unknown compression algorithm!</Value>
</Data>
<Data Name="FileVersionUnsupported">
<Value>The file format version is unsupported.</Value>
</Data>
<Data Name="FinalKeyCreationFailed">
<Value>Failed to create the final encryption/decryption key!</Value>
</Data>
<Data Name="FrameworkNotImplExcp">
<Value>The .NET Framework/runtime under which KeePass is currently running does not support this operation.</Value>
</Data>
<Data Name="General">
<Value>General</Value>
</Data>
<Data Name="GroupLower">
<Value>group</Value>
</Data>
<Data Name="InvalidCompositeKey">
<Value>The master key is invalid!</Value>
</Data>
<Data Name="InvalidCompositeKeyHint">
<Value>Make sure that the master key is correct and try it again.</Value>
</Data>
<Data Name="InvalidDataWhileDecoding">
<Value>Found invalid data while decoding.</Value>
</Data>
<Data Name="KeePass1xHint">
<Value>In order to import KeePass 1.x KDB files, create a new 2.x database file and click 'File' -> 'Import' in the main menu. In the import dialog, choose 'KeePass KDB (1.x)' as file format.</Value>
</Data>
<Data Name="KeyBits">
<Value>{PARAM}-bit key</Value>
</Data>
<Data Name="KeyFileDbSel">
<Value>Database files cannot be used as key files.</Value>
</Data>
<Data Name="KeyHashMismatch">
<Value>The key and the hash do not match, i.e. the key or the hash is invalid.</Value>
</Data>
<Data Name="MasterSeedLengthInvalid">
<Value>The length of the master key seed is invalid!</Value>
</Data>
<Data Name="OldFormat">
<Value>The selected file appears to be an old format</Value>
</Data>
<Data Name="Passive">
<Value>Passive</Value>
</Data>
<Data Name="PathBackslash">
<Value>The path contains a backslash. Such paths are not supported (for security reasons).</Value>
</Data>
<Data Name="PatternInvalid">
<Value>The pattern is invalid.</Value>
</Data>
<Data Name="PreAuth">
<Value>Pre-authenticate</Value>
</Data>
<Data Name="PwGenFailed">
<Value>Failed to generate a password.</Value>
</Data>
<Data Name="StructsTooDeep">
<Value>Structures are nested too deeply.</Value>
</Data>
<Data Name="Timeout">
<Value>Timeout</Value>
</Data>
<Data Name="TryAgainSecs">
<Value>Please try it again in a few seconds.</Value>
</Data>
<Data Name="UnknownError">
<Value>An unknown error occurred.</Value>
</Data>
<Data Name="UnknownHeaderId">
<Value>Unknown header ID</Value>
</Data>
<Data Name="UnknownKdf">
<Value>Unknown key derivation function!</Value>
</Data>
<Data Name="UserAccountKeyError">
<Value>The operating system did not grant KeePass read/write access to the user profile folder, where the protected user key is stored.</Value>
</Data>
<Data Name="UserAgent">
<Value>User agent</Value>
</Data>
</StringTable>
</Translation>
|