summaryrefslogtreecommitdiffstats
path: root/mdk-stage1/dietlibc/lib/toupper.c
blob: c048e60bb8c9eb51446e2aaf32d2b512a7557d42 (plain)
1
2
3
4
5
6
#include <ctype.h>

inline int toupper(int c) {
  return (c>='a' && c<='z')?c-'a'+'A':c;
}

119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 1602 1603 1604 1605 1606 1607 1608 1609 1610 1611 1612 1613 1614 1615 1616 1617 1618 1619 1620 1621 1622 1623 1624 1625 1626 1627 1628 1629 1630 1631 1632 1633 1634 1635 1636 1637 1638 1639 1640 1641 1642 1643 1644 1645 1646 1647 1648 1649 1650 1651 1652 1653 1654 1655 1656 1657 1658 1659 1660 1661 1662 1663 1664 1665 1666 1667 1668 1669 1670 1671 1672 1673 1674 1675 1676 1677 1678 1679 1680 1681 1682 1683 1684 1685 1686 1687 1688 1689 1690 1691 1692 1693 1694 1695 1696 1697 1698 1699 1700 1701 1702 1703 1704 1705 1706 1707 1708 1709 1710 1711 1712 1713 1714 1715 1716 1717 1718 1719 1720 1721 1722 1723 1724 1725 1726 1727 1728 1729 1730 1731 1732 1733 1734 1735 1736 1737 1738 1739 1740 1741 1742 1743 1744 1745 1746 1747 1748 1749 1750 1751 1752 1753 1754 1755 1756 1757 1758 1759 1760 1761 1762 1763 1764 1765 1766 1767 1768 1769 1770 1771 1772 1773 1774 1775 1776 1777 1778 1779 1780 1781 1782 1783 1784 1785 1786 1787 1788 1789 1790 1791 1792 1793 1794 1795 1796 1797 1798 1799 1800 1801 1802 1803 1804 1805 1806 1807 1808 1809 1810 1811 1812 1813 1814 1815 1816 1817 1818 1819 1820 1821 1822 1823 1824 1825 1826 1827 1828 1829 1830 1831 1832 1833 1834 1835 1836 1837 1838 1839 1840 1841 1842 1843 1844 1845 1846 1847 1848 1849 1850 1851 1852 1853 1854 1855 1856 1857 1858 1859 1860 1861 1862 1863 1864 1865 1866 1867 1868 1869 1870 1871 1872 1873 1874 1875 1876 1877 1878 1879 1880 1881 1882 1883 1884 1885 1886 1887 1888 1889 1890 1891 1892 1893 1894 1895 1896 1897 1898 1899 1900 1901 1902 1903 1904 1905 1906 1907 1908 1909 1910 1911 1912 1913 1914 1915 1916 1917 1918 1919 1920 1921 1922 1923 1924 1925 1926 1927 1928 1929 1930 1931 1932 1933 1934 1935 1936 1937 1938 1939 1940 1941 1942 1943 1944 1945 1946 1947 1948 1949 1950 1951 1952 1953 1954 1955 1956 1957 1958 1959 1960 1961 1962 1963 1964 1965 1966 1967 1968 1969 1970 1971 1972 1973 1974 1975 1976 1977 1978 1979 1980 1981 1982 1983 1984 1985 1986 1987 1988 1989 1990 1991 1992 1993 1994 1995 1996 1997 1998 1999 2000 2001 2002 2003 2004 2005 2006 2007 2008 2009 2010 2011 2012 2013 2014 2015 2016 2017 2018 2019 2020 2021 2022 2023 2024 2025 2026 2027 2028 2029 2030 2031 2032 2033 2034 2035 2036 2037 2038 2039 2040 2041 2042 2043 2044 2045 2046 2047 2048 2049 2050 2051 2052 2053 2054 2055 2056 2057 2058 2059 2060 2061 2062 2063 2064 2065 2066 2067 2068 2069 2070 2071 2072 2073 2074 2075 2076 2077 2078 2079 2080 2081 2082 2083 2084 2085 2086 2087 2088 2089 2090 2091 2092 2093 2094 2095 2096 2097 2098 2099 2100 2101 2102 2103 2104 2105 2106 2107 2108 2109 2110 2111 2112 2113 2114 2115 2116 2117 2118 2119 2120 2121 2122 2123 2124 2125 2126 2127 2128 2129 2130 2131 2132 2133 2134 2135 2136 2137 2138 2139 2140 2141 2142 2143 2144 2145 2146 2147 2148 2149 2150 2151 2152 2153 2154 2155 2156 2157 2158 2159 2160 2161 2162 2163 2164 2165 2166 2167 2168 2169 2170 2171 2172 2173 2174 2175 2176 2177 2178 2179 2180 2181 2182 2183 2184 2185 2186 2187 2188 2189 2190 2191 2192 2193 2194 2195 2196 2197 2198 2199 2200 2201 2202 2203 2204 2205 2206 2207 2208 2209 2210 2211 2212 2213 2214 2215 2216 2217 2218 2219 2220 2221 2222 2223 2224 2225 2226 2227 2228 2229 2230 2231 2232 2233 2234 2235 2236 2237 2238 2239 2240 2241 2242 2243 2244 2245 2246 2247 2248 2249 2250 2251 2252 2253 2254 2255 2256 2257 2258 2259 2260 2261 2262 2263 2264 2265 2266 2267 2268 2269 2270 2271 2272 2273 2274 2275 2276 2277 2278 2279 2280 2281 2282 2283 2284 2285 2286 2287 2288 2289 2290 2291 2292 2293 2294 2295 2296 2297 2298 2299 2300 2301 2302 2303 2304 2305 2306 2307 2308 2309 2310 2311 2312 2313 2314 2315 2316 2317 2318 2319 2320 2321 2322 2323 2324 2325 2326 2327 2328 2329 2330 2331 2332 2333 2334 2335 2336 2337 2338 2339 2340 2341 2342 2343 2344 2345 2346 2347 2348 2349 2350 2351 2352 2353 2354 2355 2356 2357 2358 2359 2360 2361 2362 2363 2364 2365 2366 2367 2368 2369 2370 2371 2372 2373 2374 2375 2376 2377 2378 2379 2380 2381 2382 2383 2384 2385 2386 2387 2388 2389 2390 2391 2392 2393 2394 2395 2396 2397 2398 2399 2400 2401 2402 2403 2404 2405 2406 2407 2408 2409 2410 2411 2412 2413 2414 2415 2416 2417 2418 2419 2420 2421 2422 2423 2424 2425 2426 2427 2428 2429 2430 2431 2432 2433 2434 2435 2436 2437 2438 2439 2440 2441 2442 2443 2444 2445 2446 2447 2448 2449 2450 2451 2452 2453 2454 2455 2456 2457 2458 2459 2460 2461 2462 2463 2464 2465 2466 2467 2468 2469 2470 2471 2472 2473 2474 2475 2476 2477 2478 2479 2480 2481 2482 2483 2484 2485 2486 2487 2488 2489 2490 2491 2492 2493 2494 2495 2496 2497 2498 2499 2500 2501 2502 2503 2504 2505 2506 2507 2508 2509 2510 2511 2512 2513 2514 2515 2516 2517 2518 2519 2520 2521 2522 2523 2524 2525 2526 2527 2528 2529 2530 2531 2532 2533 2534 2535 2536 2537 2538 2539 2540 2541 2542 2543 2544 2545 2546 2547 2548 2549 2550 2551 2552 2553 2554 2555 2556 2557 2558 2559 2560 2561 2562 2563 2564 2565 2566 2567 2568 2569 2570 2571 2572 2573 2574 2575 2576 2577 2578 2579 2580 2581 2582 2583 2584 2585 2586 2587 2588 2589 2590 2591 2592 2593 2594 2595 2596 2597 2598 2599 2600 2601 2602 2603 2604 2605 2606 2607 2608 2609 2610 2611 2612 2613 2614 2615 2616 2617 2618 2619 2620 2621 2622 2623 2624 2625 2626 2627 2628 2629 2630 2631 2632 2633 2634 2635 2636 2637 2638 2639 2640 2641 2642 2643 2644 2645 2646 2647 2648 2649 2650 2651 2652 2653 2654 2655 2656 2657 2658 2659 2660 2661 2662 2663 2664 2665 2666 2667 2668 2669 2670 2671 2672 2673 2674 2675 2676 2677 2678 2679 2680 2681 2682 2683 2684 2685 2686 2687 2688 2689 2690 2691 2692 2693 2694 2695 2696 2697 2698 2699 2700 2701 2702 2703 2704 2705 2706 2707 2708 2709 2710 2711 2712 2713 2714 2715 2716 2717 2718 2719 2720 2721 2722 2723 2724 2725 2726 2727 2728 2729 2730 2731 2732 2733 2734 2735 2736 2737 2738 2739 2740 2741 2742 2743 2744 2745 2746 2747 2748 2749 2750 2751 2752 2753 2754 2755 2756 2757 2758 2759 2760 2761 2762 2763 2764 2765 2766 2767 2768 2769 2770 2771 2772 2773 2774 2775 2776 2777 2778 2779 2780 2781 2782 2783 2784 2785 2786 2787 2788 2789 2790 2791 2792 2793 2794 2795 2796 2797 2798 2799 2800 2801 2802 2803 2804 2805 2806 2807 2808 2809 2810 2811 2812 2813 2814 2815 2816 2817 2818 2819 2820 2821 2822 2823 2824 2825 2826 2827 2828 2829 2830 2831 2832 2833 2834 2835 2836 2837 2838 2839 2840 2841 2842 2843 2844 2845 2846 2847 2848 2849 2850 2851 2852 2853 2854 2855 2856 2857 2858 2859 2860 2861 2862 2863 2864 2865 2866 2867 2868 2869 2870 2871 2872 2873 2874 2875 2876 2877 2878 2879 2880 2881 2882 2883 2884 2885 2886 2887 2888 2889 2890 2891 2892 2893 2894 2895 2896 2897 2898 2899 2900 2901 2902 2903 2904 2905 2906 2907 2908 2909 2910 2911 2912 2913 2914 2915 2916 2917 2918 2919 2920 2921 2922 2923 2924 2925 2926 2927 2928 2929 2930 2931 2932 2933 2934 2935 2936 2937 2938 2939 2940 2941 2942 2943 2944 2945 2946 2947 2948 2949 2950 2951 2952 2953 2954 2955 2956 2957 2958 2959 2960 2961 2962 2963 2964 2965 2966 2967 2968 2969 2970 2971 2972 2973 2974 2975 2976 2977 2978 2979 2980 2981 2982 2983 2984 2985 2986 2987 2988 2989 2990 2991 2992 2993 2994 2995 2996 2997 2998 2999 3000 3001 3002 3003 3004 3005 3006 3007 3008 3009 3010 3011 3012 3013 3014 3015 3016 3017 3018 3019 3020 3021 3022 3023 3024 3025 3026 3027 3028 3029 3030 3031 3032 3033 3034 3035 3036 3037 3038 3039 3040 3041 3042 3043 3044 3045 3046 3047 3048 3049 3050 3051 3052 3053 3054 3055 3056 3057 3058 3059 3060 3061 3062 3063 3064 3065 3066 3067 3068 3069 3070 3071 3072 3073 3074 3075 3076 3077 3078 3079 3080 3081 3082 3083 3084 3085 3086 3087 3088 3089 3090 3091 3092 3093 3094 3095 3096 3097 3098 3099 3100 3101 3102 3103 3104 3105 3106 3107 3108 3109 3110 3111 3112 3113 3114 3115 3116 3117 3118 3119 3120 3121 3122 3123 3124 3125 3126 3127 3128 3129 3130 3131 3132 3133 3134 3135 3136 3137 3138 3139 3140 3141 3142 3143 3144 3145 3146 3147 3148 3149 3150 3151 3152 3153 3154 3155 3156 3157 3158 3159 3160 3161 3162 3163 3164 3165 3166 3167 3168 3169 3170 3171 3172 3173 3174 3175 3176 3177 3178 3179 3180 3181 3182 3183 3184 3185 3186 3187 3188 3189 3190 3191 3192 3193 3194 3195 3196 3197 3198 3199 3200 3201 3202 3203 3204 3205 3206 3207 3208 3209 3210 3211 3212 3213 3214 3215 3216 3217 3218 3219 3220 3221 3222 3223 3224 3225 3226 3227 3228 3229 3230 3231 3232 3233 3234 3235 3236 3237 3238 3239 3240 3241 3242 3243 3244 3245 3246 3247 3248 3249 3250 3251 3252 3253 3254 3255 3256 3257 3258 3259 3260 3261 3262 3263 3264 3265 3266 3267 3268 3269 3270 3271 3272 3273 3274 3275 3276 3277 3278 3279 3280 3281 3282 3283 3284 3285 3286 3287 3288 3289 3290 3291 3292 3293 3294 3295 3296 3297 3298 3299 3300 3301 3302 3303 3304 3305 3306 3307 3308 3309 3310 3311 3312 3313 3314 3315 3316 3317 3318 3319 3320 3321 3322 3323 3324 3325 3326 3327 3328 3329 3330 3331 3332 3333 3334 3335 3336 3337 3338 3339 3340 3341 3342 3343 3344 3345 3346 3347 3348 3349 3350 3351 3352 3353 3354 3355 3356 3357 3358 3359 3360 3361 3362 3363 3364 3365 3366 3367 3368 3369 3370 3371 3372 3373 3374 3375 3376 3377 3378 3379 3380 3381 3382 3383 3384 3385 3386 3387 3388 3389 3390 3391 3392 3393 3394 3395 3396 3397 3398 3399 3400 3401 3402 3403 3404 3405 3406 3407 3408 3409 3410 3411 3412 3413 3414 3415 3416 3417 3418 3419 3420 3421 3422 3423 3424 3425 3426 3427 3428 3429 3430 3431 3432 3433 3434 3435 3436 3437 3438 3439 3440 3441 3442 3443 3444 3445 3446 3447 3448 3449 3450 3451 3452 3453 3454 3455 3456 3457 3458 3459 3460 3461 3462 3463 3464 3465 3466 3467 3468 3469 3470 3471 3472 3473 3474 3475 3476 3477 3478 3479 3480 3481 3482 3483 3484 3485 3486 3487 3488 3489 3490 3491 3492 3493 3494 3495 3496 3497 3498 3499 3500 3501 3502 3503 3504 3505 3506 3507 3508 3509 3510 3511 3512 3513 3514 3515 3516 3517 3518 3519 3520 3521 3522 3523 3524 3525 3526 3527 3528 3529 3530 3531 3532 3533 3534 3535 3536 3537 3538 3539 3540 3541 3542 3543 3544 3545 3546 3547 3548 3549 3550 3551 3552 3553 3554 3555 3556 3557 3558 3559 3560 3561 3562 3563 3564 3565 3566 3567 3568 3569 3570 3571 3572 3573 3574 3575 3576 3577 3578 3579 3580 3581 3582 3583 3584 3585 3586 3587 3588 3589 3590 3591 3592 3593 3594 3595 3596 3597 3598 3599 3600 3601 3602 3603 3604 3605 3606 3607 3608 3609 3610 3611 3612 3613 3614 3615 3616 3617 3618 3619 3620 3621 3622 3623 3624 3625 3626 3627 3628 3629 3630 3631 3632 3633 3634 3635 3636 3637 3638 3639 3640 3641 3642 3643 3644 3645 3646 3647 3648 3649 3650 3651 3652 3653 3654 3655 3656 3657 3658 3659 3660 3661 3662 3663 3664 3665 3666 3667 3668 3669 3670 3671 3672 3673 3674 3675 3676 3677 3678 3679 3680 3681 3682 3683 3684 3685 3686 3687 3688 3689 3690 3691 3692 3693 3694 3695 3696 3697 3698 3699 3700 3701 3702 3703 3704 3705 3706 3707 3708 3709 3710 3711 3712 3713 3714 3715 3716 3717 3718 3719 3720 3721 3722 3723 3724 3725 3726 3727 3728 3729 3730 3731 3732 3733 3734 3735 3736 3737 3738 3739 3740 3741 3742 3743 3744 3745 3746 3747 3748 3749 3750 3751 3752 3753 3754 3755 3756 3757 3758 3759 3760 3761 3762 3763 3764 3765 3766 3767 3768 3769 3770 3771 3772 3773 3774 3775 3776 3777 3778 3779 3780 3781 3782 3783 3784 3785 3786 3787 3788 3789 3790 3791 3792 3793 3794 3795 3796 3797 3798 3799 3800 3801 3802 3803 3804 3805 3806 3807 3808 3809 3810 3811 3812 3813 3814 3815 3816 3817 3818 3819 3820 3821 3822 3823 3824 3825 3826 3827 3828 3829 3830 3831 3832 3833 3834 3835 3836 3837 3838 3839 3840 3841 3842 3843 3844 3845 3846 3847 3848 3849 3850 3851 3852 3853 3854 3855 3856 3857 3858 3859 3860 3861 3862 3863 3864 3865 3866 3867 3868 3869 3870 3871 3872 3873 3874 3875 3876 3877 3878 3879 3880 3881 3882 3883 3884 3885 3886 3887 3888 3889 3890 3891 3892 3893 3894 3895 3896 3897 3898 3899 3900 3901 3902 3903 3904 3905 3906 3907 3908 3909 3910 3911 3912 3913 3914 3915 3916 3917 3918 3919 3920 3921 3922 3923 3924 3925 3926 3927 3928 3929 3930 3931 3932 3933 3934 3935 3936 3937 3938 3939 3940 3941 3942 3943 3944 3945 3946 3947 3948 3949 3950 3951 3952 3953 3954 3955 3956 3957 3958 3959 3960 3961 3962 3963 3964 3965 3966 3967 3968 3969 3970 3971 3972 3973 3974 3975 3976 3977 3978 3979 3980 3981 3982 3983 3984 3985 3986 3987 3988 3989 3990 3991 3992 3993 3994 3995 3996 3997 3998 3999 4000 4001 4002 4003 4004 4005 4006 4007 4008 4009 4010 4011 4012 4013 4014 4015 4016 4017 4018 4019 4020 4021 4022 4023 4024 4025 4026 4027 4028 4029 4030 4031 4032 4033 4034 4035 4036 4037 4038 4039 4040 4041 4042 4043 4044 4045 4046 4047 4048 4049 4050 4051 4052 4053 4054 4055 4056 4057 4058 4059 4060 4061 4062 4063 4064 4065 4066 4067 4068 4069 4070 4071 4072 4073 4074 4075 4076 4077 4078 4079 4080 4081 4082 4083 4084 4085 4086 4087 4088 4089 4090 4091 4092 4093 4094 4095 4096 4097 4098 4099 4100 4101 4102 4103 4104 4105 4106 4107 4108 4109 4110 4111 4112 4113 4114 4115 4116 4117 4118 4119 4120 4121 4122 4123 4124 4125 4126 4127 4128 4129 4130 4131 4132 4133 4134 4135 4136 4137 4138 4139 4140 4141 4142 4143 4144 4145 4146 4147 4148 4149 4150 4151 4152 4153 4154 4155 4156 4157 4158 4159 4160 4161 4162 4163 4164 4165 4166 4167 4168 4169 4170 4171 4172 4173 4174 4175 4176 4177 4178 4179 4180 4181 4182 4183 4184 4185 4186 4187 4188 4189 4190 4191 4192 4193 4194 4195 4196 4197 4198 4199 4200 4201 4202 4203 4204 4205 4206 4207 4208 4209 4210 4211 4212 4213 4214 4215 4216 4217 4218 4219 4220 4221 4222 4223 4224 4225 4226 4227 4228 4229 4230 4231 4232 4233 4234 4235 4236 4237 4238 4239 4240 4241 4242 4243 4244 4245 4246 4247 4248 4249 4250 4251 4252 4253 4254 4255 4256 4257 4258 4259 4260 4261 4262 4263 4264 4265 4266 4267 4268 4269 4270 4271 4272 4273 4274 4275 4276 4277 4278 4279 4280 4281 4282 4283 4284 4285 4286 4287 4288 4289 4290 4291 4292 4293 4294 4295 4296 4297 4298 4299 4300 4301 4302 4303 4304 4305 4306 4307 4308 4309 4310 4311 4312 4313 4314 4315 4316 4317 4318 4319 4320 4321 4322 4323 4324 4325 4326 4327 4328 4329 4330 4331 4332 4333 4334 4335 4336 4337 4338 4339 4340 4341 4342 4343 4344 4345 4346 4347 4348 4349 4350 4351 4352 4353 4354 4355 4356 4357 4358 4359 4360 4361 4362 4363 4364 4365 4366 4367 4368 4369 4370 4371 4372 4373 4374 4375 4376 4377 4378 4379 4380 4381 4382 4383 4384 4385 4386 4387 4388 4389 4390 4391 4392 4393 4394 4395 4396 4397 4398 4399 4400 4401 4402 4403 4404 4405 4406 4407 4408 4409 4410 4411 4412 4413 4414 4415 4416 4417 4418 4419 4420 4421 4422 4423 4424 4425 4426 4427 4428 4429 4430 4431 4432 4433 4434 4435 4436 4437 4438 4439 4440 4441 4442 4443 4444 4445 4446 4447 4448 4449 4450 4451 4452 4453 4454 4455 4456 4457 4458 4459 4460 4461 4462 4463 4464 4465 4466 4467 4468 4469 4470 4471 4472 4473 4474 4475 4476 4477 4478 4479 4480 4481 4482 4483 4484 4485 4486 4487 4488 4489 4490 4491 4492 4493 4494 4495 4496 4497 4498 4499 4500 4501 4502 4503 4504 4505 4506 4507 4508 4509 4510 4511 4512 4513 4514 4515 4516 4517 4518 4519 4520 4521 4522 4523 4524 4525 4526 4527 4528 4529 4530 4531 4532 4533 4534 4535 4536 4537 4538 4539 4540 4541 4542 4543 4544 4545 4546 4547 4548 4549 4550 4551 4552 4553 4554 4555 4556 4557 4558 4559 4560 4561 4562 4563 4564 4565 4566 4567 4568 4569 4570 4571 4572 4573 4574 4575 4576 4577 4578 4579 4580 4581 4582 4583 4584 4585 4586 4587 4588 4589 4590 4591 4592 4593 4594 4595 4596 4597 4598 4599 4600 4601 4602 4603 4604 4605 4606 4607 4608 4609 4610 4611 4612 4613 4614 4615 4616 4617 4618 4619 4620 4621 4622 4623 4624 4625 4626 4627 4628 4629 4630 4631 4632 4633 4634 4635 4636 4637 4638 4639 4640 4641 4642 4643 4644 4645 4646 4647 4648 4649 4650 4651 4652 4653 4654 4655 4656 4657 4658 4659 4660 4661 4662 4663 4664 4665 4666 4667 4668 4669 4670 4671 4672 4673 4674 4675 4676 4677 4678 4679 4680 4681 4682 4683 4684 4685 4686 4687 4688 4689 4690 4691 4692 4693 4694 4695 4696 4697 4698 4699 4700 4701 4702 4703 4704 4705 4706 4707 4708 4709 4710 4711 4712 4713 4714 4715 4716 4717 4718 4719 4720 4721 4722 4723 4724 4725 4726 4727 4728 4729 4730 4731 4732 4733 4734 4735 4736 4737 4738 4739 4740 4741 4742 4743 4744 4745 4746 4747 4748 4749 4750 4751 4752 4753 4754 4755 4756 4757 4758 4759 4760 4761 4762 4763 4764 4765 4766 4767 4768 4769 4770 4771 4772 4773 4774 4775 4776 4777 4778 4779 4780 4781 4782 4783 4784 4785 4786 4787 4788 4789 4790 4791 4792 4793 4794 4795 4796 4797 4798 4799 4800 4801 4802 4803 4804 4805 4806 4807 4808 4809 4810 4811 4812 4813 4814 4815 4816 4817 4818 4819 4820 4821 4822 4823 4824 4825 4826 4827 4828 4829 4830 4831 4832 4833 4834 4835 4836 4837 4838 4839 4840 4841 4842 4843 4844 4845 4846 4847 4848 4849 4850 4851 4852 4853 4854 4855 4856 4857 4858 4859 4860 4861 4862 4863 4864 4865 4866 4867 4868 4869 4870 4871 4872 4873 4874 4875 4876 4877 4878 4879 4880 4881 4882 4883 4884 4885 4886 4887 4888 4889 4890 4891 4892 4893 4894 4895 4896 4897 4898 4899 4900 4901 4902 4903 4904 4905 4906 4907 4908 4909 4910 4911 4912 4913 4914 4915 4916 4917 4918 4919 4920 4921 4922 4923 4924 4925 4926 4927 4928 4929 4930 4931 4932 4933 4934 4935 4936 4937 4938 4939 4940 4941 4942 4943 4944 4945 4946 4947 4948 4949 4950 4951 4952 4953 4954 4955 4956 4957 4958 4959 4960 4961 4962 4963 4964 4965 4966 4967 4968 4969 4970 4971 4972 4973 4974 4975 4976 4977 4978 4979 4980 4981 4982 4983 4984 4985 4986 4987 4988 4989 4990 4991 4992 4993 4994 4995 4996 4997 4998 4999 5000 5001 5002 5003 5004 5005 5006 5007 5008 5009 5010 5011 5012 5013 5014 5015 5016 5017 5018 5019 5020 5021 5022 5023 5024 5025 5026 5027 5028 5029 5030 5031 5032 5033 5034 5035 5036 5037 5038 5039 5040 5041 5042 5043 5044 5045 5046 5047 5048 5049 5050 5051 5052 5053 5054 5055 5056 5057 5058 5059 5060 5061 5062 5063 5064 5065 5066 5067 5068 5069 5070 5071 5072 5073 5074 5075 5076 5077 5078 5079 5080 5081 5082 5083 5084 5085 5086 5087 5088 5089 5090 5091 5092 5093 5094 5095 5096 5097 5098 5099 5100 5101 5102 5103 5104 5105 5106 5107 5108 5109 5110 5111 5112 5113 5114 5115 5116 5117 5118 5119 5120 5121 5122 5123 5124 5125 5126 5127 5128 5129 5130 5131 5132 5133 5134 5135 5136 5137 5138 5139 5140 5141 5142 5143 5144 5145 5146 5147 5148 5149 5150 5151 5152 5153 5154 5155 5156 5157 5158 5159 5160 5161 5162 5163 5164 5165 5166 5167 5168 5169 5170 5171 5172 5173 5174 5175 5176 5177 5178 5179 5180 5181 5182 5183 5184 5185 5186 5187 5188 5189 5190 5191 5192 5193 5194 5195 5196 5197 5198 5199 5200 5201 5202 5203 5204 5205 5206 5207 5208 5209 5210 5211 5212 5213 5214 5215 5216 5217 5218 5219 5220 5221 5222 5223 5224 5225 5226 5227 5228 5229 5230 5231 5232 5233 5234 5235 5236 5237 5238 5239 5240 5241 5242 5243 5244 5245 5246 5247 5248 5249 5250 5251 5252 5253 5254 5255 5256 5257 5258 5259 5260 5261 5262 5263 5264 5265 5266 5267 5268 5269 5270 5271 5272 5273 5274 5275 5276 5277 5278 5279 5280 5281 5282 5283 5284 5285 5286 5287 5288 5289 5290 5291 5292 5293 5294 5295 5296 5297 5298 5299 5300 5301 5302 5303 5304 5305 5306 5307 5308 5309 5310 5311 5312 5313 5314 5315 5316 5317 5318 5319 5320 5321 5322 5323 5324 5325 5326 5327 5328 5329 5330 5331 5332 5333 5334 5335 5336 5337 5338 5339 5340 5341 5342 5343 5344 5345 5346 5347 5348 5349 5350 5351 5352 5353 5354 5355 5356 5357 5358 5359 5360 5361 5362 5363 5364 5365 5366 5367 5368 5369 5370 5371 5372 5373 5374 5375 5376 5377 5378 5379 5380 5381 5382 5383 5384 5385 5386 5387 5388 5389 5390 5391 5392 5393 5394 5395 5396 5397 5398 5399 5400 5401 5402 5403 5404 5405 5406 5407 5408 5409 5410 5411 5412 5413 5414 5415 5416 5417 5418 5419 5420 5421 5422 5423 5424 5425 5426 5427 5428 5429 5430 5431 5432 5433 5434 5435 5436 5437 5438 5439 5440 5441 5442 5443 5444 5445 5446 5447 5448 5449 5450 5451 5452 5453 5454 5455 5456 5457 5458 5459 5460 5461 5462 5463 5464 5465 5466 5467 5468 5469 5470 5471 5472 5473 5474 5475 5476 5477 5478 5479 5480 5481 5482 5483 5484 5485 5486 5487 5488 5489 5490 5491 5492 5493 5494 5495 5496 5497 5498 5499 5500 5501 5502 5503 5504 5505 5506 5507 5508 5509 5510 5511 5512 5513 5514 5515 5516 5517 5518 5519 5520 5521 5522 5523 5524 5525 5526 5527 5528 5529 5530 5531 5532 5533 5534 5535 5536 5537 5538 5539 5540 5541 5542 5543 5544 5545 5546 5547 5548 5549 5550 5551 5552 5553 5554 5555 5556 5557 5558 5559 5560 5561 5562 5563 5564 5565 5566 5567 5568 5569 5570 5571 5572 5573 5574 5575 5576 5577 5578 5579 5580 5581 5582 5583 5584 5585 5586 5587 5588 5589 5590 5591 5592 5593 5594 5595 5596 5597 5598 5599 5600 5601 5602 5603 5604 5605 5606 5607 5608 5609 5610 5611 5612 5613 5614 5615 5616 5617 5618 5619 5620 5621 5622 5623 5624 5625 5626 5627 5628 5629 5630 5631 5632 5633 5634 5635 5636 5637 5638 5639 5640 5641 5642 5643 5644 5645 5646 5647 5648 5649 5650 5651 5652 5653 5654 5655 5656 5657 5658 5659 5660 5661 5662 5663 5664 5665 5666 5667 5668 5669 5670 5671 5672 5673 5674 5675 5676 5677 5678 5679 5680 5681 5682 5683 5684 5685 5686 5687 5688 5689 5690 5691 5692 5693 5694 5695 5696 5697 5698 5699 5700 5701 5702 5703 5704 5705 5706 5707 5708 5709 5710 5711 5712 5713 5714 5715 5716 5717 5718 5719 5720 5721 5722 5723 5724 5725 5726 5727 5728 5729 5730 5731 5732 5733 5734 5735 5736 5737 5738 5739 5740 5741 5742 5743 5744 5745 5746 5747 5748 5749 5750 5751 5752 5753 5754 5755 5756 5757 5758 5759 5760 5761 5762 5763 5764 5765 5766 5767 5768 5769 5770 5771 5772 5773 5774 5775 5776 5777 5778 5779 5780 5781 5782 5783 5784 5785 5786 5787 5788 5789 5790 5791 5792 5793 5794 5795 5796 5797 5798 5799 5800 5801 5802 5803 5804 5805 5806 5807 5808 5809 5810 5811 5812 5813 5814 5815 5816 5817 5818 5819 5820 5821 5822 5823 5824 5825 5826 5827 5828 5829 5830 5831 5832 5833 5834 5835 5836 5837 5838 5839 5840 5841 5842 5843 5844 5845 5846 5847 5848 5849 5850 5851 5852 5853 5854 5855 5856 5857 5858 5859 5860 5861 5862 5863 5864 5865 5866 5867 5868 5869 5870 5871 5872 5873 5874 5875 5876 5877 5878 5879 5880 5881 5882 5883 5884 5885 5886 5887 5888 5889 5890 5891 5892 5893 5894 5895 5896 5897 5898 5899 5900 5901 5902 5903 5904 5905 5906 5907 5908 5909 5910 5911 5912 5913 5914 5915 5916 5917 5918 5919 5920 5921 5922 5923 5924 5925 5926 5927 5928 5929 5930 5931 5932 5933 5934 5935 5936 5937 5938 5939 5940 5941 5942 5943 5944 5945 5946 5947 5948 5949 5950 5951 5952 5953 5954 5955 5956 5957 5958 5959 5960 5961 5962 5963 5964 5965 5966 5967 5968 5969 5970 5971 5972 5973 5974 5975 5976 5977 5978 5979 5980 5981 5982 5983 5984 5985 5986 5987 5988 5989 5990 5991 5992 5993 5994 5995 5996 5997 5998 5999 6000 6001 6002 6003 6004 6005 6006 6007 6008 6009 6010 6011 6012 6013 6014 6015 6016 6017 6018 6019 6020 6021 6022 6023 6024 6025 6026 6027 6028 6029 6030 6031 6032 6033 6034 6035 6036 6037 6038 6039 6040 6041 6042 6043 6044 6045 6046 6047 6048 6049 6050 6051 6052 6053 6054 6055 6056 6057 6058 6059 6060 6061 6062 6063 6064 6065 6066 6067 6068 6069 6070 6071 6072 6073 6074 6075 6076 6077 6078 6079 6080 6081 6082 6083 6084 6085 6086 6087 6088 6089 6090 6091 6092 6093 6094 6095 6096 6097 6098 6099 6100 6101 6102 6103 6104 6105 6106 6107 6108 6109 6110 6111 6112 6113 6114 6115 6116 6117 6118 6119 6120 6121 6122 6123 6124 6125 6126 6127 6128 6129 6130 6131 6132 6133 6134 6135 6136 6137 6138 6139 6140 6141 6142 6143 6144 6145 6146 6147 6148 6149 6150 6151 6152 6153 6154 6155 6156 6157 6158 6159 6160 6161 6162 6163 6164 6165 6166 6167 6168 6169 6170 6171 6172 6173 6174 6175 6176 6177 6178 6179 6180 6181 6182 6183 6184 6185 6186 6187 6188 6189 6190
# Cirilicni prevod drakbootdisk.po fajla.
# Copyright (C) 1997-2003 MandrakeSERBIA.
# Tomislav Jankovic <tomaja@net.yu>, 2000.
#
#
msgid ""
msgstr ""
"Project-Id-Version: DrakX\n"
"POT-Creation-Date: 2014-12-28 17:38+0200\n"
"PO-Revision-Date: 2004-09-15 13:33+0200\n"
"Last-Translator: Toma Jankovic <tomaja@net.yu>\n"
"Language-Team: Serbian <i18n@mandrake.co.yu>\n"
"Language: sr\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Generator: KBabel 0.9.6\n"

#: ../lib/Xconfig/card.pm:20
#, c-format
msgid "256 kB"
msgstr "256 kB"

#: ../lib/Xconfig/card.pm:21
#, c-format
msgid "512 kB"
msgstr "512 kB"

#: ../lib/Xconfig/card.pm:22
#, c-format
msgid "1 MB"
msgstr "1 MB"

#: ../lib/Xconfig/card.pm:23
#, c-format
msgid "2 MB"
msgstr "2 MB"

#: ../lib/Xconfig/card.pm:24
#, c-format
msgid "4 MB"
msgstr "4 MB"

#: ../lib/Xconfig/card.pm:25
#, c-format
msgid "8 MB"
msgstr "8 MB"

#: ../lib/Xconfig/card.pm:26
#, c-format
msgid "16 MB"
msgstr "16 MB"

#: ../lib/Xconfig/card.pm:27
#, c-format
msgid "32 MB"
msgstr "32 MB"

#: ../lib/Xconfig/card.pm:28
#, c-format
msgid "64 MB or more"
msgstr "64 MB или више"

#: ../lib/Xconfig/card.pm:176
#, c-format
msgid "X server"
msgstr "X сервер"

#: ../lib/Xconfig/card.pm:177
#, c-format
msgid "Choose an X server"
msgstr "Изаберите X сервер"

#: ../lib/Xconfig/card.pm:208
#, c-format
msgid "Multi-head configuration"
msgstr "Multi-head конфигурација"

#: ../lib/Xconfig/card.pm:209
#, c-format
msgid ""
"Your system supports multiple head configuration.\n"
"What do you want to do?"
msgstr ""
"Ваш систем подржава multiple head конфигурацију.\n"
"Шта желите да урадите?"

#: ../lib/Xconfig/card.pm:298
#, c-format
msgid "Select the memory size of your graphics card"
msgstr "Количина меморије на графичкој картици"

#: ../lib/Xconfig/card.pm:323
#, c-format
msgid ""
"There is a proprietary driver available for your video card which may "
"support additional features.\n"
"Do you wish to use it?"
msgstr ""

#: ../lib/Xconfig/card.pm:355
#, c-format
msgid ""
"The proprietary driver was not properly installed, defaulting to free "
"software driver."
msgstr ""

#: ../lib/Xconfig/card.pm:425
#, c-format
msgid "Configure all heads independently"
msgstr "Подеси све главе независно"

#: ../lib/Xconfig/card.pm:426
#, c-format
msgid "Use Xinerama extension"
msgstr "Користи Xinerama екстензију"

#: ../lib/Xconfig/card.pm:431
#, c-format
msgid "Configure only card \"%s\"%s"
msgstr "Подеси само картицу \"%s\"%s"

#: ../lib/Xconfig/main.pm:92 ../lib/Xconfig/main.pm:93
#: ../lib/Xconfig/monitor.pm:114
#, c-format
msgid "Custom"
msgstr "Избор по жељи"

#: ../lib/Xconfig/main.pm:127
#, fuzzy, c-format
msgid "Graphic Card & Monitor Configuration"
msgstr "Конфигурација Интернет конекције"

#: ../lib/Xconfig/main.pm:128
#, c-format
msgid "Quit"
msgstr "Крај"

#: ../lib/Xconfig/main.pm:130
#, c-format
msgid "Graphic Card"
msgstr "Графичка картица"

#: ../lib/Xconfig/main.pm:133 ../lib/Xconfig/monitor.pm:108
#, c-format
msgid ""
"_: This is a display device\n"
"Monitor"
msgstr "Монитор"

#: ../lib/Xconfig/main.pm:136 ../lib/Xconfig/resolution_and_depth.pm:344
#, c-format
msgid "Resolution"
msgstr "Резолуција"

#: ../lib/Xconfig/main.pm:139
#, c-format
msgid "Test"
msgstr "Тест"

#: ../lib/Xconfig/main.pm:144
#, c-format
msgid "Options"
msgstr "Опције"

#: ../lib/Xconfig/main.pm:149
#, c-format
msgid "Plugins"
msgstr "Прикључци"

#: ../lib/Xconfig/main.pm:183
#, c-format
msgid "Your Xorg configuration file is broken, we will ignore it."
msgstr ""

#: ../lib/Xconfig/main.pm:201
#, c-format
msgid ""
"Keep the changes?\n"
"The current configuration is:\n"
"\n"
"%s"
msgstr ""
"Сачувај промене?\n"
"Тренутна конфигурација је:\n"
"\n"
"%s"

#: ../lib/Xconfig/monitor.pm:109
#, fuzzy, c-format
msgid "Choose a monitor for head #%d"
msgstr "Изаберите монитор"

#: ../lib/Xconfig/monitor.pm:109
#, c-format
msgid "Choose a monitor"
msgstr "Изаберите монитор"

#: ../lib/Xconfig/monitor.pm:115
#, c-format
msgid "Plug'n Play"
msgstr "Plug'n Play"

#: ../lib/Xconfig/monitor.pm:116 ../lib/mouse.pm:48
#, c-format
msgid "Generic"
msgstr "Generic"

#: ../lib/Xconfig/monitor.pm:117
#, c-format
msgid "Vendor"
msgstr "Произвођач"

#: ../lib/Xconfig/monitor.pm:135
#, c-format
msgid ""
"The two critical parameters are the vertical refresh rate, which is the "
"rate\n"
"at which the whole screen is refreshed, and most importantly the horizontal\n"
"sync rate, which is the rate at which scanlines are displayed.\n"
"\n"
"It is VERY IMPORTANT that you do not specify a monitor type with a sync "
"range\n"
"that is beyond the capabilities of your monitor: you may damage your "
"monitor.\n"
" If in doubt, choose a conservative setting."
msgstr ""
"Морате да наведете хоризонтални синхронизациони опсег вашег монитора.\n"
"Можете га или изабрати из унапред задатих вредности које одговарају\n"
"индустријским стандардима монитора, или да наведете одређени опсег.\n"
"\n"
"ВЕОМА ЈЕ ВАЖНО да не наведете тип монитора који има овај опсег већи него\n"
"што га има ваш монитор. Ако нисте сигурни, одаберите мање вредности."

#: ../lib/Xconfig/monitor.pm:142
#, c-format
msgid "Horizontal refresh rate"
msgstr "Хоризонтална фреквенција"

#: ../lib/Xconfig/monitor.pm:143
#, c-format
msgid "Vertical refresh rate"
msgstr "Вертикална фреквенција"

#: ../lib/Xconfig/plugins.pm:219
#, fuzzy, c-format
msgid "Choose plugins"
msgstr "Изаберите акцију"

#: ../lib/Xconfig/proprietary.pm:61
#, c-format
msgid ""
"The free '%s' driver for your graphics card requires a proprietary firmware "
"package '%s' to be installed, but it was not available on the enabled "
"media.\n"
"\n"
"The basic non-accelerated '%s' driver will be configured instead.\n"
"\n"
"To enable full graphics support later, enable the 'nonfree' repository "
"section at \"Install and remove software\" and reconfigure the graphics "
"driver by going to \"Set up the graphical server\" at Mageia Control Center "
"and re-selecting your graphics card."
msgstr ""

#: ../lib/Xconfig/proprietary.pm:69
#, c-format
msgid ""
"The free '%s' driver for your graphics card requires a proprietary firmware "
"package '%s' to be installed in order for all features (including 3D "
"acceleration) to work properly, but that package was not available in the "
"enabled media.\n"
"\n"
"To enable all graphics card features later, enable the 'nonfree' repository "
"section at \"Install and remove software\" and install the firmware package "
"manually or reconfigure your graphics card."
msgstr ""

#: ../lib/Xconfig/resolution_and_depth.pm:11
#, c-format
msgid "256 colors (8 bits)"
msgstr "256 боја (8-битна палета)"

#: ../lib/Xconfig/resolution_and_depth.pm:12
#, c-format
msgid "32 thousand colors (15 bits)"
msgstr "32 хиљаде боја (15-битна палета)"

#: ../lib/Xconfig/resolution_and_depth.pm:13
#, c-format
msgid "65 thousand colors (16 bits)"
msgstr "65 хиљада боја (16-битна палета)"

#: ../lib/Xconfig/resolution_and_depth.pm:14
#, c-format
msgid "16 million colors (24 bits)"
msgstr "16 милиона боја (24-битна палета)"

#: ../lib/Xconfig/resolution_and_depth.pm:51
#: ../lib/Xconfig/resolution_and_depth.pm:335 ../lib/mouse.pm:36
#, c-format
msgid "Automatic"
msgstr "Препознај по наставку"

#: ../lib/Xconfig/resolution_and_depth.pm:109
#, c-format
msgid "Resolutions"
msgstr "Резолуција"

#: ../lib/Xconfig/resolution_and_depth.pm:367 ../lib/mouse.pm:513
#, c-format
msgid "Other"
msgstr "Друго"

#: ../lib/Xconfig/resolution_and_depth.pm:419
#, c-format
msgid "Choose the resolution and the color depth"
msgstr "Изаберите резолуцију и број боја при приказу"

#: ../lib/Xconfig/resolution_and_depth.pm:420
#, c-format
msgid "Graphics card: %s"
msgstr "Графичка картица: %s"

#: ../lib/Xconfig/resolution_and_depth.pm:434
#, c-format
msgid "Ok"
msgstr "У реду"

#: ../lib/Xconfig/resolution_and_depth.pm:434
#, c-format
msgid "Cancel"
msgstr "Поништи"

#: ../lib/Xconfig/resolution_and_depth.pm:434
#, c-format
msgid "Help"
msgstr "Помоћ"

#: ../lib/Xconfig/test.pm:30
#, c-format
msgid "Test of the configuration"
msgstr "Тестирање конфигурације"

#: ../lib/Xconfig/test.pm:31
#, c-format
msgid "Do you want to test the configuration?"
msgstr "Да ли хоћете да тестирате конфигурацију?"

#: ../lib/Xconfig/test.pm:31
#, c-format
msgid "Warning: testing this graphic card may freeze your computer"
msgstr "Упозорење: тестирање ове графичке картице може блокирати ваш рачунар"

#: ../lib/Xconfig/test.pm:65
#, c-format
msgid ""
"An error occurred:\n"
"%s\n"
"Try to change some parameters"
msgstr ""
"појавила се грешка:\n"
"%s\n"
"Покушајте да промените неке од параметара"

#: ../lib/Xconfig/test.pm:126
#, c-format
msgid "Leaving in %d seconds"
msgstr "Излазим за %d секунди"

#: ../lib/Xconfig/test.pm:126
#, c-format
msgid "Is this the correct setting?"
msgstr "Да ли је ово исправно подешено?"

#: ../lib/Xconfig/various.pm:26
#, c-format
msgid "Disable Ctrl-Alt-Backspace: %s\n"
msgstr ""

#: ../lib/Xconfig/various.pm:26
#, fuzzy, c-format
msgid "no"
msgstr "ниједан"

#: ../lib/Xconfig/various.pm:26
#, fuzzy, c-format
msgid "yes"
msgstr "Да"

#: ../lib/Xconfig/various.pm:27
#, c-format
msgid "3D hardware acceleration: %s\n"
msgstr ""

#: ../lib/Xconfig/various.pm:28
#, c-format
msgid "Keyboard layout: %s\n"
msgstr "Тип тастатуре: %s\n"

#: ../lib/Xconfig/various.pm:29
#, c-format
msgid "Mouse type: %s\n"
msgstr "Тип миша: %s\n"

#: ../lib/Xconfig/various.pm:31
#, c-format
msgid "Monitor: %s\n"
msgstr "Монитор: %s\n"

#: ../lib/Xconfig/various.pm:32
#, c-format
msgid "Monitor HorizSync: %s\n"
msgstr "Монитор - хоризонтална фреквенција: %s\n"

#: ../lib/Xconfig/various.pm:33
#, c-format
msgid "Monitor VertRefresh: %s\n"
msgstr "Монитор - вертикално освежавање: %s\n"

#: ../lib/Xconfig/various.pm:35
#, c-format
msgid "Graphics card: %s\n"
msgstr "Графичка картица: %s\n"

#: ../lib/Xconfig/various.pm:36
#, c-format
msgid "Graphics memory: %s kB\n"
msgstr "Меморија на графичкој картици: %s kB\n"

#: ../lib/Xconfig/various.pm:38
#, c-format
msgid "Color depth: %s\n"
msgstr "Број боја: %s\n"

#: ../lib/Xconfig/various.pm:39
#, c-format
msgid "Resolution: %s\n"
msgstr "Резолуција: %s\n"

#: ../lib/Xconfig/various.pm:41
#, c-format
msgid "Xorg driver: %s\n"
msgstr "Xorg драјвер: %s\n"

#: ../lib/Xconfig/various.pm:245
#, c-format
msgid "Xorg configuration"
msgstr "Xorg конфигурација"

#: ../lib/Xconfig/various.pm:246
#, fuzzy, c-format
msgid "Global options"
msgstr "Опције модула:"

#: ../lib/Xconfig/various.pm:247
#, c-format
msgid "Disable Ctrl-Alt-Backspace"
msgstr ""

#: ../lib/Xconfig/various.pm:249
#, fuzzy, c-format
msgid "Graphic card options"
msgstr "Графичка картица: %s"

#: ../lib/Xconfig/various.pm:250
#, c-format
msgid "Enable Translucency (Composite extension)"
msgstr ""

#: ../lib/Xconfig/various.pm:253
#, c-format
msgid "Use hardware accelerated mouse pointer"
msgstr ""

#: ../lib/Xconfig/various.pm:256
#, c-format
msgid "Enable RENDER Acceleration (this may cause bugs displaying text)"
msgstr ""

#: ../lib/Xconfig/various.pm:260
#, c-format
msgid "Enable duplicate display on the external monitor"
msgstr ""

#: ../lib/Xconfig/various.pm:261
#, c-format
msgid "Enable duplicate display on the second display"
msgstr ""

#: ../lib/Xconfig/various.pm:264
#, c-format
msgid "Force display mode of DVI"
msgstr ""

#: ../lib/Xconfig/various.pm:267
#, c-format
msgid "Enable BIOS hotkey for external monitor switching"
msgstr ""

#: ../lib/Xconfig/various.pm:270
#, c-format
msgid "Use EXA instead of XAA (better performance for Render and Composite)"
msgstr ""

#: ../lib/Xconfig/various.pm:272
#, c-format
msgid "Graphical interface at startup"
msgstr "X окружење на старту"

#: ../lib/Xconfig/various.pm:273
#, fuzzy, c-format
msgid "Automatically start the graphical interface (Xorg) upon booting"
msgstr ""
"Ja могу подести ваш рачунар да аутоматски подиже X окружење при стартању.\n"
"Да ли желите X окружење при рестарту ?"

#: ../lib/Xconfig/various.pm:285
#, c-format
msgid ""
"Your graphic card seems to have a TV-OUT connector.\n"
"It can be configured to work using frame-buffer.\n"
"\n"
"For this you have to plug your graphic card to your TV before booting your "
"computer.\n"
"Then choose the \"TVout\" entry in the bootloader\n"
"\n"
"Do you have this feature?"
msgstr ""
"Ваша графичка картица изгледа да има TV-OUT конектор.\n"
"Он се може подесити да ради коришћењем frame-buffer-а.\n"
"\n"
"За ово морате да повежете вашу графичку картицу са TV-ом пре стартања вашег "
"компјутера.\n"
"Онда изаберите \"TVout\" поставку у стартеру\n"
"\n"
"Да ли имате ову опцију?"

#: ../lib/Xconfig/various.pm:297
#, c-format
msgid "What norm is your TV using?"
msgstr "Какав систем ваш TV користи?"

#: ../lib/Xconfig/xfree.pm:765
#, c-format
msgid ""
"_:weird aspect ratio\n"
"other"
msgstr ""

#: ../lib/keyboard.pm:187 ../lib/keyboard.pm:220
#, c-format
msgid ""
"_: keyboard\n"
"Czech (QWERTZ)"
msgstr "Чешки (QWERTZ)"

#: ../lib/keyboard.pm:188 ../lib/keyboard.pm:222
#, c-format
msgid ""
"_: keyboard\n"
"German"
msgstr "Немачки"

#: ../lib/keyboard.pm:189
#, c-format
msgid ""
"_: keyboard\n"
"Dvorak"
msgstr "Дворак"

#: ../lib/keyboard.pm:190 ../lib/keyboard.pm:234
#, c-format
msgid ""
"_: keyboard\n"
"Spanish"
msgstr "Шпански"

#: ../lib/keyboard.pm:191 ../lib/keyboard.pm:235
#, c-format
msgid ""
"_: keyboard\n"
"Finnish"
msgstr "Фински"

#: ../lib/keyboard.pm:192 ../lib/keyboard.pm:237
#, c-format
msgid ""
"_: keyboard\n"
"French"
msgstr "Француски"

#: ../lib/keyboard.pm:193 ../lib/keyboard.pm:238
#, c-format
msgid "UK keyboard"
msgstr "UK тастатура"

#: ../lib/keyboard.pm:194 ../lib/keyboard.pm:277
#, c-format
msgid ""
"_: keyboard\n"
"Norwegian"
msgstr "Норвешки"

#: ../lib/keyboard.pm:195
#, c-format
msgid ""
"_: keyboard\n"
"Polish"
msgstr "Пољски"

#: ../lib/keyboard.pm:196 ../lib/keyboard.pm:287
#, c-format
msgid ""
"_: keyboard\n"
"Russian"
msgstr "Руски"

#: ../lib/keyboard.pm:197 ../lib/keyboard.pm:289
#, c-format
msgid ""
"_: keyboard\n"
"Swedish"
msgstr "Шведски"

#: ../lib/keyboard.pm:198 ../lib/keyboard.pm:324
#, c-format
msgid "US keyboard"
msgstr "US тастатура"

#: ../lib/keyboard.pm:200
#, c-format
msgid ""
"_: keyboard\n"
"Albanian"
msgstr "Албански"

#: ../lib/keyboard.pm:201
#, c-format
msgid ""
"_: keyboard\n"
"Armenian (old)"
msgstr "Јерменски (стари)"

#: ../lib/keyboard.pm:202
#, c-format
msgid ""
"_: keyboard\n"
"Armenian (typewriter)"
msgstr "Јерменски (typewriter)"

#: ../lib/keyboard.pm:203
#, c-format
msgid ""
"_: keyboard\n"
"Armenian (phonetic)"
msgstr "Јерменски (фонетски)"

#: ../lib/keyboard.pm:204
#, c-format
msgid ""
"_: keyboard\n"
"Arabic"
msgstr "Арапски"

#: ../lib/keyboard.pm:205
#, fuzzy, c-format
msgid ""
"_: keyboard\n"
"Asturian"
msgstr "Естонски"

#: ../lib/keyboard.pm:206
#, c-format
msgid ""
"_: keyboard\n"
"Azerbaidjani (latin)"
msgstr "Азербејдзан  (латиница)"

#: ../lib/keyboard.pm:207
#, c-format
msgid ""
"_: keyboard\n"
"Belgian"
msgstr "Белгијски"

#: ../lib/keyboard.pm:208
#, fuzzy, c-format
msgid ""
"_: keyboard\n"
"Bengali (Inscript-layout)"
msgstr "Бенгалски (\"Inscript\" распоред)"

#: ../lib/keyboard.pm:209
#, c-format
msgid ""
"_: keyboard\n"
"Bengali (Probhat)"
msgstr "Бенгалски (\"Probhat\" распоред)"

#: ../lib/keyboard.pm:210
#, c-format
msgid ""
"_: keyboard\n"
"Bulgarian (phonetic)"
msgstr "Бугарски (фонетски)"

#: ../lib/keyboard.pm:211
#, c-format
msgid ""
"_: keyboard\n"
"Bulgarian (BDS)"
msgstr "Бугарски (BDS)"

#: ../lib/keyboard.pm:212
#, c-format
msgid ""
"_: keyboard\n"
"Brazilian (ABNT-2)"
msgstr "Бразилски (ABNT-2)"

#: ../lib/keyboard.pm:213
#, c-format
msgid ""
"_: keyboard\n"
"Bosnian"
msgstr "Босански"

#: ../lib/keyboard.pm:214
#, fuzzy, c-format
msgid ""
"_: keyboard\n"
"Dzongkha/Tibetan"
msgstr "Босански"

#: ../lib/keyboard.pm:215
#, c-format
msgid ""
"_: keyboard\n"
"Belarusian"
msgstr "Белоруски"

#: ../lib/keyboard.pm:216
#, c-format
msgid ""
"_: keyboard\n"
"Swiss (German layout)"
msgstr "Швајцарски (Немачки распоред)"

#: ../lib/keyboard.pm:217
#, c-format
msgid ""
"_: keyboard\n"
"Swiss (French layout)"
msgstr "Швајцарски (Француски  распоред)"

#: ../lib/keyboard.pm:219
#, fuzzy, c-format
msgid ""
"_: keyboard\n"
"Cherokee syllabics"
msgstr "Арапски"

#: ../lib/keyboard.pm:221
#, c-format
msgid ""
"_: keyboard\n"
"Czech (QWERTY)"
msgstr "Чешки (QWERTY)"

#: ../lib/keyboard.pm:223
#, c-format
msgid ""
"_: keyboard\n"
"German (no dead keys)"
msgstr "Немачки (без мртвих тастера)"

#: ../lib/keyboard.pm:224
#, c-format
msgid ""
"_: keyboard\n"
"Devanagari"
msgstr "Деванагри"

#: ../lib/keyboard.pm:225
#, c-format
msgid ""
"_: keyboard\n"
"Danish"
msgstr "Дански"

#: ../lib/keyboard.pm:226
#, c-format
msgid ""
"_: keyboard\n"
"Dvorak (US)"
msgstr "Дворак (US)"

#: ../lib/keyboard.pm:227
#, fuzzy, c-format
msgid ""
"_: keyboard\n"
"Dvorak (Esperanto)"
msgstr "Дворак (Норвешки)"

#: ../lib/keyboard.pm:228
#, fuzzy, c-format
msgid ""
"_: keyboard\n"
"Dvorak (French)"
msgstr "Дворак (Норвешки)"

#: ../lib/keyboard.pm:229
#, fuzzy, c-format
msgid ""
"_: keyboard\n"
"Dvorak (UK)"
msgstr "Дворак (US)"

#: ../lib/keyboard.pm:230
#, c-format
msgid ""
"_: keyboard\n"
"Dvorak (Norwegian)"
msgstr "Дворак (Норвешки)"

#: ../lib/keyboard.pm:231
#, fuzzy, c-format
msgid ""
"_: keyboard\n"
"Dvorak (Polish)"
msgstr "Дворак (Шведски)"

#: ../lib/keyboard.pm:232
#, c-format
msgid ""
"_: keyboard\n"
"Dvorak (Swedish)"
msgstr "Дворак (Шведски)"

#: ../lib/keyboard.pm:233
#, c-format
msgid ""
"_: keyboard\n"
"Estonian"
msgstr "Естонски"

#: ../lib/keyboard.pm:236
#, fuzzy, c-format
msgid ""
"_: keyboard\n"
"Faroese"
msgstr "Грчки"

#: ../lib/keyboard.pm:239
#, c-format
msgid ""
"_: keyboard\n"
"Georgian (\"Russian\" layout)"
msgstr "Грузијски (\"Руски\" распоред)"

#: ../lib/keyboard.pm:240
#, c-format
msgid ""
"_: keyboard\n"
"Georgian (\"Latin\" layout)"
msgstr "Грузијски (\"Латинични\" рапоред)"

#: ../lib/keyboard.pm:241
#, c-format
msgid ""
"_: keyboard\n"
"Greek"
msgstr "Грчки"

#: ../lib/keyboard.pm:242
#, c-format
msgid ""
"_: keyboard\n"
"Greek (polytonic)"
msgstr ""

#: ../lib/keyboard.pm:243
#, c-format
msgid ""
"_: keyboard\n"
"Gujarati"
msgstr "Гујарати"

#: ../lib/keyboard.pm:244
#, c-format
msgid ""
"_: keyboard\n"
"Gurmukhi"
msgstr "Гурмуки"

#: ../lib/keyboard.pm:245
#, c-format
msgid ""
"_: keyboard\n"
"Croatian"
msgstr "Хрватски"

#: ../lib/keyboard.pm:246
#, c-format
msgid ""
"_: keyboard\n"
"Hungarian"
msgstr "Мађарски"

#: ../lib/keyboard.pm:247
#, c-format
msgid ""
"_: keyboard\n"
"Irish"
msgstr ""

#: ../lib/keyboard.pm:248
#, c-format
msgid ""
"_: keyboard\n"
"Inuktitut"
msgstr "Инуктитут"

#: ../lib/keyboard.pm:249
#, c-format
msgid ""
"_: keyboard\n"
"Israeli"
msgstr "Јеврејски"

#: ../lib/keyboard.pm:250
#, c-format
msgid ""
"_: keyboard\n"
"Israeli (phonetic)"
msgstr "Јеврејски (Фонетски)"

#: ../lib/keyboard.pm:251
#, c-format
msgid ""
"_: keyboard\n"
"Iranian"
msgstr "Ирански"

#: ../lib/keyboard.pm:252
#, c-format
msgid ""
"_: keyboard\n"
"Icelandic"
msgstr "Исландски"

#: ../lib/keyboard.pm:253
#, c-format
msgid ""
"_: keyboard\n"
"Italian"
msgstr "Италијански"

#: ../lib/keyboard.pm:257
#, c-format
msgid ""
"_: keyboard\n"
"Japanese 106 keys"
msgstr "Јапански 106 тастера"

#: ../lib/keyboard.pm:258
#, fuzzy, c-format
msgid ""
"_: keyboard\n"
"Kannada"
msgstr "Канада"

#: ../lib/keyboard.pm:259
#, fuzzy, c-format
msgid ""
"_: keyboard\n"
"Kyrgyz"
msgstr "UK тастатура"

#: ../lib/keyboard.pm:260
#, c-format
msgid ""
"_: keyboard\n"
"Korean"
msgstr "Корејанска тастатура"

#: ../lib/keyboard.pm:262
#, fuzzy, c-format
msgid ""
"_: keyboard\n"
"Kurdish (arabic script)"
msgstr "Арапски"

#: ../lib/keyboard.pm:263
#, c-format
msgid ""
"_: keyboard\n"
"Latin American"
msgstr "Латино-Амерички"

#: ../lib/keyboard.pm:265
#, c-format
msgid ""
"_: keyboard\n"
"Laotian"
msgstr "Лаоски"

#: ../lib/keyboard.pm:266
#, fuzzy, c-format
msgid ""
"_: keyboard\n"
"Lithuanian"
msgstr "Ирански"

#: ../lib/keyboard.pm:267
#, c-format
msgid ""
"_: keyboard\n"
"Latvian"
msgstr "Летонски"

#: ../lib/keyboard.pm:268
#, c-format
msgid ""
"_: keyboard\n"
"Malayalam"
msgstr "Малајски"

#: ../lib/keyboard.pm:269
#, c-format
msgid ""
"_: keyboard\n"
"Maori"
msgstr ""

#: ../lib/keyboard.pm:270
#, c-format
msgid ""
"_: keyboard\n"
"Macedonian"
msgstr "Македонски"

#: ../lib/keyboard.pm:271
#, c-format
msgid ""
"_: keyboard\n"
"Myanmar (Burmese)"
msgstr "Мијанмар (Бурма)"

#: ../lib/keyboard.pm:272
#, c-format
msgid ""
"_: keyboard\n"
"Mongolian (cyrillic)"
msgstr "Монголски (ћирилица)"

#: ../lib/keyboard.pm:273
#, c-format
msgid ""
"_: keyboard\n"
"Maltese (UK)"
msgstr "Малтешки (UK)"

#: ../lib/keyboard.pm:274
#, c-format
msgid ""
"_: keyboard\n"
"Maltese (US)"
msgstr "Малтешки (US)"

#: ../lib/keyboard.pm:275
#, c-format
msgid ""
"_: keyboard\n"
"Nigerian"
msgstr ""

#: ../lib/keyboard.pm:276
#, c-format
msgid ""
"_: keyboard\n"
"Dutch"
msgstr "Дански"

#: ../lib/keyboard.pm:278
#, fuzzy, c-format
msgid ""
"_: keyboard\n"
"Oriya"
msgstr "Сирија"

#: ../lib/keyboard.pm:279
#, c-format
msgid ""
"_: keyboard\n"
"Polish (qwerty layout)"
msgstr "Пољски (qwerty распоред)"

#: ../lib/keyboard.pm:280
#, c-format
msgid ""
"_: keyboard\n"
"Polish (qwertz layout)"
msgstr "Пољски (qwertz распоред)"

#: ../lib/keyboard.pm:282
#, fuzzy, c-format
msgid ""
"_: keyboard\n"
"Pashto"
msgstr "Пољски"

#: ../lib/keyboard.pm:283
#, c-format
msgid ""
"_: keyboard\n"
"Portuguese"
msgstr "Португалски"

#: ../lib/keyboard.pm:284
#, c-format
msgid ""
"_: keyboard\n"
"Canadian (Quebec)"
msgstr "Канадски (Квебек)"

#: ../lib/keyboard.pm:285
#, c-format
msgid ""
"_: keyboard\n"
"Romanian (qwertz)"
msgstr "Румунски (qwertz)"

#: ../lib/keyboard.pm:286
#, c-format
msgid ""
"_: keyboard\n"
"Romanian (qwerty)"
msgstr "Румунски (qwerty)"

#: ../lib/keyboard.pm:288
#, c-format
msgid ""
"_: keyboard\n"
"Russian (phonetic)"
msgstr "Руски (Фонетски)"

#: ../lib/keyboard.pm:290
#, c-format
msgid ""
"_: keyboard\n"
"Slovenian"
msgstr "Словеначки"

#: ../lib/keyboard.pm:292
#, c-format
msgid ""
"_: keyboard\n"
"Sinhala"
msgstr ""

#: ../lib/keyboard.pm:293
#, c-format
msgid ""
"_: keyboard\n"
"Slovakian (QWERTZ)"
msgstr "Словачки (QWERTZ)"

#: ../lib/keyboard.pm:294
#, c-format
msgid ""
"_: keyboard\n"
"Slovakian (QWERTY)"
msgstr "Словачки (QWERTY)"

#: ../lib/keyboard.pm:295
#, fuzzy, c-format
msgid ""
"_: keyboard\n"
"Saami (norwegian)"
msgstr "Дворак (Норвешки)"

#: ../lib/keyboard.pm:296
#, c-format
msgid ""
"_: keyboard\n"
"Saami (swedish/finnish)"
msgstr ""

#: ../lib/keyboard.pm:298
#, fuzzy, c-format
msgid ""
"_: keyboard\n"
"Sindhi"
msgstr " Thai тастатура"

#: ../lib/keyboard.pm:300
#, c-format
msgid ""
"_: keyboard\n"
"Serbian (cyrillic)"
msgstr "Српски (ћирилица)"

#: ../lib/keyboard.pm:301
#, fuzzy, c-format
msgid ""
"_: keyboard\n"
"Syriac"
msgstr "Сирија"

#: ../lib/keyboard.pm:302
#, fuzzy, c-format
msgid ""
"_: keyboard\n"
"Syriac (phonetic)"
msgstr "Јерменски (фонетски)"

#: ../lib/keyboard.pm:303
#, fuzzy, c-format
msgid ""
"_: keyboard\n"
"Telugu"
msgstr "Токелау"

#: ../lib/keyboard.pm:305
#, c-format
msgid ""
"_: keyboard\n"
"Tamil (ISCII-layout)"
msgstr "Тамилски (ISCII-распоред)"

#: ../lib/keyboard.pm:306
#, c-format
msgid ""
"_: keyboard\n"
"Tamil (Typewriter-layout)"
msgstr "Тамилски (распоред на писаћој машини)"

#: ../lib/keyboard.pm:307
#, fuzzy, c-format
msgid ""
"_: keyboard\n"
"Thai (Kedmanee)"
msgstr " Thai тастатура"

#: ../lib/keyboard.pm:308
#, fuzzy, c-format
msgid ""
"_: keyboard\n"
"Thai (TIS-820)"
msgstr " Thai тастатура"

#: ../lib/keyboard.pm:310
#, fuzzy, c-format
msgid ""
"_: keyboard\n"
"Thai (Pattachote)"
msgstr " Thai тастатура"

#: ../lib/keyboard.pm:312
#, c-format
msgid ""
"_: keyboard\n"
"Tifinagh (moroccan layout) (+latin/arabic)"
msgstr ""

#: ../lib/keyboard.pm:313
#, c-format
msgid ""
"_: keyboard\n"
"Tifinagh (phonetic) (+latin/arabic)"
msgstr ""

#: ../lib/keyboard.pm:315
#, c-format
msgid ""
"_: keyboard\n"
"Tajik"
msgstr "Таџикистанска тастатура"

#: ../lib/keyboard.pm:317
#, fuzzy, c-format
msgid ""
"_: keyboard\n"
"Turkmen"
msgstr "Немачки"

#: ../lib/keyboard.pm:318
#, fuzzy, c-format
msgid ""
"_: keyboard\n"
"Turkish (\"F\" model)"
msgstr "Турски (модерни \"Q\" модел)"

#: ../lib/keyboard.pm:319
#, fuzzy, c-format
msgid ""
"_: keyboard\n"
"Turkish (\"Q\" model)"
msgstr "Турски (модерни \"Q\" модел)"

#: ../lib/keyboard.pm:321
#, c-format
msgid ""
"_: keyboard\n"
"Ukrainian"
msgstr "Украјински"

#: ../lib/keyboard.pm:323
#, fuzzy, c-format
msgid ""
"_: keyboard\n"
"Urdu keyboard"
msgstr "Сирија"

#: ../lib/keyboard.pm:325
#, c-format
msgid "US keyboard (international)"
msgstr "US тастатура (интернационална)"

#: ../lib/keyboard.pm:326
#, c-format
msgid "ISO9995-3 (US keyboard with 3 levels per key)"
msgstr ""

#: ../lib/keyboard.pm:327
#, fuzzy, c-format
msgid ""
"_: keyboard\n"
"Uzbek (cyrillic)"
msgstr "Српски (ћирилица)"

#: ../lib/keyboard.pm:329
#, c-format
msgid ""
"_: keyboard\n"
"Vietnamese \"numeric row\" QWERTY"
msgstr "Вијетнамски  \"number row\"QWERTY"

#: ../lib/keyboard.pm:330
#, c-format
msgid ""
"_: keyboard\n"
"Yugoslavian (latin)"
msgstr "Српски (латиница)"

#: ../lib/keyboard.pm:337
#, c-format
msgid "Right Alt key"
msgstr "Десни Alt тастер"

#: ../lib/keyboard.pm:338
#, c-format
msgid "Both Shift keys simultaneously"
msgstr "Оба Shift тастера истовремено"

#: ../lib/keyboard.pm:339
#, c-format
msgid "Control and Shift keys simultaneously"
msgstr "Control и  Shift тастери истовремено"

#: ../lib/keyboard.pm:340
#, c-format
msgid "CapsLock key"
msgstr "CapsLock тастер"

#: ../lib/keyboard.pm:341
#, fuzzy, c-format
msgid "Shift and CapsLock keys simultaneously"
msgstr "Ctrl и Alt тастери истовремено"

#: ../lib/keyboard.pm:342
#, c-format
msgid "Ctrl and Alt keys simultaneously"
msgstr "Ctrl и Alt тастери истовремено"

#: ../lib/keyboard.pm:343
#, c-format
msgid "Alt and Shift keys simultaneously"
msgstr "Alt и Shift тастери истовремено"

#: ../lib/keyboard.pm:344
#, c-format
msgid "\"Menu\" key"
msgstr "\"Мени\" тастер"

#: ../lib/keyboard.pm:345
#, c-format
msgid "Left \"Windows\" key"
msgstr "Леви \"Windows\" тастер"

#: ../lib/keyboard.pm:346
#, c-format
msgid "Right \"Windows\" key"
msgstr "Десни \"Windows\" тастер"

#: ../lib/keyboard.pm:347
#, fuzzy, c-format
msgid "Both Control keys simultaneously"
msgstr "Оба Shift тастера истовремено"

#: ../lib/keyboard.pm:348
#, fuzzy, c-format
msgid "Both Alt keys simultaneously"
msgstr "Оба Shift тастера истовремено"

#: ../lib/keyboard.pm:349
#, fuzzy, c-format
msgid "Left Shift key"
msgstr "Леви \"Windows\" тастер"

#: ../lib/keyboard.pm:350
#, fuzzy, c-format
msgid "Right Shift key"
msgstr "Десни Alt тастер"

#: ../lib/keyboard.pm:351
#, fuzzy, c-format
msgid "Left Alt key"
msgstr "Десни Alt тастер"

#: ../lib/keyboard.pm:352
#, fuzzy, c-format
msgid "Left Control key"
msgstr "Удаљена контрола"

#: ../lib/keyboard.pm:353
#, fuzzy, c-format
msgid "Right Control key"
msgstr "Десни Alt тастер"

#: ../lib/keyboard.pm:389
#, c-format
msgid ""
"Here you can choose the key or key combination that will \n"
"allow switching between the different keyboard layouts\n"
"(eg: latin and non latin)"
msgstr ""
"Овде можете изабрати тастер или комбинацију тастера која ће \n"
"дозволити измену распореда тастатура\n"
"(нпр: latin и non latin)"

#: ../lib/keyboard.pm:394
#, c-format
msgid "Warning"
msgstr "Упозорење"

#: ../lib/keyboard.pm:395
#, c-format
msgid ""
"This setting will be activated after the installation.\n"
"During installation, you will need to use the Right Control\n"
"key to switch between the different keyboard layouts."
msgstr ""

#: ../lib/mouse.pm:26
#, c-format
msgid "Sun - Mouse"
msgstr "Sun Миш"

#: ../lib/mouse.pm:32
#, c-format
msgid "Standard"
msgstr "Стандардни"

#: ../lib/mouse.pm:33
#, c-format
msgid "Logitech MouseMan+"
msgstr "Logitech MouseMan+"

#: ../lib/mouse.pm:34
#, c-format
msgid "Generic PS2 Wheel Mouse"
msgstr "Генерички PS2 миш са точкићем"

#: ../lib/mouse.pm:35
#, c-format
msgid "GlidePoint"
msgstr "GlidePoint"

#: ../lib/mouse.pm:38 ../lib/mouse.pm:72
#, c-format
msgid "Kensington Thinking Mouse"
msgstr "Kensington Thinking Mouse"

#: ../lib/mouse.pm:39 ../lib/mouse.pm:67
#, c-format
msgid "Genius NetMouse"
msgstr "Genius NetMouse"

#: ../lib/mouse.pm:40
#, c-format
msgid "Genius NetScroll"
msgstr "Genius NetScroll"

#: ../lib/mouse.pm:41 ../lib/mouse.pm:51
#, c-format
msgid "Microsoft Explorer"
msgstr "Microsoft Explorer"

#: ../lib/mouse.pm:46 ../lib/mouse.pm:78
#, c-format
msgid "1 button"
msgstr "1 тастер"

#: ../lib/mouse.pm:47 ../lib/mouse.pm:56
#, c-format
msgid "Generic 2 Button Mouse"
msgstr "Генерички 2 тастера миш"

#: ../lib/mouse.pm:49 ../lib/mouse.pm:58
#, fuzzy, c-format
msgid "Generic 3 Button Mouse with Wheel emulation"
msgstr "Генерички 3 тастера миш"

#: ../lib/mouse.pm:50
#, c-format
msgid "Wheel"
msgstr "Точкић"

#: ../lib/mouse.pm:54
#, c-format
msgid "serial"
msgstr "серијски"

#: ../lib/mouse.pm:57
#, c-format
msgid "Generic 3 Button Mouse"
msgstr "Генерички 3 тастера миш"

#: ../lib/mouse.pm:59
#, c-format
msgid "Microsoft IntelliMouse"
msgstr "Microsoft IntelliMouse"

#: ../lib/mouse.pm:60
#, c-format
msgid "Logitech MouseMan"
msgstr "Logitech MouseMan"

#: ../lib/mouse.pm:61
#, fuzzy, c-format
msgid "Logitech MouseMan with Wheel emulation"
msgstr "Logitech MouseMan"

#: ../lib/mouse.pm:62
#, c-format
msgid "Mouse Systems"
msgstr "Mouse Systems"

#: ../lib/mouse.pm:64
#, c-format
msgid "Logitech CC Series"
msgstr "Logitech CC серија (серијски)"

#: ../lib/mouse.pm:65
#, fuzzy, c-format
msgid "Logitech CC Series with Wheel emulation"
msgstr "Logitech CC серија (серијски)"

#: ../lib/mouse.pm:66
#, c-format
msgid "Logitech MouseMan+/FirstMouse+"
msgstr "Logitech MouseMan+/FirstMouse+"

#: ../lib/mouse.pm:68
#, c-format
msgid "MM Series"
msgstr "MM серија"

#: ../lib/mouse.pm:69
#, c-format
msgid "MM HitTablet"
msgstr "MM HitTablet"

#: ../lib/mouse.pm:70
#, c-format
msgid "Logitech Mouse (serial, old C7 type)"
msgstr "Logitech mouse (серијски, стари C7 тип)"

#: ../lib/mouse.pm:71
#, fuzzy, c-format
msgid "Logitech Mouse (serial, old C7 type) with Wheel emulation"
msgstr "Logitech mouse (серијски, стари C7 тип)"

#: ../lib/mouse.pm:73
#, fuzzy, c-format
msgid "Kensington Thinking Mouse with Wheel emulation"
msgstr "Kensington Thinking Mouse"

#: ../lib/mouse.pm:76
#, c-format
msgid "busmouse"
msgstr "bus миш"

#: ../lib/mouse.pm:79
#, c-format
msgid "2 buttons"
msgstr "2 тастера"

#: ../lib/mouse.pm:80
#, c-format
msgid "3 buttons"
msgstr "3 тастера"

#: ../lib/mouse.pm:81
#, fuzzy, c-format
msgid "3 buttons with Wheel emulation"
msgstr "Емулација тастера"

#: ../lib/mouse.pm:84
#, c-format
msgid "Universal"
msgstr "Универзални"

#: ../lib/mouse.pm:86
#, c-format
msgid "Any PS/2 & USB mice"
msgstr ""

#: ../lib/mouse.pm:87
#, c-format
msgid "Force evdev"
msgstr ""

#: ../lib/mouse.pm:88
#, fuzzy, c-format
msgid "Microsoft Xbox Controller S"
msgstr "Microsoft Explorer"

#: ../lib/mouse.pm:89
#, c-format
msgid "VirtualBox mouse"
msgstr ""

#: ../lib/mouse.pm:90
#, fuzzy, c-format
msgid "VMware mouse"
msgstr "Разно"

#: ../lib/mouse.pm:93
#, c-format
msgid "none"
msgstr "ниједан"

#: ../lib/mouse.pm:95
#, c-format
msgid "No mouse"
msgstr "Нема миша"

#: ../lib/mouse.pm:488
#, c-format
msgid "Testing the mouse"
msgstr ""

# #,
# msgid "Confirmation"
# msgstr "Потврда"
#: ../lib/mouse.pm:525
#, c-format
msgid "Please choose your type of mouse."
msgstr "Изаберите тип миша."

#: ../lib/mouse.pm:526
#, fuzzy, c-format
msgid "Mouse choice"
msgstr "упуство"

#: ../lib/mouse.pm:542
#, c-format
msgid "Emulate third button?"
msgstr "Да имитирам рад 3 тастера?"

#: ../lib/mouse.pm:546
#, c-format
msgid "Mouse Port"
msgstr "Порт за миша"

#: ../lib/mouse.pm:547
#, c-format
msgid "Please choose which serial port your mouse is connected to."
msgstr "Изаберите на који серијски порт је ваш миш прикључен."

#: ../lib/mouse.pm:556
#, c-format
msgid "Buttons emulation"
msgstr "Емулација тастера"

#: ../lib/mouse.pm:558
#, c-format
msgid "Button 2 Emulation"
msgstr "Емулација 2 тастера"

#: ../lib/mouse.pm:559
#, c-format
msgid "Button 3 Emulation"
msgstr "Емулација 3 тастера"

#: ../lib/mouse.pm:610
#, c-format
msgid "Please test the mouse"
msgstr "Молим Вас да тестирате миша"

#: ../lib/mouse.pm:612
#, c-format
msgid "To activate the mouse,"
msgstr "Да би могли да активирате миша"

#: ../lib/mouse.pm:613
#, c-format
msgid "MOVE YOUR WHEEL!"
msgstr "померите точкић !"

#: ../tools/XFdrake:71
#, fuzzy, c-format
msgid "You need to reboot for changes to take effect"
msgstr "Морате рестартовати рачунар да би се измене извршиле"

#: ../tools/keyboarddrake:37
#, c-format
msgid "Keyboard"
msgstr "Тастатура"

#: ../tools/keyboarddrake:38
#, c-format
msgid "Please, choose your keyboard layout."
msgstr "Који  распоред тастатуре желите ?"

#: ../tools/keyboarddrake:39
#, fuzzy, c-format
msgid "Keyboard layout"
msgstr "Распоред тастера"

#: ../tools/keyboarddrake:52
#, fuzzy, c-format
msgid "Keyboard type"
msgstr "Тастатура"

#: ../tools/keyboarddrake:65
#, c-format
msgid "Do you want the BackSpace to return Delete in console?"
msgstr "Да ли желите да BackSpace да врати Delete у конзолу?"

#: ../polkit/org.mageia.drakkeyboard.policy.in.h:1
#, fuzzy
msgid "Run Mageia Keyboard Configuration"
msgstr "Multi-head конфигурација"

#: ../polkit/org.mageia.drakkeyboard.policy.in.h:2
msgid "Authentication is required to run Mageia Keyboard Configuration"
msgstr ""

#: ../polkit/org.mageia.drakmouse.policy.in.h:1
#, fuzzy
msgid "Run Mageia Mouse Configuration"
msgstr "Ручна конфигурација"

#: ../polkit/org.mageia.drakmouse.policy.in.h:2
msgid "Authentication is required to run Mageia Mouse Configuration"
msgstr ""

#: ../polkit/org.mageia.drakx11.policy.in.h:1
#, fuzzy
msgid "Run Mageia Graphics Configuration"
msgstr "Подешавање звука"

#: ../polkit/org.mageia.drakx11.policy.in.h:2
msgid "Authentication is required to run Mageia Graphics Configuration"
msgstr ""

#~ msgid ""
#~ "_: keyboard\n"
#~ "Turkish (traditional \"F\" model)"
#~ msgstr "Турски (традиционални \"F\" модел)"

#~ msgid ""
#~ "_: keyboard\n"
#~ "Lithuanian AZERTY (old)"
#~ msgstr "Литвански AZERTY(стари)"

#~ msgid ""
#~ "_: keyboard\n"
#~ "Lithuanian AZERTY (new)"
#~ msgstr "Литвански AZERTY(нови)"

#~ msgid ""
#~ "_: keyboard\n"
#~ "Lithuanian \"number row\" QWERTY"
#~ msgstr "Литвански \"number row\"QWERTY"

#~ msgid ""
#~ "_: keyboard\n"
#~ "Lithuanian \"phonetic\" QWERTY"
#~ msgstr "Литвански \"фонетски\" QWERTY"

#, fuzzy
#~ msgid "Mouse test"
#~ msgstr "Mouse Systems"

#, fuzzy
#~ msgid "Please test your mouse:"
#~ msgstr "Молим Вас да тестирате миша"

#~ msgid "Plug'n Play probing failed. Please select the correct monitor"
#~ msgstr "Plug'n Play тестирање није успело. Изаберите тачан модел монитора"

#, fuzzy
#~ msgid "Use %s"
#~ msgstr "Корисници"

#~ msgid "Please wait"
#~ msgstr "Само моменат..."

#, fuzzy
#~ msgid "Bootloader installation in progress"
#~ msgstr "Инсталација стартера"

#~ msgid "Installation of bootloader failed. The following error occurred:"
#~ msgstr "Инсталација стартера неуспела. Грешка је:"

#~ msgid ""
#~ "You may need to change your Open Firmware boot-device to\n"
#~ " enable the bootloader.  If you do not see the bootloader prompt at\n"
#~ " reboot, hold down Command-Option-O-F at reboot and enter:\n"
#~ " setenv boot-device %s,\\\\:tbxi\n"
#~ " Then type: shut-down\n"
#~ "At your next boot you should see the bootloader prompt."
#~ msgstr ""
#~ "Мораћете да промените Open Firmware boot-уређај да \n"
#~ " би могли да користите стартер.  Уколико не видите промпт\n"
#~ " при рестарту држите Command-Option-O-F при стартању и унесите:\n"
#~ " setenv boot-device %s,\\\\:tbxi\n"
#~ " Онда укуцајте: shut-down\n"
#~ "Када следећи пут стартујете машину требали би да видите статеров промпт."

#~ msgid ""
#~ "You decided to install the bootloader on a partition.\n"
#~ "This implies you already have a bootloader on the hard drive you boot "
#~ "(eg: System Commander).\n"
#~ "\n"
#~ "On which drive are you booting?"
#~ msgstr ""
#~ "Ви сте одлучили да инсталирате стартер на партицију.\n"
#~ "Ово указујен ато да већ имате инсталиран стартер на хард диску који "
#~ "бутујете.\n"
#~ "\n"
#~ "На који драјв се бутујете?"

#~ msgid "First sector of drive (MBR)"
#~ msgstr "Први сектор диска (MBR)"

#~ msgid "First sector of the root partition"
#~ msgstr "Први сектор root партиције"

#~ msgid "On Floppy"
#~ msgstr "На дискету"

#~ msgid "Skip"
#~ msgstr "Прескочи"

#~ msgid "LILO/grub Installation"
#~ msgstr "LILO/grub инсталација"

#~ msgid "Where do you want to install the bootloader?"
#~ msgstr "Где бисте да инсталирате стартер?"

#~ msgid "Boot Style Configuration"
#~ msgstr "Конфигурација стила стартања"

#~ msgid "Bootloader main options"
#~ msgstr "Главне опције стартера"

#~ msgid "Bootloader"
#~ msgstr "Стартер"

#~ msgid "Bootloader to use"
#~ msgstr "Стартер који ће се користити"

#~ msgid "Boot device"
#~ msgstr "Стартни (boot) уређај"

#~ msgid "Delay before booting default image"
#~ msgstr "Пауза пре стартања default image-а"

#~ msgid "Enable ACPI"
#~ msgstr "Омогући ACPI"

#, fuzzy
#~ msgid "Enable APIC"
#~ msgstr "Омогући ACPI"

#, fuzzy
#~ msgid "Enable Local APIC"
#~ msgstr "Омогући ACPI"

#~ msgid "Password"
#~ msgstr "Лозинка"

#~ msgid "The passwords do not match"
#~ msgstr "Неподударност лозинки"

#~ msgid "Please try again"
#~ msgstr "Пробајте поново"

#, fuzzy
#~ msgid "You can not use a password with %s"
#~ msgstr "Не можете користити енкриптовани фајл систем за тачку монтирања %s"

#~ msgid "Password (again)"
#~ msgstr "Лозинка (поновите)"

#~ msgid "Restrict command line options"
#~ msgstr "Ограничена командна линика - опције"

#~ msgid "restrict"
#~ msgstr "ограничено"

#~ msgid ""
#~ "Option ``Restrict command line options'' is of no use without a password"
#~ msgstr ""
#~ "Опција``Ограничена командна линика - опције'' је неупотребљива без лозинке"

#~ msgid "Clean /tmp at each boot"
#~ msgstr "Очисти /tmp при сваком стартању"

#~ msgid "Precise RAM size if needed (found %d MB)"
#~ msgstr "Дефиниши величину RAM ако је потребно (детектовано је %d MB)"

#~ msgid "Give the ram size in MB"
#~ msgstr "Прикажи величину RAM-а у Mb"

#~ msgid "Init Message"
#~ msgstr "Иницијална порука"

#~ msgid "Open Firmware Delay"
#~ msgstr "Отпочни Firmware паузу"

#~ msgid "Kernel Boot Timeout"
#~ msgstr "Пауза при стартању кернела"

#~ msgid "Enable CD Boot?"
#~ msgstr "Омогући стартање са CD-а?"

#~ msgid "Enable OF Boot?"
#~ msgstr "Омогући OF стартање?"

#~ msgid "Default OS?"
#~ msgstr "Подразумевани ОС ?"

#~ msgid "Image"
#~ msgstr "Слика"

#~ msgid "Root"
#~ msgstr "Root"

#~ msgid "Append"
#~ msgstr "Додатак"

#~ msgid "Video mode"
#~ msgstr "Видео мод"

#~ msgid "Initrd"
#~ msgstr "Initrd"

#, fuzzy
#~ msgid "Network profile"
#~ msgstr "Грешка на мрежи"

#~ msgid "Label"
#~ msgstr "Ознака"

#~ msgid "Default"
#~ msgstr "Подразумевано"

#~ msgid "NoVideo"
#~ msgstr "NoVideo"

#~ msgid "Empty label not allowed"
#~ msgstr "Празна ознака није дозвољена"

#~ msgid "You must specify a kernel image"
#~ msgstr "Морате специфицирати кернелов image"

#~ msgid "You must specify a root partition"
#~ msgstr "Морате одредити root партицију"

#~ msgid "This label is already used"
#~ msgstr "Ова ознака је већ у употреби"

#~ msgid "Which type of entry do you want to add?"
#~ msgstr "Коју врсту уноса додајете ?"

#~ msgid "Linux"
#~ msgstr "Linux"

#~ msgid "Other OS (SunOS...)"
#~ msgstr "Други ОС-ови (SunOS,BSD,...)"

#~ msgid "Other OS (MacOS...)"
#~ msgstr "Други ОС-ови (MacOS,BSD,...)"

#~ msgid "Other OS (Windows...)"
#~ msgstr "Други ОС-ови (Windows,BSD,BeOS,...)"

#~ msgid ""
#~ "Here are the entries on your boot menu so far.\n"
#~ "You can create additional entries or change the existing ones."
#~ msgstr ""
#~ "Ово су постављне опције.\n"
#~ "Можете додати нове или изменити старе."

#~ msgid "access to X programs"
#~ msgstr "приступ X програмима"

#~ msgid "access to rpm tools"
#~ msgstr "приступ rpm алатима"

#~ msgid "allow \"su\""
#~ msgstr "дозволи \"su\""

#~ msgid "access to administrative files"
#~ msgstr "приступ административним фајловима"

#~ msgid "access to network tools"
#~ msgstr "приступ мрежним алатима"

#~ msgid "access to compilation tools"
#~ msgstr "приступ алатима за компајлирање"

#~ msgid "(already added %s)"
#~ msgstr "(%s већ постоји)"

#~ msgid "Please give a user name"
#~ msgstr "Одредите корисничко име"

#~ msgid ""
#~ "The user name must contain only lower cased letters, numbers, `-' and `_'"
#~ msgstr "Корисничко име може садржати само мала слова, бројеве, `-' и `_'"

#~ msgid "The user name is too long"
#~ msgstr "Корисничко име већ је предугачко"

#~ msgid "This user name has already been added"
#~ msgstr "Ово корисничко име већ постоји"

#~ msgid "User ID"
#~ msgstr "Корисников ID"

#~ msgid "Group ID"
#~ msgstr "Групни ID"

#, fuzzy
#~ msgid "%s must be a number"
#~ msgstr "Опција %s мора бити број!"

#~ msgid "Add user"
#~ msgstr "Додај корисника"

#~ msgid ""
#~ "Enter a user\n"
#~ "%s"
#~ msgstr ""
#~ "Унеси корисника\n"
#~ "%s"

#~ msgid "Done"
#~ msgstr "Урађено"

#~ msgid "Accept user"
#~ msgstr "Прихвати корисника"

#~ msgid "Real name"
#~ msgstr "Право име"

#, fuzzy
#~ msgid "Login name"
#~ msgstr "Име домена"

#~ msgid "Shell"
#~ msgstr "Shell"

#~ msgid "Icon"
#~ msgstr "Икона"

#~ msgid "Autologin"
#~ msgstr "Ауто логовање"

#~ msgid "I can set up your computer to automatically log on one user."
#~ msgstr "Ја могу подести ваш рачунар да аутоматски улогује једног корисника."

#, fuzzy
#~ msgid "Use this feature"
#~ msgstr "Да ли желите да користите ову опцију ?"

#~ msgid "Choose the default user:"
#~ msgstr "Изаберите default (основног) корисника:"

#~ msgid "Choose the window manager to run:"
#~ msgstr "Изаберите менаџер прозора који желите да користите:"

#~ msgid "License agreement"
#~ msgstr "ЛИценцирани уговор"

#, fuzzy
#~ msgid "Release Notes"
#~ msgstr "Верзија: "

#~ msgid "Accept"
#~ msgstr "Прихвати"

#~ msgid "Refuse"
#~ msgstr "Одбаци"

#~ msgid "Please choose a language to use."
#~ msgstr "Изаберите који језик желите да кориситите."

#, fuzzy
#~ msgid "Language choice"
#~ msgstr "упуство"

#~ msgid ""
#~ "Mandriva Linux can support multiple languages. Select\n"
#~ "the languages you would like to install. They will be available\n"
#~ "when your installation is complete and you restart your system."
#~ msgstr ""
#~ "Можете изабрати други језик који ће бити доступан после инсталације "

#~ msgid "All languages"
#~ msgstr "Сви језици"

#~ msgid "Country / Region"
#~ msgstr "Земља"

#~ msgid "Please choose your country."
#~ msgstr "Изаберите своју земљу."

#~ msgid "Here is the full list of available countries"
#~ msgstr "Овде је представљена цела листа доступних земаља"

#, fuzzy
#~ msgid "Other Countries"
#~ msgstr "Остали портови"

#~ msgid "Advanced"
#~ msgstr "Напредно"

#, fuzzy
#~ msgid "Input method:"
#~ msgstr "Мрежни метод:"

#~ msgid "None"
#~ msgstr "Неиједан"

#~ msgid "No sharing"
#~ msgstr "Нема заједничког дељења"

#~ msgid "Allow all users"
#~ msgstr "Дозволи све кориснике"

#~ msgid ""
#~ "Would you like to allow users to share some of their directories?\n"
#~ "Allowing this will permit users to simply click on \"Share\" in konqueror "
#~ "and nautilus.\n"
#~ "\n"
#~ "\"Custom\" permit a per-user granularity.\n"
#~ msgstr ""
#~ "Да ли би желели да дозволите корисницима заједнички деле неке од својих "
#~ "директоријума?\n"
#~ "Да би ово могли да омогућите једноставно кликните на \"Share\" у "
#~ "konqueror-у или nautilus-у.\n"
#~ "\n"
#~ "\"Custom\" дозвољава детаљнија per-user подешавања.\n"

#~ msgid ""
#~ "You can export using NFS or SMB. Please select which you would like to "
#~ "use."
#~ msgstr "Можете експортовати користећи NFS или SMB-у. Који од ова два желите"

#~ msgid "Launch userdrake"
#~ msgstr "Покрени userdrake"

#~ msgid "Close"
#~ msgstr "Затвори"

#~ msgid ""
#~ "The per-user sharing uses the group \"fileshare\". \n"
#~ "You can use userdrake to add a user to this group."
#~ msgstr ""
#~ "per-user дељење ресурса користи групу \"fileshare\". \n"
#~ "Ви помоћу userdrake-а можете додати корисника у ову групу."

#~ msgid "Please log out and then use Ctrl-Alt-BackSpace"
#~ msgstr "Молим ваш излогујте се и рестартујте (Ctrl-Alt-BackSpace) рачунар"

#~ msgid "Timezone"
#~ msgstr "Временска зона"

#~ msgid "Which is your timezone?"
#~ msgstr "Која је ваша временска зона ?"

#, fuzzy
#~ msgid "%s (hardware clock set to UTC)"
#~ msgstr "Ваш системски (BIOS) часовник је подешен на GMT"

#, fuzzy
#~ msgid "%s (hardware clock set to local time)"
#~ msgstr "Ваш системски (BIOS) часовник је подешен на GMT"

#~ msgid "NTP Server"
#~ msgstr "NTP Сервер"

#~ msgid "Automatic time synchronization (using NTP)"
#~ msgstr "Аутоматска синхронизација времена (преко NTP-а)"

#~ msgid "Local file"
#~ msgstr "Локална датотека"

#~ msgid "LDAP"
#~ msgstr "LDAP"

#~ msgid "NIS"
#~ msgstr "NIS"

#, fuzzy
#~ msgid "Smart Card"
#~ msgstr "Мрежна картица"

#~ msgid "Windows Domain"
#~ msgstr "Windows Домен"

#, fuzzy
#~ msgid "Active Directory with SFU"
#~ msgstr "Обнови све backup-ове"

#, fuzzy
#~ msgid "Active Directory with Winbind"
#~ msgstr "Обнови све backup-ове"

#, fuzzy
#~ msgid "Local file:"
#~ msgstr "Локалне датотеке:"

#~ msgid "LDAP:"
#~ msgstr "LDAP:"

#~ msgid "NIS:"
#~ msgstr "NIS:"

#~ msgid "Windows Domain:"
#~ msgstr "Windows Домен:"

#, fuzzy
#~ msgid "Active Directory with SFU:"
#~ msgstr "Обнови све backup-ове"

#, fuzzy
#~ msgid "Active Directory with Winbind:"
#~ msgstr "Обнови све backup-ове"

#~ msgid "Authentication LDAP"
#~ msgstr "LDAP Аутентификација"

#~ msgid "LDAP Base dn"
#~ msgstr "LDAP Base dn"

#~ msgid "LDAP Server"
#~ msgstr "LDAP Сервер"

#~ msgid "simple"
#~ msgstr "једноставно"

#~ msgid "TLS"
#~ msgstr "TLS"

#~ msgid "SSL"
#~ msgstr "SSL"

#, fuzzy
#~ msgid "Authentication Active Directory"
#~ msgstr "Аутентификација"

#~ msgid "Domain"
#~ msgstr "Домен"

#~ msgid "Server"
#~ msgstr "Сервер"

#, fuzzy
#~ msgid "LDAP users database"
#~ msgstr "Сервер,Базе података"

#, fuzzy
#~ msgid "Password for user"
#~ msgstr "Потребна је Лозинка"

#~ msgid "Authentication NIS"
#~ msgstr "NIS Аутентификација"

#~ msgid "NIS Domain"
#~ msgstr "NIS Домен"

#~ msgid "NIS Server"
#~ msgstr "NIS Сервер"

#~ msgid ""
#~ "For this to work for a W2K PDC, you will probably need to have the admin "
#~ "run: C:\\>net localgroup \"Pre-Windows 2000 Compatible Access\" everyone /"
#~ "add and reboot the server.\n"
#~ "You will also need the username/password of a Domain Admin to join the "
#~ "machine to the Windows(TM) domain.\n"
#~ "If networking is not yet enabled, Drakx will attempt to join the domain "
#~ "after the network setup step.\n"
#~ "Should this setup fail for some reason and domain authentication is not "
#~ "working, run 'smbpasswd -j DOMAIN -U USER%%PASSWORD' using your "
#~ "Windows(tm) Domain, and Admin Username/Password, after system boot.\n"
#~ "The command 'wbinfo -t' will test whether your authentication secrets are "
#~ "good."
#~ msgstr ""
#~ "Да би ово радило са W2K PDC, вероватно ћете морати да као admin "
#~ "покренете: C:\\>net localgroup \"Pre-Windows 2000 Compatible Access\" "
#~ "everyone /add и да рестартујете сервер.\n"
#~ "Такоже ћете морати да имате username/password за  Domain Admin да би "
#~ "приступили машини која има Windows(TM) домен.\n"
#~ "Уколико мрежа још увек није омогућена, Drakx ће покушати да приступи "
#~ "домену након подешавања мреже.\n"
#~ "Уколико ово подешавање не успе из неког разлога и атуентификација домена "
#~ "не ради, покрените 'smbpasswd -j DOMAIN -U USER%%PASSWORD' користећи ваш "
#~ "Windows(tm) Домен, и Admin Username/Password, након стартања система.\n"
#~ "Команда 'wbinfo -t' ће тестирати да ли ваша аутентификација добра."

#~ msgid "Authentication Windows Domain"
#~ msgstr "Аутентификација Windows Домена"

#~ msgid "Domain Admin User Name"
#~ msgstr "Admin Корисничко име Домена"

#~ msgid "Domain Admin Password"
#~ msgstr "Admin Лозинка домена"

#~ msgid "Authentication"
#~ msgstr "Аутентификација"

#, fuzzy
#~ msgid "Set administrator (root) password"
#~ msgstr "Унеси root лозинку"

#, fuzzy
#~ msgid "Authentication method"
#~ msgstr "Аутентификација"

#~ msgid "No password"
#~ msgstr "Без лозинке"

#~ msgid "This password is too short (it must be at least %d characters long)"
#~ msgstr "Ова лозинка је сувише једноставна (треба да има бар %d знакова)"

#~ msgid "Can not use broadcast with no NIS domain"
#~ msgstr "Није могућ пренос без NIS домена"

# NOTE: this message will be displayed at boot time; that is
# only the ascii charset will be available on most machines
# so use only 7bit for this message (and do transliteration or
# leave it in English, as it is the best for your language)
#
#~ msgid ""
#~ "Welcome to the operating system chooser!\n"
#~ "\n"
#~ "Choose an operating system from the list above or\n"
#~ "wait for default boot.\n"
#~ "\n"
#~ msgstr ""
#~ "Dobrodosli u menadzer za startanje operativnih sistema !\n"
#~ "\n"
#~ "Izaberite operativni sistem, ili\n"
#~ "sacekate za startanje pretpostavljenog OS.\n"

#~ msgid "LILO with text menu"
#~ msgstr "LILO са текстуалним менијем"

#~ msgid "Yaboot"
#~ msgstr "Yaboot"

#~ msgid "SILO"
#~ msgstr "SILO"

#~ msgid "not enough room in /boot"
#~ msgstr "нема довољно места у /boot"

#~ msgid "You can not install the bootloader on a %s partition\n"
#~ msgstr "Не можете да инсталирате стартер на партицију %s\n"

#, fuzzy
#~ msgid "Re-install Boot Loader"
#~ msgstr "Инсталирај стартер"

#, fuzzy
#~ msgid "B"
#~ msgstr "KB"

#~ msgid "KB"
#~ msgstr "KB"

#~ msgid "MB"
#~ msgstr "MB"

#~ msgid "GB"
#~ msgstr "GB"

#~ msgid "TB"
#~ msgstr "TB"

#~ msgid "%d minutes"
#~ msgstr "%d минута"

#~ msgid "1 minute"
#~ msgstr "1 минут"

#~ msgid "%d seconds"
#~ msgstr "%d секунди"

#~ msgid ""
#~ "WebDAV is a protocol that allows you to mount a web server's directory\n"
#~ "locally, and treat it like a local filesystem (provided the web server "
#~ "is\n"
#~ "configured as a WebDAV server). If you would like to add WebDAV mount\n"
#~ "points, select \"New\"."
#~ msgstr ""
#~ "WebDAV је протокол који вам омогућава да монтирате директоријум веб "
#~ "сервера\n"
#~ "локално, и да га третирате као локални фајл систем (доступни веб сервер "
#~ "је\n"
#~ "подешен као WebDAV сервер). Уколико желите да додате нову WebDAV тачку\n"
#~ "монтирања, изаберите \"Нови\"."

#~ msgid "New"
#~ msgstr "Нови"

#~ msgid "Unmount"
#~ msgstr "Демонтирај"

#~ msgid "Mount"
#~ msgstr "Монтирај"

#~ msgid "Mount point"
#~ msgstr "Тачка монтирања"

#~ msgid "Error"
#~ msgstr "Грешка"

#~ msgid "Please enter the WebDAV server URL"
#~ msgstr "Унесите URL WebDAV сервера"

#~ msgid "The URL must begin with http:// or https://"
#~ msgstr "URL мора почињати са http:// или https://"

#~ msgid "Server: "
#~ msgstr "Сервер:"

#~ msgid "Mount point: "
#~ msgstr "Тачка монтирања: "

#~ msgid "Options: %s"
#~ msgstr "Опције: %s"

#~ msgid "Partitioning"
#~ msgstr "Партиционисање"

#~ msgid "Read carefully!"
#~ msgstr "ПАЖЉИВО ПРОЧИТАЈ !"

#~ msgid "Please make a backup of your data first"
#~ msgstr "Молим вас, прво направите копију ваших података"

#~ msgid "Exit"
#~ msgstr "Излаз"

#~ msgid "Continue"
#~ msgstr "Настави"

#~ msgid ""
#~ "If you plan to use aboot, be careful to leave a free space (2048 sectors "
#~ "is enough)\n"
#~ "at the beginning of the disk"
#~ msgstr ""
#~ "Уколико планирате да користите  aboot, оставите празан простор (2048 "
#~ "секторана почетку \n"
#~ "диска)"

#~ msgid "Choose action"
#~ msgstr "Изаберите акцију"

#~ msgid ""
#~ "You have one big Microsoft Windows partition.\n"
#~ "I suggest you first resize that partition\n"
#~ "(click on it, then click on \"Resize\")"
#~ msgstr ""
#~ "Ви имате једну велику Microsoft Windows партицију.\n"
#~ "Предлажем да прво измените величну (resize) те партиције (кликните на "
#~ "њу,\n"
#~ "а потом на \"Промени величину\")"

#~ msgid "Please click on a partition"
#~ msgstr "Кликните на партицију"

#~ msgid "Details"
#~ msgstr "Детаљи"

#~ msgid "No hard drives found"
#~ msgstr "Није пронађен хард диск"

#~ msgid "Unknown"
#~ msgstr "Непознато"

#~ msgid "Ext2"
#~ msgstr "Ext2"

#~ msgid "Journalised FS"
#~ msgstr "Journalised FS"

#~ msgid "Swap"
#~ msgstr "Swap"

#~ msgid "SunOS"
#~ msgstr "SunOS"

#~ msgid "HFS"
#~ msgstr "HFS"

#~ msgid "Windows"
#~ msgstr "Windows"

#~ msgid "Empty"
#~ msgstr "Празно"

#~ msgid "Filesystem types:"
#~ msgstr "Врста фајл система:"

#, fuzzy
#~ msgid "This partition is already empty"
#~ msgstr "Овој партицици није могуће променити величину"

#~ msgid "Use ``Unmount'' first"
#~ msgstr "Прво урадите ``Демонтирај''"

#~ msgid "Use ``%s'' instead"
#~ msgstr "Уместо тога пробајте ``%s''"

#~ msgid "Type"
#~ msgstr "Тип"

#~ msgid "Choose another partition"
#~ msgstr "Изаберите другу партицију"

#~ msgid "Choose a partition"
#~ msgstr "Изаберите партицију"

#~ msgid "Undo"
#~ msgstr "Поништи радњу"

#~ msgid "Toggle to normal mode"
#~ msgstr "Пређи на нормални мод"

#~ msgid "Toggle to expert mode"
#~ msgstr "Пређи на експерт мод"

#, fuzzy
#~ msgid "Confirmation"
#~ msgstr "LAN конфигурација"

#~ msgid "Continue anyway?"
#~ msgstr "Свеједно наставити ?"

#~ msgid "Quit without saving"
#~ msgstr "Крај без снимања промена"

#~ msgid "Quit without writing the partition table?"
#~ msgstr "Крај без снимања промена у табеле партиција?"

#~ msgid "Do you want to save /etc/fstab modifications"
#~ msgstr "Да ли хоћете да сачувате измене у /etc/fstab?"

#~ msgid ""
#~ "You need to reboot for the partition table modifications to take place"
#~ msgstr "Треба да ресетујете машину за примену измена у табели партиција"

#~ msgid "Clear all"
#~ msgstr "Очисти све"

#~ msgid "Auto allocate"
#~ msgstr "Ауто дислоцирање"

#~ msgid "More"
#~ msgstr "Још"

#~ msgid "Hard drive information"
#~ msgstr "Информације о хард диску"

#~ msgid "All primary partitions are used"
#~ msgstr "Све примарне партиције су заузете"

#~ msgid "I can not add any more partitions"
#~ msgstr "Не могу додати више ни једну партицију"

#~ msgid ""
#~ "To have more partitions, please delete one to be able to create an "
#~ "extended partition"
#~ msgstr ""
#~ "Да би омогућили креирање још (extended) партиција избришите једну од "
#~ "постојећих"

#~ msgid "Save partition table"
#~ msgstr "Сачувај табелу партиција"

#~ msgid "Restore partition table"
#~ msgstr "Обнови табелу партиција"

#~ msgid "Rescue partition table"
#~ msgstr "Спаси табелу партиција"

#~ msgid "Reload partition table"
#~ msgstr "Поново учитај табелу партиција"

#~ msgid "Removable media automounting"
#~ msgstr "Аутомонтирање преносивог медија"

#~ msgid "Select file"
#~ msgstr "Изаберите датотеку"

#~ msgid ""
#~ "The backup partition table has not the same size\n"
#~ "Still continue?"
#~ msgstr ""
#~ "Похрањена(снимљена) табела партиција није исте величине\n"
#~ "Желите да наставите ?"

#~ msgid "Trying to rescue partition table"
#~ msgstr "Спасавање табеле партиција"

#~ msgid "Detailed information"
#~ msgstr "Детаљне информације"

#~ msgid "Resize"
#~ msgstr "Промени величину"

#~ msgid "Format"
#~ msgstr "Форматирање"

#~ msgid "Add to RAID"
#~ msgstr "Додај на RAID"

#~ msgid "Add to LVM"
#~ msgstr "Додај на LVM"

#~ msgid "Delete"
#~ msgstr "Обриши"

#~ msgid "Remove from RAID"
#~ msgstr "Уклони са RAID-а"

#~ msgid "Remove from LVM"
#~ msgstr "Уклони са LVM-а"

#~ msgid "Modify RAID"
#~ msgstr "Промени RAID"

#~ msgid "Use for loopback"
#~ msgstr "Користи за loopback"

#~ msgid "Create"
#~ msgstr "Креирај"

#~ msgid "Create a new partition"
#~ msgstr "Креирај нову партицију"

#~ msgid "Start sector: "
#~ msgstr "Почетни сектор: "

#~ msgid "Size in MB: "
#~ msgstr "Величина у MB:"

#~ msgid "Filesystem type: "
#~ msgstr "Врста татотечног система:"

#~ msgid "Preference: "
#~ msgstr "Карактеристике: "

#, fuzzy
#~ msgid "Logical volume name "
#~ msgstr "Локална мера"

#~ msgid ""
#~ "You can not create a new partition\n"
#~ "(since you reached the maximal number of primary partitions).\n"
#~ "First remove a primary partition and create an extended partition."
#~ msgstr ""
#~ "Ви не можете да креирате нову партицију\n"
#~ "(пошто сте досегли максималан број примарних партиција).\n"
#~ "Прво уклоните примарну партицију а затим креирајте extended партицију."

#~ msgid "Remove the loopback file?"
#~ msgstr "Уклони loopback фајл ?"

#~ msgid ""
#~ "After changing type of partition %s, all data on this partition will be "
#~ "lost"
#~ msgstr ""
#~ "После промене типа партиције %s, сви подаци на овој партицији ће бити "
#~ "избрисани"

#~ msgid "Change partition type"
#~ msgstr "Промена типа партиције"

#~ msgid "Which filesystem do you want?"
#~ msgstr "Коју  датотечни систем желите ?"

#~ msgid "Switching from ext2 to ext3"
#~ msgstr "Мењам ext2 на ext3"

#, fuzzy
#~ msgid "Label:"
#~ msgstr "Ознака"

#~ msgid "Where do you want to mount the loopback file %s?"
#~ msgstr "Где бисте да монтирате loopback фајл %s?"

#~ msgid "Where do you want to mount device %s?"
#~ msgstr "Где бисте да монтирате %s уређај ?"

#~ msgid ""
#~ "Can not unset mount point as this partition is used for loop back.\n"
#~ "Remove the loopback first"
#~ msgstr ""
#~ "Демонтирање није могуће,јер се партиција корисити за loop back.\n"
#~ "Прво уклоните loopback"

#~ msgid "Where do you want to mount %s?"
#~ msgstr "Где бисте да монтирате %s уређај ?"

#~ msgid "Resizing"
#~ msgstr "Промена величине (resizing)"

#~ msgid "Computing FAT filesystem bounds"
#~ msgstr "Прорачунавам границе FAT датотечног система"

#~ msgid "This partition is not resizeable"
#~ msgstr "Овој партицици није могуће променити величину"

#~ msgid "All data on this partition should be backed-up"
#~ msgstr "Сви подаци на овој партицији би требали бити сачувани"

#~ msgid "After resizing partition %s, all data on this partition will be lost"
#~ msgstr "После промене величине %s партиције сви подаци ће бити избрисани"

#~ msgid "Choose the new size"
#~ msgstr "Изаберите нову величину"

#~ msgid "New size in MB: "
#~ msgstr "Нова величина у MB:"

#~ msgid ""
#~ "To ensure data integrity after resizing the partition(s), \n"
#~ "filesystem checks will be run on your next boot into Microsoft Windows®"
#~ msgstr ""
#~ "Да би осигурали интегритет након промене величине партиције(а), \n"
#~ "провера фајл система ће бити покренута када се следећи пут улогујете у "
#~ "Windows(TM)"

#~ msgid "Choose an existing RAID to add to"
#~ msgstr "Изабери постојећи RAID за додавање"

#~ msgid "new"
#~ msgstr "нови"

#~ msgid "Choose an existing LVM to add to"
#~ msgstr "Изабери постојећи LVM за додавање"

#~ msgid "LVM name?"
#~ msgstr "LVM име?"

#~ msgid "This partition can not be used for loopback"
#~ msgstr "Ова партиција не може бити коришћена за loopback "

#~ msgid "Loopback"
#~ msgstr "Loopback"

#~ msgid "Loopback file name: "
#~ msgstr "Име Loopback датотеке: "

#~ msgid "Give a file name"
#~ msgstr "Одредите име фајла"

#~ msgid "File is already used by another loopback, choose another one"
#~ msgstr "Фајл се већ користи од стране другог loopback-а,изаберите други"

#~ msgid "File already exists. Use it?"
#~ msgstr "Датотека већ постоји.Да ли да га користим ?"

#~ msgid "Mount options"
#~ msgstr "Опције монтирања"

#~ msgid "device"
#~ msgstr "уређај"

#~ msgid "level"
#~ msgstr "ниво"

#, fuzzy
#~ msgid "chunk size in KiB"
#~ msgstr "chunk величина"

#~ msgid "Be careful: this operation is dangerous."
#~ msgstr "ПАЖЉИВО,ова операција је опасна."

#~ msgid "What type of partitioning?"
#~ msgstr "Коју врсту партиционирања?"

#~ msgid "You'll need to reboot before the modification can take place"
#~ msgstr "Морате рестартовати рачунар да би се измене извршиле"

#~ msgid "Partition table of drive %s is going to be written to disk!"
#~ msgstr "Табела партиција за уређај %s ће бити записана на диск!"

#~ msgid ""
#~ "After formatting partition %s, all data on this partition will be lost"
#~ msgstr ""
#~ "После форматирања партиције %s,сви подаци на овој партицији ће бити "
#~ "избрисани"

#~ msgid "Check bad blocks?"
#~ msgstr "Провери лоше блокове ?"

#~ msgid "Move files to the new partition"
#~ msgstr "Премести фајлове на нову партицију"

#~ msgid "Hide files"
#~ msgstr "Сакриј фајлове"

#~ msgid "Moving files to the new partition"
#~ msgstr "Премештање фајлова на нову партицију"

#~ msgid "Copying %s"
#~ msgstr "Копирање %s"

#~ msgid "Removing %s"
#~ msgstr "Уклањање: %s"

#~ msgid "partition %s is now known as %s"
#~ msgstr "партиција %s је сада позната као %s"

#~ msgid "Device: "
#~ msgstr "Уређај: "

#~ msgid "DOS drive letter: %s (just a guess)\n"
#~ msgstr "Ознака DOS партиције: %s (само претпоставка)\n"

#~ msgid "Type: "
#~ msgstr "Унеси: "

#~ msgid "Name: "
#~ msgstr "Име: "

#~ msgid "Start: sector %s\n"
#~ msgstr "Почетак: сектор %s\n"

#~ msgid "Size: %s"
#~ msgstr "Величина: %s"

#~ msgid ", %s sectors"
#~ msgstr ", %s сектора"

#~ msgid "Cylinder %d to %d\n"
#~ msgstr "Цилиндар %d до %d\n"

#~ msgid "Formatted\n"
#~ msgstr "Форматирано\n"

#~ msgid "Not formatted\n"
#~ msgstr "Није форматирано\n"

#~ msgid "Mounted\n"
#~ msgstr "Монтирано\n"

#~ msgid "RAID %s\n"
#~ msgstr "RAID %s\n"

#~ msgid ""
#~ "Loopback file(s):\n"
#~ "   %s\n"
#~ msgstr ""
#~ "Loopback фајл(ови): \n"
#~ "   %s\n"

#~ msgid ""
#~ "Partition booted by default\n"
#~ "    (for MS-DOS boot, not for lilo)\n"
#~ msgstr ""
#~ "Boot партиција по default-у\n"
#~ "   (за подизање MS-DOS-а, не за lilo)\n"

#~ msgid "Level %s\n"
#~ msgstr "Ниво %s\n"

#, fuzzy
#~ msgid "Chunk size %d KiB\n"
#~ msgstr "Chunk-уј %s\n"

#~ msgid "RAID-disks %s\n"
#~ msgstr "RAID-дискови %s\n"

#~ msgid "Loopback file name: %s"
#~ msgstr "Име Loopback датотеке: %s"

#~ msgid ""
#~ "\n"
#~ "Chances are, this partition is\n"
#~ "a Driver partition. You should\n"
#~ "probably leave it alone.\n"
#~ msgstr ""
#~ "\n"
#~ "Највероватније је, да је ова партиција\n"
#~ "Driver партиција, па не би требали\n"
#~ "да је дирате.\n"

#~ msgid ""
#~ "\n"
#~ "This special Bootstrap\n"
#~ "partition is for\n"
#~ "dual-booting your system.\n"
#~ msgstr ""
#~ "\n"
#~ "Ово је специјална Bootstrap\n"
#~ "партиција и користи се\n"
#~ "dual-booting вашег система.\n"

#~ msgid "Read-only"
#~ msgstr "Само-читање"

#~ msgid "Size: %s\n"
#~ msgstr "Величина: %s\n"

#~ msgid "Geometry: %s cylinders, %s heads, %s sectors\n"
#~ msgstr "Геометрија: %s цилиндара, %s глава, %s сектора\n"

#~ msgid "Info: "
#~ msgstr "Инфо: "

#~ msgid "LVM-disks %s\n"
#~ msgstr "LVM-дискови %s\n"

#~ msgid "Partition table type: %s\n"
#~ msgstr "Тип табеле партиција: %s\n"

#~ msgid "on channel %d id %d\n"
#~ msgstr "на каналу %d ID %d\n"

#~ msgid "Filesystem encryption key"
#~ msgstr "Кључ за енкрипцију фајл система"

#~ msgid "Choose your filesystem encryption key"
#~ msgstr "Изаберите кључ за енкрипцију фајл система"

#~ msgid ""
#~ "This encryption key is too simple (must be at least %d characters long)"
#~ msgstr ""
#~ "Ова лозинка(енкрипциони кључ) је сувише једноставна (треба да има бар %d "
#~ "знакова)"

#~ msgid "The encryption keys do not match"
#~ msgstr "Неподударност енкрипционих кључева (лозинки)"

#~ msgid "Encryption key"
#~ msgstr "Кључ за енкрипцију"

#~ msgid "Encryption key (again)"
#~ msgstr "Кључ за енкрипцију (поново)"

#, fuzzy
#~ msgid "Encryption algorithm"
#~ msgstr "Аутентификација"

#~ msgid "Change type"
#~ msgstr "Промена типа"

#~ msgid "Can not login using username %s (bad password?)"
#~ msgstr "Не могу да улогујем корисничко име %s (неисправна лозинка?)"

#~ msgid "Domain Authentication Required"
#~ msgstr "Потребна Аутентификација Домена"

#~ msgid "Which username"
#~ msgstr "Које корисничко име"

#~ msgid "Another one"
#~ msgstr "Још један"

#~ msgid ""
#~ "Please enter your username, password and domain name to access this host."
#~ msgstr ""
#~ "Унесите своје корисничко име, лозинку и домен да би могли да приступите "
#~ "хосту."

#~ msgid "Username"
#~ msgstr "Корисничко име"

#~ msgid "Search servers"
#~ msgstr "Тражи сервере"

#, fuzzy
#~ msgid "Search new servers"
#~ msgstr "Тражи сервере"

#~ msgid "The package %s needs to be installed. Do you want to install it?"
#~ msgstr "Пакет %s мора бити инсталиран. Да ли желите да га инсталирате?"

#, fuzzy
#~ msgid "Could not install the %s package!"
#~ msgstr "Инсталирам пакет %s"

#~ msgid "Mandatory package %s is missing"
#~ msgstr "Текући пакет %s недостаје"

#~ msgid "The following packages need to be installed:\n"
#~ msgstr "Следећи пакети треба да буду инсталирани:\n"

#~ msgid "Installing packages..."
#~ msgstr "Инсталирам пакете..."

#, fuzzy
#~ msgid "Removing packages..."
#~ msgstr "Укањам %s ..."

#~ msgid ""
#~ "An error occurred - no valid devices were found on which to create new "
#~ "filesystems. Please check your hardware for the cause of this problem"
#~ msgstr ""
#~ "Догодила се грешка - није нађен исправан уређај на којем би били крерани "
#~ "нови датотечног системи. Проверите ваш хардвер да видите шта је узрок "
#~ "овог проблема."

#~ msgid "You must have a FAT partition mounted in /boot/efi"
#~ msgstr "Морате имати FAT партицију монтирану у /boot/efi"

#~ msgid "Formatting partition %s"
#~ msgstr "Форматирање партиције %s"

#~ msgid "Creating and formatting file %s"
#~ msgstr "Креирање и форматирање датотеке %s"

#~ msgid "I do not know how to format %s in type %s"
#~ msgstr "не знам како да форматирам %s у типу %s"

#~ msgid "%s formatting of %s failed"
#~ msgstr "%s Форматирање  %s није успело"

#~ msgid "Circular mounts %s\n"
#~ msgstr "Кружно монтирање  %s\n"

#~ msgid "Mounting partition %s"
#~ msgstr "Монтирам партицију %s"

#~ msgid "mounting partition %s in directory %s failed"
#~ msgstr "монтирање партиције %s у директоријум %s није успело"

#~ msgid "Checking %s"
#~ msgstr "Проверавам %s"

#~ msgid "error unmounting %s: %s"
#~ msgstr "Грешка при демонтирању %s: %s"

#~ msgid "Enabling swap partition %s"
#~ msgstr "Омогућавам swap партицију %s"

#, fuzzy
#~ msgid "Use an encrypted file system"
#~ msgstr "Не можете користити енкриптовани фајл систем за тачку монтирања %s"

#~ msgid "Duplicate mount point %s"
#~ msgstr "Дуплирана тачка монтирања %s"

#~ msgid "No partition available"
#~ msgstr "нема доступних партиција"

#~ msgid "Scanning partitions to find mount points"
#~ msgstr "Скенирање партиција за проналажење тачке монтирања"

#~ msgid "Choose the mount points"
#~ msgstr "Изаберите тачке монтирања"

#~ msgid "Choose the partitions you want to format"
#~ msgstr "Изабери партиције за форматирање"

#~ msgid ""
#~ "Failed to check filesystem %s. Do you want to repair the errors? (beware, "
#~ "you can lose data)"
#~ msgstr ""
#~ "Неуспешна првера фајл система %s. Да ли желите да поправите грешке? "
#~ "(будите пажљиви, можете изгубити податке)"

#~ msgid "Not enough swap space to fulfill installation, please add some"
#~ msgstr "Нема довољно swap-а да заврши инсталацију, додајте још swap-а"

#~ msgid ""
#~ "You must have a root partition.\n"
#~ "For this, create a partition (or click on an existing one).\n"
#~ "Then choose action ``Mount point'' and set it to `/'"
#~ msgstr ""
#~ "Морате имати  root партицију.\n"
#~ "За ово, креирајте партицију (или кликните на постојећу).\n"
#~ "Затим изаберите \"Тачка монтирања\" и подесите на `/'"

#~ msgid ""
#~ "You do not have a swap partition.\n"
#~ "\n"
#~ "Continue anyway?"
#~ msgstr ""
#~ "Хм, нема swap партиције\n"
#~ "\n"
#~ "Свеједно наставити даље ?"

#~ msgid "Use free space"
#~ msgstr "Користи слободан простор"

#~ msgid "Not enough free space to allocate new partitions"
#~ msgstr "Нема довољно слободног простора за алоцирање нових партиција"

#~ msgid "Use existing partitions"
#~ msgstr "Користи постојећу партицију"

#~ msgid "There is no existing partition to use"
#~ msgstr "Нема ни једне паритиције за рад"

#~ msgid "Use the Microsoft Windows® partition for loopback"
#~ msgstr "Користи Microsoft Windows® партицију за loopback"

#~ msgid "Which partition do you want to use for Linux4Win?"
#~ msgstr "Коју партицију желите да корисите за Linux4Win?"

#~ msgid "Choose the sizes"
#~ msgstr "Изаберите величину"

#~ msgid "Root partition size in MB: "
#~ msgstr "Величина Root партиције у MB:"

#~ msgid "Swap partition size in MB: "
#~ msgstr "Величина Swap партиције у MB:"

#~ msgid ""
#~ "There is no FAT partition to use as loopback (or not enough space left)"
#~ msgstr ""
#~ "Не постоје FAT партиције којима се може променити величина (или нема "
#~ "довољно слободног простора)"

#~ msgid "Use the free space on the Microsoft Windows® partition"
#~ msgstr "Корисити слободан простор на Windows партицији"

#~ msgid "Which partition do you want to resize?"
#~ msgstr "Којој партицији  желите да промените величину?"

#~ msgid ""
#~ "The FAT resizer is unable to handle your partition, \n"
#~ "the following error occurred: %s"
#~ msgstr ""
#~ "Програм за промену величине FAT паритција не може да управља вашом "
#~ "партицијом, \n"
#~ "због следеће грешке: %s"

#~ msgid "Computing the size of the Microsoft Windows® partition"
#~ msgstr "Прорачунавам величину Microsoft Windows® партиције"

#~ msgid ""
#~ "Your Microsoft Windows® partition is too fragmented. Please reboot your "
#~ "computer under Microsoft Windows®, run the ``defrag'' utility, then "
#~ "restart the Mandriva Linux installation."
#~ msgstr ""
#~ "Ваша Microsoft Windows® партиција је превише фрагментирана, прво "
#~ "покрените ``defrag''"

#~ msgid ""
#~ "WARNING!\n"
#~ "\n"
#~ "\n"
#~ "Your Microsoft Windows® partition will be now resized.\n"
#~ "\n"
#~ "\n"
#~ "Be careful: this operation is dangerous. If you have not already done so, "
#~ "you first need to exit the installation, run \"chkdsk c:\" from a Command "
#~ "Prompt under Microsoft Windows® (beware, running graphical program "
#~ "\"scandisk\" is not enough, be sure to use \"chkdsk\" in a Command "
#~ "Prompt!), optionally run defrag, then restart the installation. You "
#~ "should also backup your data.\n"
#~ "\n"
#~ "\n"
#~ "When sure, press %s."
#~ msgstr ""
#~ "УПОЗОРЕЊЕ!\n"
#~ "\n"
#~ "\n"
#~ "Ваша Microsoft Windows® партиција треба да променити своју величину.\n"
#~ "\n"
#~ "\n"
#~ "Будите пажљиви: ова операција је опасна. Уколико то до сада нисте радили, "
#~ "прво треба да изађете из инсталације,покренете run \"chkdsk c:\" из "
#~ "команде линије под Microsoft Windows® (пажња, покретање графичког "
#~ "програма \"scandisk\" није довољно, па би зато требали да користите "
#~ "\"chkdsk\" у командној линији!), можете покренути и  defrag, а затим онда "
#~ "поново покрените инсталацију.\n"
#~ "Такође би требали да урадите бекап својих података.\n"
#~ "\n"
#~ "\n"
#~ "Ако сте сигурни, притисните %s."

#~ msgid "Next"
#~ msgstr "Следећи "

#, fuzzy
#~ msgid ""
#~ "Which size do you want to keep for Microsoft Windows® on partition %s?"
#~ msgstr "Коју величину желите да задржите за прозоре"

#, fuzzy
#~ msgid "Size"
#~ msgstr "Величина: %s"

#~ msgid "Resizing Microsoft Windows® partition"
#~ msgstr "Прорачунавам границе Microsoft Windows® фајл-система"

#~ msgid "FAT resizing failed: %s"
#~ msgstr "FAT измена величине неуспела: %s"

#~ msgid "There is no FAT partition to resize (or not enough space left)"
#~ msgstr ""
#~ "Не постоје FAT партиције којима се може променити величина  (или нема "
#~ "довољно слободног простора)"

#~ msgid "Remove Microsoft Windows®"
#~ msgstr "Уклони Microsoft Windows®"

#~ msgid "Erase and use entire disk"
#~ msgstr "Избриши и употреби цео диск"

#~ msgid ""
#~ "You have more than one hard drive, which one do you install linux on?"
#~ msgstr ""
#~ "Имате више од једног хард диска, на који од њих желите да инсталирате "
#~ "Линукс ?"

#~ msgid "ALL existing partitions and their data will be lost on drive %s"
#~ msgstr "СВЕ постојеће партиције и подаци на диску %s ће бити изгубљени"

#~ msgid "Custom disk partitioning"
#~ msgstr "Custom диск партиционирање"

#~ msgid "Use fdisk"
#~ msgstr "Користи fdisk"

#~ msgid ""
#~ "You can now partition %s.\n"
#~ "When you are done, do not forget to save using `w'"
#~ msgstr ""
#~ "Сада можете партиционирати ваш %s хард диск уређај\n"
#~ "Када завршите,не заборавите да потврдите користећи `w'"

#~ msgid "I can not find any room for installing"
#~ msgstr "Не могу да пронађем слободан простор за инсталирање"

#~ msgid "The DrakX Partitioning wizard found the following solutions:"
#~ msgstr "DrakX чаробњак за партиционирање је пронашао следећа решења:"

#~ msgid "Partitioning failed: %s"
#~ msgstr "Партиционирање није успело: %s"

#~ msgid "You can not use JFS for partitions smaller than 16MB"
#~ msgstr "Не можете користити JFS за партиције мање од 16MB"

#~ msgid "You can not use ReiserFS for partitions smaller than 32MB"
#~ msgstr "Не можете користити ReiserFS за партиције мање од 32MB"

#~ msgid "with /usr"
#~ msgstr "са /usr"

#~ msgid "server"
#~ msgstr "сервер"

#~ msgid ""
#~ "I can not read the partition table of device %s, it's too corrupted for "
#~ "me :(\n"
#~ "I can try to go on, erasing over bad partitions (ALL DATA will be "
#~ "lost!).\n"
#~ "The other solution is to not allow DrakX to modify the partition table.\n"
#~ "(the error is %s)\n"
#~ "\n"
#~ "Do you agree to lose all the partitions?\n"
#~ msgstr ""
#~ "Не могу прочитати табелу партиција уређај %s , много је искварена за "
#~ "мене :(\n"
#~ "Покушаћу даље заобилазећи лоше партицијеМогу покушати да форматирам лоше "
#~ "партиције (СВИ ПОДАЦИ ће бити изгубљени !).\n"
#~ "Друго решење је да се DrakX онемогући да модуфикује табелу партиција.\n"
#~ "(грешка је %s)\n"
#~ "\n"
#~ "Да ли се пристајете да изгубите све партиције?\n"

#~ msgid "Mount points must begin with a leading /"
#~ msgstr "Тачке монтирања морају да почињу са водећим /"

#~ msgid "Mount points should contain only alphanumerical characters"
#~ msgstr "Тачке монтирања треба да садрже само алфанумеричке карактере"

#~ msgid "There is already a partition with mount point %s\n"
#~ msgstr "Већ постоји партиција са тачком монтирања %s\n"

#~ msgid ""
#~ "You've selected a software RAID partition as root (/).\n"
#~ "No bootloader is able to handle this without a /boot partition.\n"
#~ "Please be sure to add a /boot partition"
#~ msgstr ""
#~ "Изабрали сте софтверску RAID партицију као root (/).\n"
#~ "Ниједан стартер не може да ради са тим без /boot партиције.\n"
#~ "Зато треба да додате /boot партицију"

#, fuzzy
#~ msgid ""
#~ "You can not use the LVM Logical Volume for mount point %s since it spans "
#~ "physical volumes"
#~ msgstr "Не можете користити логичку LVM партицију за тачку монтирања %s"

#, fuzzy
#~ msgid ""
#~ "You've selected the LVM Logical Volume as root (/).\n"
#~ "The bootloader is not able to handle this when the volume spans physical "
#~ "volumes.\n"
#~ "You should create a /boot partition first"
#~ msgstr ""
#~ "Изабрали сте софтверску RAID партицију као root (/).\n"
#~ "Ниједан стартер не може да ради са тим без /boot партиције.\n"
#~ "Зато треба да додате /boot партицију"

#~ msgid "This directory should remain within the root filesystem"
#~ msgstr "Овај директоријум треба да остане у root-у  датотечног система"

#~ msgid ""
#~ "You need a true filesystem (ext2/ext3, reiserfs, xfs, or jfs) for this "
#~ "mount point\n"
#~ msgstr ""
#~ "Потребан вам је прави датотечни систем (ext2/ext3, reiserfs, xfs, или "
#~ "jfs) за ову тачку монтирања\n"

#~ msgid "You can not use an encrypted file system for mount point %s"
#~ msgstr "Не можете користити енкриптовани фајл систем за тачку монтирања %s"

#~ msgid "Not enough free space for auto-allocating"
#~ msgstr "Нема довољно слободног простора за ауто-алоцирање"

#~ msgid "Nothing to do"
#~ msgstr "Нема шта да се уради"

#~ msgid "Floppy"
#~ msgstr "Флопи"

#~ msgid "Zip"
#~ msgstr "Зип"

#~ msgid "Hard Disk"
#~ msgstr "Диск"

#~ msgid "CDROM"
#~ msgstr "CDROM"

#~ msgid "CD/DVD burners"
#~ msgstr "CD/DVD резачи"

#~ msgid "DVD-ROM"
#~ msgstr "DVD-ROM"

#~ msgid "Tape"
#~ msgstr "Трака"

#~ msgid "AGP controllers"
#~ msgstr "AGP контролери"

#~ msgid "Videocard"
#~ msgstr "Видео картица"

#~ msgid "Tvcard"
#~ msgstr "ТВ картица"

#~ msgid "Other MultiMedia devices"
#~ msgstr "Други мултимедијални уређаји"

#~ msgid "Soundcard"
#~ msgstr "Звучна картица"

#~ msgid "Webcam"
#~ msgstr "Веб камера"

#~ msgid "Processors"
#~ msgstr "Процесори"

#, fuzzy
#~ msgid "ISDN adapters"
#~ msgstr "Интерна  ISDN картица"

#~ msgid "Ethernetcard"
#~ msgstr "Мрежна картица"

#~ msgid "Modem"
#~ msgstr "Модем"

#~ msgid "Memory"
#~ msgstr "Меморија"

#~ msgid "Printer"
#~ msgstr "Штампач"

#~ msgid "Joystick"
#~ msgstr "Џојстик"

#~ msgid "SATA controllers"
#~ msgstr "SATA контролери"

#~ msgid "RAID controllers"
#~ msgstr "RAID контролери"

#~ msgid "(E)IDE/ATA controllers"
#~ msgstr "(E)IDE/ATA контролери"

#~ msgid "Firewire controllers"
#~ msgstr "Firewire контролери"

#~ msgid "PCMCIA controllers"
#~ msgstr "PCMCIA контролери"

#~ msgid "SCSI controllers"
#~ msgstr "SCSI контролери"

#~ msgid "USB controllers"
#~ msgstr "USB контролери"

#, fuzzy
#~ msgid "USB ports"
#~ msgstr ", USB штампач"

#~ msgid "SMBus controllers"
#~ msgstr "SMBus контролери"

#~ msgid "Bridges and system controllers"
#~ msgstr "Мостови и системски контролери"

#~ msgid "Mouse"
#~ msgstr "Миш"

#~ msgid "UPS"
#~ msgstr "UPS"

#~ msgid "Scanner"
#~ msgstr "Скенер"

#~ msgid "Unknown/Others"
#~ msgstr "Непознати/Остали"

#~ msgid "cpu # "
#~ msgstr "cpu # "

#~ msgid "Please Wait... Applying the configuration"
#~ msgstr "Само моменат... примена конфигурације"

#~ msgid "No alternative driver"
#~ msgstr "Нема алтернативног драјвера"

#~ msgid ""
#~ "There's no known OSS/ALSA alternative driver for your sound card (%s) "
#~ "which currently uses \"%s\""
#~ msgstr ""
#~ "Не постоји познати алтернативни OSS/ALSA драјвер за вашу звучну картицу "
#~ "(%s) која тренутно користи \"%s\""

#~ msgid ""
#~ "Here you can select an alternative driver (either OSS or ALSA) for your "
#~ "sound card (%s)."
#~ msgstr ""
#~ "Овде можете изабрати алтернативни драјвер (или OSS или ALSA) за своју "
#~ "звучну картицу (%s)."

#~ msgid ""
#~ "\n"
#~ "\n"
#~ "Your card currently use the %s\"%s\" driver (default driver for your card "
#~ "is \"%s\")"
#~ msgstr ""
#~ "\n"
#~ "\n"
#~ "Ваша картица тренутно користи %s\"%s\" драјвер (default драјвер за вашу "
#~ "картицу је \"%s\")"

#, fuzzy
#~ msgid ""
#~ "OSS (Open Sound System) was the first sound API. It's an OS independent "
#~ "sound API (it's available on most UNIX(tm) systems) but it's a very basic "
#~ "and limited API.\n"
#~ "What's more, OSS drivers all reinvent the wheel.\n"
#~ "\n"
#~ "ALSA (Advanced Linux Sound Architecture) is a modularized architecture "
#~ "which\n"
#~ "supports quite a large range of ISA, USB and PCI cards.\n"
#~ "\n"
#~ "It also provides a much higher API than OSS.\n"
#~ "\n"
#~ "To use alsa, one can either use:\n"
#~ "- the old compatibility OSS api\n"
#~ "- the new ALSA api that provides many enhanced features but requires "
#~ "using the ALSA library.\n"
#~ msgstr ""
#~ "OSS (Отворени Систем за Звук)је био прву звучни API. Он је независан "
#~ "звучни API у односу на оперативни систем(доступан је на већини unices "
#~ "система) али је прилично рудименаран и ограничен API.\n"
#~ "Чак шта више, већина драјвера као да поново откирва точак \n"
#~ "\n"
#~ "ALSA (Advanced Linux Sound Architecture) је модуларне архитектуре који\n"
#~ "подржава велики број ISA, USB и PCI картица.\n"
#~ "\n"
#~ "Он такође обезбеђује много већи API у односу на  OSS.\n"
#~ "\n"
#~ "Да би користили alsa, можете користи или:\n"
#~ "- стари компатибилни OSS api\n"
#~ "- нови ALSA api који омогућава много напредне могућности али захтева "
#~ "коришћење ALSA библиотеке.\n"

#~ msgid "Driver:"
#~ msgstr "Драјвер:"

#~ msgid "Trouble shooting"
#~ msgstr "Помоћ "

#~ msgid ""
#~ "The old \"%s\" driver is blacklisted.\n"
#~ "\n"
#~ "It has been reported to oops the kernel on unloading.\n"
#~ "\n"
#~ "The new \"%s\" driver will only be used on next bootstrap."
#~ msgstr ""
#~ "Стари \"%s\" драјвер је на црној листи.\n"
#~ "\n"
#~ "Пријављено је да опструише кернел при рестартовању.\n"
#~ "\n"
#~ "Нови \"%s\" драјвер ће бити коришћен само при следећем стартању система."

#~ msgid "No open source driver"
#~ msgstr "Нема open source драјвера"

#~ msgid ""
#~ "There's no free driver for your sound card (%s), but there's a "
#~ "proprietary driver at \"%s\"."
#~ msgstr ""
#~ "Не постоји бесплатан драјвер за вашу звучну картицу (%s), али постоји "
#~ "лиценцирани драјвер на \"%s\"."

#~ msgid "No known driver"
#~ msgstr "Нема познатог драјвера"

#~ msgid "There's no known driver for your sound card (%s)"
#~ msgstr "Не постоји познати драјвер за вашу звучну картицу (%s)"

#~ msgid "Unknown driver"
#~ msgstr "Непознати драјвер"

#~ msgid "Error: The \"%s\" driver for your sound card is unlisted"
#~ msgstr "Грешка: драјвер \"%s\" за  вашу звучну картицу није приказан"

#~ msgid "Sound trouble shooting"
#~ msgstr "Помоћ за подешавање звука"

#~ msgid ""
#~ "The classic bug sound tester is to run the following commands:\n"
#~ "\n"
#~ "\n"
#~ "- \"lspcidrake -v | fgrep AUDIO\" will tell you which driver your card "
#~ "uses\n"
#~ "by default\n"
#~ "\n"
#~ "- \"grep sound-slot /etc/modprobe.conf\" will tell you what driver it\n"
#~ "currently uses\n"
#~ "\n"
#~ "- \"/sbin/lsmod\" will enable you to check if its module (driver) is\n"
#~ "loaded or not\n"
#~ "\n"
#~ "- \"/sbin/chkconfig --list sound\" and \"/sbin/chkconfig --list alsa\" "
#~ "will\n"
#~ "tell you if sound and alsa services're configured to be run on\n"
#~ "initlevel 3\n"
#~ "\n"
#~ "- \"aumix -q\" will tell you if the sound volume is muted or not\n"
#~ "\n"
#~ "- \"/sbin/fuser -v /dev/dsp\" will tell which program uses the sound "
#~ "card.\n"
#~ msgstr ""
#~ "Класични тестер звука треба да покрене следеће команде:\n"
#~ "\n"
#~ "\n"
#~ "- \"lspcidrake -v | fgrep AUDIO\" ће вам рећи који драјвер ваша звучна "
#~ "картица користи \n"
#~ "по default-у\n"
#~ "\n"
#~ "- \"grep sound-slot /etc/modprobe.conf\" ће вам рећи који је драјвер "
#~ "тренутно\n"
#~ "у употреби\n"
#~ "\n"
#~ "- \"/sbin/lsmod\" ће вам омогућити да проверите да ли његов је драјверов "
#~ "модул\n"
#~ "учитан или није\n"
#~ "\n"
#~ "- \"/sbin/chkconfig --list sound\" and \"/sbin/chkconfig --list alsa\" "
#~ "ће\n"
#~ "вам рећи да ли су сервер за звук и alsa подешени за покретање у\n"
#~ "initlevel 3\n"
#~ "\n"
#~ "- \"aumix -q\" ће вам рећи какав је ниво јачине звука\n"
#~ "\n"
#~ "- \"/sbin/fuser -v /dev/dsp\" ће вам рећи који програм користи ѕвучну "
#~ "картицу.\n"

#~ msgid "Let me pick any driver"
#~ msgstr "Доозволи да изаберем било који уређај"

#~ msgid "Choosing an arbitrary driver"
#~ msgstr "Бирам одговарајући драјвер"

#~ msgid ""
#~ "If you really think that you know which driver is the right one for your "
#~ "card\n"
#~ "you can pick one in the above list.\n"
#~ "\n"
#~ "The current driver for your \"%s\" sound card is \"%s\" "
#~ msgstr ""
#~ "Уколико заиста мислите да знате који је прави драјвер за вашу картицу\n"
#~ "можете изабрати једну са горње листе.\n"
#~ "\n"
#~ "Тренутни драјвер за вашу \"%s\" звучну картицу је \"%s\" "

#~ msgid "Auto-detect"
#~ msgstr "Ауто-детекција"

#~ msgid "Unknown|Generic"
#~ msgstr "Непознати|Generic"

#~ msgid "Unknown|CPH05X (bt878) [many vendors]"
#~ msgstr "Непознати|CPH05X (bt878) [многи произвођачи]"

#~ msgid "Unknown|CPH06X (bt878) [many vendors]"
#~ msgstr "Непознати|CPH06X (bt878) [многи произвођачи]"

#~ msgid ""
#~ "For most modern TV cards, the bttv module of the GNU/Linux kernel just "
#~ "auto-detect the rights parameters.\n"
#~ "If your card is misdetected, you can force the right tuner and card types "
#~ "here. Just select your tv card parameters if needed."
#~ msgstr ""
#~ "За већину модерних ТВ картица, bttv модул GNU/Linux кернела једноставно "
#~ "ауто-детектује праве параметре.\n"
#~ "Уколико је картица погрешно детектована, овде можете да подесите прави "
#~ "тјунер и тип картице. Само селектујте параметре за вашу TV картицу ако је "
#~ "потребно"

#~ msgid "Card model:"
#~ msgstr "Модел картице :"

#~ msgid "Tuner type:"
#~ msgstr "Тип тјунера :"

#~ msgid "Number of capture buffers:"
#~ msgstr "Број capture buffer-а :"

#~ msgid "number of capture buffers for mmap'ed capture"
#~ msgstr "број capture buffer-а за mmap'ed capture"

#~ msgid "PLL setting:"
#~ msgstr "PLL опције :"

#~ msgid "Radio support:"
#~ msgstr "Подршка за радио :"

#~ msgid "enable radio support"
#~ msgstr "омогући подршку за радио"

#~ msgid "No"
#~ msgstr "Не"

#~ msgid "Choose a file"
#~ msgstr "Изаберите фајл"

#~ msgid "Add"
#~ msgstr "Додај"

#~ msgid "Modify"
#~ msgstr "Промени"

#~ msgid "Remove"
#~ msgstr "Уклони"

#~ msgid "Finish"
#~ msgstr "Крај"

#~ msgid "Previous"
#~ msgstr "Претходни"

#~ msgid "Bad choice, try again\n"
#~ msgstr "Лош избор, пробајте поново\n"

#~ msgid "Your choice? (default %s) "
#~ msgstr "Ваш избор ? (по default-у %s) "

#~ msgid ""
#~ "Entries you'll have to fill:\n"
#~ "%s"
#~ msgstr ""
#~ "Уноси које треба да попуните:\n"
#~ "%s"

#~ msgid "Your choice? (0/1, default `%s') "
#~ msgstr "Ваш избор? (0/1, default `%s') "

#~ msgid "Button `%s': %s"
#~ msgstr "Тастер `%s': %s"

#~ msgid "Do you want to click on this button?"
#~ msgstr "Да ли желите да кликнете на овај тастер? "

#~ msgid "Your choice? (default `%s'%s) "
#~ msgstr "Ваш избор? (default `%s'%s) "

#~ msgid " enter `void' for void entry"
#~ msgstr " унесите `void' за void унос"

#~ msgid "=> There are many things to choose from (%s).\n"
#~ msgstr "=> Постоји много ствари за избор из (%s).\n"

#~ msgid ""
#~ "Please choose the first number of the 10-range you wish to edit,\n"
#~ "or just hit Enter to proceed.\n"
#~ "Your choice? "
#~ msgstr ""
#~ "Изаберите први број од 10 које желите да едитујете,\n"
#~ "или само кликните на Enter да би наставили.\n"
#~ "Ваш избор? "

#~ msgid ""
#~ "=> Notice, a label changed:\n"
#~ "%s"
#~ msgstr ""
#~ "=> Напомена, промењено име:\n"
#~ "%s"

#~ msgid "Re-submit"
#~ msgstr "Re-submit"

#~ msgid "default:LTR"
#~ msgstr "default:LTR"

#~ msgid "Andorra"
#~ msgstr "Андора"

#~ msgid "United Arab Emirates"
#~ msgstr "Уједињени Арапски Емирати"

#~ msgid "Afghanistan"
#~ msgstr "Авганистан"

#~ msgid "Antigua and Barbuda"
#~ msgstr "Антигва и Барбуда"

#~ msgid "Anguilla"
#~ msgstr "Анигла"

#~ msgid "Albania"
#~ msgstr "Албанија"

#~ msgid "Armenia"
#~ msgstr "Јерменија"

#~ msgid "Netherlands Antilles"
#~ msgstr "Холандски Антили"

#~ msgid "Angola"
#~ msgstr "Ангола"

#~ msgid "Antarctica"
#~ msgstr "Антартик"

#~ msgid "Argentina"
#~ msgstr "Аргентина"

#~ msgid "American Samoa"
#~ msgstr "Америчка Самоа"

#~ msgid "Austria"
#~ msgstr "Аустрија"

#~ msgid "Australia"
#~ msgstr "Аустралија"

#~ msgid "Aruba"
#~ msgstr "Аруба"

#~ msgid "Azerbaijan"
#~ msgstr "Азербејџан"

#~ msgid "Bosnia and Herzegovina"
#~ msgstr "Босна и Хрецеговина"

#~ msgid "Barbados"
#~ msgstr "Барбадос"

#~ msgid "Bangladesh"
#~ msgstr "Бангладеш"

#~ msgid "Belgium"
#~ msgstr "Белгија"

#~ msgid "Burkina Faso"
#~ msgstr "Буркина Фасо"

#~ msgid "Bulgaria"
#~ msgstr "Бугарска"

#~ msgid "Bahrain"
#~ msgstr "Бахреин"

#~ msgid "Burundi"
#~ msgstr "Бурунди"

#~ msgid "Benin"
#~ msgstr "Бенин"

#~ msgid "Bermuda"
#~ msgstr "Бермуда"

#~ msgid "Brunei Darussalam"
#~ msgstr "Брунеји Darussalam"

#~ msgid "Bolivia"
#~ msgstr "Боливија"

#~ msgid "Brazil"
#~ msgstr "Бразил"

#~ msgid "Bahamas"
#~ msgstr "Бахами"

#~ msgid "Bhutan"
#~ msgstr "Бутан"

#~ msgid "Bouvet Island"
#~ msgstr "Острва Буве"

#~ msgid "Botswana"
#~ msgstr "Боцвана"

#~ msgid "Belarus"
#~ msgstr "Беолорусија"

#~ msgid "Belize"
#~ msgstr "Белизе"

#~ msgid "Canada"
#~ msgstr "Канада"

#~ msgid "Cocos (Keeling) Islands"
#~ msgstr "Кокос (Келингова) Острва"

#~ msgid "Congo (Kinshasa)"
#~ msgstr "Конго (Киншаса)"

#~ msgid "Central African Republic"
#~ msgstr "Централно Афричка Република"

#~ msgid "Congo (Brazzaville)"
#~ msgstr "Конго (Бразавил)"

#~ msgid "Switzerland"
#~ msgstr "Швајцарска"

#~ msgid "Cote d'Ivoire"
#~ msgstr "Обала слоноваче"

#~ msgid "Cook Islands"
#~ msgstr "Кукова Острва"

#~ msgid "Chile"
#~ msgstr "Чиле"

#~ msgid "Cameroon"
#~ msgstr "Камерун"

#~ msgid "China"
#~ msgstr "Кина"

#~ msgid "Colombia"
#~ msgstr "Колумбија"

#~ msgid "Costa Rica"
#~ msgstr "Костарика"

#~ msgid "Serbia & Montenegro"
#~ msgstr "Србија и Црна Гора"

#~ msgid "Cuba"
#~ msgstr "Куба"

#~ msgid "Cape Verde"
#~ msgstr "Капе Верде"

#~ msgid "Christmas Island"
#~ msgstr "Ускршња острава"

#~ msgid "Cyprus"
#~ msgstr "Кипар"

#~ msgid "Czech Republic"
#~ msgstr "Чешка"

#~ msgid "Germany"
#~ msgstr "Немачка"

#~ msgid "Djibouti"
#~ msgstr "Џибути"

#~ msgid "Denmark"
#~ msgstr "Данска"

#~ msgid "Dominica"
#~ msgstr "Доминикана"

#~ msgid "Dominican Republic"
#~ msgstr "Доминиканска Република"

#~ msgid "Algeria"
#~ msgstr "Алжир"

#~ msgid "Ecuador"
#~ msgstr "Еквадор"

#~ msgid "Estonia"
#~ msgstr "Естонија"

#~ msgid "Egypt"
#~ msgstr "Египат"

#~ msgid "Western Sahara"
#~ msgstr "Западна Сахара"

#~ msgid "Eritrea"
#~ msgstr "Еритреја"

#~ msgid "Spain"
#~ msgstr "Шпанија"

#~ msgid "Ethiopia"
#~ msgstr "Етиопија"

#~ msgid "Finland"
#~ msgstr "Финска"

#~ msgid "Fiji"
#~ msgstr "Фиџи"

#~ msgid "Falkland Islands (Malvinas)"
#~ msgstr "Фокландска Острва"

#~ msgid "Micronesia"
#~ msgstr "Микронезија"

#~ msgid "Faroe Islands"
#~ msgstr "Фарска Острва"

#~ msgid "France"
#~ msgstr "Француска"

#~ msgid "Gabon"
#~ msgstr "Габон"

#~ msgid "United Kingdom"
#~ msgstr "Велика Британија"

#~ msgid "Grenada"
#~ msgstr "Гренада"

#~ msgid "Georgia"
#~ msgstr "Грузија"

#~ msgid "French Guiana"
#~ msgstr "Француска Гвајана"

#~ msgid "Ghana"
#~ msgstr "Гана"

#~ msgid "Gibraltar"
#~ msgstr "Гилбратлар"

#~ msgid "Greenland"
#~ msgstr "Гренланд"

#~ msgid "Gambia"
#~ msgstr "Гамбија"

#~ msgid "Guinea"
#~ msgstr "Гвинеја"

#~ msgid "Guadeloupe"
#~ msgstr "Гвадалупе"

#~ msgid "Equatorial Guinea"
#~ msgstr "Екваторијална Гвинеја"

#~ msgid "Greece"
#~ msgstr "Грчка"

#~ msgid "South Georgia and the South Sandwich Islands"
#~ msgstr "Јужна Џорџија и Јужна Сендвичка Острва"

#~ msgid "Guatemala"
#~ msgstr "Гватемала"

#~ msgid "Guam"
#~ msgstr "Гуам"

#~ msgid "Guinea-Bissau"
#~ msgstr "Гвинеја-Бисао"

#~ msgid "Guyana"
#~ msgstr "Гвајана"

#, fuzzy
#~ msgid "Hong Kong SAR (China)"
#~ msgstr "Хонг Конг"

#~ msgid "Heard and McDonald Islands"
#~ msgstr "Хердова и McDonald Острва"

#~ msgid "Honduras"
#~ msgstr "Хондурас"

#~ msgid "Croatia"
#~ msgstr "Хрватска"

#~ msgid "Haiti"
#~ msgstr "Хаити"

#~ msgid "Hungary"
#~ msgstr "Мађарска"

#~ msgid "Indonesia"
#~ msgstr "Индонезија"

#~ msgid "Ireland"
#~ msgstr "Ирска"

#~ msgid "Israel"
#~ msgstr "Израел"

#~ msgid "India"
#~ msgstr "Индија"

#~ msgid "British Indian Ocean Territory"
#~ msgstr "Британска Индијска Океанска Територија"

#~ msgid "Iraq"
#~ msgstr "Ирак"

#~ msgid "Iran"
#~ msgstr "Иран"

#~ msgid "Iceland"
#~ msgstr "Исланд"

#~ msgid "Italy"
#~ msgstr "Италија"

#~ msgid "Jamaica"
#~ msgstr "Јамајка"

#~ msgid "Jordan"
#~ msgstr "Јордан"

#~ msgid "Japan"
#~ msgstr "Јапан"

#~ msgid "Kenya"
#~ msgstr "Кенија"

#~ msgid "Kyrgyzstan"
#~ msgstr "Киргистан"

#~ msgid "Cambodia"
#~ msgstr "Камбоџа"

#~ msgid "Kiribati"
#~ msgstr "Кирибати"

#~ msgid "Comoros"
#~ msgstr "Комори"

#~ msgid "Saint Kitts and Nevis"
#~ msgstr "Свети Китс и Невис"

#~ msgid "Korea (North)"
#~ msgstr "Кореја (Северна)"

#~ msgid "Korea"
#~ msgstr "Кореја"

#~ msgid "Kuwait"
#~ msgstr "Кувајт"

#~ msgid "Cayman Islands"
#~ msgstr "Кајманска Острва"

#~ msgid "Kazakhstan"
#~ msgstr "Казахстан"

#~ msgid "Laos"
#~ msgstr "Лаос"

#~ msgid "Lebanon"
#~ msgstr "Либан"

#~ msgid "Saint Lucia"
#~ msgstr "Света Луција"

#~ msgid "Liechtenstein"
#~ msgstr "Лихтенштајн"

#~ msgid "Sri Lanka"
#~ msgstr "Шри Ланка"

#~ msgid "Liberia"
#~ msgstr "Либерија"

#~ msgid "Lesotho"
#~ msgstr "Лесото"

#~ msgid "Lithuania"
#~ msgstr "Литванија"

#~ msgid "Luxembourg"
#~ msgstr "Луксембург"

#~ msgid "Latvia"
#~ msgstr "Летонија"

#~ msgid "Libya"
#~ msgstr "Либија"

#~ msgid "Morocco"
#~ msgstr "Мароко"

#~ msgid "Monaco"
#~ msgstr "Монако"

#~ msgid "Moldova"
#~ msgstr "Молдавија"

#~ msgid "Madagascar"
#~ msgstr "Мадагаскар"

#~ msgid "Marshall Islands"
#~ msgstr "Маршалова Острва"

#~ msgid "Macedonia"
#~ msgstr "Македонија"

#~ msgid "Mali"
#~ msgstr "Мали"

#~ msgid "Myanmar"
#~ msgstr "Мианмар (Бурма)"

#~ msgid "Mongolia"
#~ msgstr "Монголија"

#~ msgid "Northern Mariana Islands"
#~ msgstr "Северно Маријанска Острва"

#~ msgid "Martinique"
#~ msgstr "Мартиник"

#~ msgid "Mauritania"
#~ msgstr "Мауританија"

#~ msgid "Montserrat"
#~ msgstr "Монсерат"

#~ msgid "Malta"
#~ msgstr "Малта"

#~ msgid "Mauritius"
#~ msgstr "Маурицијус"

#~ msgid "Maldives"
#~ msgstr "Малдиви"

#~ msgid "Malawi"
#~ msgstr "Малави"

#~ msgid "Mexico"
#~ msgstr "Мексико"

#~ msgid "Malaysia"
#~ msgstr "Малезија"

#~ msgid "Mozambique"
#~ msgstr "Мозамбик"

#~ msgid "Namibia"
#~ msgstr "Намибија"

#~ msgid "New Caledonia"
#~ msgstr "Нова Каледонија"

#~ msgid "Niger"
#~ msgstr "Нигер"

#~ msgid "Norfolk Island"
#~ msgstr "Норфолк Острва"

#~ msgid "Nigeria"
#~ msgstr "Нигерија"

#~ msgid "Nicaragua"
#~ msgstr "Никарагва"

#~ msgid "Netherlands"
#~ msgstr "Холандија"

#~ msgid "Norway"
#~ msgstr "Норвешка"

#~ msgid "Nepal"
#~ msgstr "Непал"

#~ msgid "Nauru"
#~ msgstr "Науру"

#~ msgid "Niue"
#~ msgstr "Niue"

#~ msgid "New Zealand"
#~ msgstr "НОви Зеланд"

#~ msgid "Oman"
#~ msgstr "Оман"

#~ msgid "Panama"
#~ msgstr "Панама"

#~ msgid "Peru"
#~ msgstr "Перу"

#~ msgid "French Polynesia"
#~ msgstr "Франсуска Полинезија"

#~ msgid "Papua New Guinea"
#~ msgstr "Папуа Нова Гвинеја"

#~ msgid "Philippines"
#~ msgstr "Филипини"

#~ msgid "Pakistan"
#~ msgstr "Пакистан"

#~ msgid "Poland"
#~ msgstr "Пољска"

#~ msgid "Saint Pierre and Miquelon"
#~ msgstr "Свети Пјер и Микелон"

#~ msgid "Pitcairn"
#~ msgstr "Pitcairn"

#~ msgid "Puerto Rico"
#~ msgstr "Порто Рико"

#~ msgid "Palestine"
#~ msgstr "Палестина"

#~ msgid "Portugal"
#~ msgstr "Португал"

#~ msgid "Paraguay"
#~ msgstr "Парагвај"

#~ msgid "Palau"
#~ msgstr "Палау"

#~ msgid "Qatar"
#~ msgstr "Катар"

#~ msgid "Reunion"
#~ msgstr "Reunion"

#~ msgid "Romania"
#~ msgstr "Румунија"

#~ msgid "Russia"
#~ msgstr "Русија"

#~ msgid "Rwanda"
#~ msgstr "Руанда"

#~ msgid "Saudi Arabia"
#~ msgstr "Саудијска Арабија"

#~ msgid "Solomon Islands"
#~ msgstr "Соломонова Острва"

#~ msgid "Seychelles"
#~ msgstr "Сејшели"

#~ msgid "Sudan"
#~ msgstr "Судан"

#~ msgid "Sweden"
#~ msgstr "Шведска"

#~ msgid "Singapore"
#~ msgstr "Сингапур"

#~ msgid "Saint Helena"
#~ msgstr "Света Јелена"

#~ msgid "Slovenia"
#~ msgstr "Словенија"

#~ msgid "Svalbard and Jan Mayen Islands"
#~ msgstr "Svalbard and Jan Mayen Islands"

#~ msgid "Slovakia"
#~ msgstr "Славачка"

#~ msgid "Sierra Leone"
#~ msgstr "Сијера Леоне"

#~ msgid "San Marino"
#~ msgstr "Сан Марино"

#~ msgid "Senegal"
#~ msgstr "Сенегал"

#~ msgid "Somalia"
#~ msgstr "Сомалија"

#~ msgid "Suriname"
#~ msgstr "Суринам"

#~ msgid "Sao Tome and Principe"
#~ msgstr "Сао Томе и Принципе"

#~ msgid "El Salvador"
#~ msgstr "Ел Салвадор"

#~ msgid "Syria"
#~ msgstr "Сирија"

#~ msgid "Swaziland"
#~ msgstr "Свазиленд"

#~ msgid "Turks and Caicos Islands"
#~ msgstr "Turks and Caicos Islands"

#~ msgid "Chad"
#~ msgstr "Чад"

#~ msgid "French Southern Territories"
#~ msgstr "Француске Јужне Територије"

#~ msgid "Togo"
#~ msgstr "Того"

#~ msgid "Thailand"
#~ msgstr "Тајланд"

#~ msgid "Tajikistan"
#~ msgstr "Таџикистан"

#~ msgid "Tokelau"
#~ msgstr "Токелау"

#~ msgid "East Timor"
#~ msgstr "Источни Тимор"

#~ msgid "Turkmenistan"
#~ msgstr "Туркменистан"

#~ msgid "Tunisia"
#~ msgstr "Тунис"

#~ msgid "Tonga"
#~ msgstr "Тонга"

#~ msgid "Turkey"
#~ msgstr "Турска"

#~ msgid "Trinidad and Tobago"
#~ msgstr "Тринидад и Тобаго"

#~ msgid "Tuvalu"
#~ msgstr "Тувалу"

#~ msgid "Taiwan"
#~ msgstr "Тајван"

#~ msgid "Tanzania"
#~ msgstr "Танзанија"

#~ msgid "Ukraine"
#~ msgstr "Украјина"

#~ msgid "Uganda"
#~ msgstr "Уганда"

#~ msgid "United States Minor Outlying Islands"
#~ msgstr "United States Minor Outlying Islands"

#~ msgid "United States"
#~ msgstr "САД"

#~ msgid "Uruguay"
#~ msgstr "Уругвај"

#~ msgid "Uzbekistan"
#~ msgstr "Узбекистан"

#~ msgid "Vatican"
#~ msgstr "Ватикан"

#~ msgid "Saint Vincent and the Grenadines"
#~ msgstr "Свети Винсент и Гренандини"

#~ msgid "Venezuela"
#~ msgstr "Венецуела"

#~ msgid "Virgin Islands (British)"
#~ msgstr "Девичанска Острва(В.Британија)"

#~ msgid "Virgin Islands (U.S.)"
#~ msgstr "Девичанска Острва (С.А.Д)"

#~ msgid "Vietnam"
#~ msgstr "Вијетнам"

#~ msgid "Vanuatu"
#~ msgstr "Вануату"

#~ msgid "Wallis and Futuna"
#~ msgstr "Валис и Футуна"

#~ msgid "Samoa"
#~ msgstr "Самоа"

#~ msgid "Yemen"
#~ msgstr "Јемен"

#~ msgid "Mayotte"
#~ msgstr "Мајот"

#~ msgid "South Africa"
#~ msgstr "Јужна Африка"

#~ msgid "Zambia"
#~ msgstr "Замбија"

#~ msgid "Zimbabwe"
#~ msgstr "Зимбабве"

#~ msgid "Welcome to %s"
#~ msgstr "Доброшли у  %s"

#~ msgid "Remove the logical volumes first\n"
#~ msgstr "Уклони прво логичке волумене\n"

#, fuzzy
#~ msgid ""
#~ "Introduction\n"
#~ "\n"
#~ "The operating system and the different components available in the "
#~ "Mandriva Linux distribution \n"
#~ "shall be called the \"Software Products\" hereafter. The Software "
#~ "Products include, but are not \n"
#~ "restricted to, the set of programs, methods, rules and documentation "
#~ "related to the operating \n"
#~ "system and the different components of the Mandriva Linux distribution.\n"
#~ "\n"
#~ "\n"
#~ "1. License Agreement\n"
#~ "\n"
#~ "Please read this document carefully. This document is a license agreement "
#~ "between you and  \n"
#~ "Mandriva S.A. which applies to the Software Products.\n"
#~ "By installing, duplicating or using the Software Products in any manner, "
#~ "you explicitly \n"
#~ "accept and fully agree to conform to the terms and conditions of this "
#~ "License. \n"
#~ "If you disagree with any portion of the License, you are not allowed to "
#~ "install, duplicate or use \n"
#~ "the Software Products. \n"
#~ "Any attempt to install, duplicate or use the Software Products in a "
#~ "manner which does not comply \n"
#~ "with the terms and conditions of this License is void and will terminate "
#~ "your rights under this \n"
#~ "License. Upon termination of the License,  you must immediately destroy "
#~ "all copies of the \n"
#~ "Software Products.\n"
#~ "\n"
#~ "\n"
#~ "2. Limited Warranty\n"
#~ "\n"
#~ "The Software Products and attached documentation are provided \"as is\", "
#~ "with no warranty, to the \n"
#~ "extent permitted by law.\n"
#~ "Mandriva S.A. will, in no circumstances and to the extent permitted by "
#~ "law, be liable for any special,\n"
#~ "incidental, direct or indirect damages whatsoever (including without "
#~ "limitation damages for loss of \n"
#~ "business, interruption of business, financial loss, legal fees and "
#~ "penalties resulting from a court \n"
#~ "judgment, or any other consequential loss) arising out of  the use or "
#~ "inability to use the Software \n"
#~ "Products, even if Mandriva S.A. has been advised of the possibility or "
#~ "occurrence of such \n"
#~ "damages.\n"
#~ "\n"
#~ "LIMITED LIABILITY LINKED TO POSSESSING OR USING PROHIBITED SOFTWARE IN "
#~ "SOME COUNTRIES\n"
#~ "\n"
#~ "To the extent permitted by law, Mandriva S.A. or its distributors will, "
#~ "in no circumstances, be \n"
#~ "liable for any special, incidental, direct or indirect damages whatsoever "
#~ "(including without \n"
#~ "limitation damages for loss of business, interruption of business, "
#~ "financial loss, legal fees \n"
#~ "and penalties resulting from a court judgment, or any other consequential "
#~ "loss) arising out \n"
#~ "of the possession and use of software components or arising out of  "
#~ "downloading software components \n"
#~ "from one of Mandriva Linux sites  which are prohibited or restricted in "
#~ "some countries by local laws.\n"
#~ "This limited liability applies to, but is not restricted to, the strong "
#~ "cryptography components \n"
#~ "included in the Software Products.\n"
#~ "\n"
#~ "\n"
#~ "3. The GPL License and Related Licenses\n"
#~ "\n"
#~ "The Software Products consist of components created by different persons "
#~ "or entities.  Most \n"
#~ "of these components are governed under the terms and conditions of the "
#~ "GNU General Public \n"
#~ "Licence, hereafter called \"GPL\", or of similar licenses. Most of these "
#~ "licenses allow you to use, \n"
#~ "duplicate, adapt or redistribute the components which they cover. Please "
#~ "read carefully the terms \n"
#~ "and conditions of the license agreement for each component before using "
#~ "any component. Any question \n"
#~ "on a component license should be addressed to the component author and "
#~ "not to Mandriva.\n"
#~ "The programs developed by Mandriva S.A. are governed by the GPL License. "
#~ "Documentation written \n"
#~ "by Mandriva S.A. is governed by a specific license. Please refer to the "
#~ "documentation for \n"
#~ "further details.\n"
#~ "\n"
#~ "\n"
#~ "4. Intellectual Property Rights\n"
#~ "\n"
#~ "All rights to the components of the Software Products belong to their "
#~ "respective authors and are \n"
#~ "protected by intellectual property and copyright laws applicable to "
#~ "software programs.\n"
#~ "Mandriva S.A. reserves its rights to modify or adapt the Software "
#~ "Products, as a whole or in \n"
#~ "parts, by all means and for all purposes.\n"
#~ "\"Mandriva\", \"Mandriva Linux\" and associated logos are trademarks of "
#~ "Mandriva S.A.  \n"
#~ "\n"
#~ "\n"
#~ "5. Governing Laws \n"
#~ "\n"
#~ "If any portion of this agreement is held void, illegal or inapplicable by "
#~ "a court judgment, this \n"
#~ "portion is excluded from this contract. You remain bound by the other "
#~ "applicable sections of the \n"
#~ "agreement.\n"
#~ "The terms and conditions of this License are governed by the Laws of "
#~ "France.\n"
#~ "All disputes on the terms of this license will preferably be settled out "
#~ "of court. As a last \n"
#~ "resort, the dispute will be referred to the appropriate Courts of Law of "
#~ "Paris - France.\n"
#~ "For any question on this document, please contact Mandriva S.A.  \n"
#~ msgstr ""
#~ "Упознавање\n"
#~ "\n"
#~ "Оперативни систем и друге компоненте доступне у Mandriva Linux "
#~ "дистрибуцији \n"
#~ "на даље ће бити зване \"Софтверски Производи\" . Софтверски производи "
#~ "укључују, али нису и \n"
#~ "ограничени на, скуп програма, метода, правила и документацију која је "
#~ "везаназа оперативни \n"
#~ "систем и друге компоненте Mandriva Linux дистрибуције.\n"
#~ "\n"
#~ "\n"
#~ "1. Лиценцни уговор\n"
#~ "\n"
#~ "Пажљиво прочитајте овај документ. Овај документ је лиценцни уговор "
#~ "измеђуизмеђу вас и   \n"
#~ "Mandriva S.A. који полаже право на Софтверске Производе.\n"
#~ "Инсталирањем, копирањем или употребом Софтверских Производа у било ком "
#~ "виду, ви експлицитно \n"
#~ "прихватате и потпуно се слажете са прихватањем поставки и услова и стања "
#~ "у овој Лиценци. \n"
#~ "Уколико се не слажете са било којим делом Лиценце, немате право да "
#~ "инсталирате, копирате или користите \n"
#~ "Софтверске производе. \n"
#~ "Било који покушај инсталације, дуплицирања или употребе Софтверских "
#~ "Производа на начин који се не слаже са \n"
#~ "поставкама и условима ове Лиценце ће водити губитку ваших права под "
#~ "овом \n"
#~ "Лиценцом. На основу губитка Лиценце, морате одмах уништитисве копије \n"
#~ "Софтверских Производа.\n"
#~ "\n"
#~ "\n"
#~ "2. Ограничена Гаранција\n"
#~ "\n"
#~ "Софтверски Производи и пратећа документрација су омогућене \"као такве\", "
#~ "и без гаранције, до граница \n"
#~ "које су дозвољене законом.\n"
#~ "Mandriva S.A. неће, у свим условима и у границама закона, бити оговоран "
#~ "за било које специјалне,\n"
#~ "случајне, директне или индиректне штете (укључујући неограниченештете или "
#~ "губитке \n"
#~ "у пословању, прекиду пословања, финансијским губицима, законске тражње и "
#~ "казне које су резултат судске \n"
#~ "одлуке, или за било који други губитак) које произилазе из употребе или "
#~ "немогућности коришћења Софтверских \n"
#~ "Производа, чак иако је Mandriva S.A. саветовао и указивао на могућност "
#~ "појаве такве \n"
#~ "штете.\n"
#~ "\n"
#~ "Ограничена одговорности везане за поседовање или употребу забрањеног "
#~ "софтвера у неким земљама\n"
#~ "\n"
#~ "До граница које су условљене законом, Mandriva S.A. или његови "
#~ "дистрибутери неће, ни под којим условима, бити \n"
#~ "одговорни за специјалне, намерне директне или индиректне штете(укључујући "
#~ "неограничене \n"
#~ "штете или губитке у пословању, прекиду пословања, финансијским губицима, "
#~ "законске тражње \n"
#~ "и казне које су резултат судске одлуке, или за било који други губитак) "
#~ "које произилазе \n"
#~ "из употребе или немогућности коришћења Софтверских Компоненти или које "
#~ "произилазе download-ованих софтверских компоненти \n"
#~ "било ког Mandriva Linux сајта који су забрањени или ограничени у неким "
#~ "земљама по локалним законима.\n"
#~ "Ова ограничена права се примењују, али нису и ограничена на,криптографске "
#~ "компоненте \n"
#~ "које се налазе у Софтверским Производима.\n"
#~ "\n"
#~ "\n"
#~ "3. GPL и за њу везане Лиценце\n"
#~ "\n"
#~ "Софтверски производи се састоје од компоненти креираних од стране "
#~ "различтих лица или ентитета. Већина  \n"
#~ "од ових компоненти се налазе под поставкама и условима GNU Опште Јавне \n"
#~ "Лиценце, која се од сада зове  \"GPL\", или сличне лиценце. Већина ових "
#~ "лиценци дозвољава употребу, \n"
#~ "дуплицирање, адаптацију или редистрибуцију компоненти које оне "
#~ "обухватају. Молимо Вас да пажљиво прочитте поставке \n"
#~ "и услове лиценцног уговора за сваку компоненту пре употребе било које "
#~ "компоненете. Било које питање \n"
#~ "везано за лиценцу компоненти треба да буде адресирано на аутора "
#~ "компоненте а нена Mandriva.\n"
#~ "Програми које је развио Mandriva S.A. подлежу под GPL Лиценцу. "
#~ "Документација писана од \n"
#~ "стране Mandriva S.A. подлеже под посебну лиценцу. Молим да погледате "
#~ "документацију  \n"
#~ "за детаље.\n"
#~ "\n"
#~ "\n"
#~ "4. Права на Интелектуалну својину\n"
#~ "\n"
#~ "Сва права на компоненте Софтверских производа припадају њиховим ауторима "
#~ "и она \n"
#~ "су заштићена законима о интелектуалној својини и правима који се "
#~ "примењују на софтверске програме.\n"
#~ "Mandriva S.A. је резервисао своја права на модификовање или адаптацију "
#~ "СофтверскихПроизвода, како за целину тако и за \n"
#~ "делове, за све све сврхе и све употребе.\n"
#~ "\"Mandriva\", \"Mandriva Linux\" и придружени логотипи и ознаке Mandriva "
#~ "S.A.  \n"
#~ "\n"
#~ "\n"
#~ "5. Законска права \n"
#~ "\n"
#~ "Уколико се било који део овог уговора избегава, нелегално и ван  судске "
#~ "одлуке, овај \n"
#~ "део се искључује из овог угвора. Обавезни сте да примењујетеостале делове "
#~ "овог\n"
#~ "уговора.\n"
#~ "Поставке и услови ове Лиценце су одређени Законима Француске.\n"
#~ "Сви неспоразуми би требали бити решени ван суда. Као последње \n"
#~ "средство, неспоразуми ће бити упућени на одговарајуће Судске установе у "
#~ "Паризу - Француска.\n"
#~ "За било које питање које је везано за овај документ, контактирајте  "
#~ "Mandriva S.A.  \n"

#~ msgid ""
#~ "\n"
#~ "Warning\n"
#~ "\n"
#~ "Please read carefully the terms below. If you disagree with any\n"
#~ "portion, you are not allowed to install the next CD media. Press "
#~ "'Refuse' \n"
#~ "to continue the installation without using these media.\n"
#~ "\n"
#~ "\n"
#~ "Some components contained in the next CD media are not governed\n"
#~ "by the GPL License or similar agreements. Each such component is then\n"
#~ "governed by the terms and conditions of its own specific license. \n"
#~ "Please read carefully and comply with such specific licenses before \n"
#~ "you use or redistribute the said components. \n"
#~ "Such licenses will in general prevent the transfer,  duplication \n"
#~ "(except for backup purposes), redistribution, reverse engineering, \n"
#~ "de-assembly, de-compilation or modification of the component. \n"
#~ "Any breach of agreement will immediately terminate your rights under \n"
#~ "the specific license. Unless the specific license terms grant you such\n"
#~ "rights, you usually cannot install the programs on more than one\n"
#~ "system, or adapt it to be used on a network. In doubt, please contact \n"
#~ "directly the distributor or editor of the component. \n"
#~ "Transfer to third parties or copying of such components including the \n"
#~ "documentation is usually forbidden.\n"
#~ "\n"
#~ "\n"
#~ "All rights to the components of the next CD media belong to their \n"
#~ "respective authors and are protected by intellectual property and \n"
#~ "copyright laws applicable to software programs.\n"
#~ msgstr ""
#~ "\n"
#~ "Упозорење !\n"
#~ "\n"
#~ "Пажљиво прочитајте доле наведене услове. Уколико се не слажете са било "
#~ "којим \n"
#~ "делом, онда немате одобрење за инсталирање следећег CD-а. Притисните "
#~ "'Одбијам' \n"
#~ "да би наставили инсталацију без употребе тих CD медија.\n"
#~ "\n"
#~ "\n"
#~ "Неке компоненте садржане у следећим CD медијама нису под\n"
#~ "GPL Лиценцом или сличним уговорима. Свака таква компонента је онда "
#~ "условљена\n"
#~ "условима и уговорима сопстевене линценце. \n"
#~ "Пажљиво прочитајте и упознајте се са таквим специфичним лиценцама пре \n"
#~ "него уотребите или редистрибуирате поменуте компоненте. \n"
#~ "Такве лиценце ће у главном забрањивати трансфер, копирање \n"
#~ "(осим за сврху backup-а података), редисрибуцију, нахнадну промену, \n"
#~ "растављање, де-компајлирање или мењање компоненти. \n"
#~ "Било који део уговора који није испоштован истовремено уклања и остала "
#~ "ваша права\n"
#~ "у датој лиценци. Уколико вам одређена лиценца не гарантује таква\n"
#~ "права, обично не можете инсталирати програме на више од једаног\n"
#~ "аиатема, или их прилагодити да се могу користити на мрежи. Уколико сте у "
#~ "дилеми, молимо вас да директно \n"
#~ "контактирате дистрибутера или едитора компоненте. \n"
#~ "Пренос на треће програме или копирање таквих компоненти укључујући и\n"
#~ "документацију је обично забрањен.\n"
#~ "\n"
#~ "\n"
#~ "Сва права на компоненте на следећим CD медијама припадају њиховим \n"
#~ "респектативним ауторима и заштићене су законима о интелектуаној својини "
#~ "и \n"
#~ "правима који се примењују на софтверске програме.\n"

#, fuzzy
#~ msgid ""
#~ "Congratulations, installation is complete.\n"
#~ "Remove the boot media and press Enter to reboot.\n"
#~ "\n"
#~ "\n"
#~ "For information on fixes which are available for this release of Mandriva "
#~ "Linux,\n"
#~ "consult the Errata available from:\n"
#~ "\n"
#~ "\n"
#~ "%s\n"
#~ "\n"
#~ "\n"
#~ "Information on configuring your system is available in the post\n"
#~ "install chapter of the Official Mandriva Linux User's Guide."
#~ msgstr ""
#~ "Честитамо, инсталација је завршена.\n"
#~ "Извадите дискету из драјва и притисните <Enter> да се рачунар ресетује.\n"
#~ "\n"
#~ "\n"
#~ "За информације о поправкама које су на располагању за ово издање\n"
#~ "Mandriva Linux Линукса, прочитајте део 'Errata' који можете наћи на\n"
#~ "\n"
#~ "\n"
#~ "%s\n"
#~ "\n"
#~ "\n"
#~ "Информације о конфигурисању вашег система можете наћи у пост-"
#~ "инсталационом\n"
#~ "поглављу званичног Mandriva Linux 'Водича за кориснике'."

#, fuzzy
#~ msgid "This driver has no configuration parameter!"
#~ msgstr "CUPS-конфигурација за дељење штампача"

#~ msgid "You can configure each parameter of the module here."
#~ msgstr "Овде можете подесити сваки параметар модула."

#~ msgid "Found %s interfaces"
#~ msgstr "Пронађено %s интерфејса"

#~ msgid "Do you have another one?"
#~ msgstr "Да ли имате још један?"

#~ msgid "Do you have any %s interfaces?"
#~ msgstr "Имате ли још %s интерфејса?"

#~ msgid "See hardware info"
#~ msgstr "Погледај информације о хардверу"

#, fuzzy
#~ msgid "Installing driver for USB controller"
#~ msgstr "Инсталирам драјвер за %s картицу %s"

#, fuzzy
#~ msgid "Installing driver for firewire controller %s"
#~ msgstr "Инсталирам драјвер за %s картицу %s"

#, fuzzy
#~ msgid "Installing driver for hard drive controller %s"
#~ msgstr "Инсталирам драјвер за %s картицу %s"

#, fuzzy
#~ msgid "Installing driver for ethernet controller %s"
#~ msgstr "Инсталирам драјвер за %s картицу %s"

#~ msgid "Installing driver for %s card %s"
#~ msgstr "Инсталирам драјвер за %s картицу %s"

#~ msgid ""
#~ "You may now provide options to module %s.\n"
#~ "Note that any address should be entered with the prefix 0x like '0x123'"
#~ msgstr ""
#~ "Сада можете да убаците његове опције у модул %s.\n"
#~ "Запамтите да свака адреса треба да се уноси са префиксом 0x као нпр. "
#~ "'0x123'"

#~ msgid ""
#~ "You may now provide options to module %s.\n"
#~ "Options are in format ``name=value name2=value2 ...''.\n"
#~ "For instance, ``io=0x300 irq=7''"
#~ msgstr ""
#~ "Можете навести његове опције за модул %s.\n"
#~ "Опције су у формату ``име=вредност име2=вредност2 ...''.\n"
#~ "На пример, ``io=0x300 irq=7''"

#~ msgid "Which %s driver should I try?"
#~ msgstr "Који %s драјвер да пробам?"

#~ msgid ""
#~ "In some cases, the %s driver needs to have extra information to work\n"
#~ "properly, although it normally works fine without them. Would you like to "
#~ "specify\n"
#~ "extra options for it or allow the driver to probe your machine for the\n"
#~ "information it needs? Occasionally, probing will hang a computer, but it "
#~ "should\n"
#~ "not cause any damage."
#~ msgstr ""
#~ "У неким случајевима, драјвер %s захтева додатне информације\n"
#~ "за правилан рад, мада може лепо да ради и без њих. Да ли хоћете\n"
#~ "сами да унесете додатне податке за њега, или да их драјвер сам одреди?\n"
#~ "Могуће је да ће проба заглавити ваш рачунар, али неће нанети никакву "
#~ "штету."

#~ msgid "Autoprobe"
#~ msgstr "Аутоматска проба"

#~ msgid "Specify options"
#~ msgstr "Наведите опције"

#~ msgid ""
#~ "Loading module %s failed.\n"
#~ "Do you want to try again with other parameters?"
#~ msgstr ""
#~ "Подизање модула %s неуспело.\n"
#~ "Да ли желите покушате поново са другим параметрима ?"

#~ msgid "mount failed: "
#~ msgstr "монтирање није успело: "

#~ msgid "Extended partition not supported on this platform"
#~ msgstr "Extended партиција није подржана на овој платформи"

#~ msgid ""
#~ "You have a hole in your partition table but I can not use it.\n"
#~ "The only solution is to move your primary partitions to have the hole "
#~ "next to the extended partitions."
#~ msgstr ""
#~ "Имате празнину у вашој табели партиција али је не могу корисити.\n"
#~ "Једино решење је да померите примарну партицију тако да празнина буде\n"
#~ "до extended партиција"

#~ msgid "Error reading file %s"
#~ msgstr "Грешка код отварања датотека %s"

#~ msgid "Restoring from file %s failed: %s"
#~ msgstr "Отварање из датотеке %s није успело: %s"

#~ msgid "Bad backup file"
#~ msgstr "Лоше backup-ована датотека"

#~ msgid "Error writing to file %s"
#~ msgstr "Грешка код уноса у датотека %s"

#~ msgid ""
#~ "Something bad is happening on your drive. \n"
#~ "A test to check the integrity of data has failed. \n"
#~ "It means writing anything on the disk will end up with random, corrupted "
#~ "data."
#~ msgstr ""
#~ "Нешто лоше се дешава са вашим хард диском. \n"
#~ "Тест интегритета података није прошао. \n"
#~ "То значи да све што се налази на диску ће завршити као ђубре"

#, fuzzy
#~ msgid "Can not add a partition to _formatted_ RAID %s"
#~ msgstr "Није могуће додати партицију на _форматиран_ RAID md%d"

#~ msgid "Not enough partitions for RAID level %d\n"
#~ msgstr "Нема довољно партиција за RAID ниво %d\n"

#~ msgid "Scannerdrake"
#~ msgstr "Scannerdrake"

#, fuzzy
#~ msgid "Accept/Refuse bogus IPv4 error messages."
#~ msgstr ""
#~ "Аргументи: (arg)\n"
#~ "\n"
#~ "Прихвати/Одбиј IPv4 поруке о грешкама."

#, fuzzy
#~ msgid "Accept/Refuse broadcasted icmp echo."
#~ msgstr ""
#~ "Аргументи: (arg)\n"
#~ "\n"
#~ " Прихвати/Одбиј преносиви icmp echo."

#, fuzzy
#~ msgid "Accept/Refuse icmp echo."
#~ msgstr ""
#~ "Аргументи: (arg)\n"
#~ "\n"
#~ " Прихвати/Одбиј icmp echo."

#, fuzzy
#~ msgid "Allow/Forbid autologin."
#~ msgstr ""
#~ "Аргументи: (arg)\n"
#~ "\n"
#~ "Дозволи/Не дозволи аутологовање."

#, fuzzy
#~ msgid ""
#~ "If set to \"ALL\", /etc/issue and /etc/issue.net are allowed to exist.\n"
#~ "\n"
#~ "If set to NONE, no issues are allowed.\n"
#~ "\n"
#~ "Else only /etc/issue is allowed."
#~ msgstr ""
#~ "Аргументи: (arg)\n"
#~ "\n"
#~ "Ако је \\fIarg\\fP = ALL allow /etc/issue и /etc/issue.net не постоји. "
#~ "Ако је \\fIarg\\fP = NONE ниједана радња није\n"
#~ "дозвољена или је само /etc/issue дозвољен."

#, fuzzy
#~ msgid "Allow/Forbid reboot by the console user."
#~ msgstr ""
#~ "Аргументи: (arg)\n"
#~ "\n"
#~ "Дозволи/Не дозволи рестартовање од стране конзлолног корисника."

#, fuzzy
#~ msgid "Allow/Forbid remote root login."
#~ msgstr ""
#~ "Аргументи: (arg)\n"
#~ "\n"
#~ "Дозволи/Не дозволи удаљено root логовање."

#, fuzzy
#~ msgid "Allow/Forbid direct root login."
#~ msgstr ""
#~ "Аргументи: (arg)\n"
#~ "\n"
#~ "Дозволи/Не дозволи диектно root логовање."

#, fuzzy
#~ msgid ""
#~ "Allow/Forbid the list of users on the system on display managers (kdm and "
#~ "gdm)."
#~ msgstr ""
#~ "Аргументи: (arg)\n"
#~ "\n"
#~ "Дозволи/Не дозволи листу корисника на систему у менаџерима за дисплеј "
#~ "(kdm и gdm)."

#, fuzzy
#~ msgid ""
#~ "Allow/Forbid X connections:\n"
#~ "\n"
#~ "- ALL (all connections are allowed),\n"
#~ "\n"
#~ "- LOCAL (only connection from local machine),\n"
#~ "\n"
#~ "- NONE (no connection)."
#~ msgstr ""
#~ "Аргументи: (arg, listen_tcp=None)\n"
#~ "\n"
#~ "Дозвољава/Недозвољава X конекцију. Први аргумент одређије шта је урађено\n"
#~ "са стране клијента: ALL (све конекције су дозвољене), LOCAL (само\n"
#~ "лпкалне конекције) и NONE (без конекције)."

#, fuzzy
#~ msgid ""
#~ "The argument specifies if clients are authorized to connect\n"
#~ "to the X server from the network on the tcp port 6000 or not."
#~ msgstr ""
#~ "Аргументи: (arg)\n"
#~ "\n"
#~ "Аргумент одређује да ли клијент ауторзиван за конековање на\n"
#~ "X сервер на tcp порту 6000 или није."

#, fuzzy
#~ msgid ""
#~ "Authorize:\n"
#~ "\n"
#~ "- all services controlled by tcp_wrappers (see hosts.deny(5) man page) if "
#~ "set to \"ALL\",\n"
#~ "\n"
#~ "- only local ones if set to \"LOCAL\"\n"
#~ "\n"
#~ "- none if set to \"NONE\".\n"
#~ "\n"
#~ "To authorize the services you need, use /etc/hosts.allow (see hosts."
#~ "allow(5))."
#~ msgstr ""
#~ "Аргументи: (arg)\n"
#~ "\n"
#~ "Ауторизује све сервисе које контролише tcp_wrappers (see hosts.deny(5)) "
#~ "ако је \\fIarg\\fP = ALL. Само локални\n"
#~ "if \\fIarg\\fP = LOCAL and none if \\fIarg\\fP = NONE. За ауторизацију "
#~ "вама потребних сервиса , користите /etc/hosts.allow\n"
#~ "(see hosts.allow(5))."

#, fuzzy
#~ msgid ""
#~ "If SERVER_LEVEL (or SECURE_LEVEL if absent)\n"
#~ "is greater than 3 in /etc/security/msec/security.conf, creates the\n"
#~ "symlink /etc/security/msec/server to point to\n"
#~ "/etc/security/msec/server.<SERVER_LEVEL>.\n"
#~ "\n"
#~ "The /etc/security/msec/server is used by chkconfig --add to decide to\n"
#~ "add a service if it is present in the file during the installation of\n"
#~ "packages."
#~ msgstr ""
#~ "Аргументи: ()\n"
#~ "\n"
#~ "Уколико је SERVER_LEVEL (или је SECURE_LEVEL одсутан) већи од 3\n"
#~ "у /etc/security/msec/security.conf, креира симболички линк /etc/security/"
#~ "msec/server\n"
#~ "да упућује на /etc/security/msec/server.<SERVER_LEVEL>.  /etc/security/"
#~ "msec/server\n"
#~ "се користи од стране chkconfig --add да би додали сервис уколико је "
#~ "присутан у фајлу\n"
#~ "током инсталације пакета."

#, fuzzy
#~ msgid ""
#~ "Enable/Disable crontab and at for users.\n"
#~ "\n"
#~ "Put allowed users in /etc/cron.allow and /etc/at.allow (see man at(1)\n"
#~ "and crontab(1))."
#~ msgstr ""
#~ "Аргументи: (arg)\n"
#~ "\n"
#~ "Омогући/Онемогући crontab и at за кориснике. Поставите кориснике са "
#~ "дозволама у /etc/cron.allow и /etc/at.allow\n"
#~ "(прочитајте man at(1) и crontab(1))."

#, fuzzy
#~ msgid ""
#~ "Enable/Disable name resolution spoofing protection.  If\n"
#~ "\"%s\" is true, also reports to syslog."
#~ msgstr ""
#~ "Аргументи: (arg, alert=1)\n"
#~ "\n"
#~ "Омогући/Онемогући заштиту за name resolution spoofing.  Ако је\n"
#~ "\"%s\" истинит, и то пријавите у syslog."

#~ msgid "Security Alerts:"
#~ msgstr "Сигурносни аларми:"

#, fuzzy
#~ msgid "Enable/Disable IP spoofing protection."
#~ msgstr ""
#~ "Аргументи: (arg, alert=1)\n"
#~ "\n"
#~ "Омогући/Онемогући IP spoofing заштиту."

#, fuzzy
#~ msgid "Enable/Disable libsafe if libsafe is found on the system."
#~ msgstr ""
#~ "Аргументи: (arg)\n"
#~ "\n"
#~ "Омогући/Онемогући libsafe ако је libsafe пронађен на систему."

#, fuzzy
#~ msgid "Enable/Disable the logging of IPv4 strange packets."
#~ msgstr ""
#~ "Аргументи: (arg)\n"
#~ "\n"
#~ "Омогући/Онемогући пријављивање IPv4 strange пакета."

#, fuzzy
#~ msgid "Enable/Disable msec hourly security check."
#~ msgstr ""
#~ "Аргументи: (arg)\n"
#~ "\n"
#~ "Омогући/Онемогући msec проверу сигурности на сваки час."

#, fuzzy
#~ msgid ""
#~ "Enable su only from members of the wheel group. If set to no, allows su "
#~ "from any user."
#~ msgstr ""
#~ "Аргументи: (arg)\n"
#~ "\n"
#~ " Омогућавање su само за корисније wheel групе или за сваког корисника."

#, fuzzy
#~ msgid "Use password to authenticate users."
#~ msgstr ""
#~ "Аргументи: (arg)\n"
#~ "\n"
#~ "Користи лозинку за аутентификацију корисника."

#, fuzzy
#~ msgid "Activate/Disable ethernet cards promiscuity check."
#~ msgstr ""
#~ "Аргументи: (arg)\n"
#~ "\n"
#~ "Активирај/Деактивирај проверу промискуитета мрежних картица."

#, fuzzy
#~ msgid "Activate/Disable daily security check."
#~ msgstr ""
#~ "Аргументи: (arg)\n"
#~ "\n"
#~ " Активирај/Деактивирај дневне сигурносне провере."

#, fuzzy
#~ msgid "Enable/Disable sulogin(8) in single user level."
#~ msgstr ""
#~ "Аргументи: (arg)\n"
#~ "\n"
#~ " Омогући/Онемогући sulogin(8) у single user нивоу."

#, fuzzy
#~ msgid ""
#~ "Add the name as an exception to the handling of password aging by msec."
#~ msgstr ""
#~ "Аргументи: (name)\n"
#~ "\n"
#~ "Add the name as an exception to the handling of password aging by msec."

#, fuzzy
#~ msgid ""
#~ "Set password aging to \"max\" days and delay to change to \"inactive\"."
#~ msgstr ""
#~ "Аргументи: (max, inactive=-1)\n"
#~ "\n"
#~ "Подесите лозинку циљајући на \\fImax\\fP дана и измена паузе на  "
#~ "\\fIinactive\\fP."

#, fuzzy
#~ msgid "Set the password history length to prevent password reuse."
#~ msgstr ""
#~ "Аргументи: (arg)\n"
#~ "\n"
#~ "Подесите историју памћења лозинки да би спречили поновну употребу лозинке."

#, fuzzy
#~ msgid ""
#~ "Set the password minimum length and minimum number of digit and minimum "
#~ "number of capitalized letters."
#~ msgstr ""
#~ "Аргументи: (length, ndigits=0, nupper=0)\n"
#~ "\n"
#~ "Подесите најмању дужину лозинке и најмањи број бројева и минималан број "
#~ "великих слова."

#, fuzzy
#~ msgid "Set the root umask."
#~ msgstr ""
#~ "Аргументи: (umask)\n"
#~ "\n"
#~ "Подесите root umask."

#~ msgid "if set to yes, check open ports."
#~ msgstr "уколико је подешено на да, означите отворене портове."

#, fuzzy
#~ msgid ""
#~ "if set to yes, check for:\n"
#~ "\n"
#~ "- empty passwords,\n"
#~ "\n"
#~ "- no password in /etc/shadow\n"
#~ "\n"
#~ "- for users with the 0 id other than root."
#~ msgstr ""
#~ "уколико је подешене на да, проверите празне лозинке, без лозинке у /etc/"
#~ "shadow и  кориснике са 0 id различих од root."

#~ msgid "if set to yes, check permissions of files in the users' home."
#~ msgstr ""
#~ "уколико је подешено на да, проверите овлашћења за фајлове у корисничком "
#~ "home диреторијуму."

#~ msgid "if set to yes, check if the network devices are in promiscuous mode."
#~ msgstr ""
#~ "уколико је подешено на да, проверите да ли су мрежни уређаји у "
#~ "promiscuous моду."

#~ msgid "if set to yes, run the daily security checks."
#~ msgstr "уколико је подешено на да, покрените дневне сигурносне провере."

#~ msgid "if set to yes, check additions/removals of sgid files."
#~ msgstr "уколико је подешено на да, означите додавање/уклањање sgid фајлова."

#~ msgid "if set to yes, check empty password in /etc/shadow."
#~ msgstr "уколико је подешено на да, прверите празну лозинку у /etc/shadow."

#~ msgid "if set to yes, verify checksum of the suid/sgid files."
#~ msgstr "уколико је подешено на да, проверите checksum за suid/sgid фајлове."

#~ msgid "if set to yes, check additions/removals of suid root files."
#~ msgstr ""
#~ "уколико је подешено на да, означите додавање/уклањање за suid root "
#~ "фајлове."

#~ msgid "if set to yes, report unowned files."
#~ msgstr "уколико је подешено на да, пријавите фајлове без власника."

#~ msgid "if set to yes, check files/directories writable by everybody."
#~ msgstr ""
#~ "уколико је подешено на да, означите фајлове/диреторијуме уписивим за све "
#~ "кориснике."

#~ msgid "if set to yes, run chkrootkit checks."
#~ msgstr "уколико је подешено на да, покрените chkrootkit провере."

#~ msgid ""
#~ "if set, send the mail report to this email address else send it to root."
#~ msgstr ""
#~ "уколико је подешено, пошаљите извештај на ову email адресу ули је "
#~ "пошаљите root-у."

#~ msgid "if set to yes, report check result by mail."
#~ msgstr "уколико кажете да, пошаљите резултат провере mail-ом."

#~ msgid "if set to yes, run some checks against the rpm database."
#~ msgstr "уколико је подешено на да, покрените проверу rpm базе података."

#~ msgid "if set to yes, report check result to syslog."
#~ msgstr "уколико је подешено на да, пошаљите извештај о провери у syslog."

#~ msgid "if set to yes, reports check result to tty."
#~ msgstr "уколико је подешено на да, извештај о провери пошаљите на tty."

#, fuzzy
#~ msgid "Set shell commands history size. A value of -1 means unlimited."
#~ msgstr ""
#~ "Аргументи: (size)\n"
#~ "\n"
#~ "Подесите shell величину историје за команде. Вредност -1 значи да нема "
#~ "линита."

#, fuzzy
#~ msgid "Set the shell timeout. A value of zero means no timeout."
#~ msgstr ""
#~ "Аргументи: (val)\n"
#~ "\n"
#~ "Подесите shell паузу. Вредност zero - нула значи да нема паузе."

#, fuzzy
#~ msgid "Set the user umask."
#~ msgstr ""
#~ "Аргументи: (umask)\n"
#~ "\n"
#~ "Подешавање корисничког umask."

#, fuzzy
#~ msgid "Accept bogus IPv4 error messages"
#~ msgstr ""
#~ "Аргументи: (arg)\n"
#~ "\n"
#~ "Прихвати/Одбиј IPv4 поруке о грешкама."

#, fuzzy
#~ msgid "Accept broadcasted icmp echo"
#~ msgstr ""
#~ "Аргументи: (arg)\n"
#~ "\n"
#~ " Прихвати/Одбиј преносиви icmp echo."

#, fuzzy
#~ msgid "Allow remote root login"
#~ msgstr ""
#~ "Аргументи: (arg)\n"
#~ "\n"
#~ "Дозволи/Не дозволи удаљено root логовање."

#, fuzzy
#~ msgid "List users on display managers (kdm and gdm)"
#~ msgstr ""
#~ "Аргументи: (arg)\n"
#~ "\n"
#~ "Дозволи/Не дозволи листу корисника на систему у менаџерима за дисплеј "
#~ "(kdm и gdm)."

#, fuzzy
#~ msgid "Allow X Window connections"
#~ msgstr "Winmodem конекција"

#, fuzzy
#~ msgid "Chkconfig obey msec rules"
#~ msgstr "Подеси сервисе"

#, fuzzy
#~ msgid "Enable IP spoofing protection"
#~ msgstr ""
#~ "Аргументи: (arg, alert=1)\n"
#~ "\n"
#~ "Омогући/Онемогући IP spoofing заштиту."

#, fuzzy
#~ msgid "Enable libsafe if libsafe is found on the system"
#~ msgstr ""
#~ "Аргументи: (arg)\n"
#~ "\n"
#~ "Омогући/Онемогући libsafe ако је libsafe пронађен на систему."

#, fuzzy
#~ msgid "Enable the logging of IPv4 strange packets"
#~ msgstr ""
#~ "Аргументи: (arg)\n"
#~ "\n"
#~ "Омогући/Онемогући пријављивање IPv4 strange пакета."

#, fuzzy
#~ msgid "Enable msec hourly security check"
#~ msgstr ""
#~ "Аргументи: (arg)\n"
#~ "\n"
#~ "Омогући/Онемогући msec проверу сигурности на сваки час."

#, fuzzy
#~ msgid "Enable su only from the wheel group members"
#~ msgstr ""
#~ "Аргументи: (arg)\n"
#~ "\n"
#~ " Омогућавање su само за корисније wheel групе или за сваког корисника."

#, fuzzy
#~ msgid "Use password to authenticate users"
#~ msgstr ""
#~ "Аргументи: (arg)\n"
#~ "\n"
#~ "Користи лозинку за аутентификацију корисника."

#, fuzzy
#~ msgid "Ethernet cards promiscuity check"
#~ msgstr ""
#~ "Аргументи: (arg)\n"
#~ "\n"
#~ "Активирај/Деактивирај проверу промискуитета мрежних картица."

#, fuzzy
#~ msgid "Sulogin(8) in single user level"
#~ msgstr ""
#~ "Аргументи: (arg)\n"
#~ "\n"
#~ " Омогући/Онемогући sulogin(8) у single user нивоу."

#, fuzzy
#~ msgid "No password aging for"
#~ msgstr "Без лозинке"

#, fuzzy
#~ msgid "Password history length"
#~ msgstr "Ова лозинка је превише проста"

#, fuzzy
#~ msgid "Root umask"
#~ msgstr "Root лозинка"

#, fuzzy
#~ msgid "Shell timeout"
#~ msgstr "Пауза при стартању кернела"

#, fuzzy
#~ msgid "User umask"
#~ msgstr "Корисници"

#, fuzzy
#~ msgid "Check open ports"
#~ msgstr "Детектовано на порту %s"

#, fuzzy
#~ msgid "Check permissions of files in the users' home"
#~ msgstr ""
#~ "уколико је подешено на да, проверите овлашћења за фајлове у корисничком "
#~ "home диреторијуму."

#, fuzzy
#~ msgid "Check if the network devices are in promiscuous mode"
#~ msgstr ""
#~ "уколико је подешено на да, проверите да ли су мрежни уређаји у "
#~ "promiscuous моду."

#, fuzzy
#~ msgid "Run the daily security checks"
#~ msgstr "уколико је подешено на да, покрените дневне сигурносне провере."

#, fuzzy
#~ msgid "Check additions/removals of sgid files"
#~ msgstr "уколико је подешено на да, означите додавање/уклањање sgid фајлова."

#, fuzzy
#~ msgid "Check empty password in /etc/shadow"
#~ msgstr "уколико је подешено на да, прверите празну лозинку у /etc/shadow."

#, fuzzy
#~ msgid "Verify checksum of the suid/sgid files"
#~ msgstr "уколико је подешено на да, проверите checksum за suid/sgid фајлове."

#, fuzzy
#~ msgid "Check additions/removals of suid root files"
#~ msgstr ""
#~ "уколико је подешено на да, означите додавање/уклањање за suid root "
#~ "фајлове."

#, fuzzy
#~ msgid "Report unowned files"
#~ msgstr "уколико је подешено на да, пријавите фајлове без власника."

#, fuzzy
#~ msgid "Check files/directories writable by everybody"
#~ msgstr ""
#~ "уколико је подешено на да, означите фајлове/диреторијуме уписивим за све "
#~ "кориснике."

#, fuzzy
#~ msgid "Run chkrootkit checks"
#~ msgstr "уколико је подешено на да, покрените chkrootkit провере."

#, fuzzy
#~ msgid ""
#~ "If set, send the mail report to this email address else send it to root"
#~ msgstr ""
#~ "уколико је подешено, пошаљите извештај на ову email адресу ули је "
#~ "пошаљите root-у."

#, fuzzy
#~ msgid "Report check result by mail"
#~ msgstr "уколико кажете да, пошаљите резултат провере mail-ом."

#, fuzzy
#~ msgid "Run some checks against the rpm database"
#~ msgstr "уколико је подешено на да, покрените проверу rpm базе података."

#, fuzzy
#~ msgid "Report check result to syslog"
#~ msgstr "уколико је подешено на да, пошаљите извештај о провери у syslog."

#, fuzzy
#~ msgid "Reports check result to tty"
#~ msgstr "уколико је подешено на да, извештај о провери пошаљите на tty."

#~ msgid "Welcome To Crackers"
#~ msgstr "Доброшли код Кракера"

#~ msgid "Poor"
#~ msgstr "Бедна"

#~ msgid "High"
#~ msgstr "Велика"

#~ msgid "Higher"
#~ msgstr "Вишљи"

#~ msgid "Paranoid"
#~ msgstr "Параноидна"

#~ msgid ""
#~ "This level is to be used with care. It makes your system more easy to "
#~ "use,\n"
#~ "but very sensitive. It must not be used for a machine connected to "
#~ "others\n"
#~ "or to the Internet. There is no password access."
#~ msgstr ""
#~ "На овом нивоу треба обратити пажњу. Он прави ваш систем лакшим\n"
#~ "за употребу, али и  веома осетљивим: не сме бити кориштен на машини\n"
#~ "која је повезана са другим машинама или на интернет. Овде не постоји\n"
#~ "приступ са лозинком."

#~ msgid ""
#~ "Passwords are now enabled, but use as a networked computer is still not "
#~ "recommended."
#~ msgstr ""
#~ "Лозинке су сада омогућене, али се и даље не препоручује да се користи\n"
#~ "као мрежни рачунар."

#~ msgid ""
#~ "This is the standard security recommended for a computer that will be "
#~ "used to connect to the Internet as a client."
#~ msgstr ""
#~ "Ово је стандардно сигурносно окружење препоручено за рачунаре који  ће "
#~ "бити  коршћени за везу са Интернетом или као клијент."

#~ msgid ""
#~ "There are already some restrictions, and more automatic checks are run "
#~ "every night."
#~ msgstr ""
#~ "Већ постоје нека ограничења, а више аутоматских провера се покреће сваке "
#~ "ноћи."

#~ msgid ""
#~ "With this security level, the use of this system as a server becomes "
#~ "possible.\n"
#~ "The security is now high enough to use the system as a server which can "
#~ "accept\n"
#~ "connections from many clients. Note: if your machine is only a client on "
#~ "the Internet, you should choose a lower level."
#~ msgstr ""
#~ "Са овим сигурносним нивоом, коришћење овог система као сервера постаје "
#~ "могуће.\n"
#~ "Сигурност је сада довољно велика за коришћење машине за сервер који "
#~ "прихвата\n"
#~ "конекције бројних клијената. Напомена: уколико је ваша машина само "
#~ "клијент на Интернету, требали би да изаберете нижи ниво."

#~ msgid ""
#~ "This is similar to the previous level, but the system is entirely closed "
#~ "and security features are at their maximum."
#~ msgstr ""
#~ "Ово је слично претходном нивоу, али је сада систем потпуно затворен и "
#~ "сигурносне опције су максималне."

#~ msgid "Security"
#~ msgstr "Сигурност"

#~ msgid "DrakSec Basic Options"
#~ msgstr "DrakSec Основне Опције"

#~ msgid "Please choose the desired security level"
#~ msgstr "Изаберите жељени сигурносни ниво"

#~ msgid "Security level"
#~ msgstr "Сигурносни ниво"

#~ msgid "Use libsafe for servers"
#~ msgstr "Користи libsafe за сервере"

#~ msgid ""
#~ "A library which defends against buffer overflow and format string attacks."
#~ msgstr "Библиотека која штити од buffer overflow-а и format string напада."

#~ msgid "Security Administrator (login or email)"
#~ msgstr "Администрација Нивоа Сигурности (login или email)"

#~ msgid "Launch the ALSA (Advanced Linux Sound Architecture) sound system"
#~ msgstr "Стартам ALSA (Advanced Linux Sound Architecture) систем за звук"

#~ msgid "Anacron is a periodic command scheduler."
#~ msgstr "Anacron -  подесите период.команде"

#~ msgid ""
#~ "apmd is used for monitoring battery status and logging it via syslog.\n"
#~ "It can also be used for shutting down the machine when the battery is low."
#~ msgstr ""
#~ "apmd се користи за праћење статуса батерије и логовање преко syslog.\n"
#~ "Користи се и за гашење машине (ради и на десктоп машинама) када је "
#~ "батерија слаба"

#~ msgid ""
#~ "Runs commands scheduled by the at command at the time specified when\n"
#~ "at was run, and runs batch commands when the load average is low enough."
#~ msgstr ""
#~ "Покреће команде заказане at командом,као и  batch  команде као је "
#~ "оптерећеност\n"
#~ "система мала."

#~ msgid ""
#~ "cron is a standard UNIX program that runs user-specified programs\n"
#~ "at periodic scheduled times. vixie cron adds a number of features to the "
#~ "basic\n"
#~ "UNIX cron, including better security and more powerful configuration "
#~ "options."
#~ msgstr ""
#~ "cron је стандардни UNIX програм који покреће корисничке програме\n"
#~ "прериодично у заказано време. vixie cron  додаје опције простом UNIX cron,"
#~ "укључујући бољу  сигурност и бољу подесивост."

#~ msgid ""
#~ "GPM adds mouse support to text-based Linux applications such the\n"
#~ "Midnight Commander. It also allows mouse-based console cut-and-paste "
#~ "operations,\n"
#~ "and includes support for pop-up menus on the console."
#~ msgstr ""
#~ "GPM даје подршку за миша за тексулано-базиране апликације као што је\n"
#~ "Midnight Commander.Исто тако даје подршку за  pop-up меније на  конзоли."

#~ msgid ""
#~ "HardDrake runs a hardware probe, and optionally configures\n"
#~ "new/changed hardware."
#~ msgstr ""
#~ "HardDrake старта испитивање харедвера, и по потреби ђе подесити \n"
#~ "нови/измењени хардвер."

#~ msgid ""
#~ "Apache is a World Wide Web server. It is used to serve HTML files and CGI."
#~ msgstr ""
#~ "Apache је  WWW сервер. Он се користи да опслужује  HTML фајлове\n"
#~ "и CGI."

#~ msgid ""
#~ "The internet superserver daemon (commonly called inetd) starts a\n"
#~ "variety of other internet services as needed. It is responsible for "
#~ "starting\n"
#~ "many services, including telnet, ftp, rsh, and rlogin. Disabling inetd "
#~ "disables\n"
#~ "all of the services it is responsible for."
#~ msgstr ""
#~ "Интерент супер сервер демон (знан као netd) старта \n"
#~ "разне интернет сервисе.Он је одговоран за покретање многих сервиса као "
#~ "нпр. elnet, ftp, rsh, и  rlogin.Искључујући њега, искључујете и сервисе \n"
#~ "за које је он одговоран."

#~ msgid ""
#~ "Launch packet filtering for Linux kernel 2.2 series, to set\n"
#~ "up a firewall to protect your machine from network attacks."
#~ msgstr ""
#~ "Покрените филтрирање пакета за Linux кернел серије 2.2, да би подесили\n"
#~ "firewall ради заштите ваше машине од мрежних напада."

#~ msgid ""
#~ "This package loads the selected keyboard map as set in\n"
#~ "/etc/sysconfig/keyboard.  This can be selected using the kbdconfig "
#~ "utility.\n"
#~ "You should leave this enabled for most machines."
#~ msgstr ""
#~ "Овај пакет активира одабрану мапу тастатуре како је подешено \n"
#~ "у  /etc/sysconfig/keyboard.Ово се подешава користећи kbdconfig алатку.\n"
#~ "Треба да буде укључен на већину машина."

#~ msgid ""
#~ "Automatic regeneration of kernel header in /boot for\n"
#~ "/usr/include/linux/{autoconf,version}.h"
#~ msgstr ""
#~ "Аутоматска регенерација кернеловог заглавља у /boot зар\n"
#~ "/usr/include/linux/{autoconf,version}.h"

#~ msgid "Automatic detection and configuration of hardware at boot."
#~ msgstr "Аутоматска детекција и конфигурација хардвера при стартању система."

#~ msgid ""
#~ "Linuxconf will sometimes arrange to perform various tasks\n"
#~ "at boot-time to maintain the system configuration."
#~ msgstr ""
#~ "Linuxconf ђе понекад изводити разне задатке током\n"
#~ "стартања система ради одржавања и подешавања система."

#~ msgid ""
#~ "lpd is the print daemon required for lpr to work properly. It is\n"
#~ "basically a server that arbitrates print jobs to printer(s)."
#~ msgstr ""
#~ "lpd је print демон потребан  да би lpr радио добро.То је \n"
#~ "у основи сервер који арбитрира  print послове штампачу(има)."

#~ msgid ""
#~ "Linux Virtual Server, used to build a high-performance and highly\n"
#~ "available server."
#~ msgstr ""
#~ "Linux-ов Виртуелни Сервер, користи се за изградњу брзог и доступног\n"
#~ "сервера."

#~ msgid ""
#~ "named (BIND) is a Domain Name Server (DNS) that is used to resolve host "
#~ "names to IP addresses."
#~ msgstr ""
#~ "Назван као (BIND) је Domain Name Server (DNS) који се користи за даје "
#~ "host име IP адреси."

#~ msgid ""
#~ "Mounts and unmounts all Network File System (NFS), SMB (Lan\n"
#~ "Manager/Windows), and NCP (NetWare) mount points."
#~ msgstr ""
#~ "Монтирање и демонтирање свих Мрежних фајл система(NFS), SMB (Lan\n"
#~ "Manager/Windows), и  NCP (NetWare) тачака монтирања. "

#~ msgid ""
#~ "Activates/Deactivates all network interfaces configured to start\n"
#~ "at boot time."
#~ msgstr ""
#~ "Активирање и деактивирање свих мрежних интерфејса конфигурисаних за "
#~ "старт \n"
#~ "при подизању система."

#~ msgid ""
#~ "NFS is a popular protocol for file sharing across TCP/IP networks.\n"
#~ "This service provides NFS server functionality, which is configured via "
#~ "the\n"
#~ "/etc/exports file."
#~ msgstr ""
#~ "NFS је популарни протокол за размену  фајлова преко TCP/IP мрежа.\n"
#~ "Овај сервис омогућава функционалност NFS сервера,који се конфигурише "
#~ "преко \n"
#~ "/etc/exports датотеке."

#~ msgid ""
#~ "NFS is a popular protocol for file sharing across TCP/IP\n"
#~ "networks. This service provides NFS file locking functionality."
#~ msgstr ""
#~ "NFS је популарни протокол за размену  фајлова преко TCP/IP мрежа.\n"
#~ "Овај сервис омогућава функционалност NFS  file locking функције"

#~ msgid ""
#~ "Automatically switch on numlock key locker under console\n"
#~ "and Xorg at boot."
#~ msgstr ""
#~ "Аутоматски укључује numlock тастер под конзолом\n"
#~ "и у Xorg при стартању."

#~ msgid "Support the OKI 4w and compatible winprinters."
#~ msgstr "Подршка за OKI 4w и компатибилне му  win штампаче."

#~ msgid ""
#~ "PCMCIA support is usually to support things like ethernet and\n"
#~ "modems in laptops.  It will not get started unless configured so it is "
#~ "safe to have\n"
#~ "it installed on machines that do not need it."
#~ msgstr ""
#~ "PCMCIA подршка  се обично користи за  етернет и модеме у лаптоповима.\n"
#~ "Неће се покренути уколико није конфигурисан тако даје безбедно "
#~ "инсталиран \n"
#~ "на систему ком није потребан."

#~ msgid ""
#~ "The portmapper manages RPC connections, which are used by\n"
#~ "protocols such as NFS and NIS. The portmap server must be running on "
#~ "machines\n"
#~ "which act as servers for protocols which make use of the RPC mechanism."
#~ msgstr ""
#~ "Портмапер уравља  RPC конекцијама,које користе\n"
#~ "протоколи као NFS и  NIS.Портмап сервер мора бити покренут на машинама\n"
#~ "које раде као сервери за протоколе који користе RPC механизам."

#~ msgid ""
#~ "Postfix is a Mail Transport Agent, which is the program that moves mail "
#~ "from one machine to another."
#~ msgstr ""
#~ "Postfix је  Mail Transport Agent,који у стварипремешта пошту са једне "
#~ "машине на другу."

#~ msgid ""
#~ "Saves and restores system entropy pool for higher quality random\n"
#~ "number generation."
#~ msgstr ""
#~ "чува и обнавља системски  entropy pool за већи квалитет генерисање\n"
#~ "случајних бројева."

#~ msgid ""
#~ "Assign raw devices to block devices (such as hard drive\n"
#~ "partitions), for the use of applications such as Oracle or DVD players"
#~ msgstr ""
#~ "Додељује raw урећаје за блок урећаје (као што су хард диск\n"
#~ "партиције), што мође бити корисно за апликације као што је Oracle или DVD "
#~ "плејери"

#~ msgid ""
#~ "The routed daemon allows for automatic IP router table updated via\n"
#~ "the RIP protocol. While RIP is widely used on small networks, more "
#~ "complex\n"
#~ "routing protocols are needed for complex networks."
#~ msgstr ""
#~ "Routed демон дозвољава аутоматско IP рутер update-овање преко\n"
#~ "RIP протокола.Док се RIP доста корисити на малим мрежама,комплекснији \n"
#~ " routing протоколи су потребни за комплексне мреже."

#~ msgid ""
#~ "The rstat protocol allows users on a network to retrieve\n"
#~ "performance metrics for any machine on that network."
#~ msgstr ""
#~ "rstat протокол дозвољава корисницима на мрежи да омогуће\n"
#~ "мерење перформанси за било коју машину на тој  мрежи."

#~ msgid ""
#~ "The rusers protocol allows users on a network to identify who is\n"
#~ "logged in on other responding machines."
#~ msgstr ""
#~ "rusers протокол омогућава корисницима на мрежи да открију ко је\n"
#~ "улогован на другим машинама."

#~ msgid ""
#~ "The rwho protocol lets remote users get a list of all of the users\n"
#~ "logged into a machine running the rwho daemon (similar to finger)."
#~ msgstr ""
#~ "rwho протокол дозвољава удаљеним корисницима да добију листу свих\n"
#~ "корисника улогованих на систем са покренутим rwho демоном (слично finger-"
#~ "у)."

#~ msgid "Launch the sound system on your machine"
#~ msgstr "Покреће систем за звук на вашој машини"

#~ msgid ""
#~ "Syslog is the facility by which many daemons use to log messages\n"
#~ "to various system log files.  It is a good idea to always run syslog."
#~ msgstr ""
#~ "Syslog је објекат помоћу ког многи демони користе за логовање порука\n"
#~ "у разним системским лог фајловима. Добра је идеја имати увек покренут "
#~ "syslog."

#~ msgid "Load the drivers for your usb devices."
#~ msgstr "Подиже драјвере за ваше usb уређаје."

#~ msgid "Starts the X Font Server (this is mandatory for Xorg to run)."
#~ msgstr "Покреће X Фонт сервер (потребно за покретање Xorg)."

#~ msgid "Printing"
#~ msgstr "Штампање"

#~ msgid "Internet"
#~ msgstr "Интернет"

#~ msgid "File sharing"
#~ msgstr "Заједничко дељење фајлова"

#~ msgid "System"
#~ msgstr "Систем"

#~ msgid "Remote Administration"
#~ msgstr "Удаљена администрација"

#~ msgid "Database Server"
#~ msgstr "Сервер Базе података"

#~ msgid "Services"
#~ msgstr "Сервиси"

#~ msgid "Choose which services should be automatically started at boot time"
#~ msgstr "Изаберите које сервиси треба аутоматски да се покрену при стартању"

#~ msgid "Services: %d activated for %d registered"
#~ msgstr "Сервиси: %d активираних за %d регистрованих"

#~ msgid "running"
#~ msgstr "покренуто"

#~ msgid "stopped"
#~ msgstr "заустављено"

#~ msgid "Services and daemons"
#~ msgstr "Сервиси и демони"

#~ msgid ""
#~ "No additional information\n"
#~ "about this service, sorry."
#~ msgstr ""
#~ "жалим али нема додатних информација\n"
#~ "о овом сервису."

#~ msgid "Info"
#~ msgstr "Инфо"

#~ msgid "On boot"
#~ msgstr "При стартању"

#~ msgid "Start"
#~ msgstr "Старт"

#~ msgid "Stop"
#~ msgstr "Стоп"

#~ msgid ""
#~ "This program is free software; you can redistribute it and/or modify\n"
#~ "it under the terms of the GNU General Public License as published by\n"
#~ "the Free Software Foundation; either version 2, or (at your option)\n"
#~ "any later version.\n"
#~ "\n"
#~ "This program is distributed in the hope that it will be useful,\n"
#~ "but WITHOUT ANY WARRANTY; without even the implied warranty of\n"
#~ "MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\n"
#~ "GNU General Public License for more details.\n"
#~ "\n"
#~ "You should have received a copy of the GNU General Public License\n"
#~ "along with this program; if not, write to the Free Software\n"
#~ "Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, "
#~ "USA.\n"
#~ msgstr ""
#~ " Овај програм је беспалтан; можете га редистрибуирати и/или мењати\n"
#~ " под условима GNU General Public License како је објављено\n"
#~ " у Free Software Фондацији; или верзији 2, или (у вашем случају)\n"
#~ " било којој новијој верзији.\n"
#~ "\n"
#~ " Овај програм је дистрибуиран у нади да ће бити од користи,\n"
#~ " сли БЕЗ ИКАКВИХ ГАРАНЦИЈА; чак и без гаранције за\n"
#~ " КОРИСНОСТ и ПРАКТИЧНУ УПОТРЕБУ.  Погледајте\n"
#~ " GNU Општу Јавну Лиценцу за више детаља.\n"
#~ "\n"
#~ " Требали би да мате копију GNU Опште Јавне  Лиценце\n"
#~ " заједно са овим програмом; уколико је немате, пишите нам на адресу Free "
#~ "Software\n"
#~ " Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA "
#~ "02110-1301, USA.\n"

#~ msgid ""
#~ "[--config-info] [--daemon] [--debug] [--default] [--show-conf]\n"
#~ "Backup and Restore application\n"
#~ "\n"
#~ "--default             : save default directories.\n"
#~ "--debug               : show all debug messages.\n"
#~ "--show-conf           : list of files or directories to backup.\n"
#~ "--config-info         : explain configuration file options (for non-X "
#~ "users).\n"
#~ "--daemon              : use daemon configuration. \n"
#~ "--help                : show this message.\n"
#~ "--version             : show version number.\n"
#~ msgstr ""
#~ "[--config-info] [--daemon] [--debug] [--default] [--show-conf]\n"
#~ "Програм за Backup и враћање података\n"
#~ "\n"
#~ "--default             : снима default директоријуме.\n"
#~ "--debug               : приказује све debug поруке.\n"
#~ "--show-conf           : листа фајлова или директоријума за backup.\n"
#~ "--config-info         : објашњава подешавање опција за фајлове (за не-X "
#~ "кориснике).\n"
#~ "--daemon              : користи daemon конфигурацију. \n"
#~ "--help                : приказује ову поруку.\n"
#~ "--version             : приказује верзију програма.\n"

#, fuzzy
#~ msgid ""
#~ "[OPTIONS] [PROGRAM_NAME]\n"
#~ "\n"
#~ "OPTIONS:\n"
#~ "  --help            - print this help message.\n"
#~ "  --report          - program should be one of Mandriva Linux tools\n"
#~ "  --incident        - program should be one of Mandriva Linux tools"
#~ msgstr ""
#~ "[OPTIONS] [PROGRAM_NAME]\n"
#~ "\n"
#~ "ОПЦИЈЕ:\n"
#~ "  --help            - приказује овај текст који сада читате.\n"
#~ "  --report          - програм треба да буде један од Mandriva алата\n"
#~ "  --incident        - програм треба да буде један од Mandriva алата"

#, fuzzy
#~ msgid ""
#~ "\n"
#~ "Font Importation and monitoring application\n"
#~ "\n"
#~ "OPTIONS:\n"
#~ "--windows_import : import from all available windows partitions.\n"
#~ "--xls_fonts      : show all fonts that already exist from xls\n"
#~ "--install        : accept any font file and any directory.\n"
#~ "--uninstall      : uninstall any font or any directory of font.\n"
#~ "--replace        : replace all font if already exist\n"
#~ "--application    : 0 none application.\n"
#~ "                 : 1 all application available supported.\n"
#~ "                 : name_of_application like  so for staroffice \n"
#~ "                 : and gs for ghostscript for only this one."
#~ msgstr ""
#~ "Програм за контролу и импортовање "
#~ "фонтова                                     \n"
#~ "--windows_import : импортује са свих доступних windows партиција.\n"
#~ "--xls_fonts      : приказује све фонтове који су већ присутни преко xls\n"
#~ "--strong         : стрга провера фонта.\n"
#~ "--install        : инсталира било који фонт и било који директоријум.\n"
#~ "--uninstall      : деинсталира  било који фонт или било који директоријум "
#~ "са фонтовима.\n"
#~ "--replace        : замењује све фонтове који већ постоје\n"
#~ "--application    : 0 без апликације.\n"
#~ "                 : 1 све доступне апликације подржане.\n"
#~ "                 : name_of_application као за на пример staroffice \n"
#~ "                 : и  gs за ghostscript за само ову."

#, fuzzy
#~ msgid ""
#~ "[OPTIONS]...\n"
#~ "Mandriva Linux Terminal Server Configurator\n"
#~ "--enable         : enable MTS\n"
#~ "--disable        : disable MTS\n"
#~ "--start          : start MTS\n"
#~ "--stop           : stop MTS\n"
#~ "--adduser        : add an existing system user to MTS (requires "
#~ "username)\n"
#~ "--deluser        : delete an existing system user from MTS (requires "
#~ "username)\n"
#~ "--addclient      : add a client machine to MTS (requires MAC address, IP, "
#~ "nbi image name)\n"
#~ "--delclient      : delete a client machine from MTS (requires MAC "
#~ "address, IP, nbi image name)"
#~ msgstr ""
#~ "[OPTIONS]...\n"
#~ "Програм за подешавање Mandriva Терминалног Сервера\n"
#~ "--enable         : укључује MTS\n"
#~ "--disable        : искључује MTS\n"
#~ "--start          : покреће MTS\n"
#~ "--stop           : зауставља MTS\n"
#~ "--adduser        : додаје постојећег системског корисника у MTS (захтева "
#~ "корисничко име)\n"
#~ "--deluser        : брише постојећег системског корисника из MTS (захтева "
#~ "корисничко име)\n"
#~ "--addclient      : додаје клијентску машину на MTS (захтева MAC адресу, "
#~ "IP, nbi image име)\n"
#~ "--delclient      : брише клијентску машину из MTS (захтева MAC адресу, "
#~ "IP, nbi image име)"

#~ msgid "[keyboard]"
#~ msgstr "[keyboard]"

#~ msgid "[--file=myfile] [--word=myword] [--explain=regexp] [--alert]"
#~ msgstr "[--file=myfile] [--word=myword] [--explain=regexp] [--alert]"

#~ msgid ""
#~ "[OPTIONS]\n"
#~ "Network & Internet connection and monitoring application\n"
#~ "\n"
#~ "--defaultintf interface : show this interface by default\n"
#~ "--connect : connect to internet if not already connected\n"
#~ "--disconnect : disconnect to internet if already connected\n"
#~ "--force : used with (dis)connect : force (dis)connection.\n"
#~ "--status : returns 1 if connected 0 otherwise, then exit.\n"
#~ "--quiet : do not be interactive. To be used with (dis)connect."
#~ msgstr ""
#~ "[OPTIONS]\n"
#~ "Мрежна и Интернет конекција и апликације за мониторинг\n"
#~ "\n"
#~ "--defaultintf интерфејс : приказује  овај интерфејст по основној "
#~ "поставци\n"
#~ "--connect : повезује се на Интернет уколико већ није повезан\n"
#~ "--disconnect : прекида везу са Интернетом уколико је већ повезан\n"
#~ "--force : користи се уз две претходне опције : приморава на повезивање "
#~ "или прекид.\n"
#~ "--status : прикаѕује 1 уколико је повезан или 0 ако није, и затим "
#~ "завршава.\n"
#~ "--quiet : без интерактивности. Треба да се користи са опцијама за "
#~ "повезивање и прекид."

#~ msgid " [--skiptest] [--cups] [--lprng] [--lpd] [--pdq]"
#~ msgstr " [--skiptest] [--cups] [--lprng] [--lpd] [--pdq]"

#~ msgid ""
#~ "[OPTION]...\n"
#~ "  --no-confirmation      do not ask first confirmation question in "
#~ "Mandriva Update mode\n"
#~ "  --no-verify-rpm        do not verify packages signatures\n"
#~ "  --changelog-first      display changelog before filelist in the "
#~ "description window\n"
#~ "  --merge-all-rpmnew     propose to merge all .rpmnew/.rpmsave files found"
#~ msgstr ""
#~ "[OPTION]...\n"
#~ "  --no-confirmation      не поставља питање о потврди у Mandriva Update "
#~ "моду\n"
#~ "  --no-verify-rpm        не проверава сигнатуре пакета\n"
#~ "  --changelog-first      прикаѕује запис о изменама пре листе фајлова у "
#~ "прозору ѕа опис\n"
#~ "  --merge-all-rpmnew     предлаже спајање свих пронађених .rpmnew/."
#~ "rpmsave фајлова"

#~ msgid ""
#~ "[--manual] [--device=dev] [--update-sane=sane_source_dir] [--update-"
#~ "usbtable] [--dynamic=dev]"
#~ msgstr ""
#~ "[--manual] [--device=dev] [--update-sane=sane_source_dir] [--update-"
#~ "usbtable] [--dynamic=dev]"

#~ msgid ""
#~ " [everything]\n"
#~ "       XFdrake [--noauto] monitor\n"
#~ "       XFdrake resolution"
#~ msgstr ""
#~ " [everything]\n"
#~ "       XFdrake [--noauto] monitor\n"
#~ "       XFdrake resolution"

#~ msgid ""
#~ "\n"
#~ "Usage: %s  [--auto] [--beginner] [--expert] [-h|--help] [--noauto] [--"
#~ "testing] [-v|--version] "
#~ msgstr ""
#~ "\n"
#~ "Употреба: %s  [--auto] [--beginner] [--expert] [-h|--help] [--noauto] [--"
#~ "testing] [-v|--version] "

#, fuzzy
#~ msgid "All servers"
#~ msgstr "Додај сервер"

#~ msgid "Global"
#~ msgstr "Глобално"

#, fuzzy
#~ msgid "Africa"
#~ msgstr "Јужна Африка"

#, fuzzy
#~ msgid "Asia"
#~ msgstr "Аустрија"

#, fuzzy
#~ msgid "North America"
#~ msgstr "Јужна Африка"

#, fuzzy
#~ msgid "Oceania"
#~ msgstr "Македонија"

#, fuzzy
#~ msgid "South America"
#~ msgstr "Јужна Африка"

#~ msgid "Hong Kong"
#~ msgstr "Хонг Конг"

#, fuzzy
#~ msgid "Russian Federation"
#~ msgstr "Руски (Фонетски)"

#, fuzzy
#~ msgid "Yugoslavia"
#~ msgstr "Српски (латиница)"

#~ msgid "Is this correct?"
#~ msgstr "Да ли је ово исправно ?"

#, fuzzy
#~ msgid "No file chosen"
#~ msgstr "избор датотеке"

#, fuzzy
#~ msgid "You have chosen a file, not a directory"
#~ msgstr "Треба да одредите датотеку, а не директоријум.\n"

#, fuzzy
#~ msgid "You have chosen a directory, not a file"
#~ msgstr "Име „/“ може представљати само категорију, а не и кључ"

#, fuzzy
#~ msgid "No such directory"
#~ msgstr "Није директоријум"

#, fuzzy
#~ msgid "No such file"
#~ msgstr "Нема такве датотеке „%s“\n"

#~ msgid "Expand Tree"
#~ msgstr "Прошири стабло"

#~ msgid "Collapse Tree"
#~ msgstr "Скупи стабло"

#~ msgid "Toggle between flat and group sorted"
#~ msgstr "Бирајте: равно или групно сортирано"

#~ msgid "Installation failed"
#~ msgstr "Инсталација није успела"