summaryrefslogtreecommitdiffstats
path: root/source3/lib/netapi/examples/share
diff options
context:
space:
mode:
authorAndrew Bartlett <abartlet@samba.org>2012-03-28 09:34:12 +1100
committerAndrew Bartlett <abartlet@samba.org>2012-04-05 02:39:08 +0200
commitdb1f2779791d250a01e2405a2f901bab4ade4efd (patch)
treea8f4d46ab3aacf5e65ced2fe015fac2f9a1a97ca /source3/lib/netapi/examples/share
parent813d31183dfba7ac702e93b26640ce4d5d0d9918 (diff)
downloadsamba-db1f2779791d250a01e2405a2f901bab4ade4efd.tar.gz
samba-db1f2779791d250a01e2405a2f901bab4ade4efd.tar.xz
samba-db1f2779791d250a01e2405a2f901bab4ade4efd.zip
build: use only standard _FILE_OFFSET_BITS=64 macro for large files
(We also already use any other macro as set by getconf LFS_CFLAGS, and the standard AC_SYS_LARGEFILE macro in libreplace). This is instead of using the transitional *64 posix largefile API Andrew Bartlett
Diffstat (limited to 'source3/lib/netapi/examples/share')
0 files changed, 0 insertions, 0 deletions
/a> 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
# Martin Bašti <mbasti@redhat.com>, 2016. #zanata
msgid ""
msgstr ""
"Project-Id-Version: freeipa 4.4.90.dev201703151542+gita1686a9\n"
"Report-Msgid-Bugs-To: https://fedorahosted.org/freeipa/newticket\n"
"POT-Creation-Date: 2017-03-15 16:43+0100\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"PO-Revision-Date: 2016-10-25 08:44-0400\n"
"Last-Translator: Martin Bašti <mbasti@redhat.com>\n"
"Language-Team: Slovak\n"
"Language: sk\n"
"X-Generator: Zanata 3.9.6\n"
"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2\n"

#, python-format
msgid "Unknown option: %(option)s"
msgstr "Neznáma voľba: %(option)s"

msgid "trusted domain object not found"
msgstr "trust doménový objekt nenájdený"

msgid "trusted domain user not found"
msgstr "trust doménový užívateľ nenájdený"

msgid ""
"\n"
"EXAMPLES:\n"
msgstr ""
"\n"
"PRÍKLADY:\n"

msgid "Certificate"
msgstr "Certifikát"

msgid "Base-64 encoded certificate."
msgstr "Base-64 zakódovaný certifikát."

msgid "Serial number"
msgstr "Sériové číslo"

msgid "Serial number (hex)"
msgstr "Sériové číslo (hexadecimálne)"

msgid "Profile ID"
msgstr "ID profilu"

msgid "Status"
msgstr "Stav"

msgid "Retrieve an existing certificate."
msgstr "Získať existujúci certifikát."

#, python-format
msgid ""
"Certificate with serial number %(serial)s issued by CA '%(ca)s' not found"
msgstr ""
"Certifikát so sériovým číslom %(serial)s vydaný CA '%(ca)s' sa nenašiel"

msgid "Revoke a certificate."
msgstr "Revokácia certifikátu."

msgid "Search for existing certificates."
msgstr "Vyhľadávanie existujúcich certifikátov."

msgid "minimum serial number"
msgstr "minimálne sériové číslo"

msgid "maximum serial number"
msgstr "maximálne sériové číslo"

msgid "Description"
msgstr "Popis"

msgid "Type"
msgstr "Typ"

msgid "group"
msgstr "skupina"

msgid "Users"
msgstr "Používatelia"

msgid "User"
msgstr "Používateľ"

msgid "Account disabled"
msgstr "Účet deaktivovaný"

msgid "Preserved user"
msgstr "Uschovaný používateľ"

msgid "Default group for new users not found"
msgstr "Predvolená skupina pre nových používateľov nenájdená"

#, python-format
msgid "%s: user is already preserved"
msgstr "%s: používateľ  je už uschovaný"

msgid "Disable a user account."
msgstr "Deaktivovať používateľský účet."

#, python-format
msgid "Disabled user account \"%(value)s\""
msgstr "Deaktivovaný používateľský účet \"%(value)s\""

#, python-format
msgid "Account disabled: %(disabled)s"
msgstr "Účet deaktivovaný: %(disabled)s"

msgid "Add one or more certificates to the user entry"
msgstr "Pridať jeden alebo viac certifikátov do používateľskej položky"

#, python-format
msgid "Added certificates to user \"%(value)s\""
msgstr "Certifikáty boli pridané k používateľovi \"%(value)s\""

msgid "Remove one or more certificates to the user entry"
msgstr "Odtrániť  jeden alebo viac certifikátov z používateľskej položky"

#, python-format
msgid "Removed certificates from user \"%(value)s\""
msgstr "Certifikáty boli odstránené používateľovi  \"%(value)s\""

msgid "Active Directory domain"
msgstr "Active Directory doména"

msgid "Domain NetBIOS name"
msgstr "Doménové NetBIOS meno"

msgid "Domain"
msgstr "Doména"

msgid "NetBIOS name"
msgstr "NetBIOS meno"

msgid "Name"
msgstr "Názov"

msgid "SID"
msgstr "SID"

msgid "Domain name"
msgstr "Doménové meno"

msgid "sudo rules"
msgstr "sudo pravidlá"

msgid "Sudo Rules"
msgstr "Sudo pravidlá"

msgid "Rule name"
msgstr "Názov pravidla"

msgid "User Groups"
msgstr "Používateľské skupiny"

msgid "Group description"
msgstr "Popis skupiny"

msgid "Commands"
msgstr "Príkazy"

msgid "sudo commands"
msgstr "sudo príkazy"

msgid "Sudo Commands"
msgstr "Sudo príkazy"

msgid "Search for Sudo Commands."
msgstr "Vyhľadať sudo príkazy."

msgid "Keytab"
msgstr "Keytab"

msgid "Services"
msgstr "Služby"

msgid "Service"
msgstr "Služba"

msgid "Base-64 encoded service certificate"
msgstr "Base-64 zakódovaný certifikát služby"

msgid "Serial Number"
msgstr "Sériové číslo"

msgid "Serial Number (hex)"
msgstr "Sériové číslo (hexadecimálne)"

msgid "Force"
msgstr "Vynútiť"

msgid "Disable the Kerberos key and SSL certificate of a service."
msgstr "Deaktivovať Kerberos kľúč a SSL certifikát služby."

#, python-format
msgid "Disabled service \"%(value)s\""
msgstr "Deaktivovaná služba \"%(value)s\""

msgid "Add new certificates to a service"
msgstr "Pridať nové certifikáty k službe"

msgid "Remove certificates from a service"
msgstr "Odstrániť certifikáty zo služby"

msgid "IPA Server"
msgstr "IPA Server"

msgid "Weight for server services"
msgstr "Váha pre služby servera"

msgid "SELinux User"
msgstr "SELinux používateľ"

#, python-format
msgid "HBAC rule %(rule)s not found"
msgstr "HBAC pravidlo %(rule)s nenájdené"

msgid "Permissions"
msgstr "Povolenia"

msgid "Attributes"
msgstr "Atribúty"

msgid "ACI"
msgstr "ACI"

msgid "Roles"
msgstr "Role"

msgid "Role name"
msgstr "Názov role"

msgid "Realm Domains"
msgstr "Realm domény"

msgid "password policies"
msgstr "Politky hesiel"

msgid "Password Policies"
msgstr "Politiky hesiel"

msgid "Password Policy"
msgstr "Politika hesiel"

msgid "Priority"
msgstr "Priorita"

msgid "pkinit"
msgstr "pkinit"

#, python-format
msgid "\"%s\" is not a valid permission type"
msgstr "\"%s\" nie je platný typ povolenia"

msgid "permission"
msgstr "povolenie"

msgid "Permission"
msgstr "Povolenie"

msgid "Included attributes"
msgstr "Zahrnuté atribúty"

msgid "Excluded attributes"
msgstr "Vylúčené atribúty"

msgid "Default attributes"
msgstr "Predvolené atribúty"

msgid "Subtree"
msgstr "Podstrom"

msgid "Target DN"
msgstr "Cieľové DN"

msgid "Target group"
msgstr "Cieľová skupina"

msgid "A SYSTEM permission may not be modified or removed"
msgstr "SYSTEM-ové povolenia nemožu byť upravené alebo odstránené"

#, python-format
msgid "Entry %s not found"
msgstr "Položka %s nenájdená"

#, python-format
msgid "The ACI for permission %(name)s was not found in %(dn)s "
msgstr "ACI pre oprávnenie %(name)s sa nenašlo v  %(dn)s "

#, python-format
msgid "%s: group not found"
msgstr "%s: skupina nenájdená"

#, python-format
msgid "Entry %s does not exist"
msgstr "Položka %s neexistuje"

#, python-format
msgid "ACI of permission %s was not found"
msgstr "ACI pre oprávnenie %s sa nenašlo"

msgid "Search for permissions."
msgstr "Vyhľadať povolenia."

msgid "Set a user's password."
msgstr "Nastaviť používateľské heslo."

msgid "User name"
msgstr "Používateľské meno"

msgid "New Password"
msgstr "Nové heslo"

msgid "Current Password"
msgstr "Súčasné heslo"

msgid "OTP"
msgstr "OTP"

msgid "One Time Password"
msgstr "Jednorázové heslo (OTP)"

#, python-format
msgid "Changed password for \"%(value)s\""
msgstr "Zmenené heslo pre \"%(value)s\""

msgid "Invalid credentials"
msgstr "Nesprávne prihlasovacie údaje"

msgid ""
"\n"
"OTP Tokens\n"
msgstr ""
"\n"
"OTP tokeny\n"

msgid "OTP token"
msgstr "OTP token"

msgid "OTP tokens"
msgstr "OTP tokeny"

msgid "OTP Tokens"
msgstr "OTP tokeny"

msgid "OTP Token"
msgstr "OTP token"

msgid "Unique ID"
msgstr "Unikátne ID"

msgid "Type of the token"
msgstr "Typ tokenu"

msgid "Owner"
msgstr "Vlastník"

msgid "Manager"
msgstr "Manažér"

msgid "Disabled"
msgstr "Deaktivované"

msgid "Mark the token as disabled (default: false)"
msgstr "Označiť token ako deaktivovaný (predvolené: false)"

msgid "Validity start"
msgstr "Začiatok platnosti"

msgid "Validity end"
msgstr "Koniec platnosti"

msgid "Length of TOTP token code validity"
msgstr "Dĺžka platnosti TOTP token kódu"

msgid "URI"
msgstr "URI"

msgid "Delete an OTP token."
msgstr "Odstrániť OTP token"

#, python-format
msgid "Deleted OTP token \"%(value)s\""
msgstr "Odstránený OTP token \"%(value)s\""

msgid "Modify a OTP token."
msgstr "Upraviť OTP token"

#, python-format
msgid "Modified OTP token \"%(value)s\""
msgstr "Upravený OTP token \"%(value)s\""

msgid "Search for OTP token."
msgstr "Vyhľadať OTP token"

msgid "Add users that can manage this token."
msgstr "Pridať používateľa, ktorý môže spravovať tento token."

msgid "Malformed DN"
msgstr "Poškodené DN"

#, python-format
msgid "%(user)s is not a POSIX user"
msgstr "%(user)s nie je POSIX užívateľ"

msgid "Invalid LDAP URI."
msgstr "Neplatná LDAP URI."

msgid "LDAP URI"
msgstr "LDAP URI"

msgid "Password"
msgstr "Heslo"

msgid "Overwrite GID"
msgstr "Prepísať GID"

msgid "LDAP schema"
msgstr "LDAP schéma"

msgid "Continue"
msgstr "Pokračovať"

msgid "CA certificate"
msgstr "CA certifikát"

msgid "Load CA certificate of LDAP server from FILE"
msgstr "Načítať CA certifikát LDAP servera zo súboru"

msgid "Add to default group"
msgstr "Pridať do predvolenej skupiny"

msgid "Search scope"
msgstr "Rozsah vyhľadávania"

msgid "Dict of JSON encoded IPA Objects"
msgstr "Slovník JSON zakódovaných IPA objektov"

msgid "Dict of JSON encoded IPA Methods"
msgstr "Slovník JSON zakódovaných IPA metód"

msgid "Dict of JSON encoded IPA Commands"
msgstr "Slovník JSON zakódovaných IPA príkazov"

msgid "Your session has expired. Please re-login."
msgstr "Vaše prihlásenie vypršalo. Prosím znovu sa prihláste."

msgid "Apply"
msgstr "Použiť"

msgid "Automember rebuild membership task completed"
msgstr "Úloha obnovenia automember členstva dokončená"

#, python-brace-format
msgid "Are you sure you want to delete ${object}?"
msgstr "Ste si istý/istá, že chcete odstrániť ${object}?"

#, python-brace-format
msgid "Are you sure you want to disable ${object}?"
msgstr "Ste si istý/istá, že chcete deaktivovať ${object}?"

#, python-brace-format
msgid "Are you sure you want to enable ${object}?"
msgstr "Ste si istý/istá, že chcete aktivovať ${object}?"

msgid "Actions"
msgstr "Akcie"

msgid "Direct Membership"
msgstr "Priame členstvo"

msgid "Indirect Membership"
msgstr "Nepriame členstvo"

msgid "No entries."
msgstr "Žiadne položky."

#, python-brace-format
msgid "Showing ${start} to ${end} of ${total} entries."
msgstr "Zobrazených ${start} až ${end} z ${total} položiek."

#, python-brace-format
msgid "${count} item(s) removed"
msgstr "${count} položiek odstránneých"

msgid "Show Results"
msgstr "Zobraz výsledky"

msgid "Two factor authentication (password + OTP)"
msgstr "Dvojfaktorová autentifikácia (heslo + OTP)"

msgid "RADIUS"
msgstr "RADIUS"

msgid "Add"
msgstr "Pridať"

msgid "Add and Add Another"
msgstr "Pridať a pridať ďalšie"

msgid "Add and Close"
msgstr "Pridať a zavrieť"

msgid "Add and Edit"
msgstr "Pridať a upraviť"

msgid "Cancel"
msgstr "Zrušiť"

msgid "Disable"
msgstr "Deaktivovať"

msgid "Edit"
msgstr "Upraviť"

msgid "Filter"
msgstr "Filter"

msgid "Find"
msgstr "Hľadať"

msgid "Hide"
msgstr "Skryť"

msgid "Issue"
msgstr "Vydať"

msgid "OK"
msgstr "OK"

msgid "Refresh"
msgstr "Znovu načítať"

msgid "Reload current settings from the server."
msgstr "Znovu načítať aktuálne nastavenia zo servera."

msgid "Delete"
msgstr "Odstrániť"

msgid "Reset Password and Login"
msgstr "Obnoviť heslo a prihlásiť sa"

msgid "Restore"
msgstr "Obnoviť"

msgid "Revert"
msgstr "Vrátiť"

msgid "Save"
msgstr "Uložiť"

msgid "Set"
msgstr "Nastaviť"

msgid "Show"
msgstr "Zobraziť"

msgid "Update"
msgstr "Aktualizovať"

msgid "Collapse All"
msgstr "Zbaliť všetko"

msgid "Expand All"
msgstr "Rozbaliť všetko"

msgid "Identity Settings"
msgstr "Nastavenia identity"

#, python-brace-format
msgid "${entity} ${primary_key} Settings"
msgstr "Nastavenia pre ${entity} ${primary_key}"

#, python-brace-format
msgid "Add ${entity}"
msgstr "Pridať ${entity}"

msgid "Confirmation"
msgstr "Potvrdenie"

msgid "Custom value"
msgstr "Vlastná hodnota"

msgid "This page has unsaved changes. Please save or revert."
msgstr ""
"Táto stránka obsahuje neuložené zmeny. Prosím uložte alebo vráťte zmeny späť."

msgid "Unsaved Changes"
msgstr "Neuložené zmeny"

msgid "Hide details"
msgstr "Skryť detaily"

msgid "Show details"
msgstr "Zobraziť detaily"

msgid "Success"
msgstr "Úspech"

msgid "Validation error"
msgstr "Chyba validácie"

msgid "Refresh the page."
msgstr "Znovu načítať stránku."

#, python-brace-format
msgid "An error has occurred (${error})"
msgstr "Nastala chyba (${error})"

msgid "HTTP Error"
msgstr "Chyba HTTP"

msgid "Internal Error"
msgstr "Vnútorná chyba"

msgid "IPA Error"
msgstr "IPA chyba"

msgid "No response"
msgstr "Bez odpovede"

msgid "Unknown Error"
msgstr "Neznáma chyba"

msgid "URL"
msgstr "URL"

#, python-brace-format
msgid "${primary_key} is a member of:"
msgstr "${primary_key} je členom:"

msgid "Settings"
msgstr "Nastavenia"

msgid "Search"
msgstr "Vyhľadávanie"

msgid "Inherited from server configuration"
msgstr "Zdedené z konfigurácie servera"

msgid "MS-PAC"
msgstr "MS-PAC"

msgid "Override inherited settings"
msgstr "Potlačiť zdedené nastavenia"

msgid "Logout"
msgstr "Odhlásiť sa"

msgid "Logout error"
msgstr "Chyba odhlasovania"

msgid "Sync OTP Token"
msgstr "Synchronizovať OTP Token"

msgid "Username"
msgstr "Používateľské meno"

msgid "Default user group"
msgstr "Predvolená používateľská skupina"

msgid "Expression"
msgstr "Výraz"

msgid "Direct"
msgstr "Priame"

msgid "Indirect"
msgstr "Nepriame"

msgid "All"
msgstr "Všetko"

msgid "Any CA"
msgstr "Akákoľvek CA"

msgid "Any Service"
msgstr "Akákoľvek služba"

msgid "Any Profile"
msgstr "Akýkoľvek profil"

msgid "Anyone"
msgstr "Každý"

msgid "Rule status"
msgstr "Stav pravidla"

msgid "Profiles"
msgstr "Profily"

msgid "Specified CAs"
msgstr "Špecifikované CA"

msgid "Specified Profiles"
msgstr "Špecifikované profily"

msgid "Specified Services and Groups"
msgstr "Špecifikované služby a skupiny"

msgid "Certificates"
msgstr "Certifikáty"

msgid "Certificate Hold"
msgstr "Držanie certifikátu"

msgid "Maximum serial number"
msgstr "Maximálne sériové číslo"

msgid "Minimum serial number"
msgstr "Minimálne sériové číslo"

msgid "Get Certificate"
msgstr "Získať certifikát"

msgid "Certificate Hold Removed"
msgstr "Držanie certifikátu odstránené"

#, python-brace-format
msgid "Issue New Certificate for ${entity} ${primary_key}"
msgstr "Vydať nový certifikát pre ${entity} ${primary_key}"

msgid "Issue New Certificate"
msgstr "Vydať nový certifikát"

msgid "No Valid Certificate"
msgstr "Žiadny platný certifikát"

msgid "New Certificate"
msgstr "Nový certifikát"

msgid "Note"
msgstr "Poznámka"

msgid "Organization"
msgstr "Organizácia"

msgid "Organizational Unit"
msgstr "Organizačná jednotka"

#, python-brace-format
msgid "${count} certificate(s) present"
msgstr "${count} certifikátov prítomných"

msgid "Reason for Revocation"
msgstr "Dôvod pre revokáciu"

msgid "Remove Certificate Hold"
msgstr "Odstrániť držanie certifikátu"

#, python-brace-format
msgid ""
"<ol> <li>Create a certificate database or use an existing one. To create a "
"new database:<br/> <code># certutil -N -d &lt;database path&gt;</code> </li> "
"<li>Create a CSR with subject <em>CN=&lt;${cn_name}&gt;,O=&lt;realm&gt;</"
"em>, for example:<br/> <code># certutil -R -d &lt;database path&gt; -a -g "
"&lt;key size&gt; -s 'CN=${cn},O=${realm}'${san}</code> </li> <li> Copy and "
"paste the CSR (from <em>-----BEGIN NEW CERTIFICATE REQUEST-----</em> to "
"<em>-----END NEW CERTIFICATE REQUEST-----</em>) into the text area below: </"
"li> </ol>"
msgstr ""
"<ol> <li>Vytvorte databázu certifikátov alebo použite už existujúcu. "
"Vytvorenie novej databázy:<br/> <code># certutil -N -d &lt;database path&gt;"
"</code> </li> <li>Vytvorte CSR so subjektom <em>CN=&lt;${cn_name}&gt;,O=&lt;"
"realm&gt;</em>, napríklad:<br/> <code># certutil -R -d &lt;database path&gt; "
"-a -g &lt;key size&gt; -s 'CN=${cn},O=${realm}'${san}</code> </li> <li> "
"Nakopírujte CSR (od <em>-----BEGIN NEW CERTIFICATE REQUEST-----</em> do "
"<em>-----END NEW CERTIFICATE REQUEST-----</em>) do textového poľa nižšie: </"
"li> </ol>"

msgid "Certificate requested"
msgstr "Certifikačná požiadavka"

msgid "Revoke Certificate"
msgstr "Revokovať certifikát"

msgid "Certificate Revoked"
msgstr "Certifikát revokovaný"

msgid "Unspecified"
msgstr "Nešpecifikované"

msgid "Valid Certificate Present"
msgstr "Prítomný platný certifikát"

msgid "Validity"
msgstr "Platnosť"

#, python-brace-format
msgid "Certificate for ${entity} ${primary_key}"
msgstr "Certifikát pre ${entity} ${primary_key}"

msgid "View Certificate"
msgstr "Prezrieť certifikát"

msgid "Group Options"
msgstr "Voľby skupiny"

msgid "Search Options"
msgstr "Voľby vyhľadávania"

msgid "SELinux Options"
msgstr "SELinux voľby"

msgid "Service Options"
msgstr "Voľby služieb"

msgid "User Options"
msgstr "Voľby používateľov"

msgid "Options"
msgstr "Voľby"

msgid "DNS record was deleted because it contained no data."
msgstr "DNS záznam bol odstránený pretože neobsahoval žiadne údaje."

msgid "Other Record Types"
msgstr "Ostatné typy záznamov"

msgid "Address not valid, can't redirect"
msgstr "Neplatná adresa, nemôžem presmerovať"

msgid "Create dns record"
msgstr "Vytvoriť DNS záznam"

msgid "Creating record."
msgstr "Vytváranie záznamu."

msgid "Record creation failed."
msgstr "Vytvorenie záznamu zlyhalo."

msgid "Record not found."
msgstr "Záznam nenájdený"

msgid "Redirection to PTR record"
msgstr "Presmerovanie na PTR záznam"

#, python-brace-format
msgid "Zone found: ${zone}"
msgstr "Zóna nájdená: ${zone}"

msgid "Target reverse zone not found."
msgstr "Cieľová reverzná zóna nenájdená."

msgid "Standard Record Types"
msgstr "Štandardné typy záznamov"

msgid "Records for DNS Zone"
msgstr "Záznamy pre DNS zónu"

msgid "Record Type"
msgstr "Typ záznamu"

msgid "DNS Zone Settings"
msgstr "Nastavenia DNS zóny"

msgid "Add Permission"
msgstr "Pridať povolenie"

#, python-brace-format
msgid "Are you sure you want to add permission for DNS Zone ${object}?"
msgstr "Ste si istý/istá, že chcete pridať povolenie pre DNS zónu ${object}?"

msgid "Remove Permission"
msgstr "Odstrániť povolenie"

#, python-brace-format
msgid "Are you sure you want to remove permission for DNS Zone ${object}?"
msgstr ""
"Ste si istý/istá, že chcete odstrániť povolenie pre DNS zónu ${object}?"

msgid "Skip DNS check"
msgstr "Preskočiť DNS kontrolu"

msgid "Group Settings"
msgstr "Nastavenia skupiny"

msgid "Groups"
msgstr "Skupiny"

msgid "POSIX"
msgstr "POSIX"

msgid "Group Type"
msgstr "Typ skupiny"

msgid "Who"
msgstr "Kto"

msgid "Access Denied"
msgstr "Prístup odmietnutý"

msgid "Access Granted"
msgstr "Prístup povolený"

msgid "HBAC Test"
msgstr "HBAC test"

msgid "Rules"
msgstr "Pravidlá"

msgid "Run Test"
msgstr "Spustiť test"

msgid "Kerberos Key"
msgstr "Kerberos kľúč"

msgid "Kerberos Key Not Present"
msgstr "Kerberos kľúč nie je prítomný"

msgid "One-Time-Password"
msgstr "Jednorázové heslo (OTP)"

msgid "Set OTP"
msgstr "Nastaviť OTP"

msgid "Set One-Time-Password"
msgstr "Nastaviť  jednorázové heslo (OTP)"

msgid "Netgroup Settings"
msgstr "Netgroup nastavenia"

msgid "Add OTP Token"
msgstr "Pridať OTP token"

msgid "OTP Token Settings"
msgstr "Nastavenia pre OTP token"

msgid "Disable token"
msgstr "Deaktiovať token"

msgid "Show QR code"
msgstr "Zobraziť QR kód"

msgid "Permission settings"
msgstr "Nastavenia oprávnenia"

msgid "Privilege Settings"
msgstr "Nastavenia privilégia"

msgid "Show/Set key"
msgstr "Zobraziť/Nastaviť kľúč"

msgid "Modified"
msgstr "Modifikované"

msgid "Range Settings"
msgstr "Nastavenie rozsahu"

msgid "Active Directory domain with POSIX attributes"
msgstr "Active Directory doména s POSIX attribútmy"

msgid "Detect"
msgstr "Detekovať"

msgid "Local domain"
msgstr "Lokálna doména"

msgid "IPA trust"
msgstr "IPA trust"

msgid "Active Directory winsync"
msgstr "Active Directory winsync"

msgid "RADIUS Proxy Server Settings"
msgstr "RADIUS Proxy serverové nastavenia"

msgid "Check DNS"
msgstr "Skontrolovať DNS"

msgid "Force Update"
msgstr "Vynútiť aktualizáciu"

msgid "Role Settings"
msgstr "Nastavenia role"

msgid "Server Roles"
msgstr "Serverové role"

msgid "Server Role"
msgstr "Server rola"

msgid "Service Certificate"
msgstr "Certifikát služby"

msgid "Service Settings"
msgstr "Nastavenia služby"

msgid "SSH public keys"
msgstr "Verejné SSH kľúče"

msgid "SSH public key:"
msgstr "Verejný SSH kľuč"

msgid "Set SSH key"
msgstr "Nastaviť SSH kľúč"

msgid "Stage users"
msgstr "Predpripravení používatelia"

msgid "Preserved users"
msgstr "Uschovaní používatelia"

#, python-brace-format
msgid "${count} users(s) staged"
msgstr "${count} users(s) predpripravených"

msgid "Are you sure you want to restore selected users?"
msgstr "Ste si istý/istá, že chcete obnoviť vybraných používateľov?"

#, python-brace-format
msgid "${count} user(s) restored"
msgstr "${count} používateľov obnovených"

msgid "User categories"
msgstr "Kategórie používateľov"

msgid "Allow"
msgstr "Povoliť"

msgid "Any Command"
msgstr "Akýkoľvek príkaz"

msgid "Any Group"
msgstr "Akákoľvek skupina"

msgid "Deny"
msgstr "Zakázať"

msgid "Option added"
msgstr "Voľba pridaná"

#, python-brace-format
msgid "${count} option(s) removed"
msgstr "${count} option(s) odstránených"

msgid "Specified Groups"
msgstr "Špecifikované skupiny"

msgid "Segment details"
msgstr "Detaily segmentu"

msgid "Replication configuration"
msgstr "Konfigurácia repliky"

msgid "Account"
msgstr "Účet"

msgid "Trust Settings"
msgstr "Trust nastavenia"

msgid "Account Settings"
msgstr "Nastavenia účtu"

msgid "Account Status"
msgstr "Stav účtu"

msgid "Active users"
msgstr "Aktívni používatelia"

msgid "Contact Settings"
msgstr "Nastavenia kontaktných údajov"

msgid "Delete mode"
msgstr "Mód odstránenia"

msgid "Employee Information"
msgstr "Informácie o zamestnancovi"

msgid "Password expiration"
msgstr "Vypršanie hesla"

msgid "Mailing Address"
msgstr "Poštová adresa"

msgid "Misc. Information"
msgstr "Rôzne informácie"

msgid "delete"
msgstr "odstrániť"

msgid "preserve"
msgstr "uschovať"

msgid "No private group"
msgstr "Bez privátnej skupiny"

#, python-brace-format
msgid ""
"Are you sure you want to ${action} the user?<br/>The change will take effect "
"immediately."
msgstr ""
"Ste si istý/istá, že chcete ${action} používateľa?<br/>Zmena bude vykonaná "
"okamžite."

msgid "Unlock"
msgstr "Odomknúť"

#, python-brace-format
msgid "Are you sure you want to unlock user ${object}?"
msgstr "Ste si istý/istá, že chcete odomknúť užívateľa ${object}?"

msgid "Current password is required"
msgstr "Súčasné heslo je povinné"

msgid "First OTP"
msgstr "Prvé OTP"

msgid "The password or username you entered is incorrect."
msgstr "Zadané heslo alebo prihlasovacie meno je nesprávne."

msgid "New password is required"
msgstr "Nové heslo je povinné"

msgid "Token synchronization failed"
msgstr "Synchronizácia tokenu zlyhala"

msgid "The username, password or token codes are not correct"
msgstr "Prihlasovacie meno, heslo alebo token sú nesprávne"

msgid "Token was synchronized"
msgstr "Token bol zosynchronizovaný"

msgid "Password or Password+One-Time-Password"
msgstr "Heslo alebo heslo + jednorázové heslo (OTP)"

msgid "Password change complete"
msgstr "Zmena hesla dokončená"

msgid "Passwords must match"
msgstr "Heslá sa musia zhodovať"

msgid "Password reset was not successful."
msgstr "Nastavenie hesla nebolo úspešné"

msgid "Reset Password"
msgstr "Obnoviť heslo"

msgid "Reset your password."
msgstr "Obnoviť Vaše heslo."

msgid "Second OTP"
msgstr "Druhé OTP"

msgid "Token ID"
msgstr "Token ID"

msgid "Verify Password"
msgstr "Overiť heslo"

msgid "Are you sure you want to delete selected entries?"
msgstr "Ste si istý/istá, že chcete odstrániť vybrané položky?"

#, python-brace-format
msgid "${count} item(s) deleted"
msgstr "${count} položiek odstránených"

msgid "Are you sure you want to disable selected entries?"
msgstr "Ste si istý/istá, že chcete deaktivovať vybrané položky?"

#, python-brace-format
msgid "${count} item(s) disabled"
msgstr "${count} item(s) deaktivovaných"

msgid "Are you sure you want to enable selected entries?"
msgstr "Ste si istý/istá, že chcete aktivovať vybrané položky?"

msgid "Some entries were not deleted"
msgstr "Niektoré položky neboli odstránené"

msgid "Quick Links"
msgstr "Rýchle odkazy"

msgid "Select All"
msgstr "Označiť všetko"

msgid "Unselect All"
msgstr "Odznačiť všetko"

msgid "Audit"
msgstr "Audit"

msgid "Authentication"
msgstr "Autentifikácia"

msgid "Automember"
msgstr "Automember"

msgid "Automount"
msgstr "Automount"

msgid "DNS"
msgstr "DNS"

msgid "Host Based Access Control"
msgstr "Host Based Access Control"

msgid "Identity"
msgstr "Identita"

msgid "Network Services"
msgstr "Sieťové služby"

msgid "Policy"
msgstr "Politika"

msgid "Role Based Access Control"
msgstr "Kontrola prístupu podľa rolí (RBAC)"

msgid "Next"
msgstr "Ďalšie"

msgid "Page"
msgstr "Strana"

msgid "Prev"
msgstr "Predcházajúce"

msgid "Undo"
msgstr "Vrátiť späť"

msgid "Undo this change."
msgstr "Vrátiť späť túto zmenu."

msgid "Undo All"
msgstr "Vrátiť späť všetko"

msgid "Format error"
msgstr "Chyba formátu"

msgid "Not a valid IP address"
msgstr "Neplatná IP adresa"

msgid "Not a valid IPv4 address"
msgstr "Neplatná IPv4 adresa"

msgid "Not a valid IPv6 address"
msgstr "Neplatná IPv6 adresa"

#, python-brace-format
msgid "Maximum value is ${value}"
msgstr "Maximálna hodnota je ${value}"

#, python-brace-format
msgid "Minimum value is ${value}"
msgstr "Minimálna hodnota je ${value}"

msgid "Not a valid network address (examples: 2001:db8::/64, 192.0.2.0/24)"
msgstr "Neplatná sieťová adresa (príklady: 2001:db8::/64, 192.0.2.0/24)"

#, python-brace-format
msgid "'${port}' is not a valid port"
msgstr "'${port}' nie je valídny port"

msgid "Required field"
msgstr "Povinné pole"

msgid "Unsupported value"
msgstr "Nepodporovaná hodnota"

msgid "ID Views"
msgstr "ID Views"

msgid "ID View Name"
msgstr "Názov ID View"

msgid "Add a new ID View."
msgstr "Pridať nové ID View"

#, python-format
msgid "Added ID View \"%(value)s\""
msgstr "Pridané ID View \"%(value)s\""

msgid "Delete an ID View."
msgstr "Odstrániť  ID View."

#, python-format
msgid "Deleted ID View \"%(value)s\""
msgstr "Odstránené ID View \"%(value)s\""

msgid "not found"
msgstr "Nenašlo sa"

msgid "value"
msgstr "hodnota"

msgid "IPA object"
msgstr "IPA objekt"

msgid "User login"
msgstr "Prihlasovacie meno"

msgid "UID"
msgstr "UID"

msgid "User ID Number"
msgstr "ID používateľa"

msgid "GECOS"
msgstr "GECOS"

msgid "GID"
msgstr "GID"

msgid "Group ID Number"
msgstr "ID skupiny"

msgid "Home directory"
msgstr "Domovský priečinok"

msgid "SSH public key"
msgstr "Verejný SSH kľúč"

msgid "Base-64 encoded user certificate"
msgstr "Base-64 zakódovaný používateľský certifikát"

msgid "Group name"
msgstr "Názov skupiny"

msgid "ID Ranges"
msgstr "ID rozsahy"

msgid "ID Range"
msgstr "ID rozsah"

msgid "Delete an ID range."
msgstr "Zmazať ID rozsah."

msgid "Locality"
msgstr "Lokalita"

msgid "Operating system"
msgstr "Operačný systém"

msgid "User password"
msgstr "Používateľské heslo"

msgid "MAC address"
msgstr "MAC adresa"

msgid "SSH public key fingerprint"
msgstr "Odtlačok verejného SSH kľúča (fingerprint)"

msgid "IP Address"
msgstr "IP adresa"

msgid "No A, AAAA, SSHFP or PTR records found."
msgstr "Nenašli sa žiadne A, AAAA, SSHFP, alebo PTR záznamy."

msgid "Update DNS entries"
msgstr "Aktualizovať DNS položky."

msgid "cn is immutable"
msgstr "cn je nemeniteľné"

msgid "Warning"
msgstr "Varovanie"

msgid "Include all disabled IPA rules into test"
msgstr "Zahrnúť všetky deaktivované IPA pravidlá do testu"

#, python-format
msgid "Access granted: %s"
msgstr "Prístup povolený: %s"

msgid "HBAC service"
msgstr "HBAC služba"

msgid "HBAC services"
msgstr "HBAC služby"

msgid "HBAC Services"
msgstr "HBAC služby"

msgid "HBAC Service"
msgstr "HBAC služba"

msgid "Service name"
msgstr "Názov služby"

msgid "HBAC service description"
msgstr "HBAC popis služby"

msgid "Add a new HBAC service."
msgstr "Pridať novú HBAC službu."

#, python-format
msgid "Added HBAC service \"%(value)s\""
msgstr "HBAC služba \"%(value)s\" bola pridaná"

msgid "Delete an existing HBAC service."
msgstr "Odstrániť existujúcu HBAC službu."

#, python-format
msgid "Deleted HBAC service \"%(value)s\""
msgstr "HBAC služba \"%(value)s\" bola odstránená"

msgid "Modify an HBAC service."
msgstr "Upraviť HBAC službu."

#, python-format
msgid "Modified HBAC service \"%(value)s\""
msgstr "HBAC služba  \"%(value)s\" bola upravená."

msgid "Search for HBAC services."
msgstr "Vyhľadať HBAC služby."

msgid "HBAC rules"
msgstr "HBAC pravidlá"

msgid "HBAC Rules"
msgstr "HBAC pravidlá"

msgid "Create a new HBAC rule."
msgstr "Vytvoriť nové HBAC pravidlo"

#, python-format
msgid "Added HBAC rule \"%(value)s\""
msgstr "HBAC pravidlo \"%(value)s\" bolo pridané"

msgid "Delete an HBAC rule."
msgstr "Odstrániť HBAC pravidlo."

#, python-format
msgid "Deleted HBAC rule \"%(value)s\""
msgstr "Odstránené HBAC pravidlo \"%(value)s\""

msgid "Modify an HBAC rule."
msgstr "Upraviť HBAC pravidlo."

#, python-format
msgid "Modified HBAC rule \"%(value)s\""
msgstr "HBAC pravidlo \"%(value)s\" bolo upravené"

msgid "Search for HBAC rules."
msgstr "Vyhľadať HBAC pravidlá."

#, python-format
msgid "%(count)d HBAC rule matched"
msgid_plural "%(count)d HBAC rules matched"
msgstr[0] "%(count)d HBAC pravidlo nájdené"
msgstr[1] "%(count)d HBAC pravidiel nájdených"
msgstr[2] "%(count)d HBAC pravidiel nájdených"

msgid "Enable an HBAC rule."
msgstr "Aktivovať HBAC pravidlo."

#, python-format
msgid "Enabled HBAC rule \"%(value)s\""
msgstr "HBAC pravidlo \"%(value)s\" bolo aktivované"

msgid "Disable an HBAC rule."
msgstr "Deaktivovať HBAC pravidlo."

#, python-format
msgid "Disabled HBAC rule \"%(value)s\""
msgstr "Deaktivované HBAC pravidlo \"%(value)s\""

msgid "Access time"
msgstr "Čas prístupu"

msgid "Add users and groups to an HBAC rule."
msgstr "Pridať používateľov a skupiny do HBAC pravidla."

msgid "Remove users and groups from an HBAC rule."
msgstr "Odstrániť používateľov a skupiny z HBAC pravidla."

msgid "Add services to an HBAC rule."
msgstr "Pridať služby do HBAC pravidla."

msgid "Remove service and service groups from an HBAC rule."
msgstr "Odstrániť služby a skupiny služieb z HBAC pravidla."

msgid "groups"
msgstr "skupiny"

msgid "User Group"
msgstr "Používateľská skupina"

msgid "Create a new group."
msgstr "Vytvoriť novú skupinu."

#, python-format
msgid "Added group \"%(value)s\""
msgstr "Pridaná skupina \"%(value)s\""

msgid "Delete group."
msgstr "Odstrániť skupinu."

#, python-format
msgid "Deleted group \"%(value)s\""
msgstr "Odstránená skupina \"%(value)s\""

msgid "Modify a group."
msgstr "Upraviť skupinu."

#, python-format
msgid "Modified group \"%(value)s\""
msgstr "Upravená skupina \"%(value)s\""

msgid "Search for groups."
msgstr "Vyhľadávať skupiny."

msgid "invalid IP network format"
msgstr "neplatný formát IP siete"

msgid "invalid address format"
msgstr "neplatný formát adresy"

msgid "algorithm value: allowed interval 0-255"
msgstr "algoritmus: hodnota má povolený interval 0-255"

msgid "flags value: allowed interval 0-255"
msgstr "flagy: hodnota má povolený interval 0-255"

msgid "iterations value: allowed interval 0-65535"
msgstr "iterácie: hodnota má povolený interval 0-65535"

#, python-format
msgid "salt value: %(err)s"
msgstr "salt hodnota: %(err)s"

msgid "invalid domain-name: not fully qualified"
msgstr "neplatné doménové meno: nie je plne kvalifikované (FQDN)"

#, python-format
msgid "DNS zone %(zone)s not found"
msgstr "DNS zóna %(zone)s nenájdená"

#, python-format
msgid "%s record"
msgstr "%s záznam"

#, python-format
msgid "%s Record"
msgstr "%s záznam"

#, python-format
msgid "(see RFC %s for details)"
msgstr "(pozrite RFC %s pre viac detailov)"

msgid "Create reverse"
msgstr "Vytvoriť reverzný"

msgid "Certificate Type"
msgstr "Typ certifikátu"

msgid "Size"
msgstr "Veľkosť"

msgid "Order"
msgstr "Poradie"

msgid "Weight"
msgstr "Váha"

msgid "Port"
msgstr "Port"

msgid "Records"
msgstr "Záznamy"

msgid "Record type"
msgstr "Typ záznamu"

#, python-format
msgid "Nameserver '%(host)s' does not have a corresponding A/AAAA record"
msgstr "Nameserver '%(host)s' nemá zodpovedajúci A/AAAA záznam"

msgid "Zone name"
msgstr "Názov zóny"

msgid "Zone name (FQDN)"
msgstr "Názov zóny (FQDN)"

msgid "Active zone"
msgstr "Aktívna zóna"

msgid "Is zone active?"
msgstr "Je zóna aktívna?"

msgid "Zone forwarders"
msgstr "Zónové forwardery"

msgid "DNS zone"
msgstr "DNS zóna"

msgid "DNS zones"
msgstr "DNS zóny"

msgid "DNS Zones"
msgstr "DNS zóny"

msgid "DNS Zone"
msgstr "DNS zóna"

msgid "Authoritative nameserver"
msgstr "Autoritatívny nameserver"

msgid "Authoritative nameserver domain name"
msgstr "Doménové meno autoritatívneho nameservera"

msgid "Administrator e-mail address"
msgstr "E-mailová adresa administrátora"

msgid "SOA record serial number"
msgstr "Sériové číslo SOA záznamu"

msgid "Dynamic update"
msgstr "Dynamické aktualizácie"

msgid "Allow dynamic updates."
msgstr "Povoliť dynamické aktualizácie"

msgid "Allow query"
msgstr "Povoliť dotazy"

msgid "Allow transfer"
msgstr "Povoliť prenos"

msgid "Allow PTR sync"
msgstr "Povoliť PTR synchronizáciu"

msgid "Delete DNS zone (SOA record)."
msgstr "Odstrániť DNS zónu (SOA záznam)."

#, python-format
msgid "Deleted DNS zone \"%(value)s\""
msgstr "Odstránená DNS zóna \"%(value)s\""

msgid "is required"
msgstr "je povinné"

msgid "Disable DNS Zone."
msgstr "Deaktivovať DNS zónu."

#, python-format
msgid "Disabled DNS zone \"%(value)s\""
msgstr "Deaktivovaná DNS zóna \"%(value)s\""

msgid "Record name"
msgstr "Názov záznamu"

msgid "Structured"
msgstr "Štrukturovane"

msgid "Add new DNS resource record."
msgstr "Pridať nový DNS záznam"

msgid "Modify a DNS resource record."
msgstr "Upraviť DNS záznam"

#, python-format
msgid "Deleted record \"%(value)s\""
msgstr "Odstránený záznam \"%(value)s\""

msgid "Delete DNS resource record."
msgstr "Odstrániť DNS záznam"

msgid ""
"Neither --del-all nor options to delete a specific record provided.\n"
"Command help may be consulted for all supported record types."
msgstr ""
"Nebola zadaná ani voľba --del-all a ani voľby pre zmazanie špecifického "
"záznamu.\n"
"Príkaz help môže byť použitý pre zobrazenie podporovaných typov záznamov."

#, python-format
msgid "Found '%(value)s'"
msgstr "Nájdené '%(value)s'"

msgid "DNS configuration options"
msgstr "DNS konfiguračné voľby"

msgid "DNS Global Configuration"
msgstr "DNS globálne nastavenia"

msgid "Global forwarders"
msgstr "Globálne forwardery"

msgid ""
"Global forwarders. A custom port can be specified for each forwarder using a "
"standard format \"IP_ADDRESS port PORT\""
msgstr ""
"Globálne forwardery. Vlastný port môže byť nastavený použítím štandardného "
"formátu \"IP_ADRESA port PORT\" pre každý forwarder "

msgid ""
"Global forwarding policy. Set to \"none\" to disable any configured global "
"forwarders."
msgstr ""
"Globálna forward politika. Nastavením na \"none\" sa deaktivuje akýkoľvek "
"nastavený globálny forwarder."

msgid "IPA DNS version"
msgstr "Verzia IPA DNS"

msgid "Global DNS configuration is empty"
msgstr "Globálna DNS konfigurácia je prázdna,"

msgid "DNS forward zone"
msgstr "DNS forward zóna"

msgid "DNS forward zones"
msgstr "DNS forward zóny"

msgid "DNS Forward Zones"
msgstr "DNS forward zóny"

msgid "DNS Forward Zone"