1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 1602 1603 1604 1605 1606 1607 1608 1609 1610 1611 1612 1613 1614 1615 1616 1617 1618 1619 1620 1621 1622 1623 1624 1625 1626 1627 1628 1629 1630 1631 1632 1633 1634 1635 1636 1637 1638 1639 1640 1641 1642 1643 1644 1645 1646 1647 1648 1649 1650 1651 1652 1653 1654 1655 1656 1657 1658 1659 1660 1661 1662 1663 1664 1665 1666 1667 1668 1669 1670 1671 1672 1673 1674 1675 1676 1677 1678 1679 1680 1681 1682 1683 1684 1685 1686 1687 1688 1689 1690 1691 1692 1693 1694 1695 1696 1697 1698 1699 1700 1701 1702 1703 1704 1705 1706 1707 1708 1709 1710 1711 1712 1713 1714 1715 1716 1717 1718 1719 1720 1721 1722 1723 1724 1725 1726 1727 1728 1729 1730 1731 1732 1733 1734 1735 1736 1737 1738 1739 1740 1741 1742 1743 1744 1745 1746 1747 1748 1749 1750 1751 1752 1753 1754 1755 1756 1757 1758 1759 1760 1761 1762 1763 1764 1765 1766 1767 1768 1769 1770 1771 1772 1773 1774 1775 1776 1777 1778 1779 1780 1781 1782 1783 1784 1785 1786 1787 1788 1789 1790 1791 1792 1793 1794 1795 1796 1797 1798 1799 1800 1801 1802 1803 1804 1805 1806 1807 1808 1809 1810 1811 1812 1813 1814 1815 1816 1817 1818 1819 1820 1821 1822 1823 1824 1825 1826 1827 1828 1829 1830 1831 1832 1833 1834 1835 1836 1837 1838 1839 1840 1841 1842 1843 1844 1845 1846 1847 1848 1849 1850 1851 1852 1853 1854 1855 1856 1857 1858 1859 1860 1861 1862 1863 1864 1865 1866 1867 1868 1869 1870 1871 1872 1873 1874 1875 1876 1877 1878 1879 1880 1881 1882 1883 1884 1885 1886 1887 1888 1889 1890 1891 1892 1893 1894 1895 1896 1897 1898 1899 1900 1901 1902 1903 1904 1905 1906 1907 1908 1909 1910 1911 1912 1913 1914 1915 1916 1917 1918 1919 1920 1921 1922 1923 1924 1925 1926 1927 1928 1929 1930 1931 1932 1933 1934 1935 1936 1937 1938 1939 1940 1941 1942 1943 1944 1945 1946 1947 1948 1949 1950 1951 1952 1953 1954 1955 1956 1957 1958 1959 1960 1961 1962 1963 1964 1965 1966 1967 1968 1969 1970 1971 1972 1973 1974 1975 1976 1977 1978 1979 1980 1981 1982 1983 1984 1985 1986 1987 1988 1989 1990 1991 1992 1993 1994 1995 1996 1997 1998 1999 2000 2001 2002 2003 2004 2005 2006 2007 2008 2009 2010 2011 2012 2013 2014 2015 2016 2017 2018 2019 2020 2021 2022 2023 2024 2025 2026 2027 2028 2029 2030 2031 2032 2033 2034 2035 2036 2037 2038 2039 2040 2041 2042 2043 2044 2045 2046 2047 2048 2049 2050 2051 2052 2053 2054 2055 2056 2057 2058 2059 2060 2061 2062 2063 2064 2065 2066 2067 2068 2069 2070 2071 2072 2073 2074 2075 2076 2077 2078 2079 2080 2081 2082 2083 2084 2085 2086 2087 2088 2089 2090 2091 2092 2093 2094 2095 2096 2097 2098 2099 2100 2101 2102 2103 2104 2105 2106 2107 2108 2109 2110 2111 2112 2113 2114 2115 2116 2117 2118 2119 2120 2121 2122 2123 2124 2125 2126 2127 2128 2129 2130 2131 2132 2133 2134 2135 2136 2137 2138 2139 2140 2141 2142 2143 2144 2145 2146 2147 2148 2149 2150 2151 2152 2153 2154 2155 2156 2157 2158 2159 2160 2161 2162 2163 2164 2165 2166 2167 2168 2169 2170 2171 2172 2173 2174 2175 2176 2177 2178 2179 2180 2181 2182 2183 2184 2185 2186 2187 2188 2189 2190 2191 2192 2193 2194 2195 2196 2197 2198 2199 2200 2201 2202 2203 2204 2205 2206 2207 2208 2209 2210 2211 2212 2213 2214 2215 2216 2217 2218 2219 2220 2221 2222 2223 2224 2225 2226 2227 2228 2229 2230 2231 2232 2233 2234 2235 2236 2237 2238 2239 2240 2241 2242 2243 2244 2245 2246 2247 2248 2249 2250 2251 2252 2253 2254 2255 2256 2257 2258 2259 2260 2261 2262 2263 2264 2265 2266 2267 2268 2269 2270 2271 2272 2273 2274 2275 2276 2277 2278 2279 2280 2281 2282 2283 2284 2285 2286 2287 2288 2289 2290 2291 2292 2293 2294 2295 2296 2297 2298 2299 2300 2301 2302 2303 2304 2305 2306 2307 2308 2309 2310 2311 2312 2313 2314 2315 2316 2317 2318 2319 2320 2321 2322 2323 2324 2325 2326 2327 2328 2329 2330 2331 2332 2333 2334 2335 2336 2337 2338 2339 2340 2341 2342 2343 2344 2345 2346 2347 2348 2349 2350 2351 2352 2353 2354 2355 2356 2357 2358 2359 2360 2361 2362 2363 2364 2365 2366 2367 2368 2369 2370 2371 2372 2373 2374 2375 2376 2377 2378 2379 2380 2381 2382 2383 2384 2385 2386 2387 2388 2389 2390 2391 2392 2393 2394 2395 2396 2397 2398 2399 2400 2401 2402 2403 2404 2405 2406 2407 2408 2409 2410 2411 2412 2413 2414 2415 2416 2417 2418 2419 2420 2421 2422 2423 2424 2425 2426 2427 2428 2429 2430 2431 2432 2433 2434 2435 2436 2437 2438 2439 2440 2441 2442 2443 2444 2445 2446 2447 2448 2449 2450 2451 2452 2453 2454 2455 2456 2457 2458 2459 2460 2461 2462 2463 2464 2465 2466 2467 2468 2469 2470 2471 2472 2473 2474 2475 2476 2477 2478 2479 2480 2481 2482 2483 2484 2485 2486 2487 2488 2489 2490 2491 2492 2493 2494 2495 2496 2497 2498 2499 2500 2501 2502 2503 2504 2505 2506 2507 2508 2509 2510 2511 2512 2513 2514 2515 2516 2517 2518 2519 2520 2521 2522 2523 2524 2525 2526 2527 2528 2529 2530 2531 2532 2533 2534 2535 2536 2537 2538 2539 2540 2541 2542 2543 2544 2545 2546 2547 2548 2549 2550 2551 2552 2553 2554 2555 2556 2557 2558 2559 2560 2561 2562 2563 2564 2565 2566 2567 2568 2569 2570 2571 2572 2573 2574 2575 2576 2577 2578 2579 2580 2581 2582 2583 2584 2585 2586 2587 2588 2589 2590 2591 2592 2593 2594 2595 2596 2597 2598 2599 2600 2601 2602 2603 2604 2605 2606 2607 2608 2609 2610 2611 2612 2613 2614 2615 2616 2617 2618 2619 2620 2621 2622 2623 2624 2625 2626 2627 2628 2629 2630 2631 2632 2633 2634 2635 2636 2637 2638 2639 2640 2641 2642 2643 2644 2645 2646 2647 2648 2649 2650 2651 2652 2653 2654 2655 2656 2657 2658 2659 2660 2661 2662 2663 2664 2665 2666 2667 2668 2669 2670 2671 2672 2673 2674 2675 2676 2677 2678 2679 2680 2681 2682 2683 2684 2685 2686 2687 2688 2689 2690 2691 2692 2693 2694 2695 2696 2697 2698 2699 2700 2701 2702 2703 2704 2705 2706 2707 2708 2709 2710 2711 2712 2713 2714 2715 2716 2717 2718 2719 2720 2721 2722 2723 2724 2725 2726 2727 2728 2729 2730 2731 2732 2733 2734 2735 2736 2737 2738 2739 2740 2741 2742 2743 2744 2745 2746 2747 2748 2749 2750 2751 2752 2753 2754 2755 2756 2757 2758 2759 2760 2761 2762 2763 2764 2765 2766 2767 2768 2769 2770 2771 2772 2773 2774 2775 2776 2777 2778 2779 2780 2781 2782 2783 2784 2785 2786 2787 2788 2789 2790 2791 2792 2793 2794 2795 2796 2797 2798 2799 2800 2801 2802 2803 2804 2805 2806 2807 2808 2809 2810 2811 2812 2813 2814 2815 2816 2817 2818 2819 2820 2821 2822 2823 2824 2825 2826 2827 2828 2829 2830 2831 2832 2833 2834 2835 2836 2837 2838 2839 2840 2841 2842 2843 2844 2845 2846 2847 2848 2849 2850 2851 2852 2853 2854 2855 2856 2857 2858 2859 2860 2861 2862 2863 2864 2865 2866 2867 2868 2869 2870 2871 2872 2873 2874 2875 2876 2877 2878 2879 2880 2881 2882 2883 2884 2885 2886 2887 2888 2889 2890 2891 2892 2893 2894 2895 2896 2897 2898 2899 2900 2901 2902 2903 2904 2905 2906 2907 2908 2909 2910 2911 2912 2913 2914 2915 2916 2917 2918 2919 2920 2921 2922 2923 2924 2925 2926 2927 2928 2929 2930 2931 2932 2933 2934 2935 2936 2937 2938 2939 2940 2941 2942 2943 2944 2945 2946 2947 2948 2949 2950 2951 2952 2953 2954 2955 2956 2957 2958 2959 2960 2961 2962 2963 2964 2965 2966 2967 2968 2969 2970 2971 2972 2973 2974 2975 2976 2977 2978 2979 2980 2981 2982 2983 2984 2985 2986 2987 2988 2989 2990 2991 2992 2993 2994 2995 2996 2997 2998 2999 3000 3001 3002 3003 3004 3005 3006 3007 3008 3009 3010 3011 3012 3013 3014 3015 3016 3017 3018 3019 3020 3021 3022 3023 3024 3025 3026 3027 3028 3029 3030 3031 3032 3033 3034 3035 3036 3037 3038 3039 3040 3041 3042 3043 3044 3045 3046 3047 3048 3049 3050 3051 3052 3053 3054 3055 3056 3057 3058 3059 3060 3061 3062 3063 3064 3065 3066 3067 3068 3069 3070 3071 3072 3073 3074 3075 3076 3077 3078 3079 3080 3081 3082 3083 3084 3085 3086 3087 3088 3089 3090 3091 3092 3093 3094 3095 3096 3097 3098 3099 3100 3101 3102 3103 3104 3105 3106 3107 3108 3109 3110 3111 3112 3113 3114 3115 3116 3117 3118 3119 3120 3121 3122 3123 3124 3125 3126 3127 3128 3129 3130 3131 3132 3133 3134 3135 3136 3137 3138 3139 3140 3141 3142 3143 3144 3145 3146 3147 3148 3149 3150 3151 3152 3153 3154 3155 3156 3157 3158 3159 3160 3161 3162 3163 3164 3165 3166 3167 3168 3169 3170 3171 3172 3173 3174 3175 3176 3177 3178 3179 3180 3181 3182 3183 3184 3185 3186 3187 3188 3189 3190 3191 3192 3193 3194 3195 3196 3197 3198 3199 3200 3201 3202 3203 3204 3205 3206 3207 3208 3209 3210 3211 3212 3213 3214 3215 3216 3217 3218 3219 3220 3221 3222 3223 3224 3225 3226 3227 3228 3229 3230 3231 3232 3233 3234 3235 3236 3237 3238 3239 3240 3241 3242 3243 3244 3245 3246 3247 3248 3249 3250 3251 3252 3253 3254 3255 3256 3257 3258 3259 3260 3261 3262 3263 3264 3265 3266 3267 3268 3269 3270 3271 3272 3273 3274 3275 3276 3277 3278 3279 3280 3281 3282 3283 3284 3285 3286 3287 3288 3289 3290 3291 3292 3293 3294 3295 3296 3297 3298 3299 3300 3301 3302 3303 3304 3305 3306 3307 3308 3309 3310 3311 3312 3313 3314 3315 3316 3317 3318 3319 3320 3321 3322 3323 3324 3325 3326 3327 3328 3329 3330 3331 3332 3333 3334 3335 3336 3337 3338 3339 3340 3341 3342 3343 3344 3345 3346 3347 3348 3349 3350 3351 3352 3353 3354 3355 3356 3357 3358 3359 3360 3361 3362 3363 3364 3365 3366 3367 3368 3369 3370 3371 3372 3373 3374 3375 3376 3377 3378 3379 3380 3381 3382 3383 3384 3385 3386 3387 3388 3389 3390 3391 3392 3393 3394 3395 3396 3397 3398 3399 3400 3401 3402 3403 3404 3405 3406 3407 3408 3409 3410 3411 3412 3413 3414 3415 3416 3417 3418 3419 3420 3421 3422 3423 3424 3425 3426 3427 3428 3429 3430 3431 3432 3433 3434 3435 3436 3437 3438 3439 3440 3441 3442 3443 3444 3445 3446 3447 3448 3449 3450 3451 3452 3453 3454 3455 3456 3457 3458 3459 3460 3461 3462 3463 3464 3465 3466 3467 3468 3469 3470 3471 3472 3473 3474 3475 3476 3477 3478 3479 3480 3481 3482 3483 3484 3485 3486 3487 3488 3489 3490 3491 3492 3493 3494 3495 3496 3497 3498 3499 3500 3501 3502 3503 3504 3505 3506 3507 3508 3509 3510 3511 3512 3513 3514 3515 3516 3517 3518 3519 3520 3521 3522 3523 3524 3525 3526 3527 3528 3529 3530 3531 3532 3533 3534 3535 3536 3537 3538 3539 3540 3541 3542 3543 3544 3545 3546 3547 3548 3549 3550 3551 3552 3553 3554 3555 3556 3557 3558 3559 3560 3561 3562 3563 3564 3565 3566 3567 3568 3569 3570 3571 3572 3573 3574 3575 3576 3577 3578 3579 3580 3581 3582 3583 3584 3585 3586 3587 3588 3589 3590 3591 3592 3593 3594 3595 3596 3597 3598 3599 3600 3601 3602 3603 3604 3605 3606 3607 3608 3609 3610 3611 3612 3613 3614 3615 3616 3617 3618 3619 3620 3621 3622 3623 3624 3625 3626 3627 3628 3629 3630 3631 3632 3633 3634 3635 3636 3637 3638 3639 3640 3641 3642 3643 3644 3645 3646 3647 3648 3649 3650 3651 3652 3653 3654 3655 3656 3657 3658 3659 3660 3661 3662 3663 3664 3665 3666 3667 3668 3669 3670 3671 3672 3673 3674 3675 3676 3677 3678 3679 3680 3681 3682 3683 3684 3685 3686 3687 3688 3689 3690 3691 3692 3693 3694 3695 3696 3697 3698 3699 3700 3701 3702 3703 3704 3705 3706 3707 3708 3709 3710 3711 3712 3713 3714 3715 3716 3717 3718 3719 3720 3721 3722 3723 3724 3725 3726 3727 3728 3729 3730 3731 3732 3733 3734 3735 3736 3737 3738 3739 3740 3741 3742 3743 3744 3745 3746 3747 3748 3749 3750 3751 3752 3753 3754 3755 3756 3757 3758 3759 3760 3761 3762 3763 3764 3765 3766 3767 3768 3769 3770 3771 3772 3773 3774 3775 3776 3777 3778 3779 3780 3781 3782 3783 3784 3785 3786 3787 3788 3789 3790 3791 3792 3793 3794 3795 3796 3797 3798 3799 3800 3801 3802 3803 3804 3805 3806 3807 3808 3809 3810 3811 3812 3813 3814 3815 3816 3817 3818 3819 3820 3821 3822 3823 3824 3825 3826 3827 3828 3829 3830 3831 3832 3833 3834 3835 3836 3837 3838 3839 3840 3841 3842 3843 3844 3845 3846 3847 3848 3849 3850 3851 3852 3853 3854 3855 3856 3857 3858 3859 3860 3861 3862 3863 3864 3865 3866 3867 3868 3869 3870 3871 3872 3873 3874 3875 3876 3877 3878 3879 3880 3881 3882 3883 3884 3885 3886 3887 3888 3889 3890 3891 3892 3893 3894 3895 3896 3897 3898 3899 3900 3901 3902 3903 3904 3905 3906 3907 3908 3909 3910 3911 3912 3913 3914 3915 3916 3917 3918 3919 3920 3921 3922 3923 3924 3925 3926 3927 3928 3929 3930 3931 3932 3933 3934 3935 3936 3937 3938 3939 3940 3941 3942 3943 3944 3945 3946 3947 3948 3949 3950 3951 3952 3953 3954 3955 3956 3957 3958 3959 3960 3961 3962 3963 3964 3965 3966 3967 3968 3969 3970 3971 3972 3973 3974 3975 3976 3977 3978 3979 3980 3981 3982 3983 3984 3985 3986 3987 3988 3989 3990 3991 3992 3993 3994 3995 3996 3997 3998 3999 4000 4001 4002 4003 4004 4005 4006 4007 4008 4009 4010 4011 4012 4013 4014 4015 4016 4017 4018 4019 4020 4021 4022 4023 4024 4025 4026 4027 4028 4029 4030 4031 4032 4033 4034 4035 4036 4037 4038 4039 4040 4041 4042 4043 4044 4045 4046 4047 4048 4049 4050 4051 4052 4053 4054 4055 4056 4057 4058 4059 4060 4061 4062 4063 4064 4065 4066 4067 4068 4069 4070 4071 4072 4073 4074 4075 4076 4077 4078 4079 4080 4081 4082 4083 4084 4085 4086 4087 4088 4089 4090 4091 4092 4093 4094 4095 4096 4097 4098 4099 4100 4101 4102 4103 4104 4105 4106 4107 4108 4109 4110 4111 4112 4113 4114 4115 4116 4117 4118 4119 4120 4121 4122 4123 4124 4125 4126 4127 4128 4129 4130 4131 4132 4133 4134 4135 4136 4137 4138 4139 4140 4141 4142 4143 4144 4145 4146 4147 4148 4149 4150 4151 4152 4153 4154 4155 4156 4157 4158 4159 4160 4161 4162 4163 4164 4165 4166 4167 4168 4169 4170 4171 4172 4173 4174 4175 4176 4177 4178 4179 4180 4181 4182 4183 4184 4185 4186 4187 4188 4189 4190 4191 4192 4193 4194 4195 4196 4197 4198 4199 4200 4201 4202 4203 4204 4205 4206 4207 4208 4209 4210 4211 4212 4213 4214 4215 4216 4217 4218 4219 4220 4221 4222 4223 4224 4225 4226 4227 4228 4229 4230 4231 4232 4233 4234 4235 4236 4237 4238 4239 4240 4241 4242 4243 4244 4245 4246 4247 4248 4249 4250 4251 4252 4253 4254 4255 4256 4257 4258 4259 4260 4261 4262 4263 4264 4265 4266 4267 4268 4269 4270 4271 4272 4273 4274 4275 4276 4277 4278 4279 4280 4281 4282 4283 4284 4285 4286 4287 4288 4289 4290 4291 4292 4293 4294 4295 4296 4297 4298 4299 4300 4301 4302 4303 4304 4305 4306 4307 4308 4309 4310 4311 4312 4313 4314 4315 4316 4317 4318 4319 4320 4321 4322 4323 4324 4325 4326 4327 4328 4329 4330 4331 4332 4333 4334 4335 4336 4337 4338 4339 4340 4341 4342 4343 4344 4345 4346 4347 4348 4349 4350 4351 4352 4353 4354 4355 4356 4357 4358 4359 4360 4361 4362 4363 4364 4365 4366 4367 4368 4369 4370 4371 4372 4373 4374 4375 4376 4377 4378 4379 4380 4381 4382 4383 4384 4385 4386 4387 4388 4389 4390 4391 4392 4393 4394 4395 4396 4397 4398 4399 4400 4401 4402 4403 4404 4405 4406 4407 4408 4409 4410 4411 4412 4413 4414 4415 4416 4417 4418 4419 4420 4421 4422 4423 4424 4425 4426 4427 4428 4429 4430 4431 4432
|
# SOME DESCRIPTIVE TITLE.
# This file is put in the public domain.
# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
#
#, fuzzy
msgid ""
msgstr ""
"Project-Id-Version: cryptsetup 2.8.4\n"
"Report-Msgid-Bugs-To: cryptsetup@lists.linux.dev\n"
"POT-Creation-Date: 2026-01-27 15:17+0100\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: \n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=CHARSET\n"
"Content-Transfer-Encoding: 8bit\n"
#: lib/libdevmapper.c:419
msgid "Cannot initialize device-mapper, running as non-root user."
msgstr ""
#: lib/libdevmapper.c:422
msgid "Cannot initialize device-mapper. Is dm_mod kernel module loaded?"
msgstr ""
#: lib/libdevmapper.c:1125
msgid "Requested deferred flag is not supported."
msgstr ""
#: lib/libdevmapper.c:1194
#, c-format
msgid "DM-UUID for device %s was truncated."
msgstr ""
#: lib/libdevmapper.c:1598
msgid "Unknown dm target type."
msgstr ""
#: lib/libdevmapper.c:1725 lib/libdevmapper.c:1731 lib/libdevmapper.c:1850
#: lib/libdevmapper.c:1853
msgid "Requested dm-crypt performance options are not supported."
msgstr ""
#: lib/libdevmapper.c:1740 lib/libdevmapper.c:1746 lib/libdevmapper.c:1758
msgid "Requested dm-verity data corruption handling options are not supported."
msgstr ""
#: lib/libdevmapper.c:1752
msgid "Requested dm-verity tasklets option is not supported."
msgstr ""
#: lib/libdevmapper.c:1764
msgid "Requested dm-verity FEC options are not supported."
msgstr ""
#: lib/libdevmapper.c:1770
msgid "Requested data integrity options are not supported."
msgstr ""
#: lib/libdevmapper.c:1774
msgid "Requested sector_size option is not supported."
msgstr ""
#: lib/libdevmapper.c:1779
msgid "The device size is not multiple of the requested sector size."
msgstr ""
#: lib/libdevmapper.c:1783
msgid "Requested integrity_key_size option is not supported."
msgstr ""
#: lib/libdevmapper.c:1790 lib/libdevmapper.c:1796
msgid "Requested automatic recalculation of integrity tags is not supported."
msgstr ""
#: lib/libdevmapper.c:1802 lib/libdevmapper.c:1856 lib/libdevmapper.c:1859
#: lib/luks2/luks2_json_metadata.c:2781
msgid "Discard/TRIM is not supported."
msgstr ""
#: lib/libdevmapper.c:1808
msgid "Requested dm-integrity bitmap mode is not supported."
msgstr ""
#: lib/libdevmapper.c:1814
msgid "Requested dm-integrity inline mode is not supported."
msgstr ""
#: lib/libdevmapper.c:2870
#, c-format
msgid "Failed to query dm-%s segment."
msgstr ""
#: lib/random.c:60
msgid ""
"System is out of entropy while generating volume key.\n"
"Please move mouse or type some text in another window to gather some random "
"events.\n"
msgstr ""
#: lib/random.c:64
#, c-format
msgid "Generating key (%d%% done).\n"
msgstr ""
#: lib/random.c:150
msgid "Running in FIPS mode."
msgstr ""
#: lib/random.c:156
msgid "Fatal error during RNG initialisation."
msgstr ""
#: lib/random.c:194
msgid "Unknown RNG quality requested."
msgstr ""
#: lib/random.c:199
msgid "Error reading from RNG."
msgstr ""
#: lib/setup.c:248
msgid "OPAL support is disabled in libcryptsetup."
msgstr ""
#: lib/setup.c:250
#, c-format
msgid "Device %s or kernel does not support OPAL encryption."
msgstr ""
#: lib/setup.c:266
msgid "Cannot initialize crypto RNG backend."
msgstr ""
#: lib/setup.c:272
msgid "Cannot initialize crypto backend."
msgstr ""
#: lib/setup.c:305 lib/setup.c:2766 lib/verity/verity.c:109
#, c-format
msgid "Hash algorithm %s not supported."
msgstr ""
#: lib/setup.c:308 lib/loopaes/loopaes.c:78
#, c-format
msgid "Key processing error (using hash %s)."
msgstr ""
#: lib/setup.c:389 lib/setup.c:426
msgid "Cannot determine device type. Incompatible activation of device?"
msgstr ""
#: lib/setup.c:395 lib/setup.c:4160
msgid "This operation is supported only for LUKS device."
msgstr ""
#: lib/setup.c:432
msgid "This operation is supported only for LUKS2 device."
msgstr ""
#: lib/setup.c:489 lib/luks2/luks2_reencrypt.c:3101
msgid "All key slots full."
msgstr ""
#: lib/setup.c:500
#, c-format
msgid "Key slot %d is invalid, please select between 0 and %d."
msgstr ""
#: lib/setup.c:506
#, c-format
msgid "Key slot %d is full, please select another one."
msgstr ""
#: lib/setup.c:531 lib/setup.c:3875
msgid "Device size is not aligned to device logical block size."
msgstr ""
#: lib/setup.c:628
#, c-format
msgid "Header detected but device %s is too small."
msgstr ""
#: lib/setup.c:669 lib/setup.c:3760 lib/setup.c:5227
#: lib/luks2/luks2_reencrypt.c:3945 lib/luks2/luks2_reencrypt.c:4434
msgid "This operation is not supported for this device type."
msgstr ""
#: lib/setup.c:674
msgid "Illegal operation with reencryption in-progress."
msgstr ""
#: lib/setup.c:806
msgid "Failed to rollback LUKS2 metadata in memory."
msgstr ""
#: lib/setup.c:893 lib/luks1/keymanage.c:236 lib/luks1/keymanage.c:514
#: lib/luks2/luks2_json_metadata.c:1365 src/cryptsetup.c:1780
#: src/cryptsetup.c:1964 src/cryptsetup.c:2019 src/cryptsetup.c:2217
#: src/cryptsetup.c:2362 src/cryptsetup.c:2640 src/cryptsetup.c:2953
#: src/cryptsetup.c:3021 src/utils_reencrypt.c:2281
#: src/utils_reencrypt_luks1.c:1137 tokens/ssh/cryptsetup-ssh.c:72
#, c-format
msgid "Device %s is not a valid LUKS device."
msgstr ""
#: lib/setup.c:896 lib/luks1/keymanage.c:517
#, c-format
msgid "Unsupported LUKS version %d."
msgstr ""
#: lib/setup.c:1270
#, c-format
msgid "No known cipher specification pattern detected for active device %s."
msgstr ""
#: lib/setup.c:1515 lib/setup.c:3507 lib/setup.c:3599 lib/setup.c:3611
#: lib/setup.c:3783 lib/setup.c:5805
#, c-format
msgid "Device %s is not active."
msgstr ""
#: lib/setup.c:1532
#, c-format
msgid "Underlying device for crypt device %s disappeared."
msgstr ""
#: lib/setup.c:1614
msgid "Invalid plain crypt parameters."
msgstr ""
#: lib/setup.c:1619 lib/setup.c:2669
msgid "Invalid key size."
msgstr ""
#: lib/setup.c:1624 lib/setup.c:2674 lib/setup.c:2879
msgid "UUID is not supported for this crypt type."
msgstr ""
#: lib/setup.c:1629 lib/setup.c:2679
msgid "Detached metadata device is not supported for this crypt type."
msgstr ""
#: lib/setup.c:1639 lib/setup.c:1887 lib/luks2/luks2_reencrypt.c:3034
#: src/cryptsetup.c:1492 src/cryptsetup.c:3760
msgid "Unsupported encryption sector size."
msgstr ""
#: lib/setup.c:1647 lib/setup.c:1916 lib/setup.c:3869
msgid "Device size is not aligned to requested sector size."
msgstr ""
#: lib/setup.c:1699 lib/setup.c:1951 lib/setup.c:2328
msgid "Can't format LUKS without device."
msgstr ""
#: lib/setup.c:1704 lib/setup.c:1956
#, c-format
msgid "Zoned device %s cannot be used for LUKS header."
msgstr ""
#: lib/setup.c:1711 lib/setup.c:1963 lib/setup.c:2334
msgid "Requested data alignment is not compatible with data offset."
msgstr ""
#: lib/setup.c:1751 lib/setup.c:1981
msgid ""
"WARNING: DAX device can corrupt data as it does not guarantee atomic sector "
"updates.\n"
msgstr ""
#: lib/setup.c:1789 lib/setup.c:2088 lib/setup.c:2109 lib/setup.c:2517
#: lib/setup.c:2564 lib/setup.c:2896
#, c-format
msgid "Cannot wipe header on device %s."
msgstr ""
#: lib/setup.c:1802 lib/setup.c:2161
#, c-format
msgid ""
"Device %s is too small for activation, there is no remaining space for "
"data.\n"
msgstr ""
#: lib/setup.c:1843
msgid "Volume key is too small for encryption with integrity extensions."
msgstr ""
#: lib/setup.c:1847
msgid "Integrity key size is too small."
msgstr ""
#: lib/setup.c:1856
#, c-format
msgid "Cipher %s-%s (key size %zd bits) is not available."
msgstr ""
#: lib/setup.c:1897
msgid ""
"WARNING: The device activation will fail, dm-crypt is missing support for "
"requested encryption sector size.\n"
msgstr ""
#: lib/setup.c:2091 lib/setup.c:2458 lib/setup.c:2520 lib/utils_device.c:896
#: lib/luks1/keyencryption.c:245 lib/luks2/luks2_reencrypt.c:3073
#: lib/luks2/luks2_reencrypt.c:4494
#, c-format
msgid "Device %s is too small."
msgstr ""
#: lib/setup.c:2102 lib/setup.c:2141 lib/setup.c:2557 lib/setup.c:2615
#, c-format
msgid "Cannot format device %s in use."
msgstr ""
#: lib/setup.c:2105 lib/setup.c:2144 lib/setup.c:2560 lib/setup.c:2618
#, c-format
msgid "Cannot format device %s, permission denied."
msgstr ""
#: lib/setup.c:2129 lib/setup.c:2587 lib/setup.c:2969
#, c-format
msgid "Cannot format integrity for device %s."
msgstr ""
#: lib/setup.c:2148 lib/setup.c:2626
#, c-format
msgid "Cannot format device %s."
msgstr ""
#: lib/setup.c:2191
msgid "Cannot get OPAL alignment parameters."
msgstr ""
#: lib/setup.c:2203
msgid "Bogus OPAL logical block size."
msgstr ""
#: lib/setup.c:2208 lib/luks2/hw_opal/hw_opal.c:305
msgid "Bogus OPAL logical block size differs from device block size."
msgstr ""
#: lib/setup.c:2214
msgid "Requested data offset is not compatible with OPAL block size."
msgstr ""
#: lib/setup.c:2221
msgid "Requested data alignment is not compatible with OPAL alignment."
msgstr ""
#: lib/setup.c:2241
msgid "Data offset does not satisfy OPAL alignment requirements."
msgstr ""
#: lib/setup.c:2254
msgid ""
"Requested data alignment does not satisfy locking range alignment "
"requirements."
msgstr ""
#: lib/setup.c:2468
#, c-format
msgid ""
"Compensating device size by %<PRIu64> sectors to align it with OPAL "
"alignment granularity."
msgstr ""
#: lib/setup.c:2528 lib/setup.c:4243 lib/setup.c:4432 lib/utils_wipe.c:356
#: lib/luks2/luks2_json_metadata.c:2724 lib/luks2/luks2_json_metadata.c:2992
#, c-format
msgid "Failed to acquire OPAL lock on device %s."
msgstr ""
#: lib/setup.c:2538
msgid "Incorrect OPAL Admin key."
msgstr ""
#: lib/setup.c:2540
msgid "Cannot setup OPAL segment."
msgstr ""
#: lib/setup.c:2622
#, c-format
msgid ""
"Cannot format device %s, OPAL device seems to be fully write-protected now."
msgstr ""
#: lib/setup.c:2624
msgid ""
"This is perhaps a bug in firmware. Run OPAL PSID reset and reconnect for "
"recovery."
msgstr ""
#: lib/setup.c:2644
#, c-format
msgid "Locking range %d reset on device %s failed."
msgstr ""
#: lib/setup.c:2664
msgid "Can't format LOOPAES without device."
msgstr ""
#: lib/setup.c:2709
msgid "Can't format VERITY without device."
msgstr ""
#: lib/setup.c:2720 lib/verity/verity.c:88
#, c-format
msgid "Unsupported VERITY hash type %d."
msgstr ""
#: lib/setup.c:2726 lib/verity/verity.c:96
msgid "Unsupported VERITY block size."
msgstr ""
#: lib/setup.c:2731 lib/verity/verity.c:61
msgid "Unsupported VERITY hash offset."
msgstr ""
#: lib/setup.c:2736
msgid "Unsupported VERITY FEC offset."
msgstr ""
#: lib/setup.c:2760
msgid "Data area overlaps with hash area."
msgstr ""
#: lib/setup.c:2785
msgid "Hash area overlaps with FEC area."
msgstr ""
#: lib/setup.c:2792
msgid "Data area overlaps with FEC area."
msgstr ""
#: lib/setup.c:2884
msgid "Integrity key size mismatch."
msgstr ""
#: lib/setup.c:2935
#, c-format
msgid ""
"WARNING: Requested tag size %d bytes differs from %s size output (%d "
"bytes).\n"
msgstr ""
#: lib/setup.c:3048 lib/setup.c:3150
#, c-format
msgid "Unknown or unsupported device type %s requested."
msgstr ""
#: lib/setup.c:3064
#, c-format
msgid "Device %s does not provide inline integrity data fields."
msgstr ""
#: lib/setup.c:3070
#, c-format
msgid ""
"Inline tag size %<PRIu32> [bytes] is larger than %<PRIu32> provided by "
"device %s."
msgstr ""
#: lib/setup.c:3085
#, c-format
msgid "Sector must be the same as device hardware sector (%zu bytes)."
msgstr ""
#: lib/setup.c:3515 lib/setup.c:3604 lib/setup.c:3617
#, c-format
msgid "Unsupported parameters on device %s."
msgstr ""
#: lib/setup.c:3521 lib/setup.c:3624 lib/luks2/luks2_reencrypt.c:2928
#: lib/luks2/luks2_reencrypt.c:3197 lib/luks2/luks2_reencrypt.c:3591
#, c-format
msgid "Mismatching parameters on device %s."
msgstr ""
#: lib/setup.c:3647
msgid "Crypt devices mismatch."
msgstr ""
#: lib/setup.c:3679 lib/setup.c:3684 lib/luks2/luks2_reencrypt.c:2412
#: lib/luks2/luks2_reencrypt.c:2944 lib/luks2/luks2_reencrypt.c:4233
#, c-format
msgid "Failed to reload device %s."
msgstr ""
#: lib/setup.c:3690 lib/setup.c:3696 lib/luks2/luks2_reencrypt.c:2382
#: lib/luks2/luks2_reencrypt.c:2389 lib/luks2/luks2_reencrypt.c:2958
#, c-format
msgid "Failed to suspend device %s."
msgstr ""
#: lib/setup.c:3702 lib/luks2/luks2_reencrypt.c:2396
#: lib/luks2/luks2_reencrypt.c:2979 lib/luks2/luks2_reencrypt.c:4146
#: lib/luks2/luks2_reencrypt.c:4237
#, c-format
msgid "Failed to resume device %s."
msgstr ""
#: lib/setup.c:3717
#, c-format
msgid "Fatal error while reloading device %s (on top of device %s)."
msgstr ""
#: lib/setup.c:3720 lib/setup.c:3722
#, c-format
msgid "Failed to switch device %s to dm-error."
msgstr ""
#: lib/setup.c:3765
msgid "Can not resize LUKS2 device with static size."
msgstr ""
#: lib/setup.c:3770
msgid "Resize of LUKS2 device with integrity protection is not supported."
msgstr ""
#: lib/setup.c:3816
msgid "Cannot resize loop device."
msgstr ""
#: lib/setup.c:3860
msgid "WARNING: Maximum size already set or kernel doesn't support resize.\n"
msgstr ""
#: lib/setup.c:3926
msgid "Resize failed, the kernel doesn't support it."
msgstr ""
#: lib/setup.c:3958
msgid "Do you really want to change UUID of device?"
msgstr ""
#: lib/setup.c:4050
msgid "Header backup file does not contain compatible LUKS header."
msgstr ""
#: lib/setup.c:4143
#, c-format
msgid "Volume %s is not active."
msgstr ""
#: lib/setup.c:4198
#, c-format
msgid "Volume %s is already suspended."
msgstr ""
#: lib/setup.c:4224
#, c-format
msgid "Suspend is not supported for device %s."
msgstr ""
#: lib/setup.c:4226 lib/setup.c:4234
#, c-format
msgid "Error during suspending device %s."
msgstr ""
#: lib/setup.c:4249
#, c-format
msgid "Device %s was suspended but hardware OPAL device cannot be locked."
msgstr ""
#: lib/setup.c:4280 lib/setup.c:4457
#, c-format
msgid "Resume is not supported for device %s."
msgstr ""
#: lib/setup.c:4282 lib/setup.c:4447 lib/setup.c:4459
#, c-format
msgid "Error during resuming device %s."
msgstr ""
#: lib/setup.c:4301
msgid "Failed to unlink volume key from user specified keyring."
msgstr ""
#: lib/setup.c:4423 lib/setup.c:5592
msgid "Failed to link volume key in user defined keyring."
msgstr ""
#: lib/setup.c:4521 src/cryptsetup.c:2721
#, c-format
msgid "Volume %s is not suspended."
msgstr ""
#: lib/setup.c:4622 lib/setup.c:7265 lib/setup.c:7287 lib/setup.c:7341
#: src/cryptsetup.c:1856 src/cryptsetup.c:2260 src/cryptsetup.c:2278
#: src/utils_reencrypt.c:305 src/utils_reencrypt.c:1966
msgid "Volume key does not match the volume."
msgstr ""
#: lib/setup.c:4776
msgid "Failed to swap new key slot."
msgstr ""
#: lib/setup.c:4874
#, c-format
msgid "Key slot %d is invalid."
msgstr ""
#: lib/setup.c:4880 src/cryptsetup.c:1977 src/cryptsetup.c:2437
#: src/cryptsetup.c:3121 src/cryptsetup.c:3181
#, c-format
msgid "Keyslot %d is not active."
msgstr ""
#: lib/setup.c:4899
msgid "Device header overlaps with data area."
msgstr ""
#: lib/setup.c:5120
msgid "Reencryption in-progress. Cannot activate device."
msgstr ""
#: lib/setup.c:5122 lib/luks2/luks2_json_metadata.c:2888
#: lib/luks2/luks2_reencrypt.c:3722
msgid "Failed to get reencryption lock."
msgstr ""
#: lib/setup.c:5144
msgid "LUKS2 reencryption recovery using volume key(s) failed."
msgstr ""
#: lib/setup.c:5280
#, c-format
msgid "Device %s already exists."
msgstr ""
#: lib/setup.c:5287
#, c-format
msgid "Cannot use device %s, name is invalid or still in use."
msgstr ""
#: lib/setup.c:5299
msgid "Reencryption volume keys do not match the volume."
msgstr ""
#: lib/setup.c:5316
msgid "Incorrect volume key specified for plain device."
msgstr ""
#: lib/setup.c:5342 lib/setup.c:5403
msgid "Device type is not properly initialized."
msgstr ""
#: lib/setup.c:5441
msgid "Kernel keyring is not supported by the kernel."
msgstr ""
#: lib/setup.c:5445
msgid "Kernel keyring missing: required for passing signature to kernel."
msgstr ""
#: lib/setup.c:5500
#, c-format
msgid "Cannot use keyring key %s."
msgstr ""
#: lib/setup.c:5713
msgid "Incorrect root hash specified for verity device."
msgstr ""
#: lib/setup.c:5754 lib/setup.c:5779
msgid "OPAL does not support deferred deactivation."
msgstr ""
#: lib/setup.c:5769 lib/setup.c:5800 lib/luks2/luks2_json_metadata.c:2953
#: src/utils_reencrypt.c:89
#, c-format
msgid "Device %s is still in use."
msgstr ""
#: lib/setup.c:5787
#, c-format
msgid "Could not cancel deferred remove from device %s."
msgstr ""
#: lib/setup.c:5809
#, c-format
msgid "Invalid device %s."
msgstr ""
#: lib/setup.c:5956
msgid "Volume key buffer too small."
msgstr ""
#: lib/setup.c:5967
msgid "Cannot retrieve volume key for LUKS2 device."
msgstr ""
#: lib/setup.c:5976
msgid "Cannot retrieve volume key for LUKS1 device."
msgstr ""
#: lib/setup.c:5990
msgid "Cannot retrieve volume key for plain device."
msgstr ""
#: lib/setup.c:5998
msgid "Cannot retrieve root hash for verity device."
msgstr ""
#: lib/setup.c:6007
msgid "Cannot retrieve volume key for BITLK device."
msgstr ""
#: lib/setup.c:6012
msgid "Cannot retrieve volume key for FVAULT2 device."
msgstr ""
#: lib/setup.c:6014
#, c-format
msgid "This operation is not supported for %s crypt device."
msgstr ""
#: lib/setup.c:6199 lib/setup.c:6210
msgid "Dump operation is not supported for this device type."
msgstr ""
#: lib/setup.c:6590
#, c-format
msgid "Data offset is not multiple of %u bytes."
msgstr ""
#: lib/setup.c:6898
#, c-format
msgid "Cannot convert device %s which is still in use."
msgstr ""
#: lib/setup.c:7206 lib/setup.c:7350
#, c-format
msgid "Failed to assign keyslot %u as the new volume key."
msgstr ""
#: lib/setup.c:7230
msgid "Failed to initialize default LUKS2 keyslot parameters."
msgstr ""
#: lib/setup.c:7236
#, c-format
msgid "Failed to assign keyslot %d to digest."
msgstr ""
#: lib/setup.c:7467
msgid "Cannot add key slot, all slots disabled and no volume key provided."
msgstr ""
#: lib/setup.c:7540 lib/verity/verity.c:333
msgid "Failed to load key in kernel keyring."
msgstr ""
#: lib/setup.c:7731
#, c-format
msgid "Could not find keyring described by \"%s\"."
msgstr ""
#: lib/setup.c:7796
msgid "Failed to acquire global memory-hard access serialization lock."
msgstr ""
#: lib/utils.c:204 lib/tcrypt/tcrypt.c:490
msgid "Failed to open key file."
msgstr ""
#: lib/utils.c:212
msgid "Cannot read keyfile from a terminal."
msgstr ""
#: lib/utils.c:228
msgid "Failed to stat key file."
msgstr ""
#: lib/utils.c:236 lib/utils.c:257
msgid "Cannot seek to requested keyfile offset."
msgstr ""
#: lib/utils.c:251 lib/utils.c:266 src/utils_password.c:219
#: src/utils_password.c:231
msgid "Out of memory while reading passphrase."
msgstr ""
#: lib/utils.c:286
msgid "Error reading passphrase."
msgstr ""
#: lib/utils.c:303
msgid "Nothing to read on input."
msgstr ""
#: lib/utils.c:310
msgid "Maximum keyfile size exceeded."
msgstr ""
#: lib/utils.c:315
msgid "Cannot read requested amount of data."
msgstr ""
#: lib/utils_device.c:207 lib/utils_storage_wrappers.c:99
#: lib/luks1/keyencryption.c:79 src/utils_reencrypt.c:2254
#, c-format
msgid "Device %s does not exist or access denied."
msgstr ""
#: lib/utils_device.c:217
#, c-format
msgid "Device %s is not compatible."
msgstr ""
#: lib/utils_device.c:546
#, c-format
msgid "Ignoring bogus optimal-io size for data device (%u bytes)."
msgstr ""
#: lib/utils_device.c:707
#, c-format
msgid "Device %s is too small. Need at least %<PRIu64> bytes."
msgstr ""
#: lib/utils_device.c:788
#, c-format
msgid "Cannot use device %s which is in use (already mapped or mounted)."
msgstr ""
#: lib/utils_device.c:792
#, c-format
msgid "Cannot use device %s, permission denied."
msgstr ""
#: lib/utils_device.c:795
#, c-format
msgid "Cannot get info about device %s."
msgstr ""
#: lib/utils_device.c:818
msgid "Cannot use a loopback device, running as non-root user."
msgstr ""
#: lib/utils_device.c:829
msgid ""
"Attaching loopback device failed (loop device with autoclear flag is "
"required)."
msgstr ""
#: lib/utils_device.c:877
#, c-format
msgid "Requested offset is beyond real size of device %s."
msgstr ""
#: lib/utils_device.c:885
#, c-format
msgid "Device %s has zero size."
msgstr ""
#: lib/utils_pbkdf.c:105
msgid "Requested PBKDF target time cannot be zero."
msgstr ""
#: lib/utils_pbkdf.c:111
#, c-format
msgid "Unknown PBKDF type %s."
msgstr ""
#: lib/utils_pbkdf.c:116
#, c-format
msgid "Requested hash %s is not supported."
msgstr ""
#: lib/utils_pbkdf.c:127
msgid "Requested PBKDF type is not supported for LUKS1."
msgstr ""
#: lib/utils_pbkdf.c:133
msgid "PBKDF max memory or parallel threads must not be set with pbkdf2."
msgstr ""
#: lib/utils_pbkdf.c:138 lib/utils_pbkdf.c:148
#, c-format
msgid "Forced iteration count is too low for %s (minimum is %u)."
msgstr ""
#: lib/utils_pbkdf.c:153
#, c-format
msgid "Forced memory cost is too low for %s (minimum is %u kilobytes)."
msgstr ""
#: lib/utils_pbkdf.c:160
#, c-format
msgid ""
"Requested maximum PBKDF memory cost is too high (maximum is %d kilobytes)."
msgstr ""
#: lib/utils_pbkdf.c:165
msgid ""
"Requested maximum PBKDF memory cost is too high (limited by the integer "
"maximal size)."
msgstr ""
#: lib/utils_pbkdf.c:169
msgid "Requested maximum PBKDF memory cannot be zero."
msgstr ""
#: lib/utils_pbkdf.c:173
#, c-format
msgid "Requested maximum PBKDF parallel cost is too high (maximum is %d)."
msgstr ""
#: lib/utils_pbkdf.c:178
msgid "Requested PBKDF parallel threads cannot be zero."
msgstr ""
#: lib/utils_pbkdf.c:198
msgid "Only PBKDF2 is supported in FIPS mode."
msgstr ""
#: lib/utils_benchmark.c:171
msgid "PBKDF benchmark disabled but iterations not set."
msgstr ""
#: lib/utils_benchmark.c:190
#, c-format
msgid "Not compatible PBKDF2 options (using hash algorithm %s)."
msgstr ""
#: lib/utils_benchmark.c:210
msgid "Not compatible PBKDF options."
msgstr ""
#: lib/utils_device_locking.c:88
#, c-format
msgid ""
"Locking aborted. The locking path %s/%s is unusable (not a directory or "
"missing)."
msgstr ""
#: lib/utils_device_locking.c:105
#, c-format
msgid ""
"Locking aborted. The locking path %s/%s is unusable (%s is not a directory)."
msgstr ""
#: lib/utils_wipe.c:143 lib/utils_wipe.c:218 src/utils_reencrypt_luks1.c:700
#: src/utils_reencrypt_luks1.c:793
msgid "Cannot seek to device offset."
msgstr ""
#: lib/utils_wipe.c:240
#, c-format
msgid "Device wipe error, offset %<PRIu64>."
msgstr ""
#: lib/utils_wipe.c:332
msgid "Incorrect OPAL PSID."
msgstr ""
#: lib/utils_wipe.c:334
msgid "Cannot erase OPAL device."
msgstr ""
#: lib/luks1/keyencryption.c:27
#, c-format
msgid ""
"Failed to setup dm-crypt key mapping for device %s.\n"
"Check that kernel supports %s cipher (check syslog for more info)."
msgstr ""
#: lib/luks1/keyencryption.c:32
msgid "Key size in XTS mode must be 256 or 512 bits."
msgstr ""
#: lib/luks1/keyencryption.c:34
msgid "Cipher specification should be in [cipher]-[mode]-[iv] format."
msgstr ""
#: lib/luks1/keyencryption.c:85 lib/luks1/keymanage.c:353
#: lib/luks1/keymanage.c:664 lib/luks1/keymanage.c:1150
#: lib/luks2/luks2_json_metadata.c:1518 lib/luks2/luks2_keyslot.c:711
#, c-format
msgid "Cannot write to device %s, permission denied."
msgstr ""
#: lib/luks1/keyencryption.c:108
msgid "Failed to open temporary keystore device."
msgstr ""
#: lib/luks1/keyencryption.c:115
msgid "Failed to access temporary keystore device."
msgstr ""
#: lib/luks1/keyencryption.c:189 lib/luks2/luks2_keyslot_luks2.c:49
#: lib/luks2/luks2_keyslot_luks2.c:67 lib/luks2/luks2_keyslot_reenc.c:184
msgid "IO error while encrypting keyslot."
msgstr ""
#: lib/luks1/keyencryption.c:236 lib/luks1/keymanage.c:356
#: lib/luks1/keymanage.c:617 lib/luks1/keymanage.c:667 lib/tcrypt/tcrypt.c:668
#: lib/fvault2/fvault2.c:870 lib/verity/verity.c:67 lib/verity/verity.c:183
#: lib/verity/verity_hash.c:312 lib/verity/verity_hash.c:321
#: lib/verity/verity_hash.c:341 lib/verity/verity_fec.c:247
#: lib/verity/verity_fec.c:259 lib/verity/verity_fec.c:264
#: lib/luks2/luks2_json_metadata.c:1521 src/utils_reencrypt_luks1.c:108
#: src/utils_reencrypt_luks1.c:120
#, c-format
msgid "Cannot open device %s."
msgstr ""
#: lib/luks1/keyencryption.c:247 lib/luks2/luks2_keyslot_luks2.c:128
msgid "IO error while decrypting keyslot."
msgstr ""
#: lib/luks1/keymanage.c:117
#, c-format
msgid "Device %s is too small. (LUKS1 requires at least %<PRIu64> bytes.)"
msgstr ""
#: lib/luks1/keymanage.c:138 lib/luks1/keymanage.c:146
#: lib/luks1/keymanage.c:158 lib/luks1/keymanage.c:169
#: lib/luks1/keymanage.c:181
#, c-format
msgid "LUKS keyslot %u is invalid."
msgstr ""
#: lib/luks1/keymanage.c:254 lib/luks2/luks2_json_metadata.c:1382
#, c-format
msgid "Requested header backup file %s already exists."
msgstr ""
#: lib/luks1/keymanage.c:256 lib/luks2/luks2_json_metadata.c:1384
#, c-format
msgid "Cannot create header backup file %s."
msgstr ""
#: lib/luks1/keymanage.c:263 lib/luks2/luks2_json_metadata.c:1391
#, c-format
msgid "Cannot write header backup file %s."
msgstr ""
#: lib/luks1/keymanage.c:295 lib/luks2/luks2_json_metadata.c:1428
msgid "Backup file does not contain valid LUKS header."
msgstr ""
#: lib/luks1/keymanage.c:308 lib/luks1/keymanage.c:580
#: lib/luks2/luks2_json_metadata.c:1450
#, c-format
msgid "Cannot open header backup file %s."
msgstr ""
#: lib/luks1/keymanage.c:316 lib/luks2/luks2_json_metadata.c:1458
#, c-format
msgid "Cannot read header backup file %s."
msgstr ""
#: lib/luks1/keymanage.c:326
msgid "Data offset or key size differs on device and backup, restore failed."
msgstr ""
#: lib/luks1/keymanage.c:334
#, c-format
msgid "Device %s %s%s"
msgstr ""
#: lib/luks1/keymanage.c:335
msgid ""
"does not contain LUKS header. Replacing header can destroy data on that "
"device."
msgstr ""
#: lib/luks1/keymanage.c:336
msgid ""
"already contains LUKS header. Replacing header will destroy existing "
"keyslots."
msgstr ""
#: lib/luks1/keymanage.c:337 lib/luks2/luks2_json_metadata.c:1490
msgid ""
"\n"
"WARNING: real device header has different UUID than backup!"
msgstr ""
#: lib/luks1/keymanage.c:385
msgid "Non standard key size, manual repair required."
msgstr ""
#: lib/luks1/keymanage.c:395
msgid "Non standard keyslots alignment, manual repair required."
msgstr ""
#: lib/luks1/keymanage.c:404
#, c-format
msgid "Cipher mode repaired (%s -> %s)."
msgstr ""
#: lib/luks1/keymanage.c:415
#, c-format
msgid "Cipher hash repaired to lowercase (%s)."
msgstr ""
#: lib/luks1/keymanage.c:417 lib/luks1/keymanage.c:523
#: lib/luks1/keymanage.c:777
#, c-format
msgid "Requested LUKS hash %s is not supported."
msgstr ""
#: lib/luks1/keymanage.c:431
msgid "Repairing keyslots."
msgstr ""
#: lib/luks1/keymanage.c:450
#, c-format
msgid "Keyslot %i: offset repaired (%u -> %u)."
msgstr ""
#: lib/luks1/keymanage.c:458
#, c-format
msgid "Keyslot %i: stripes repaired (%u -> %u)."
msgstr ""
#: lib/luks1/keymanage.c:467
#, c-format
msgid "Keyslot %i: bogus partition signature."
msgstr ""
#: lib/luks1/keymanage.c:472
#, c-format
msgid "Keyslot %i: salt wiped."
msgstr ""
#: lib/luks1/keymanage.c:489
msgid "Writing LUKS header to disk."
msgstr ""
#: lib/luks1/keymanage.c:494
msgid "Repair failed."
msgstr ""
#: lib/luks1/keymanage.c:549
#, c-format
msgid "LUKS cipher mode %s is invalid."
msgstr ""
#: lib/luks1/keymanage.c:554
#, c-format
msgid "LUKS hash %s is invalid."
msgstr ""
#: lib/luks1/keymanage.c:561 src/cryptsetup.c:1367
msgid "No known problems detected for LUKS header."
msgstr ""
#: lib/luks1/keymanage.c:689
#, c-format
msgid "Error during update of LUKS header on device %s."
msgstr ""
#: lib/luks1/keymanage.c:697
#, c-format
msgid "Error re-reading LUKS header after update on device %s."
msgstr ""
#: lib/luks1/keymanage.c:771
msgid ""
"Data offset for LUKS header must be either 0 or higher than header size."
msgstr ""
#: lib/luks1/keymanage.c:782 lib/luks1/keymanage.c:853
#: lib/luks2/luks2_json_format.c:231 lib/luks2/luks2_json_metadata.c:1261
#: src/utils_reencrypt.c:701
msgid "Wrong LUKS UUID format provided."
msgstr ""
#: lib/luks1/keymanage.c:804
msgid "Cannot create LUKS header: reading random salt failed."
msgstr ""
#: lib/luks1/keymanage.c:832
#, c-format
msgid "Cannot create LUKS header: header digest failed (using hash %s)."
msgstr ""
#: lib/luks1/keymanage.c:877
#, c-format
msgid "Key slot %d active, purge first."
msgstr ""
#: lib/luks1/keymanage.c:883
#, c-format
msgid "Key slot %d material includes too few stripes. Header manipulation?"
msgstr ""
#: lib/luks1/keymanage.c:921 lib/luks2/luks2_keyslot_luks2.c:260
msgid "PBKDF2 iteration value overflow."
msgstr ""
#: lib/luks1/keymanage.c:1040
#, c-format
msgid "Cannot open keyslot (using hash %s)."
msgstr ""
#: lib/luks1/keymanage.c:1136
#, c-format
msgid "Key slot %d is invalid, please select keyslot between 0 and %d."
msgstr ""
#: lib/luks1/keymanage.c:1154 lib/luks2/luks2_keyslot.c:715
#, c-format
msgid "Cannot wipe device %s."
msgstr ""
#: lib/loopaes/loopaes.c:140
msgid "Detected not yet supported GPG encrypted keyfile."
msgstr ""
#: lib/loopaes/loopaes.c:141
msgid "Please use gpg --decrypt <KEYFILE> | cryptsetup --keyfile=- ...\n"
msgstr ""
#: lib/loopaes/loopaes.c:162 lib/loopaes/loopaes.c:182
msgid "Incompatible loop-AES keyfile detected."
msgstr ""
#: lib/loopaes/loopaes.c:238
msgid "Kernel does not support loop-AES compatible mapping."
msgstr ""
#: lib/tcrypt/tcrypt.c:497
#, c-format
msgid "Error reading keyfile %s."
msgstr ""
#: lib/tcrypt/tcrypt.c:547
#, c-format
msgid "Maximum TCRYPT passphrase length (%zu) exceeded."
msgstr ""
#: lib/tcrypt/tcrypt.c:589
#, c-format
msgid "PBKDF2 hash algorithm %s not available, skipping."
msgstr ""
#: lib/tcrypt/tcrypt.c:608 src/cryptsetup.c:1240
msgid "Required kernel crypto interface not available."
msgstr ""
#: lib/tcrypt/tcrypt.c:610 src/cryptsetup.c:1242
msgid "Ensure you have algif_skcipher kernel module loaded."
msgstr ""
#: lib/tcrypt/tcrypt.c:752
#, c-format
msgid "Activation is not supported for %d sector size."
msgstr ""
#: lib/tcrypt/tcrypt.c:758
msgid "Kernel does not support activation for this TCRYPT legacy mode."
msgstr ""
#: lib/tcrypt/tcrypt.c:813
#, c-format
msgid "Activating TCRYPT system encryption for partition %s."
msgstr ""
#: lib/tcrypt/tcrypt.c:828
msgid ""
"Cannot determine TCRYPT system partition offset, activating whole encrypted "
"area."
msgstr ""
#: lib/tcrypt/tcrypt.c:837
msgid ""
"Cannot determine TCRYPT system partition offset, activating device as a "
"system partition."
msgstr ""
#: lib/tcrypt/tcrypt.c:917
msgid "Kernel does not support TCRYPT compatible mapping."
msgstr ""
#: lib/tcrypt/tcrypt.c:1146
msgid "This function is not supported without TCRYPT header load."
msgstr ""
#: lib/bitlk/bitlk.c:293
#, c-format
msgid ""
"Unexpected metadata entry type '%u' found when parsing supported Volume "
"Master Key."
msgstr ""
#: lib/bitlk/bitlk.c:351
msgid "Invalid string found when parsing Volume Master Key."
msgstr ""
#: lib/bitlk/bitlk.c:355
#, c-format
msgid ""
"Unexpected string ('%s') found when parsing supported Volume Master Key."
msgstr ""
#: lib/bitlk/bitlk.c:375
#, c-format
msgid ""
"Unexpected metadata entry value '%u' found when parsing supported Volume "
"Master Key."
msgstr ""
#: lib/bitlk/bitlk.c:528
msgid "BITLK version 1 is currently not supported."
msgstr ""
#: lib/bitlk/bitlk.c:534
msgid "Invalid or unknown boot signature for BITLK device."
msgstr ""
#: lib/bitlk/bitlk.c:546
#, c-format
msgid "Unsupported sector size %<PRIu16>."
msgstr ""
#: lib/bitlk/bitlk.c:554
#, c-format
msgid "Failed to read BITLK header from %s."
msgstr ""
#: lib/bitlk/bitlk.c:603
#, c-format
msgid "Failed to read and validate BITLK FVE metadata from %s."
msgstr ""
#: lib/bitlk/bitlk.c:610
#, c-format
msgid "Failed to validate the location of BITLK FVE metadata from %s."
msgstr ""
#: lib/bitlk/bitlk.c:621
#, c-format
msgid "BITLK FVE metadata changed between reads from %s."
msgstr ""
#: lib/bitlk/bitlk.c:628
#, c-format
msgid "Failed to hash BITLK FVE metadata read from %s."
msgstr ""
#: lib/bitlk/bitlk.c:644
#, c-format
msgid "Failed to parse BITLK FVE validation metadata from %s."
msgstr ""
#: lib/bitlk/bitlk.c:695
msgid "Unknown or unsupported encryption type."
msgstr ""
#: lib/bitlk/bitlk.c:733
#, c-format
msgid "Failed to check BITLK metadata entries previously read from %s."
msgstr ""
#: lib/bitlk/bitlk.c:853
msgid "Failed to convert BITLK volume description"
msgstr ""
#: lib/bitlk/bitlk.c:1018
#, c-format
msgid "Unexpected metadata entry type '%u' found when parsing external key."
msgstr ""
#: lib/bitlk/bitlk.c:1041
#, c-format
msgid "BEK file GUID '%s' does not match GUID of the volume."
msgstr ""
#: lib/bitlk/bitlk.c:1045
#, c-format
msgid "Unexpected metadata entry value '%u' found when parsing external key."
msgstr ""
#: lib/bitlk/bitlk.c:1084
#, c-format
msgid "Unsupported BEK metadata version %<PRIu32>"
msgstr ""
#: lib/bitlk/bitlk.c:1089
#, c-format
msgid "Unexpected BEK metadata size %<PRIu32> does not match BEK file length"
msgstr ""
#: lib/bitlk/bitlk.c:1115
msgid "Unexpected metadata entry found when parsing startup key."
msgstr ""
#: lib/bitlk/bitlk.c:1218
msgid "This operation is not supported."
msgstr ""
#: lib/bitlk/bitlk.c:1226
msgid "Unexpected key data size."
msgstr ""
#: lib/bitlk/bitlk.c:1442
msgid "This BITLK device is in an unsupported state and cannot be activated."
msgstr ""
#: lib/bitlk/bitlk.c:1447
#, c-format
msgid "BITLK devices with type '%s' cannot be activated."
msgstr ""
#: lib/bitlk/bitlk.c:1486
#, c-format
msgid ""
"WARNING: BitLocker volume size %<PRIu64> does not match the underlying "
"device size %<PRIu64>"
msgstr ""
#: lib/bitlk/bitlk.c:1613
msgid ""
"Cannot activate device, kernel dm-crypt is missing support for BITLK IV."
msgstr ""
#: lib/bitlk/bitlk.c:1617
msgid ""
"Cannot activate device, kernel dm-crypt is missing support for BITLK "
"Elephant diffuser."
msgstr ""
#: lib/bitlk/bitlk.c:1621
msgid ""
"Cannot activate device, kernel dm-crypt is missing support for large sector "
"size."
msgstr ""
#: lib/bitlk/bitlk.c:1625
msgid "Cannot activate device, kernel dm-zero module is missing."
msgstr ""
#: lib/fvault2/fvault2.c:530
#, c-format
msgid "Could not read %u bytes of volume header."
msgstr ""
#: lib/fvault2/fvault2.c:542
#, c-format
msgid "Unsupported FVAULT2 version %<PRIu16>."
msgstr ""
#: lib/verity/verity.c:55 lib/verity/verity.c:169
#, c-format
msgid "Verity device %s does not use on-disk header."
msgstr ""
#: lib/verity/verity.c:83
#, c-format
msgid "Unsupported VERITY version %d."
msgstr ""
#: lib/verity/verity.c:118
msgid "VERITY header corrupted."
msgstr ""
#: lib/verity/verity.c:163
#, c-format
msgid "Wrong VERITY UUID format provided on device %s."
msgstr ""
#: lib/verity/verity.c:207
#, c-format
msgid "Error during update of verity header on device %s."
msgstr ""
#: lib/verity/verity.c:261
msgid "Root hash signature verification is not supported."
msgstr ""
#: lib/verity/verity.c:266
msgid "Root hash signature required."
msgstr ""
#: lib/verity/verity.c:282
msgid "Errors cannot be repaired with FEC device."
msgstr ""
#: lib/verity/verity.c:284
#, c-format
msgid "Found %u repairable errors with FEC device."
msgstr ""
#: lib/verity/verity.c:368
msgid "Kernel does not support dm-verity mapping."
msgstr ""
#: lib/verity/verity.c:372
msgid "Kernel does not support dm-verity signature option."
msgstr ""
#: lib/verity/verity.c:383
msgid "Verity device detected corruption after activation."
msgstr ""
#: lib/verity/verity_hash.c:53
#, c-format
msgid "Spare area is not zeroed at position %<PRIu64>."
msgstr ""
#: lib/verity/verity_hash.c:154 lib/verity/verity_hash.c:287
#: lib/verity/verity_hash.c:298
msgid "Device offset overflow."
msgstr ""
#: lib/verity/verity_hash.c:205
#, c-format
msgid "Verification failed at position %<PRIu64>."
msgstr ""
#: lib/verity/verity_hash.c:294
msgid "Hash area overflow."
msgstr ""
#: lib/verity/verity_hash.c:372
msgid "Verification of data area failed."
msgstr ""
#: lib/verity/verity_hash.c:377
msgid "Verification of root hash failed."
msgstr ""
#: lib/verity/verity_hash.c:383
msgid "Input/output error while creating hash area."
msgstr ""
#: lib/verity/verity_hash.c:385
msgid "Creation of hash area failed."
msgstr ""
#: lib/verity/verity_hash.c:420
#, c-format
msgid ""
"WARNING: Kernel cannot activate device if data block size exceeds page size "
"(%u)."
msgstr ""
#: lib/verity/verity_fec.c:118
msgid "Failed to allocate RS context."
msgstr ""
#: lib/verity/verity_fec.c:136
msgid "Failed to allocate buffer."
msgstr ""
#: lib/verity/verity_fec.c:146
#, c-format
msgid "Failed to read RS block %<PRIu64> byte %d."
msgstr ""
#: lib/verity/verity_fec.c:159
#, c-format
msgid "Failed to read parity for RS block %<PRIu64>."
msgstr ""
#: lib/verity/verity_fec.c:167
#, c-format
msgid "Failed to repair parity for block %<PRIu64>."
msgstr ""
#: lib/verity/verity_fec.c:179
#, c-format
msgid "Failed to write parity for RS block %<PRIu64>."
msgstr ""
#: lib/verity/verity_fec.c:195
msgid "Block sizes must match for FEC."
msgstr ""
#: lib/verity/verity_fec.c:201
msgid "Invalid number of parity bytes."
msgstr ""
#: lib/verity/verity_fec.c:235
msgid "Invalid FEC segment length."
msgstr ""
#: lib/verity/verity_fec.c:303
#, c-format
msgid "Failed to determine size for device %s."
msgstr ""
#: lib/integrity/integrity.c:50
#, c-format
msgid "Incompatible kernel dm-integrity metadata (version %u) detected on %s."
msgstr ""
#: lib/integrity/integrity.c:304 lib/integrity/integrity.c:488
msgid "Kernel does not support dm-integrity mapping."
msgstr ""
#: lib/integrity/integrity.c:310
msgid "Kernel does not support dm-integrity fixed metadata alignment."
msgstr ""
#: lib/integrity/integrity.c:319
msgid ""
"Kernel refuses to activate insecure recalculate option (see legacy "
"activation options to override)."
msgstr ""
#: lib/integrity/integrity.c:325
msgid "Kernel does not support dm-integrity inline mode."
msgstr ""
#: lib/luks2/luks2_disk_metadata.c:382 lib/luks2/luks2_json_metadata.c:1184
#: lib/luks2/luks2_json_metadata.c:1510
#, c-format
msgid "Failed to acquire write lock on device %s."
msgstr ""
#: lib/luks2/luks2_disk_metadata.c:391
msgid ""
"Detected attempt for concurrent LUKS2 metadata update. Aborting operation."
msgstr ""
#: lib/luks2/luks2_disk_metadata.c:726 lib/luks2/luks2_disk_metadata.c:747
msgid ""
"Device contains ambiguous signatures, cannot auto-recover LUKS2.\n"
"Please run \"cryptsetup repair\" for recovery."
msgstr ""
#: lib/luks2/luks2_json_format.c:219
#, c-format
msgid ""
"WARNING: keyslots area (%<PRIu64> bytes) is very small, available LUKS2 "
"keyslot count is very limited.\n"
msgstr ""
#: lib/luks2/luks2_json_format.c:418
msgid "Requested data offset is too small."
msgstr ""
#: lib/luks2/luks2_json_format.c:459
#, c-format
msgid "WARNING: LUKS2 metadata size changed to %<PRIu64> bytes.\n"
msgstr ""
#: lib/luks2/luks2_json_format.c:463
#, c-format
msgid "WARNING: LUKS2 keyslots area size changed to %<PRIu64> bytes.\n"
msgstr ""
#: lib/luks2/luks2_json_metadata.c:1171 lib/luks2/luks2_json_metadata.c:1357
#: lib/luks2/luks2_json_metadata.c:1417 lib/luks2/luks2_keyslot_luks2.c:81
#: lib/luks2/luks2_keyslot_luks2.c:105
#, c-format
msgid "Failed to acquire read lock on device %s."
msgstr ""
#: lib/luks2/luks2_json_metadata.c:1277
msgid "Label is too long."
msgstr ""
#: lib/luks2/luks2_json_metadata.c:1435
#, c-format
msgid "Forbidden LUKS2 requirements detected in backup %s."
msgstr ""
#: lib/luks2/luks2_json_metadata.c:1474
msgid "Data offset differ on device and backup, restore failed."
msgstr ""
#: lib/luks2/luks2_json_metadata.c:1480
msgid ""
"Binary header with keyslot areas size differ on device and backup, restore "
"failed."
msgstr ""
#: lib/luks2/luks2_json_metadata.c:1487
#, c-format
msgid "Device %s %s%s%s%s"
msgstr ""
#: lib/luks2/luks2_json_metadata.c:1488
msgid ""
"does not contain LUKS2 header. Replacing header can destroy data on that "
"device."
msgstr ""
#: lib/luks2/luks2_json_metadata.c:1489
msgid ""
"already contains LUKS2 header. Replacing header will destroy existing "
"keyslots."
msgstr ""
#: lib/luks2/luks2_json_metadata.c:1491
msgid ""
"\n"
"WARNING: unknown LUKS2 requirements detected in real device header!\n"
"Replacing header with backup may corrupt the data on that device!"
msgstr ""
#: lib/luks2/luks2_json_metadata.c:1493
msgid ""
"\n"
"WARNING: Unfinished offline reencryption detected on the device!\n"
"Replacing header with backup may corrupt data."
msgstr ""
#: lib/luks2/luks2_json_metadata.c:1591
#, c-format
msgid "Ignored unknown flag %s."
msgstr ""
#: lib/luks2/luks2_json_metadata.c:2545 lib/luks2/luks2_reencrypt.c:2109
#, c-format
msgid "Missing key for dm-crypt segment %u"
msgstr ""
#: lib/luks2/luks2_json_metadata.c:2557 lib/luks2/luks2_reencrypt.c:2122
msgid "Failed to set dm-crypt segment."
msgstr ""
#: lib/luks2/luks2_json_metadata.c:2563 lib/luks2/luks2_reencrypt.c:2128
msgid "Failed to set dm-linear segment."
msgstr ""
#: lib/luks2/luks2_json_metadata.c:2683 src/utils_reencrypt.c:578
msgid "No known cipher specification pattern detected in LUKS2 header."
msgstr ""
#: lib/luks2/luks2_json_metadata.c:2691
msgid "OPAL device must have static device size."
msgstr ""
#: lib/luks2/luks2_json_metadata.c:2711
msgid ""
"Encrypted OPAL device with integrity must be smaller than locking range."
msgstr ""
#: lib/luks2/luks2_json_metadata.c:2716
msgid "OPAL device must have same size as locking range."
msgstr ""
#: lib/luks2/luks2_json_metadata.c:2736
#, c-format
msgid "OPAL device is %s already unlocked.\n"
msgstr ""
#: lib/luks2/luks2_json_metadata.c:2775
msgid "Unsupported device integrity configuration."
msgstr ""
#: lib/luks2/luks2_json_metadata.c:2791
msgid "Underlying dm-integrity device with unexpected provided data sectors."
msgstr ""
#: lib/luks2/luks2_json_metadata.c:2886
msgid "Reencryption in-progress. Cannot deactivate device."
msgstr ""
#: lib/luks2/luks2_json_metadata.c:2897 lib/luks2/luks2_reencrypt.c:4283
#, c-format
msgid "Failed to replace suspended device %s with dm-error target."
msgstr ""
#: lib/luks2/luks2_json_metadata.c:2976 lib/luks2/luks2_json_metadata.c:2998
#, c-format
msgid "Device %s was deactivated but hardware OPAL device cannot be locked."
msgstr ""
#: lib/luks2/luks2_json_metadata.c:3020
msgid "Unmet LUKS2 requirements detected."
msgstr ""
#: lib/luks2/luks2_json_metadata.c:3028
msgid ""
"Operation incompatible with device marked for legacy reencryption. Aborting."
msgstr ""
#: lib/luks2/luks2_json_metadata.c:3030
msgid ""
"Operation incompatible with device marked for LUKS2 reencryption. Aborting."
msgstr ""
#: lib/luks2/luks2_json_metadata.c:3032
msgid "Operation incompatible with device using OPAL. Aborting."
msgstr ""
#: lib/luks2/luks2_json_metadata.c:3034
msgid "Operation incompatible with device using inline HW tags. Aborting."
msgstr ""
#: lib/luks2/luks2_keyslot.c:543 lib/luks2/luks2_keyslot.c:601
msgid "Not enough available memory to open a keyslot."
msgstr ""
#: lib/luks2/luks2_keyslot.c:545 lib/luks2/luks2_keyslot.c:603
msgid "Keyslot open failed."
msgstr ""
#: lib/luks2/luks2_keyslot_luks2.c:42 lib/luks2/luks2_keyslot_luks2.c:99
#, c-format
msgid "Cannot use %s-%s cipher for keyslot encryption."
msgstr ""
#: lib/luks2/luks2_keyslot_luks2.c:262
msgid "Not enough memory for keyslot key derivation."
msgstr ""
#: lib/luks2/luks2_keyslot_luks2.c:276 lib/luks2/luks2_keyslot_luks2.c:405
#: lib/luks2/luks2_keyslot_reenc.c:434 lib/luks2/luks2_reencrypt.c:2733
#, c-format
msgid "Hash algorithm %s is not available."
msgstr ""
#: lib/luks2/luks2_keyslot_luks2.c:522
msgid "No space for new keyslot."
msgstr ""
#: lib/luks2/luks2_keyslot_reenc.c:583
msgid "Invalid reencryption resilience mode change requested."
msgstr ""
#: lib/luks2/luks2_keyslot_reenc.c:704
#, c-format
msgid ""
"Can not update resilience type. New type only provides %<PRIu64> bytes, "
"required space is: %<PRIu64> bytes."
msgstr ""
#: lib/luks2/luks2_keyslot_reenc.c:714
msgid "Failed to refresh reencryption verification digest."
msgstr ""
#: lib/luks2/luks2_luks1_convert.c:532
#, c-format
msgid "Cannot check status of device with uuid: %s."
msgstr ""
#: lib/luks2/luks2_luks1_convert.c:558
msgid "Unable to convert header with LUKSMETA additional metadata."
msgstr ""
#: lib/luks2/luks2_luks1_convert.c:590 lib/luks2/luks2_reencrypt.c:3890
#, c-format
msgid "Unable to use cipher specification %s-%s for LUKS2."
msgstr ""
#: lib/luks2/luks2_luks1_convert.c:599
#, c-format
msgid "Unable to use cipher specification %s-%s for LUKS2 keyslot."
msgstr ""
#: lib/luks2/luks2_luks1_convert.c:614
msgid "Unable to move keyslot area. Not enough space."
msgstr ""
#: lib/luks2/luks2_luks1_convert.c:653
msgid "Cannot convert to LUKS2 format - invalid metadata."
msgstr ""
#: lib/luks2/luks2_luks1_convert.c:670
msgid "Unable to move keyslot area. LUKS2 keyslots area too small."
msgstr ""
#: lib/luks2/luks2_luks1_convert.c:676 lib/luks2/luks2_luks1_convert.c:1006
msgid "Unable to move keyslot area."
msgstr ""
#: lib/luks2/luks2_luks1_convert.c:791
msgid ""
"Cannot convert to LUKS1 format - default segment encryption sector size is "
"not 512 bytes."
msgstr ""
#: lib/luks2/luks2_luks1_convert.c:799
msgid ""
"Cannot convert to LUKS1 format - key slot digests are not LUKS1 compatible."
msgstr ""
#: lib/luks2/luks2_luks1_convert.c:813
#, c-format
msgid "Cannot convert to LUKS1 format - device uses wrapped key cipher %s."
msgstr ""
#: lib/luks2/luks2_luks1_convert.c:818
msgid "Cannot convert to LUKS1 format - device uses more segments."
msgstr ""
#: lib/luks2/luks2_luks1_convert.c:826
#, c-format
msgid "Cannot convert to LUKS1 format - LUKS2 header contains %u token(s)."
msgstr ""
#: lib/luks2/luks2_luks1_convert.c:832
msgid "Cannot convert to LUKS1 format - there are no active keyslots."
msgstr ""
#: lib/luks2/luks2_luks1_convert.c:844
#, c-format
msgid "Cannot convert to LUKS1 format - keyslot %u is in invalid state."
msgstr ""
#: lib/luks2/luks2_luks1_convert.c:849
#, c-format
msgid "Cannot convert to LUKS1 format - keyslot %u is unbound."
msgstr ""
#: lib/luks2/luks2_luks1_convert.c:854
#, c-format
msgid ""
"Cannot convert to LUKS1 format - slot %u (over maximum slots) is still "
"active."
msgstr ""
#: lib/luks2/luks2_luks1_convert.c:859
#, c-format
msgid "Cannot convert to LUKS1 format - keyslot %u is not LUKS1 compatible."
msgstr ""
#: lib/luks2/luks2_reencrypt.c:1198
#, c-format
msgid "Hotzone size must be multiple of calculated zone alignment (%zu bytes)."
msgstr ""
#: lib/luks2/luks2_reencrypt.c:1203
#, c-format
msgid "Device size must be multiple of calculated zone alignment (%zu bytes)."
msgstr ""
#: lib/luks2/luks2_reencrypt.c:1410 lib/luks2/luks2_reencrypt.c:1596
#: lib/luks2/luks2_reencrypt.c:1679 lib/luks2/luks2_reencrypt.c:1721
#: lib/luks2/luks2_reencrypt.c:4077
msgid "Failed to initialize old segment storage wrapper."
msgstr ""
#: lib/luks2/luks2_reencrypt.c:1424 lib/luks2/luks2_reencrypt.c:1574
msgid "Failed to initialize new segment storage wrapper."
msgstr ""
#: lib/luks2/luks2_reencrypt.c:1550 lib/luks2/luks2_reencrypt.c:4089
msgid "Failed to initialize hotzone protection."
msgstr ""
#: lib/luks2/luks2_reencrypt.c:1623
msgid "Failed to read checksums for current hotzone."
msgstr ""
#: lib/luks2/luks2_reencrypt.c:1630 lib/luks2/luks2_reencrypt.c:4104
#, c-format
msgid "Failed to read hotzone area starting at %<PRIu64>."
msgstr ""
#: lib/luks2/luks2_reencrypt.c:1649
#, c-format
msgid "Failed to decrypt sector %zu."
msgstr ""
#: lib/luks2/luks2_reencrypt.c:1655
#, c-format
msgid "Failed to recover sector %zu."
msgstr ""
#: lib/luks2/luks2_reencrypt.c:2208
#, c-format
msgid ""
"Source and target device sizes don't match. Source %<PRIu64>, target: "
"%<PRIu64>."
msgstr ""
#: lib/luks2/luks2_reencrypt.c:2310
#, c-format
msgid "Failed to activate hotzone device %s."
msgstr ""
#: lib/luks2/luks2_reencrypt.c:2322
#, c-format
msgid "Failed to allocate hotzone device %s."
msgstr ""
#: lib/luks2/luks2_reencrypt.c:2339
#, c-format
msgid "Failed to activate overlay device %s with actual origin table."
msgstr ""
#: lib/luks2/luks2_reencrypt.c:2346
#, c-format
msgid "Failed to load new mapping for device %s."
msgstr ""
#: lib/luks2/luks2_reencrypt.c:2418
msgid "Failed to refresh reencryption devices stack."
msgstr ""
#: lib/luks2/luks2_reencrypt.c:2615
msgid "Failed to set new keyslots area size."
msgstr ""
#: lib/luks2/luks2_reencrypt.c:2751
#, c-format
msgid ""
"Data shift value is not aligned to encryption sector size (%<PRIu32> bytes)."
msgstr ""
#: lib/luks2/luks2_reencrypt.c:2788 src/utils_reencrypt.c:162
#, c-format
msgid "Unsupported resilience mode %s"
msgstr ""
#: lib/luks2/luks2_reencrypt.c:2824
msgid "Moved segment size can not be greater than data shift value."
msgstr ""
#: lib/luks2/luks2_reencrypt.c:2866
msgid "Invalid reencryption resilience parameters."
msgstr ""
#: lib/luks2/luks2_reencrypt.c:2888
#, c-format
msgid ""
"Moved segment too large. Requested size %<PRIu64>, available space for: "
"%<PRIu64>."
msgstr ""
#: lib/luks2/luks2_reencrypt.c:2977
msgid "Failed to clear table."
msgstr ""
#: lib/luks2/luks2_reencrypt.c:3063
#, c-format
msgid ""
"Data shift (%<PRIu64> sectors) is less than future data offset (%<PRIu64> "
"sectors)."
msgstr ""
#: lib/luks2/luks2_reencrypt.c:3078 lib/luks2/luks2_reencrypt.c:3085
msgid "Reduced data size is larger than real device size."
msgstr ""
#: lib/luks2/luks2_reencrypt.c:3095
#, c-format
msgid "Data device is not aligned to encryption sector size (%<PRIu32> bytes)."
msgstr ""
#: lib/luks2/luks2_reencrypt.c:3125 lib/luks2/luks2_reencrypt.c:3640
#: lib/luks2/luks2_reencrypt.c:3661
#, c-format
msgid "Failed to open %s in exclusive mode (already mapped or mounted)."
msgstr ""
#: lib/luks2/luks2_reencrypt.c:3332
msgid "Device not marked for LUKS2 reencryption."
msgstr ""
#: lib/luks2/luks2_reencrypt.c:3349 lib/luks2/luks2_reencrypt.c:4400
msgid "Failed to load LUKS2 reencryption context."
msgstr ""
#: lib/luks2/luks2_reencrypt.c:3441 lib/luks2/luks2_reencrypt.c:3781
msgid "Device is not in reencryption."
msgstr ""
#: lib/luks2/luks2_reencrypt.c:3448 lib/luks2/luks2_reencrypt.c:3788
msgid "Reencryption process is already running."
msgstr ""
#: lib/luks2/luks2_reencrypt.c:3450 lib/luks2/luks2_reencrypt.c:3790
msgid "Failed to acquire reencryption lock."
msgstr ""
#: lib/luks2/luks2_reencrypt.c:3468
msgid "Cannot proceed with reencryption. Run reencryption recovery first."
msgstr ""
#: lib/luks2/luks2_reencrypt.c:3604
msgid "Active device size and requested reencryption size don't match."
msgstr ""
#: lib/luks2/luks2_reencrypt.c:3618
msgid "Illegal device size requested in reencryption parameters."
msgstr ""
#: lib/luks2/luks2_reencrypt.c:3720
msgid "Reencryption in-progress. Cannot perform recovery."
msgstr ""
#: lib/luks2/luks2_reencrypt.c:3741
msgid "LUKS2 reencryption recovery failed."
msgstr ""
#: lib/luks2/luks2_reencrypt.c:3874 lib/luks2/luks2_reencrypt.c:4353
msgid "Failed to initialize reencryption device stack."
msgstr ""
#: lib/luks2/luks2_reencrypt.c:3907
msgid "LUKS2 reencryption already initialized in metadata."
msgstr ""
#: lib/luks2/luks2_reencrypt.c:3915
msgid "Failed to initialize LUKS2 reencryption in metadata."
msgstr ""
#: lib/luks2/luks2_reencrypt.c:3968 lib/luks2/luks2_reencrypt.c:4000
#: lib/luks2/luks2_reencrypt.c:4030
msgid "Reencryption is not supported for DAX (persistent memory) devices."
msgstr ""
#: lib/luks2/luks2_reencrypt.c:4059
msgid "Failed to set device segments for next reencryption hotzone."
msgstr ""
#: lib/luks2/luks2_reencrypt.c:4112
msgid "Failed to write reencryption resilience metadata."
msgstr ""
#: lib/luks2/luks2_reencrypt.c:4119
msgid "Decryption failed."
msgstr ""
#: lib/luks2/luks2_reencrypt.c:4124
#, c-format
msgid "Failed to write hotzone area starting at %<PRIu64>."
msgstr ""
#: lib/luks2/luks2_reencrypt.c:4129
msgid "Failed to sync data."
msgstr ""
#: lib/luks2/luks2_reencrypt.c:4137
msgid "Failed to update metadata after current reencryption hotzone completed."
msgstr ""
#: lib/luks2/luks2_reencrypt.c:4226
msgid "Failed to write LUKS2 metadata."
msgstr ""
#: lib/luks2/luks2_reencrypt.c:4249
msgid "Failed to wipe unused data device area."
msgstr ""
#: lib/luks2/luks2_reencrypt.c:4255
#, c-format
msgid "Failed to remove unused (unbound) keyslot %d."
msgstr ""
#: lib/luks2/luks2_reencrypt.c:4265
msgid "Failed to remove reencryption keyslot."
msgstr ""
#: lib/luks2/luks2_reencrypt.c:4275
#, c-format
msgid ""
"Fatal error while reencrypting chunk starting at %<PRIu64>, %<PRIu64> "
"sectors long."
msgstr ""
#: lib/luks2/luks2_reencrypt.c:4279
msgid "Online reencryption failed."
msgstr ""
#: lib/luks2/luks2_reencrypt.c:4284
msgid "Do not resume the device unless replaced with error target manually."
msgstr ""
#: lib/luks2/luks2_reencrypt.c:4336
msgid "Cannot proceed with reencryption. Unexpected reencryption status."
msgstr ""
#: lib/luks2/luks2_reencrypt.c:4342
msgid "Missing or invalid reencrypt context."
msgstr ""
#: lib/luks2/luks2_reencrypt.c:4376 lib/luks2/luks2_reencrypt.c:4413
msgid "Failed to update reencryption context."
msgstr ""
#: lib/luks2/luks2_reencrypt_digest.c:401
msgid "Reencryption metadata is invalid."
msgstr ""
#: lib/luks2/hw_opal/hw_opal.c:335
#, c-format
msgid ""
"OPAL range %d offset %<PRIu64> does not match expected values %<PRIu64>."
msgstr ""
#: lib/luks2/hw_opal/hw_opal.c:342
#, c-format
msgid "OPAL range %d length %<PRIu64> does not match device length %<PRIu64>."
msgstr ""
#: lib/luks2/hw_opal/hw_opal.c:348
#, c-format
msgid "OPAL range %d locking is disabled."
msgstr ""
#: lib/luks2/hw_opal/hw_opal.c:358 lib/luks2/hw_opal/hw_opal.c:365
#, c-format
msgid "Unexpected OPAL range %d lock state."
msgstr ""
#: src/cryptsetup.c:87
msgid "Keyslot encryption parameters can be set only for LUKS2 device."
msgstr ""
#: src/cryptsetup.c:93
msgid ""
"Keyslot encryption parameters are not compatible with LUKS2 keyslot "
"encryption."
msgstr ""
#: src/cryptsetup.c:150 src/cryptsetup.c:1178 src/cryptsetup.c:1545
#: src/utils_reencrypt.c:1887 src/utils_reencrypt_luks1.c:502
#: src/utils_reencrypt_luks1.c:565
msgid "No known cipher specification pattern detected."
msgstr ""
#: src/cryptsetup.c:160
#, c-format
msgid ""
"WARNING: Using default options for cipher (%s-%s, key size %u bits) that "
"could be incompatible with older versions."
msgstr ""
#: src/cryptsetup.c:165
#, c-format
msgid ""
"WARNING: Using default options for hash (%s) that could be incompatible with "
"older versions."
msgstr ""
#: src/cryptsetup.c:169
msgid ""
"For plain mode, always use options --cipher, --key-size and if no keyfile or "
"keyring is used, then also --hash."
msgstr ""
#: src/cryptsetup.c:175
msgid ""
"WARNING: The --hash parameter is being ignored in plain mode with keyfile "
"specified.\n"
msgstr ""
#: src/cryptsetup.c:189
msgid ""
"WARNING: The --keyfile-size option is being ignored, the read size is the "
"same as the encryption key size.\n"
msgstr ""
#: src/cryptsetup.c:226 src/cryptsetup.c:1375 src/cryptsetup.c:1598
#: src/integritysetup.c:188 src/utils_reencrypt.c:2138
#, c-format
msgid "Blkid scan failed for %s."
msgstr ""
#: src/cryptsetup.c:232
#, c-format
msgid ""
"Detected device signature(s) on %s. Proceeding further may damage existing "
"data."
msgstr ""
#: src/cryptsetup.c:238 src/cryptsetup.c:1261 src/cryptsetup.c:1309
#: src/cryptsetup.c:1382 src/cryptsetup.c:1522 src/cryptsetup.c:1610
#: src/cryptsetup.c:2495 src/cryptsetup.c:2924 src/integritysetup.c:178
#: src/utils_reencrypt.c:111 src/utils_reencrypt.c:457
#: src/utils_reencrypt.c:925
msgid "Operation aborted.\n"
msgstr ""
#: src/cryptsetup.c:323
msgid "Option --key-file is required."
msgstr ""
#: src/cryptsetup.c:377
msgid "Enter VeraCrypt PIM: "
msgstr ""
#: src/cryptsetup.c:386
msgid "Invalid PIM value: parse error."
msgstr ""
#: src/cryptsetup.c:389
msgid "Invalid PIM value: 0."
msgstr ""
#: src/cryptsetup.c:392
msgid "Invalid PIM value: outside of range."
msgstr ""
#: src/cryptsetup.c:415
msgid "No device header detected with this passphrase."
msgstr ""
#: src/cryptsetup.c:492 src/cryptsetup.c:677
#, c-format
msgid "Device %s is not a valid BITLK device."
msgstr ""
#: src/cryptsetup.c:500
msgid ""
"Cannot determine volume key size for BITLK, please use --key-size option."
msgstr ""
#: src/cryptsetup.c:546
msgid ""
"Header dump with volume key is sensitive information\n"
"which allows access to encrypted partition without passphrase.\n"
"This dump should be always stored encrypted on safe place."
msgstr ""
#: src/cryptsetup.c:613 src/cryptsetup.c:699 src/cryptsetup.c:2520
msgid ""
"The header dump with volume key is sensitive information\n"
"that allows access to encrypted partition without a passphrase.\n"
"This dump should be stored encrypted in a safe place."
msgstr ""
#: src/cryptsetup.c:754 src/cryptsetup.c:786
#, c-format
msgid "Device %s is not a valid FVAULT2 device."
msgstr ""
#: src/cryptsetup.c:794
msgid ""
"Cannot determine volume key size for FVAULT2, please use --key-size option."
msgstr ""
#: src/cryptsetup.c:848 src/veritysetup.c:317 src/integritysetup.c:416
#, c-format
msgid "Device %s is still active and scheduled for deferred removal.\n"
msgstr ""
#: src/cryptsetup.c:881 src/cryptsetup.c:1808 src/cryptsetup.c:2082
#: src/cryptsetup.c:2229 src/cryptsetup.c:2648 src/cryptsetup.c:2729
#: src/cryptsetup.c:3262
#, c-format
msgid "Failed to set external tokens path %s."
msgstr ""
#: src/cryptsetup.c:890
msgid ""
"Resize of active device requires volume key in keyring but --disable-keyring "
"option is set."
msgstr ""
#: src/cryptsetup.c:1057
msgid "Benchmark interrupted."
msgstr ""
#: src/cryptsetup.c:1078
#, c-format
msgid "PBKDF2-%-9s N/A\n"
msgstr ""
#: src/cryptsetup.c:1080
#, c-format
msgid "PBKDF2-%-9s %7u iterations per second for %zu-bit key\n"
msgstr ""
#: src/cryptsetup.c:1094
#, c-format
msgid "%-10s N/A\n"
msgstr ""
#: src/cryptsetup.c:1096
#, c-format
msgid ""
"%-10s %4u iterations, %5u memory, %1u parallel threads (CPUs) for %zu-bit "
"key (requested %u ms time)\n"
msgstr ""
#: src/cryptsetup.c:1120
msgid "Result of benchmark is not reliable."
msgstr ""
#: src/cryptsetup.c:1170
msgid "# Tests are approximate using memory only (no storage IO).\n"
msgstr ""
#. TRANSLATORS: The string is header of a table and must be exactly (right side) aligned.
#: src/cryptsetup.c:1195
#, c-format
msgid "#%*s Algorithm | Key | Encryption | Decryption\n"
msgstr ""
#: src/cryptsetup.c:1203
#, c-format
msgid "Cipher %s (with %i bits key) is not available."
msgstr ""
#. TRANSLATORS: The string is header of a table and must be exactly (right side) aligned.
#: src/cryptsetup.c:1222
msgid "# Algorithm | Key | Encryption | Decryption\n"
msgstr ""
#: src/cryptsetup.c:1233
msgid "N/A"
msgstr ""
#: src/cryptsetup.c:1258
msgid ""
"Unprotected LUKS2 reencryption metadata detected. Please verify the "
"reencryption operation is desirable (see luksDump output)\n"
"and continue (upgrade metadata) only if you acknowledge the operation as "
"genuine."
msgstr ""
#: src/cryptsetup.c:1264
msgid "Enter passphrase to protect and upgrade reencryption metadata: "
msgstr ""
#: src/cryptsetup.c:1308
msgid "Really proceed with LUKS2 reencryption recovery?"
msgstr ""
#: src/cryptsetup.c:1317
msgid "Enter passphrase to verify reencryption metadata digest: "
msgstr ""
#: src/cryptsetup.c:1319
msgid "Enter passphrase for reencryption recovery: "
msgstr ""
#: src/cryptsetup.c:1381
msgid "Really try to repair LUKS device header?"
msgstr ""
#: src/cryptsetup.c:1409 src/integritysetup.c:76 src/integritysetup.c:244
msgid ""
"\n"
"Wipe interrupted."
msgstr ""
#: src/cryptsetup.c:1414 src/integritysetup.c:81 src/integritysetup.c:289
msgid ""
"Wiping device to initialize integrity checksum.\n"
"You can interrupt this by pressing CTRL+c (rest of not wiped device will "
"contain invalid checksum).\n"
msgstr ""
#: src/cryptsetup.c:1436 src/integritysetup.c:103
#, c-format
msgid "Cannot deactivate temporary device %s."
msgstr ""
#: src/cryptsetup.c:1484
msgid ""
"OPAL hw-only encryption does not support --cipher and --key-size, options "
"ignored."
msgstr ""
#: src/cryptsetup.c:1497
msgid "Integrity option can be used only for LUKS2 format."
msgstr ""
#: src/cryptsetup.c:1502 src/cryptsetup.c:1582
msgid "Unsupported LUKS2 metadata size options."
msgstr ""
#: src/cryptsetup.c:1507
msgid "OPAL is supported only for LUKS2 format."
msgstr ""
#: src/cryptsetup.c:1512
msgid "Inline hw tags are supported only for LUKS2 format."
msgstr ""
#: src/cryptsetup.c:1521
msgid "Header file does not exist, do you want to create it?"
msgstr ""
#: src/cryptsetup.c:1529
#, c-format
msgid "Cannot create header file %s."
msgstr ""
#: src/cryptsetup.c:1555 src/integritysetup.c:126 src/integritysetup.c:141
#: src/integritysetup.c:150 src/integritysetup.c:328 src/integritysetup.c:336
#: src/integritysetup.c:346
msgid "No known integrity specification pattern detected."
msgstr ""
#: src/cryptsetup.c:1557
msgid "Cannot use specified integrity key size."
msgstr ""
#: src/cryptsetup.c:1575
#, c-format
msgid "Cannot use %s as on-disk header."
msgstr ""
#: src/cryptsetup.c:1604 src/integritysetup.c:172
#, c-format
msgid "This will overwrite data on %s irrevocably."
msgstr ""
#: src/cryptsetup.c:1641
msgid "OPAL Admin password cannot be empty."
msgstr ""
#: src/cryptsetup.c:1655 src/cryptsetup.c:2099 src/cryptsetup.c:2242
#: src/cryptsetup.c:2377 src/cryptsetup.c:2443 src/utils_reencrypt_luks1.c:428
msgid "Failed to set pbkdf parameters."
msgstr ""
#: src/cryptsetup.c:1786
msgid "Reduced data offset is allowed only for detached LUKS header."
msgstr ""
#: src/cryptsetup.c:1793
#, c-format
msgid ""
"LUKS file container %s is too small for activation, there is no remaining "
"space for data."
msgstr ""
#: src/cryptsetup.c:1835 src/cryptsetup.c:2248 src/utils_reencrypt.c:277
#: src/utils_reencrypt.c:369 src/utils_reencrypt.c:1907
msgid ""
"Cannot determine volume key size for LUKS without keyslots, please use --key-"
"size option."
msgstr ""
#: src/cryptsetup.c:1854 src/utils_reencrypt.c:303
msgid "Device requires two volume keys."
msgstr ""
#: src/cryptsetup.c:1889
msgid ""
"Some specified activation parameters were ignored with OPAL hw-only "
"encryption."
msgstr ""
#: src/cryptsetup.c:1894
msgid "Device activated but cannot make flags persistent."
msgstr ""
#: src/cryptsetup.c:1974 src/cryptsetup.c:2042
#, c-format
msgid "Keyslot %d is selected for deletion."
msgstr ""
#: src/cryptsetup.c:1986 src/cryptsetup.c:2046
msgid ""
"This is the last keyslot. Device will become unusable after purging this key."
msgstr ""
#: src/cryptsetup.c:1987
msgid "Enter any remaining passphrase: "
msgstr ""
#: src/cryptsetup.c:1988 src/cryptsetup.c:2048
msgid "Operation aborted, the keyslot was NOT wiped.\n"
msgstr ""
#: src/cryptsetup.c:2024
msgid "Enter passphrase to be deleted: "
msgstr ""
#: src/cryptsetup.c:2074 src/cryptsetup.c:2426 src/cryptsetup.c:3086
#: src/cryptsetup.c:3253
#, c-format
msgid "Device %s is not a valid LUKS2 device."
msgstr ""
#: src/cryptsetup.c:2113 src/cryptsetup.c:2312
msgid "Enter new passphrase for key slot: "
msgstr ""
#: src/cryptsetup.c:2147 src/utils_luks.c:342
#, c-format
msgid "Enter token PIN: "
msgstr ""
#: src/cryptsetup.c:2149 src/utils_luks.c:344
#, c-format
msgid "Enter token %d PIN: "
msgstr ""
#: src/cryptsetup.c:2208
msgid "WARNING: The --key-slot parameter is used for new keyslot number.\n"
msgstr ""
#: src/cryptsetup.c:2285 src/utils_reencrypt_luks1.c:1094
#, c-format
msgid "Enter any existing passphrase: "
msgstr ""
#: src/cryptsetup.c:2381
msgid "Enter passphrase to be changed: "
msgstr ""
#: src/cryptsetup.c:2397 src/utils_reencrypt_luks1.c:1080
msgid "Enter new passphrase: "
msgstr ""
#: src/cryptsetup.c:2447
msgid "Enter passphrase for keyslot to be converted: "
msgstr ""
#: src/cryptsetup.c:2471
msgid "Only one device argument for isLuks operation is supported."
msgstr ""
#: src/cryptsetup.c:2576
#, c-format
msgid "Keyslot %d does not contain unbound key."
msgstr ""
#: src/cryptsetup.c:2581
msgid ""
"The header dump with unbound key is sensitive information.\n"
"This dump should be stored encrypted in a safe place."
msgstr ""
#: src/cryptsetup.c:2676 src/cryptsetup.c:2712
#, c-format
msgid "%s is not active %s device name."
msgstr ""
#: src/cryptsetup.c:2707
#, c-format
msgid "%s is not active LUKS device name or header is missing."
msgstr ""
#: src/cryptsetup.c:2784 src/cryptsetup.c:2803
msgid "Option --header-backup-file is required."
msgstr ""
#: src/cryptsetup.c:2834
#, c-format
msgid "%s is not cryptsetup managed device."
msgstr ""
#: src/cryptsetup.c:2845
#, c-format
msgid "Refresh is not supported for device type %s"
msgstr ""
#: src/cryptsetup.c:2895
#, c-format
msgid "Unrecognized metadata device type %s."
msgstr ""
#: src/cryptsetup.c:2897
msgid "Command requires device and mapped name as arguments."
msgstr ""
#: src/cryptsetup.c:2915
msgid "Enter OPAL PSID: "
msgstr ""
#: src/cryptsetup.c:2915
msgid "Enter OPAL Admin password: "
msgstr ""
#: src/cryptsetup.c:2923
msgid ""
"WARNING: WHOLE disk will be factory reset and all data will be lost! "
"Continue?"
msgstr ""
#: src/cryptsetup.c:2966
#, c-format
msgid ""
"This operation will erase all keyslots on device %s.\n"
"Device will become unusable after this operation."
msgstr ""
#: src/cryptsetup.c:2973
msgid "Operation aborted, keyslots were NOT wiped.\n"
msgstr ""
#: src/cryptsetup.c:3012
msgid "Invalid LUKS type, only luks1 and luks2 are supported."
msgstr ""
#: src/cryptsetup.c:3028
#, c-format
msgid "Device is already %s type."
msgstr ""
#: src/cryptsetup.c:3035
#, c-format
msgid "This operation will convert %s to %s format.\n"
msgstr ""
#: src/cryptsetup.c:3038
msgid "Operation aborted, device was NOT converted.\n"
msgstr ""
#: src/cryptsetup.c:3078
msgid "Option --priority, --label or --subsystem is missing."
msgstr ""
#: src/cryptsetup.c:3112 src/cryptsetup.c:3152 src/cryptsetup.c:3172
#, c-format
msgid "Token %d is invalid."
msgstr ""
#: src/cryptsetup.c:3115 src/cryptsetup.c:3175
#, c-format
msgid "Token %d in use."
msgstr ""
#: src/cryptsetup.c:3127
#, c-format
msgid "Failed to add luks2-keyring token %d."
msgstr ""
#: src/cryptsetup.c:3138 src/cryptsetup.c:3201
#, c-format
msgid "Failed to assign token %d to keyslot %d."
msgstr ""
#: src/cryptsetup.c:3155
#, c-format
msgid "Token %d is not in use."
msgstr ""
#: src/cryptsetup.c:3192
msgid "Failed to import token from file."
msgstr ""
#: src/cryptsetup.c:3217
#, c-format
msgid "Failed to get token %d for export."
msgstr ""
#: src/cryptsetup.c:3230
#, c-format
msgid "Token %d is not assigned to keyslot %d."
msgstr ""
#: src/cryptsetup.c:3232 src/cryptsetup.c:3239
#, c-format
msgid "Failed to unassign token %d from keyslot %d."
msgstr ""
#: src/cryptsetup.c:3298
msgid ""
"Option --tcrypt-hidden, --tcrypt-system or --tcrypt-backup is supported only "
"for TCRYPT device."
msgstr ""
#: src/cryptsetup.c:3301
msgid ""
"Option --veracrypt or --disable-veracrypt is supported only for TCRYPT "
"device type."
msgstr ""
#: src/cryptsetup.c:3304
msgid ""
"Option --veracrypt-pim is supported only for VeraCrypt compatible devices."
msgstr ""
#: src/cryptsetup.c:3308
msgid ""
"Option --veracrypt-query-pim is supported only for VeraCrypt compatible "
"devices."
msgstr ""
#: src/cryptsetup.c:3310
msgid ""
"The options --veracrypt-pim and --veracrypt-query-pim are mutually exclusive."
msgstr ""
#: src/cryptsetup.c:3319
msgid "Option --persistent is not allowed with --test-passphrase."
msgstr ""
#: src/cryptsetup.c:3322
msgid "Options --refresh and --test-passphrase are mutually exclusive."
msgstr ""
#: src/cryptsetup.c:3325
msgid "Option --shared is allowed only for open of plain device."
msgstr ""
#: src/cryptsetup.c:3328
msgid "Option --skip is supported only for open of plain and loopaes devices."
msgstr ""
#: src/cryptsetup.c:3331
msgid ""
"Option --offset with open action is only supported for plain and loopaes "
"devices."
msgstr ""
#: src/cryptsetup.c:3334
msgid "Option --tcrypt-hidden cannot be combined with --allow-discards."
msgstr ""
#: src/cryptsetup.c:3338
msgid ""
"Sector size option with open action is supported only for plain devices."
msgstr ""
#: src/cryptsetup.c:3342
msgid ""
"Large IV sectors option is supported only for opening plain type device with "
"sector size larger than 512 bytes."
msgstr ""
#: src/cryptsetup.c:3347
msgid ""
"Option --test-passphrase is allowed only for open of LUKS, TCRYPT, BITLK and "
"FVAULT2 devices."
msgstr ""
#: src/cryptsetup.c:3350 src/cryptsetup.c:3380
msgid "Options --device-size and --size cannot be combined."
msgstr ""
#: src/cryptsetup.c:3353
msgid "Option --unbound is allowed only for open of luks device."
msgstr ""
#: src/cryptsetup.c:3356
msgid "Option --unbound cannot be used without --test-passphrase."
msgstr ""
#: src/cryptsetup.c:3360
msgid ""
"Option --volume-key-keyring cannot be combined with --hash or --volume-key-"
"file."
msgstr ""
#: src/cryptsetup.c:3363
msgid ""
"Both --volume-key-file options must be paired with respective --key-size "
"options."
msgstr ""
#: src/cryptsetup.c:3372 src/veritysetup.c:673 src/integritysetup.c:788
msgid ""
"Options --cancel-deferred and --deferred cannot be used at the same time."
msgstr ""
#: src/cryptsetup.c:3388
msgid "Option --active-name can be set only for LUKS2 device."
msgstr ""
#: src/cryptsetup.c:3391
msgid "Options --active-name and --force-offline-reencrypt cannot be combined."
msgstr ""
#: src/cryptsetup.c:3394
msgid "Options --new-volume-key-file and --keep-key cannot be combined."
msgstr ""
#: src/cryptsetup.c:3397
msgid "Options --new-volume-key-keyring and --keep-key cannot be combined."
msgstr ""
#: src/cryptsetup.c:3405 src/cryptsetup.c:3435
msgid "Keyslot specification is required."
msgstr ""
#: src/cryptsetup.c:3413
msgid "Options --align-payload and --offset cannot be combined."
msgstr ""
#: src/cryptsetup.c:3416
msgid ""
"Option --integrity-no-wipe can be used only for format action with integrity "
"extension."
msgstr ""
#: src/cryptsetup.c:3419
msgid "Only one of --use-[u]random options is allowed."
msgstr ""
#: src/cryptsetup.c:3427
msgid "Key size is required with --unbound option."
msgstr ""
#: src/cryptsetup.c:3447
msgid "Invalid token action."
msgstr ""
#: src/cryptsetup.c:3450
msgid "--key-description parameter is mandatory for token add action."
msgstr ""
#: src/cryptsetup.c:3454 src/cryptsetup.c:3467
msgid "Action requires specific token. Use --token-id parameter."
msgstr ""
#: src/cryptsetup.c:3458
msgid "Option --unbound is valid only with token add action."
msgstr ""
#: src/cryptsetup.c:3460
msgid "Options --key-slot and --unbound cannot be combined."
msgstr ""
#: src/cryptsetup.c:3465
msgid "Action requires specific keyslot. Use --key-slot parameter."
msgstr ""
#: src/cryptsetup.c:3481
msgid "<device> [--type <type>] [<name>]"
msgstr ""
#: src/cryptsetup.c:3481 src/veritysetup.c:487 src/integritysetup.c:555
msgid "open device as <name>"
msgstr ""
#: src/cryptsetup.c:3482 src/cryptsetup.c:3483 src/cryptsetup.c:3484
#: src/veritysetup.c:488 src/veritysetup.c:489 src/integritysetup.c:556
#: src/integritysetup.c:557 src/integritysetup.c:559
msgid "<name>"
msgstr ""
#: src/cryptsetup.c:3482 src/veritysetup.c:488 src/integritysetup.c:556
msgid "close device (remove mapping)"
msgstr ""
#: src/cryptsetup.c:3483 src/integritysetup.c:559
msgid "resize active device"
msgstr ""
#: src/cryptsetup.c:3484
msgid "show device status"
msgstr ""
#: src/cryptsetup.c:3485
msgid "[--cipher <cipher>]"
msgstr ""
#: src/cryptsetup.c:3485
msgid "benchmark cipher"
msgstr ""
#: src/cryptsetup.c:3486 src/cryptsetup.c:3487 src/cryptsetup.c:3488
#: src/cryptsetup.c:3489 src/cryptsetup.c:3490 src/cryptsetup.c:3497
#: src/cryptsetup.c:3498 src/cryptsetup.c:3499 src/cryptsetup.c:3500
#: src/cryptsetup.c:3501 src/cryptsetup.c:3502 src/cryptsetup.c:3503
#: src/cryptsetup.c:3504 src/cryptsetup.c:3505 src/cryptsetup.c:3506
msgid "<device>"
msgstr ""
#: src/cryptsetup.c:3486
msgid "try to repair on-disk metadata"
msgstr ""
#: src/cryptsetup.c:3487
msgid "reencrypt LUKS2 device"
msgstr ""
#: src/cryptsetup.c:3488
msgid "erase all keyslots (remove encryption key)"
msgstr ""
#: src/cryptsetup.c:3489
msgid "convert LUKS from/to LUKS2 format"
msgstr ""
#: src/cryptsetup.c:3490
msgid "set permanent configuration options for LUKS2"
msgstr ""
#: src/cryptsetup.c:3491 src/cryptsetup.c:3492
msgid "<device> [<new key file>]"
msgstr ""
#: src/cryptsetup.c:3491
msgid "formats a LUKS device"
msgstr ""
#: src/cryptsetup.c:3492
msgid "add key to LUKS device"
msgstr ""
#: src/cryptsetup.c:3493 src/cryptsetup.c:3494 src/cryptsetup.c:3495
msgid "<device> [<key file>]"
msgstr ""
#: src/cryptsetup.c:3493
msgid "removes supplied key or key file from LUKS device"
msgstr ""
#: src/cryptsetup.c:3494
msgid "changes supplied key or key file of LUKS device"
msgstr ""
#: src/cryptsetup.c:3495
msgid "converts a key to new pbkdf parameters"
msgstr ""
#: src/cryptsetup.c:3496
msgid "<device> <key slot>"
msgstr ""
#: src/cryptsetup.c:3496
msgid "wipes key with number <key slot> from LUKS device"
msgstr ""
#: src/cryptsetup.c:3497
msgid "print UUID of LUKS device"
msgstr ""
#: src/cryptsetup.c:3498
msgid "tests <device> for LUKS partition header"
msgstr ""
#: src/cryptsetup.c:3499
msgid "dump LUKS partition information"
msgstr ""
#: src/cryptsetup.c:3500
msgid "dump TCRYPT device information"
msgstr ""
#: src/cryptsetup.c:3501
msgid "dump BITLK device information"
msgstr ""
#: src/cryptsetup.c:3502
msgid "dump FVAULT2 device information"
msgstr ""
#: src/cryptsetup.c:3503
msgid "Suspend LUKS device and wipe key (all IOs are frozen)"
msgstr ""
#: src/cryptsetup.c:3504
msgid "Resume suspended LUKS device"
msgstr ""
#: src/cryptsetup.c:3505
msgid "Backup LUKS device header and keyslots"
msgstr ""
#: src/cryptsetup.c:3506
msgid "Restore LUKS device header and keyslots"
msgstr ""
#: src/cryptsetup.c:3507
msgid "<add|remove|import|export> <device>"
msgstr ""
#: src/cryptsetup.c:3507
msgid "Manipulate LUKS2 tokens"
msgstr ""
#: src/cryptsetup.c:3526 src/veritysetup.c:505 src/integritysetup.c:574
msgid ""
"\n"
"<action> is one of:\n"
msgstr ""
#: src/cryptsetup.c:3532
msgid ""
"\n"
"You can also use old <action> syntax aliases:\n"
"\topen: create (plainOpen), luksOpen, loopaesOpen, tcryptOpen, bitlkOpen, "
"fvault2Open\n"
"\tclose: remove (plainClose), luksClose, loopaesClose, tcryptClose, "
"bitlkClose, fvault2Close\n"
msgstr ""
#: src/cryptsetup.c:3536
#, c-format
msgid ""
"\n"
"<name> is the device to create under %s\n"
"<device> is the encrypted device\n"
"<key slot> is the LUKS key slot number to modify\n"
"<key file> optional key file for the new key for luksAddKey action\n"
msgstr ""
#: src/cryptsetup.c:3543
#, c-format
msgid ""
"\n"
"Default compiled-in metadata format is %s (for luksFormat action).\n"
msgstr ""
#: src/cryptsetup.c:3548
msgid ""
"\n"
"LUKS2 external token plugin support is enabled.\n"
msgstr ""
#: src/cryptsetup.c:3549
#, c-format
msgid "LUKS2 external token plugin path: %s.\n"
msgstr ""
#: src/cryptsetup.c:3551
msgid ""
"\n"
"LUKS2 external token plugin support is disabled.\n"
msgstr ""
#: src/cryptsetup.c:3555
#, c-format
msgid ""
"\n"
"Default compiled-in key and passphrase parameters:\n"
"\tMaximum keyfile size: %dkB, Maximum interactive passphrase length %d "
"(characters)\n"
"Default PBKDF for LUKS1: %s, iteration time: %d (ms)\n"
"Default PBKDF for LUKS2: %s\n"
"\tIteration time: %d, Memory required: %dkB, Parallel threads: %d\n"
msgstr ""
#: src/cryptsetup.c:3566
#, c-format
msgid ""
"\n"
"Default compiled-in device cipher parameters:\n"
"\tloop-AES: %s, Key %d bits\n"
"\tplain: %s, Key: %d bits, Password hashing: %s\n"
"\tLUKS: %s, Key: %d bits, LUKS header hashing: %s, RNG: %s\n"
msgstr ""
#: src/cryptsetup.c:3575
msgid ""
"\tLUKS: Default keysize with XTS mode (two internal keys) will be doubled.\n"
msgstr ""
#: src/cryptsetup.c:3593 src/veritysetup.c:647 src/integritysetup.c:734
#, c-format
msgid "%s: requires %s as arguments"
msgstr ""
#: src/cryptsetup.c:3633 src/utils_reencrypt_luks1.c:1143
msgid "Key slot is invalid."
msgstr ""
#: src/cryptsetup.c:3661
msgid "Device size must be multiple of 512 bytes sector."
msgstr ""
#: src/cryptsetup.c:3666
msgid "Invalid max reencryption hotzone size specification."
msgstr ""
#: src/cryptsetup.c:3680 src/cryptsetup.c:3697 src/cryptsetup.c:3709
msgid "Key size must be a multiple of 8 bits"
msgstr ""
#: src/cryptsetup.c:3687
msgid "At most 2 key size specifications can be supplied."
msgstr ""
#: src/cryptsetup.c:3716 src/cryptsetup.c:3727
#, c-format
msgid "At most %d volume key specifications can be supplied."
msgstr ""
#: src/cryptsetup.c:3739
#, c-format
msgid "At most %d keyring link specifications can be supplied."
msgstr ""
#: src/cryptsetup.c:3748
msgid "Maximum device reduce size is 1 GiB."
msgstr ""
#: src/cryptsetup.c:3751
msgid "Reduce size must be multiple of 512 bytes sector."
msgstr ""
#: src/cryptsetup.c:3768
msgid "Option --priority can be only ignore/normal/prefer."
msgstr ""
#: src/cryptsetup.c:3787 src/veritysetup.c:568 src/integritysetup.c:654
msgid "Show this help message"
msgstr ""
#: src/cryptsetup.c:3788 src/veritysetup.c:569 src/integritysetup.c:655
msgid "Display brief usage"
msgstr ""
#: src/cryptsetup.c:3789 src/veritysetup.c:570 src/integritysetup.c:656
msgid "Print package version"
msgstr ""
#: src/cryptsetup.c:3800 src/veritysetup.c:581 src/integritysetup.c:667
msgid "Help options:"
msgstr ""
#: src/cryptsetup.c:3823 src/veritysetup.c:602 src/integritysetup.c:687
msgid "[OPTION...] <action> <action-specific>"
msgstr ""
#: src/cryptsetup.c:3832 src/veritysetup.c:611 src/integritysetup.c:698
msgid "Argument <action> missing."
msgstr ""
#: src/cryptsetup.c:3911 src/veritysetup.c:642 src/integritysetup.c:729
msgid "Unknown action."
msgstr ""
#: src/cryptsetup.c:3929
msgid "Option --key-file takes precedence over specified key file argument."
msgstr ""
#: src/cryptsetup.c:3935
msgid "Only one --key-file argument is allowed."
msgstr ""
#: src/cryptsetup.c:3940
msgid ""
"Password-based key derivation function (PBKDF) can be only pbkdf2 or argon2i/"
"argon2id."
msgstr ""
#: src/cryptsetup.c:3945
msgid "PBKDF forced iterations cannot be combined with iteration time option."
msgstr ""
#: src/cryptsetup.c:3950
msgid "Cannot link volume key to a keyring when keyring is disabled."
msgstr ""
#: src/cryptsetup.c:3955
msgid "Cannot use keyring key description when keyring is disabled."
msgstr ""
#: src/cryptsetup.c:3960
msgid "Inline integrity must be used together with --integrity option."
msgstr ""
#: src/cryptsetup.c:3971
msgid "Options --keyslot-cipher and --keyslot-key-size must be used together."
msgstr ""
#: src/cryptsetup.c:3979
msgid "No action taken. Invoked with --test-args option.\n"
msgstr ""
#: src/cryptsetup.c:3992
msgid "Cannot disable metadata locking."
msgstr ""
#: src/veritysetup.c:41
msgid "Invalid salt string specified."
msgstr ""
#: src/veritysetup.c:74
#, c-format
msgid "Cannot create hash image %s for writing."
msgstr ""
#: src/veritysetup.c:84
#, c-format
msgid "Cannot create FEC image %s for writing."
msgstr ""
#: src/veritysetup.c:123
#, c-format
msgid "Cannot create root hash file %s for writing."
msgstr ""
#: src/veritysetup.c:130
#, c-format
msgid "Cannot write to root hash file %s."
msgstr ""
#: src/veritysetup.c:189 src/veritysetup.c:472
#, c-format
msgid "Device %s is not a valid VERITY device."
msgstr ""
#: src/veritysetup.c:206 src/veritysetup.c:223
#, c-format
msgid "Cannot read root hash file %s."
msgstr ""
#: src/veritysetup.c:211
#, c-format
msgid "Invalid root hash file %s."
msgstr ""
#: src/veritysetup.c:232
msgid "Invalid root hash string specified."
msgstr ""
#: src/veritysetup.c:240
#, c-format
msgid "Invalid signature file %s."
msgstr ""
#: src/veritysetup.c:247
#, c-format
msgid "Cannot read signature file %s."
msgstr ""
#: src/veritysetup.c:270 src/veritysetup.c:287
msgid "Command requires <root_hash> or --root-hash-file option as argument."
msgstr ""
#: src/veritysetup.c:485
msgid "<data_device> <hash_device>"
msgstr ""
#: src/veritysetup.c:485 src/integritysetup.c:554
msgid "format device"
msgstr ""
#: src/veritysetup.c:486
msgid "<data_device> <hash_device> [<root_hash>]"
msgstr ""
#: src/veritysetup.c:486
msgid "verify device"
msgstr ""
#: src/veritysetup.c:487
msgid "<data_device> <name> <hash_device> [<root_hash>]"
msgstr ""
#: src/veritysetup.c:489 src/integritysetup.c:557
msgid "show active device status"
msgstr ""
#: src/veritysetup.c:490
msgid "<hash_device>"
msgstr ""
#: src/veritysetup.c:490 src/integritysetup.c:558
msgid "show on-disk information"
msgstr ""
#: src/veritysetup.c:509
#, c-format
msgid ""
"\n"
"<name> is the device to create under %s\n"
"<data_device> is the data device\n"
"<hash_device> is the device containing verification data\n"
"<root_hash> hash of the root node on <hash_device>\n"
msgstr ""
#: src/veritysetup.c:516
#, c-format
msgid ""
"\n"
"Default compiled-in dm-verity parameters:\n"
"\tHash: %s, Data block (bytes): %u, Hash block (bytes): %u, Salt size: %u, "
"Hash format: %u\n"
msgstr ""
#: src/veritysetup.c:657
msgid ""
"Option --ignore-corruption and --restart-on-corruption cannot be used "
"together."
msgstr ""
#: src/veritysetup.c:662
msgid ""
"Option --panic-on-corruption and --restart-on-corruption cannot be used "
"together."
msgstr ""
#: src/veritysetup.c:668
msgid ""
"Option --error-as-corruption must be used with --panic-on-corruption or --"
"restart-on-corruption."
msgstr ""
#: src/integritysetup.c:168
#, c-format
msgid ""
"This will overwrite data on %s and %s irrevocably.\n"
"To preserve data device use --no-wipe option (and then activate with --"
"integrity-recalculate)."
msgstr ""
#: src/integritysetup.c:213
#, c-format
msgid "Formatted with tag size %u%s, internal integrity %s.\n"
msgstr ""
#: src/integritysetup.c:214
msgid " (inline hw tags)"
msgstr ""
#: src/integritysetup.c:303
msgid ""
"Setting recalculate flag is not supported, you may consider using --wipe "
"instead."
msgstr ""
#: src/integritysetup.c:380 src/integritysetup.c:541
#, c-format
msgid "Device %s is not a valid INTEGRITY device."
msgstr ""
#: src/integritysetup.c:554 src/integritysetup.c:558
msgid "<integrity_device>"
msgstr ""
#: src/integritysetup.c:555
msgid "<integrity_device> <name>"
msgstr ""
#: src/integritysetup.c:578
#, c-format
msgid ""
"\n"
"<name> is the device to create under %s\n"
"<integrity_device> is the device containing data with integrity tags\n"
msgstr ""
#: src/integritysetup.c:583
#, c-format
msgid ""
"\n"
"Default compiled-in dm-integrity parameters:\n"
"\tChecksum algorithm: %s\n"
"\tMaximum keyfile size: %dkB\n"
msgstr ""
#: src/integritysetup.c:640
#, c-format
msgid "Invalid --%s size. Maximum is %u bytes."
msgstr ""
#: src/integritysetup.c:743
msgid "Both key file and key size options must be specified."
msgstr ""
#: src/integritysetup.c:747
msgid "Both journal integrity key file and key size options must be specified."
msgstr ""
#: src/integritysetup.c:750
msgid ""
"Journal integrity algorithm must be specified if journal integrity key is "
"used."
msgstr ""
#: src/integritysetup.c:754
msgid ""
"Both journal encryption key file and key size options must be specified."
msgstr ""
#: src/integritysetup.c:757
msgid ""
"Journal encryption algorithm must be specified if journal encryption key is "
"used."
msgstr ""
#: src/integritysetup.c:761
msgid "Recovery and bitmap mode options are mutually exclusive."
msgstr ""
#: src/integritysetup.c:768
msgid "Journal options cannot be used in bitmap mode."
msgstr ""
#: src/integritysetup.c:773
msgid "Bitmap options can be used only in bitmap mode."
msgstr ""
#: src/integritysetup.c:779
msgid "Inline mode cannot be combined with journal or bitmap options."
msgstr ""
#: src/integritysetup.c:783
msgid "Inline mode cannot be combined with separate data device."
msgstr ""
#: src/utils_tools.c:105
msgid ""
"\n"
"WARNING!\n"
"========\n"
msgstr ""
#. TRANSLATORS: User must type "YES" (in capital letters), do not translate this word.
#: src/utils_tools.c:107
#, c-format
msgid ""
"%s\n"
"\n"
"Are you sure? (Type 'yes' in capital letters): "
msgstr ""
#: src/utils_tools.c:113
msgid "Error reading response from terminal."
msgstr ""
#: src/utils_tools.c:145
msgid "Command successful."
msgstr ""
#: src/utils_tools.c:153
msgid "wrong or missing parameters"
msgstr ""
#: src/utils_tools.c:155
msgid "no permission or bad passphrase"
msgstr ""
#: src/utils_tools.c:157
msgid "out of memory"
msgstr ""
#: src/utils_tools.c:159
msgid "wrong device or file specified"
msgstr ""
#: src/utils_tools.c:161
msgid "device already exists or device is busy"
msgstr ""
#: src/utils_tools.c:163
msgid "unknown error"
msgstr ""
#: src/utils_tools.c:165
#, c-format
msgid "Command failed with code %i (%s)."
msgstr ""
#: src/utils_tools.c:243
#, c-format
msgid "Key slot %i created."
msgstr ""
#: src/utils_tools.c:245
#, c-format
msgid "Key slot %i unlocked."
msgstr ""
#: src/utils_tools.c:247
#, c-format
msgid "Key slot %i removed."
msgstr ""
#: src/utils_tools.c:256
#, c-format
msgid "Token %i created."
msgstr ""
#: src/utils_tools.c:258
#, c-format
msgid "Token %i removed."
msgstr ""
#: src/utils_tools.c:268
msgid "No token could be unlocked with this PIN."
msgstr ""
#: src/utils_tools.c:270
#, c-format
msgid "Token %i requires PIN."
msgstr ""
#: src/utils_tools.c:272
#, c-format
msgid "Token (type %s) requires PIN."
msgstr ""
#: src/utils_tools.c:275
#, c-format
msgid "Token %i cannot unlock assigned keyslot(s) (wrong keyslot passphrase)."
msgstr ""
#: src/utils_tools.c:277
#, c-format
msgid ""
"Token (type %s) cannot unlock assigned keyslot(s) (wrong keyslot passphrase)."
msgstr ""
#: src/utils_tools.c:280
#, c-format
msgid "Token %i requires additional missing resource."
msgstr ""
#: src/utils_tools.c:282
#, c-format
msgid "Token (type %s) requires additional missing resource."
msgstr ""
#: src/utils_tools.c:285
#, c-format
msgid "No usable token (type %s) is available."
msgstr ""
#: src/utils_tools.c:287
msgid "No usable token is available."
msgstr ""
#: src/utils_tools.c:380
#, c-format
msgid "Cannot read keyfile %s."
msgstr ""
#: src/utils_tools.c:385
#, c-format
msgid "Cannot read %d bytes from keyfile %s."
msgstr ""
#: src/utils_tools.c:410
#, c-format
msgid "Cannot open keyfile %s for write."
msgstr ""
#: src/utils_tools.c:417
#, c-format
msgid "Cannot write to keyfile %s."
msgstr ""
#: src/utils_tools.c:468
msgid "Name is too long."
msgstr ""
#: src/utils_tools.c:471
msgid "Name must not contain '/' character."
msgstr ""
#: src/utils_progress.c:61
#, c-format
msgid "%02<PRIu64>m%02<PRIu64>s"
msgstr ""
#: src/utils_progress.c:63
#, c-format
msgid "%02<PRIu64>h%02<PRIu64>m%02<PRIu64>s"
msgstr ""
#: src/utils_progress.c:65
#, c-format
msgid "%02<PRIu64> days"
msgstr ""
#: src/utils_progress.c:92 src/utils_progress.c:125
#, c-format
msgid "%4<PRIu64> %s written"
msgstr ""
#: src/utils_progress.c:96 src/utils_progress.c:129
#, c-format
msgid "speed %5.1f %s/s"
msgstr ""
#. TRANSLATORS: 'time', 'written' and 'speed' string are supposed
#. to get translated as well. 'eol' is always new-line or empty.
#. See above.
#.
#: src/utils_progress.c:105
#, c-format
msgid "Progress: %5.1f%%, ETA %s, %s, %s%s"
msgstr ""
#. TRANSLATORS: 'time', 'written' and 'speed' string are supposed
#. to get translated as well. See above
#.
#: src/utils_progress.c:137
#, c-format
msgid "Finished, time %s, %s, %s\n"
msgstr ""
#: src/utils_password.c:28 src/utils_password.c:59
#, c-format
msgid "Cannot check password quality: %s"
msgstr ""
#: src/utils_password.c:36
#, c-format
msgid ""
"Password quality check failed:\n"
" %s"
msgstr ""
#: src/utils_password.c:66
#, c-format
msgid "Password quality check failed: Bad passphrase (%s)"
msgstr ""
#: src/utils_password.c:197
msgid ""
"Read stopped at maximal interactive input length, passphrase can be trimmed."
msgstr ""
#: src/utils_password.c:224 src/utils_password.c:238
msgid "Error reading passphrase from terminal."
msgstr ""
#: src/utils_password.c:236
msgid "Verify passphrase: "
msgstr ""
#: src/utils_password.c:243
msgid "Passphrases do not match."
msgstr ""
#: src/utils_password.c:281
msgid "Cannot use offset with terminal input."
msgstr ""
#: src/utils_password.c:285
#, c-format
msgid "Enter passphrase: "
msgstr ""
#: src/utils_password.c:288
#, c-format
msgid "Enter passphrase for %s: "
msgstr ""
#: src/utils_password.c:322
msgid "No key available with this passphrase."
msgstr ""
#: src/utils_password.c:324
msgid "No usable keyslot is available."
msgstr ""
#: src/utils_luks.c:55
msgid "Can't do passphrase verification on non-tty inputs."
msgstr ""
#: src/utils_luks.c:179
#, c-format
msgid "Failed to open file %s in read-only mode."
msgstr ""
#: src/utils_luks.c:193
msgid "Provide valid LUKS2 token JSON:\n"
msgstr ""
#: src/utils_luks.c:200
msgid "Failed to read JSON file."
msgstr ""
#: src/utils_luks.c:205
msgid ""
"\n"
"Read interrupted."
msgstr ""
#: src/utils_luks.c:246
#, c-format
msgid "Failed to open file %s in write mode."
msgstr ""
#: src/utils_luks.c:255
msgid ""
"\n"
"Write interrupted."
msgstr ""
#: src/utils_luks.c:259
msgid "Failed to write JSON file."
msgstr ""
#: src/utils_reencrypt.c:93
#, c-format
msgid "Auto-detected active dm device '%s' for data device %s.\n"
msgstr ""
#: src/utils_reencrypt.c:97
#, c-format
msgid "Failed to auto-detect device %s holders."
msgstr ""
#: src/utils_reencrypt.c:103
#, c-format
msgid "Device %s is not a block device.\n"
msgstr ""
#: src/utils_reencrypt.c:105
#, c-format
msgid ""
"Unable to decide if device %s is activated or not.\n"
"Are you sure you want to proceed with reencryption in offline mode?\n"
"It may lead to data corruption if the device is actually activated.\n"
"To run reencryption in online mode, use --active-name parameter instead.\n"
msgstr ""
#: src/utils_reencrypt.c:114 src/utils_reencrypt.c:247
#, c-format
msgid ""
"Device %s is not a block device. Can not auto-detect if it is active or "
"not.\n"
"Use --force-offline-reencrypt to bypass the check and run in offline mode "
"(dangerous!)."
msgstr ""
#: src/utils_reencrypt.c:151 src/utils_reencrypt.c:194
#: src/utils_reencrypt.c:204
msgid ""
"Requested --resilience option cannot be applied to current reencryption "
"operation."
msgstr ""
#: src/utils_reencrypt.c:176
msgid "Device is not in LUKS2 encryption. Conflicting option --encrypt."
msgstr ""
#: src/utils_reencrypt.c:181
msgid "Device is not in LUKS2 decryption. Conflicting option --decrypt."
msgstr ""
#: src/utils_reencrypt.c:188
msgid ""
"Device is in reencryption using datashift resilience. Requested --resilience "
"option cannot be applied."
msgstr ""
#: src/utils_reencrypt.c:282 src/utils_reencrypt.c:1924
msgid ""
"Cannot determine volume key size for LUKS without keyslots, please use --new-"
"key-size option."
msgstr ""
#: src/utils_reencrypt.c:436
msgid "Device requires reencryption recovery. Run repair first."
msgstr ""
#: src/utils_reencrypt.c:450
#, c-format
msgid ""
"Device %s is already in LUKS2 reencryption. Do you wish to resume previously "
"initialised operation?"
msgstr ""
#: src/utils_reencrypt.c:561
msgid "Legacy LUKS2 reencryption is no longer supported."
msgstr ""
#: src/utils_reencrypt.c:566
msgid "Can not reencrypt LUKS2 device configured to use OPAL."
msgstr ""
#: src/utils_reencrypt.c:572
msgid "Reencryption of device with integrity profile is not supported."
msgstr ""
#: src/utils_reencrypt.c:609
#, c-format
msgid ""
"Requested --sector-size %<PRIu32> is incompatible with %s superblock\n"
"(block size: %<PRIu32> bytes) detected on device %s."
msgstr ""
#: src/utils_reencrypt.c:678 src/utils_reencrypt.c:2204
msgid ""
"Encryption without detached header (--header) is not possible without data "
"device size reduction (--reduce-device-size)."
msgstr ""
#: src/utils_reencrypt.c:687
msgid ""
"Requested data offset must be less than or equal to half of --reduce-device-"
"size parameter."
msgstr ""
#: src/utils_reencrypt.c:697
#, c-format
msgid ""
"Adjusting --reduce-device-size value to twice the --offset %<PRIu64> "
"(sectors).\n"
msgstr ""
#: src/utils_reencrypt.c:727
#, c-format
msgid "Temporary header file %s already exists. Aborting."
msgstr ""
#: src/utils_reencrypt.c:729 src/utils_reencrypt.c:736
#, c-format
msgid "Cannot create temporary header file %s."
msgstr ""
#: src/utils_reencrypt.c:761
msgid "LUKS2 metadata size is larger than data shift value."
msgstr ""
#: src/utils_reencrypt.c:800
#, c-format
msgid "Failed to place new header at head of device %s."
msgstr ""
#: src/utils_reencrypt.c:813
#, c-format
msgid "%s/%s is now active and ready for online encryption.\n"
msgstr ""
#: src/utils_reencrypt.c:850
#, c-format
msgid "Active device %s is not LUKS2."
msgstr ""
#: src/utils_reencrypt.c:878
msgid "Restoring original LUKS2 header."
msgstr ""
#: src/utils_reencrypt.c:886
msgid "Original LUKS2 header restore failed."
msgstr ""
#: src/utils_reencrypt.c:918
#, c-format
msgid ""
"Header file %s does not exist. Do you want to initialize LUKS2 decryption of "
"device %s and export LUKS2 header to file %s?"
msgstr ""
#: src/utils_reencrypt.c:961
msgid "Failed to add read/write permissions to exported header file."
msgstr ""
#: src/utils_reencrypt.c:1015
#, c-format
msgid "Reencryption initialization failed. Header backup is available in %s."
msgstr ""
#: src/utils_reencrypt.c:1043
msgid ""
"LUKS2 decryption is supported with detached header device only (with data "
"offset set to 0)."
msgstr ""
#: src/utils_reencrypt.c:1487
msgid "No token could unlock the device."
msgstr ""
#: src/utils_reencrypt.c:1519 src/utils_reencrypt.c:1528
msgid "Not enough free keyslots for reencryption."
msgstr ""
#: src/utils_reencrypt.c:1559
msgid ""
"Key file or keyring key description can be used only with --key-slot or with "
"exactly one key slot active."
msgstr ""
#: src/utils_reencrypt.c:1566 src/utils_reencrypt.c:1579
#: src/utils_reencrypt_luks1.c:1092 src/utils_reencrypt_luks1.c:1103
#, c-format
msgid "Enter passphrase for key slot %d: "
msgstr ""
#: src/utils_reencrypt.c:1876
#, c-format
msgid "Switching data encryption cipher to %s.\n"
msgstr ""
#: src/utils_reencrypt.c:1977 src/utils_reencrypt.c:1998
msgid ""
"Use --force-no-keyslots to reencrypt device with active keyslots by passing "
"volume keys directly."
msgstr ""
#: src/utils_reencrypt.c:1993
msgid "Option --new-volume-key-file must be paired with --new-key-size"
msgstr ""
#: src/utils_reencrypt.c:2035
msgid "No data segment parameters changed. Reencryption aborted."
msgstr ""
#: src/utils_reencrypt.c:2072
msgid ""
"Encryption sector size increase on offline device is not supported.\n"
"Activate the device first or use --force-offline-reencrypt option "
"(dangerous!)."
msgstr ""
#: src/utils_reencrypt.c:2114 src/utils_reencrypt_luks1.c:688
#: src/utils_reencrypt_luks1.c:759
msgid ""
"\n"
"Reencryption interrupted."
msgstr ""
#: src/utils_reencrypt.c:2119
msgid "Resuming LUKS reencryption in forced offline mode.\n"
msgstr ""
#: src/utils_reencrypt.c:2142
#, c-format
msgid "Device %s contains broken LUKS metadata. Aborting operation."
msgstr ""
#: src/utils_reencrypt.c:2158 src/utils_reencrypt.c:2180
#, c-format
msgid "Device %s is already LUKS device. Aborting operation."
msgstr ""
#: src/utils_reencrypt.c:2186
#, c-format
msgid "Device %s is already in LUKS reencryption. Aborting operation."
msgstr ""
#: src/utils_reencrypt.c:2269
msgid "LUKS2 decryption requires --header option."
msgstr ""
#: src/utils_reencrypt.c:2317
msgid "Command requires device as argument."
msgstr ""
#: src/utils_reencrypt.c:2330
#, c-format
msgid "Conflicting versions. Device %s is LUKS1."
msgstr ""
#: src/utils_reencrypt.c:2336
#, c-format
msgid "Conflicting versions. Device %s is in LUKS1 reencryption."
msgstr ""
#: src/utils_reencrypt.c:2342
#, c-format
msgid "Conflicting versions. Device %s is LUKS2."
msgstr ""
#: src/utils_reencrypt.c:2348
#, c-format
msgid "Conflicting versions. Device %s is in LUKS2 reencryption."
msgstr ""
#: src/utils_reencrypt.c:2354
msgid "LUKS2 reencryption already initialized. Aborting operation."
msgstr ""
#: src/utils_reencrypt.c:2361
msgid "Device reencryption not in progress."
msgstr ""
#: src/utils_reencrypt_luks1.c:116 src/utils_blockdev.c:285
#, c-format
msgid "Cannot exclusively open %s, device in use."
msgstr ""
#: src/utils_reencrypt_luks1.c:130 src/utils_reencrypt_luks1.c:883
msgid "Allocation of aligned memory failed."
msgstr ""
#: src/utils_reencrypt_luks1.c:137
#, c-format
msgid "Cannot read device %s."
msgstr ""
#: src/utils_reencrypt_luks1.c:148
#, c-format
msgid "Marking LUKS1 device %s unusable."
msgstr ""
#: src/utils_reencrypt_luks1.c:164
#, c-format
msgid "Cannot write device %s."
msgstr ""
#: src/utils_reencrypt_luks1.c:213
msgid "Cannot write reencryption log file."
msgstr ""
#: src/utils_reencrypt_luks1.c:268
msgid "Cannot read reencryption log file."
msgstr ""
#: src/utils_reencrypt_luks1.c:279
msgid "Wrong log format."
msgstr ""
#: src/utils_reencrypt_luks1.c:307
#, c-format
msgid "Log file %s exists, resuming reencryption.\n"
msgstr ""
#: src/utils_reencrypt_luks1.c:354
msgid "Activating temporary device using old LUKS header."
msgstr ""
#: src/utils_reencrypt_luks1.c:364
msgid "Activating temporary device using new LUKS header."
msgstr ""
#: src/utils_reencrypt_luks1.c:374
msgid "Activation of temporary devices failed."
msgstr ""
#: src/utils_reencrypt_luks1.c:434
msgid "Failed to set data offset."
msgstr ""
#: src/utils_reencrypt_luks1.c:440
msgid "Failed to set metadata size."
msgstr ""
#: src/utils_reencrypt_luks1.c:448
#, c-format
msgid "New LUKS header for device %s created."
msgstr ""
#: src/utils_reencrypt_luks1.c:485
#, c-format
msgid "%s header backup of device %s created."
msgstr ""
#: src/utils_reencrypt_luks1.c:541
msgid "Creation of LUKS backup headers failed."
msgstr ""
#: src/utils_reencrypt_luks1.c:670
#, c-format
msgid "Cannot restore %s header on device %s."
msgstr ""
#: src/utils_reencrypt_luks1.c:672
#, c-format
msgid "%s header on device %s restored."
msgstr ""
#: src/utils_reencrypt_luks1.c:855 src/utils_reencrypt_luks1.c:861
msgid "Cannot open temporary LUKS device."
msgstr ""
#: src/utils_reencrypt_luks1.c:866 src/utils_reencrypt_luks1.c:871
msgid "Cannot get device size."
msgstr ""
#: src/utils_reencrypt_luks1.c:913
msgid "IO error during reencryption."
msgstr ""
#: src/utils_reencrypt_luks1.c:943
msgid "Provided UUID is invalid."
msgstr ""
#: src/utils_reencrypt_luks1.c:1045
msgid ""
"Key file can be used only with --key-slot or with exactly one key slot "
"active."
msgstr ""
#: src/utils_reencrypt_luks1.c:1169
msgid "Cannot open reencryption log file."
msgstr ""
#: src/utils_reencrypt_luks1.c:1175
msgid ""
"No decryption in progress, provided UUID can be used only to resume "
"suspended decryption process."
msgstr ""
#: src/utils_reencrypt_luks1.c:1231
#, c-format
msgid "Reencryption will change: %s%s%s%s%s%s."
msgstr ""
#: src/utils_reencrypt_luks1.c:1232
msgid "volume key"
msgstr ""
#: src/utils_reencrypt_luks1.c:1234
msgid "set hash to "
msgstr ""
#: src/utils_reencrypt_luks1.c:1235
msgid ", set cipher to "
msgstr ""
#: src/utils_blockdev.c:179
#, c-format
msgid "WARNING: Device %s already contains a '%s' partition signature.\n"
msgstr ""
#: src/utils_blockdev.c:187
#, c-format
msgid "WARNING: Device %s already contains a '%s' superblock signature.\n"
msgstr ""
#: src/utils_blockdev.c:209 src/utils_blockdev.c:292 src/utils_blockdev.c:344
msgid "Failed to initialize device signature probes."
msgstr ""
#: src/utils_blockdev.c:272
#, c-format
msgid "Failed to stat device %s."
msgstr ""
#: src/utils_blockdev.c:287
#, c-format
msgid "Failed to open file %s in read/write mode."
msgstr ""
#: src/utils_blockdev.c:307
#, c-format
msgid "Existing '%s' partition signature on device %s will be wiped."
msgstr ""
#: src/utils_blockdev.c:310
#, c-format
msgid "Existing '%s' superblock signature on device %s will be wiped."
msgstr ""
#: src/utils_blockdev.c:313
msgid "Failed to wipe device signature."
msgstr ""
#: src/utils_blockdev.c:320
#, c-format
msgid "Failed to probe device %s for a signature."
msgstr ""
#: src/utils_args.c:52
#, c-format
msgid "Invalid size specification in parameter --%s."
msgstr ""
#: src/utils_args.c:112
#, c-format
msgid "Option --%s is not allowed with %s action."
msgstr ""
#: src/utils_key_description.c:66
msgid ""
"Type specification in --link-vk-to-keyring keyring specification is ignored."
msgstr ""
#: src/utils_key_description.c:131
msgid "Key types have to be the same for both volume keys."
msgstr ""
#: src/utils_key_description.c:136
msgid "Both volume keys have to be linked to the same keyring."
msgstr ""
#: src/utils_key_description.c:146
msgid "You need to supply more key names."
msgstr ""
#: src/utils_key_description.c:150
msgid "Invalid --link-vk-to-keyring value."
msgstr ""
#: src/utils_keyslot_check.c:114
#, c-format
msgid "Keyslot %d binary data could be corrupted.\n"
msgstr ""
#: src/utils_keyslot_check.c:124
#, c-format
msgid " Suspected offset: 0x%<PRIx64>\n"
msgstr ""
#: src/utils_keyslot_check.c:127
msgid " Subsequent suspected offsets are suppressed.\n"
msgstr ""
#: src/utils_keyslot_check.c:178 src/utils_keyslot_check.c:183
#, c-format
msgid "Keyslot %d cannot be read from the device."
msgstr ""
#: src/utils_keyslot_check.c:194
#, c-format
msgid ""
"You can use hexdump -v -C -n 128 -s <offset_0xXXXX> \"%s\" to inspect the "
"data.\n"
msgstr ""
#: tokens/ssh/cryptsetup-ssh.c:110
msgid "Failed to write ssh token json."
msgstr ""
#: tokens/ssh/cryptsetup-ssh.c:128
msgid ""
"Experimental cryptsetup plugin for unlocking LUKS2 devices with token "
"connected to an SSH server\vThis plugin currently allows only adding a token "
"to an existing key slot.\n"
"\n"
"Specified SSH server must contain a key file on the specified path with a "
"passphrase for an existing key slot on the device.\n"
"Provided credentials will be used by cryptsetup to get the password when "
"opening the device using the token.\n"
"\n"
"Note: The information provided when adding the token (SSH server address, "
"user and paths) will be stored in the LUKS2 header in plaintext."
msgstr ""
#: tokens/ssh/cryptsetup-ssh.c:138
msgid "<action> <device>"
msgstr ""
#: tokens/ssh/cryptsetup-ssh.c:141
msgid "Options for the 'add' action:"
msgstr ""
#: tokens/ssh/cryptsetup-ssh.c:142
msgid "IP address/URL of the remote server for this token"
msgstr ""
#: tokens/ssh/cryptsetup-ssh.c:143
msgid "Username used for the remote server"
msgstr ""
#: tokens/ssh/cryptsetup-ssh.c:144
msgid "Path to the key file on the remote server"
msgstr ""
#: tokens/ssh/cryptsetup-ssh.c:145
msgid "Path to the SSH key for connecting to the remote server"
msgstr ""
#: tokens/ssh/cryptsetup-ssh.c:147
msgid "Path to directory containinig libcryptsetup external tokens"
msgstr ""
#: tokens/ssh/cryptsetup-ssh.c:148
msgid ""
"Keyslot to assign the token to. If not specified, token will be assigned to "
"the first keyslot matching provided passphrase."
msgstr ""
#: tokens/ssh/cryptsetup-ssh.c:150
msgid "Generic options:"
msgstr ""
#: tokens/ssh/cryptsetup-ssh.c:151
msgid "Shows more detailed error messages"
msgstr ""
#: tokens/ssh/cryptsetup-ssh.c:152
msgid "Show debug messages"
msgstr ""
#: tokens/ssh/cryptsetup-ssh.c:153
msgid "Show debug messages including JSON metadata"
msgstr ""
#: tokens/ssh/cryptsetup-ssh.c:268
msgid "Failed to open and import private key:\n"
msgstr ""
#: tokens/ssh/cryptsetup-ssh.c:272
msgid "Failed to import private key (password protected?).\n"
msgstr ""
#. TRANSLATORS: SSH credentials prompt, e.g. "user@server's password: "
#: tokens/ssh/cryptsetup-ssh.c:274
#, c-format
msgid "%s@%s's password: "
msgstr ""
#: tokens/ssh/cryptsetup-ssh.c:363
#, c-format
msgid "Failed to parse arguments.\n"
msgstr ""
#: tokens/ssh/cryptsetup-ssh.c:374
#, c-format
msgid "An action must be specified\n"
msgstr ""
#: tokens/ssh/cryptsetup-ssh.c:380
#, c-format
msgid "Device must be specified for '%s' action.\n"
msgstr ""
#: tokens/ssh/cryptsetup-ssh.c:385
#, c-format
msgid "SSH server must be specified for '%s' action.\n"
msgstr ""
#: tokens/ssh/cryptsetup-ssh.c:390
#, c-format
msgid "SSH user must be specified for '%s' action.\n"
msgstr ""
#: tokens/ssh/cryptsetup-ssh.c:395
#, c-format
msgid "SSH path must be specified for '%s' action.\n"
msgstr ""
#: tokens/ssh/cryptsetup-ssh.c:400
#, c-format
msgid "SSH key path must be specified for '%s' action.\n"
msgstr ""
#: tokens/ssh/cryptsetup-ssh.c:407
#, c-format
msgid "Failed open %s using provided credentials.\n"
msgstr ""
#: tokens/ssh/cryptsetup-ssh.c:424
#, c-format
msgid "Only 'add' action is currently supported by this plugin.\n"
msgstr ""
#: tokens/ssh/ssh-utils.c:33
msgid "Cannot create sftp session: "
msgstr ""
#: tokens/ssh/ssh-utils.c:40
msgid "Cannot init sftp session: "
msgstr ""
#: tokens/ssh/ssh-utils.c:46
msgid "Cannot open sftp session: "
msgstr ""
#: tokens/ssh/ssh-utils.c:53
msgid "Cannot stat sftp file: "
msgstr ""
#: tokens/ssh/ssh-utils.c:61
msgid "Not enough memory.\n"
msgstr ""
#: tokens/ssh/ssh-utils.c:68
msgid "Cannot read remote key: "
msgstr ""
#: tokens/ssh/ssh-utils.c:109
msgid "Connection failed: "
msgstr ""
#: tokens/ssh/ssh-utils.c:119
msgid "Server not known: "
msgstr ""
#: tokens/ssh/ssh-utils.c:147
msgid "Public key auth method not allowed on host.\n"
msgstr ""
#: tokens/ssh/ssh-utils.c:158
msgid "Public key authentication error: "
msgstr ""
|