summaryrefslogtreecommitdiffstats
path: root/fs/jbd2/commit.c
diff options
context:
space:
mode:
Diffstat (limited to 'fs/jbd2/commit.c')
0 files changed, 0 insertions, 0 deletions
f='#n84'>84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 1602 1603 1604 1605 1606 1607 1608 1609 1610 1611 1612 1613 1614 1615 1616 1617 1618 1619 1620 1621 1622 1623 1624 1625 1626 1627 1628 1629 1630 1631 1632 1633 1634 1635 1636 1637 1638 1639 1640 1641 1642 1643 1644 1645 1646 1647 1648 1649 1650 1651 1652 1653 1654 1655 1656 1657 1658 1659 1660 1661 1662 1663 1664 1665 1666 1667 1668 1669 1670 1671 1672 1673 1674 1675 1676 1677 1678 1679 1680 1681 1682 1683 1684 1685 1686 1687 1688 1689 1690 1691 1692 1693 1694 1695 1696 1697 1698 1699 1700 1701 1702 1703 1704 1705 1706 1707 1708 1709 1710 1711 1712 1713 1714 1715 1716 1717 1718 1719 1720 1721 1722 1723 1724 1725 1726 1727 1728 1729 1730 1731 1732 1733 1734 1735 1736 1737 1738 1739 1740 1741 1742 1743 1744 1745 1746 1747 1748 1749 1750 1751 1752 1753 1754 1755 1756 1757 1758 1759 1760 1761 1762 1763 1764 1765 1766 1767 1768 1769 1770 1771 1772 1773 1774 1775 1776 1777 1778 1779 1780 1781 1782 1783 1784 1785 1786 1787 1788 1789 1790 1791 1792 1793 1794 1795 1796 1797 1798 1799 1800 1801 1802 1803 1804 1805 1806 1807 1808 1809 1810 1811 1812 1813 1814 1815 1816 1817 1818 1819 1820 1821 1822 1823 1824 1825 1826 1827 1828 1829 1830 1831 1832 1833 1834 1835 1836 1837 1838 1839 1840 1841 1842 1843 1844 1845 1846 1847 1848 1849 1850 1851 1852 1853 1854 1855 1856 1857 1858 1859 1860 1861 1862 1863 1864 1865 1866 1867 1868 1869 1870 1871 1872 1873 1874 1875 1876 1877 1878 1879 1880 1881 1882 1883 1884 1885 1886 1887 1888 1889 1890 1891 1892 1893 1894 1895 1896 1897 1898 1899 1900 1901 1902 1903 1904 1905 1906 1907 1908 1909 1910 1911 1912 1913 1914 1915 1916 1917 1918 1919 1920 1921 1922 1923 1924 1925 1926 1927 1928 1929 1930 1931 1932 1933 1934 1935 1936 1937 1938 1939 1940 1941 1942 1943 1944 1945 1946 1947 1948 1949 1950 1951 1952 1953 1954 1955 1956 1957 1958 1959 1960 1961 1962 1963 1964 1965 1966 1967 1968 1969 1970 1971 1972 1973 1974 1975 1976 1977 1978 1979 1980 1981 1982 1983 1984 1985 1986 1987 1988 1989 1990 1991 1992 1993 1994 1995 1996 1997 1998 1999 2000 2001 2002 2003 2004 2005 2006 2007 2008 2009 2010 2011 2012 2013 2014 2015 2016 2017 2018 2019 2020 2021 2022 2023 2024 2025 2026 2027 2028 2029 2030 2031 2032 2033 2034 2035 2036 2037 2038 2039 2040 2041 2042 2043 2044 2045 2046 2047 2048 2049 2050 2051 2052 2053 2054 2055 2056 2057 2058 2059 2060 2061 2062 2063 2064 2065 2066 2067 2068 2069 2070 2071 2072 2073 2074 2075 2076 2077 2078 2079 2080 2081 2082 2083 2084 2085 2086 2087 2088 2089 2090 2091 2092 2093 2094 2095 2096 2097 2098 2099 2100 2101 2102 2103 2104 2105 2106 2107 2108 2109 2110 2111 2112 2113 2114 2115 2116 2117 2118 2119 2120 2121 2122 2123 2124 2125 2126 2127 2128 2129 2130 2131 2132 2133 2134 2135 2136 2137 2138 2139 2140 2141 2142 2143 2144 2145 2146 2147 2148 2149 2150 2151 2152 2153 2154 2155 2156 2157 2158 2159 2160 2161 2162 2163 2164 2165 2166 2167 2168 2169 2170 2171 2172 2173 2174 2175 2176 2177 2178 2179 2180 2181 2182 2183 2184 2185 2186 2187 2188 2189 2190 2191 2192 2193 2194 2195 2196 2197 2198 2199 2200 2201 2202 2203 2204 2205 2206 2207 2208 2209 2210 2211 2212 2213 2214 2215 2216 2217 2218 2219 2220 2221 2222 2223 2224 2225 2226 2227 2228 2229 2230 2231 2232 2233 2234 2235 2236 2237 2238 2239 2240 2241 2242 2243 2244 2245 2246 2247 2248 2249 2250 2251 2252 2253 2254 2255 2256 2257 2258 2259 2260 2261 2262 2263 2264 2265 2266 2267 2268 2269 2270 2271 2272 2273 2274 2275 2276 2277 2278 2279 2280 2281 2282 2283 2284 2285 2286 2287 2288 2289 2290 2291 2292 2293 2294 2295 2296 2297 2298 2299 2300 2301 2302 2303 2304 2305 2306 2307 2308 2309 2310 2311 2312 2313 2314 2315 2316 2317 2318 2319 2320 2321 2322 2323 2324 2325 2326 2327 2328 2329 2330 2331 2332 2333 2334 2335 2336 2337 2338 2339 2340 2341 2342 2343 2344 2345 2346 2347 2348 2349 2350 2351 2352 2353 2354 2355 2356 2357 2358 2359 2360 2361 2362 2363 2364 2365 2366 2367 2368 2369 2370 2371 2372 2373 2374 2375 2376 2377 2378 2379 2380 2381 2382 2383 2384 2385 2386 2387 2388 2389 2390 2391 2392 2393 2394 2395 2396 2397 2398 2399 2400 2401 2402 2403 2404 2405 2406 2407 2408 2409 2410 2411 2412 2413 2414 2415 2416 2417 2418 2419 2420 2421 2422 2423 2424 2425 2426 2427 2428 2429 2430 2431 2432 2433 2434 2435 2436 2437 2438 2439 2440 2441 2442 2443 2444 2445 2446 2447 2448 2449 2450 2451 2452 2453 2454 2455 2456 2457 2458 2459 2460 2461 2462 2463 2464 2465 2466 2467 2468 2469 2470 2471 2472 2473 2474 2475 2476 2477 2478 2479 2480 2481 2482 2483 2484 2485 2486 2487 2488 2489 2490 2491 2492 2493 2494 2495 2496 2497 2498 2499 2500 2501 2502 2503 2504 2505 2506 2507 2508 2509 2510 2511 2512 2513 2514 2515 2516 2517 2518 2519 2520 2521 2522 2523 2524 2525 2526 2527 2528 2529 2530 2531 2532 2533 2534 2535 2536 2537 2538 2539 2540 2541 2542 2543 2544 2545 2546 2547 2548 2549 2550 2551 2552 2553 2554 2555 2556 2557 2558 2559 2560 2561 2562 2563 2564 2565 2566 2567 2568 2569 2570 2571 2572 2573 2574 2575 2576 2577 2578 2579 2580 2581 2582 2583 2584 2585 2586 2587 2588 2589 2590 2591 2592 2593 2594 2595 2596 2597 2598 2599 2600 2601 2602 2603 2604 2605 2606 2607 2608 2609 2610 2611 2612 2613 2614 2615 2616 2617 2618 2619 2620 2621 2622 2623 2624 2625 2626 2627 2628 2629 2630 2631 2632 2633 2634 2635 2636 2637 2638 2639 2640 2641 2642 2643 2644 2645 2646 2647 2648 2649 2650 2651 2652 2653 2654 2655 2656 2657 2658 2659 2660 2661 2662 2663 2664 2665 2666 2667 2668 2669 2670 2671 2672 2673 2674 2675 2676 2677 2678 2679 2680 2681 2682 2683 2684 2685 2686 2687 2688 2689 2690 2691 2692 2693 2694 2695 2696 2697 2698 2699 2700 2701 2702 2703 2704 2705 2706 2707 2708 2709 2710 2711 2712 2713 2714 2715 2716 2717 2718 2719 2720 2721 2722 2723 2724 2725 2726 2727 2728 2729 2730 2731 2732 2733 2734 2735 2736 2737 2738 2739 2740 2741 2742 2743 2744 2745 2746 2747 2748 2749 2750 2751 2752 2753 2754 2755 2756 2757 2758 2759 2760 2761 2762 2763 2764 2765 2766 2767 2768 2769 2770 2771 2772 2773 2774 2775 2776 2777 2778 2779 2780 2781 2782 2783 2784 2785 2786 2787 2788 2789 2790 2791 2792 2793 2794 2795 2796 2797 2798 2799 2800 2801 2802 2803 2804 2805 2806 2807 2808 2809 2810 2811 2812 2813 2814 2815 2816 2817 2818 2819 2820 2821 2822 2823 2824 2825 2826 2827 2828 2829 2830 2831 2832 2833 2834 2835 2836 2837 2838 2839 2840 2841 2842 2843 2844 2845 2846 2847 2848 2849 2850 2851 2852 2853 2854 2855 2856 2857 2858 2859 2860 2861 2862 2863 2864 2865 2866 2867 2868 2869 2870 2871 2872 2873 2874 2875 2876 2877 2878 2879 2880 2881 2882 2883 2884 2885 2886 2887 2888 2889 2890 2891 2892 2893 2894 2895 2896 2897 2898 2899 2900 2901 2902 2903 2904 2905 2906 2907 2908 2909 2910 2911 2912 2913 2914 2915 2916 2917 2918 2919 2920 2921 2922 2923 2924 2925 2926 2927 2928 2929 2930 2931 2932 2933 2934 2935 2936 2937 2938 2939 2940 2941 2942 2943 2944 2945 2946 2947 2948 2949 2950 2951 2952 2953 2954 2955 2956 2957 2958 2959 2960 2961 2962 2963 2964 2965 2966 2967 2968 2969 2970 2971 2972 2973 2974 2975 2976 2977 2978 2979 2980 2981 2982 2983 2984 2985 2986 2987 2988 2989 2990 2991 2992 2993 2994 2995 2996 2997 2998 2999 3000 3001 3002 3003 3004 3005 3006 3007 3008 3009 3010 3011 3012 3013 3014 3015 3016 3017 3018 3019 3020 3021 3022 3023 3024 3025 3026 3027 3028 3029 3030 3031 3032 3033 3034 3035 3036 3037 3038 3039 3040 3041 3042 3043 3044 3045 3046 3047 3048 3049 3050 3051 3052 3053 3054 3055 3056 3057 3058 3059 3060 3061 3062 3063 3064 3065 3066 3067 3068 3069 3070 3071 3072 3073 3074 3075 3076 3077 3078 3079 3080 3081 3082 3083 3084 3085 3086 3087 3088 3089 3090 3091 3092 3093 3094 3095 3096 3097 3098 3099 3100 3101 3102 3103 3104 3105 3106 3107 3108 3109 3110 3111 3112 3113 3114 3115 3116 3117 3118 3119 3120 3121 3122 3123 3124 3125 3126 3127 3128 3129 3130 3131 3132 3133 3134 3135 3136 3137 3138 3139 3140 3141 3142 3143 3144 3145 3146 3147 3148 3149 3150 3151 3152 3153 3154 3155 3156 3157 3158 3159 3160 3161 3162 3163 3164 3165 3166 3167 3168 3169 3170 3171 3172 3173 3174 3175 3176 3177 3178 3179 3180 3181 3182 3183 3184 3185 3186 3187 3188 3189 3190 3191 3192 3193 3194 3195 3196 3197 3198 3199 3200 3201 3202 3203 3204 3205 3206 3207 3208 3209 3210 3211 3212 3213 3214 3215 3216 3217 3218 3219 3220 3221 3222 3223 3224 3225 3226 3227 3228 3229 3230 3231 3232 3233 3234 3235 3236 3237 3238 3239 3240 3241 3242 3243 3244 3245 3246 3247 3248 3249 3250 3251 3252 3253 3254 3255 3256 3257 3258 3259 3260 3261 3262 3263 3264 3265 3266 3267 3268 3269 3270 3271 3272 3273 3274 3275 3276 3277 3278 3279 3280 3281 3282 3283 3284 3285 3286 3287 3288 3289 3290 3291 3292 3293 3294 3295 3296 3297 3298 3299 3300 3301 3302 3303 3304 3305 3306 3307 3308 3309 3310 3311 3312 3313 3314 3315 3316 3317 3318 3319 3320 3321 3322 3323 3324 3325 3326 3327 3328 3329 3330 3331 3332 3333 3334 3335 3336 3337 3338 3339 3340 3341 3342 3343 3344 3345 3346 3347 3348 3349 3350 3351 3352 3353 3354 3355 3356 3357 3358 3359 3360 3361 3362 3363 3364 3365 3366 3367 3368 3369 3370 3371 3372 3373 3374 3375 3376 3377 3378 3379 3380 3381 3382 3383 3384 3385 3386 3387 3388 3389 3390 3391 3392 3393 3394 3395 3396 3397 3398 3399 3400 3401 3402 3403 3404 3405 3406 3407 3408 3409 3410 3411 3412 3413 3414 3415 3416 3417 3418 3419 3420 3421 3422 3423 3424 3425 3426 3427 3428 3429 3430 3431 3432 3433 3434 3435 3436 3437 3438 3439 3440 3441 3442 3443 3444 3445 3446 3447 3448 3449 3450 3451 3452 3453 3454 3455 3456 3457 3458 3459 3460 3461 3462 3463 3464 3465 3466 3467 3468 3469 3470 3471 3472 3473 3474 3475 3476 3477 3478 3479 3480 3481 3482 3483 3484 3485 3486 3487 3488 3489 3490 3491 3492 3493 3494 3495 3496 3497 3498 3499 3500 3501 3502 3503 3504 3505 3506 3507 3508 3509 3510 3511 3512 3513 3514 3515 3516 3517 3518 3519 3520 3521 3522 3523 3524 3525 3526 3527 3528 3529 3530 3531 3532 3533 3534 3535 3536 3537 3538 3539 3540 3541 3542 3543 3544 3545 3546 3547 3548 3549 3550 3551 3552 3553 3554 3555 3556 3557 3558 3559 3560 3561 3562 3563 3564 3565 3566 3567 3568 3569 3570 3571 3572 3573 3574 3575 3576 3577 3578 3579 3580 3581 3582 3583 3584 3585 3586 3587 3588 3589 3590 3591 3592 3593 3594 3595 3596 3597 3598 3599 3600 3601 3602 3603 3604 3605 3606 3607 3608 3609 3610 3611 3612 3613 3614 3615 3616 3617 3618 3619 3620 3621 3622 3623 3624 3625 3626 3627 3628 3629 3630 3631 3632 3633 3634 3635 3636 3637 3638 3639 3640 3641 3642 3643 3644 3645 3646 3647 3648 3649 3650 3651 3652 3653 3654 3655 3656 3657 3658 3659 3660 3661 3662 3663 3664 3665 3666 3667 3668 3669 3670 3671 3672 3673 3674 3675 3676 3677 3678 3679 3680 3681 3682 3683 3684 3685 3686 3687 3688 3689 3690 3691 3692 3693 3694 3695 3696 3697 3698 3699 3700 3701 3702 3703 3704 3705 3706 3707 3708 3709 3710 3711 3712 3713 3714 3715 3716 3717 3718 3719 3720 3721 3722 3723 3724 3725 3726 3727 3728 3729 3730 3731 3732 3733 3734 3735 3736 3737 3738 3739 3740 3741 3742 3743 3744 3745 3746 3747 3748 3749 3750 3751 3752 3753 3754 3755 3756 3757 3758 3759 3760 3761 3762 3763 3764 3765 3766 3767 3768 3769 3770 3771 3772 3773 3774 3775 3776 3777 3778 3779 3780 3781 3782 3783 3784 3785 3786 3787 3788 3789 3790 3791 3792 3793 3794 3795 3796 3797 3798 3799 3800 3801 3802 3803 3804 3805 3806 3807 3808 3809 3810 3811 3812 3813 3814 3815 3816 3817 3818 3819 3820 3821 3822 3823 3824 3825 3826 3827 3828 3829 3830 3831 3832 3833 3834 3835 3836 3837 3838 3839 3840 3841 3842 3843 3844 3845 3846 3847 3848 3849 3850 3851 3852 3853 3854 3855 3856 3857 3858 3859 3860 3861 3862 3863 3864 3865 3866 3867 3868 3869 3870 3871 3872 3873 3874 3875 3876 3877 3878 3879 3880 3881 3882 3883 3884 3885 3886 3887 3888 3889 3890 3891 3892 3893 3894 3895 3896 3897 3898 3899 3900 3901 3902 3903 3904 3905 3906 3907 3908 3909 3910 3911 3912 3913 3914 3915 3916 3917 3918 3919 3920 3921 3922 3923 3924 3925 3926 3927 3928 3929 3930 3931 3932 3933 3934 3935 3936 3937 3938 3939 3940 3941 3942 3943 3944 3945 3946 3947 3948 3949 3950 3951 3952 3953 3954 3955 3956 3957 3958 3959 3960 3961 3962 3963 3964 3965 3966 3967 3968 3969 3970 3971 3972 3973 3974 3975 3976 3977 3978 3979 3980 3981 3982 3983 3984 3985 3986 3987 3988 3989 3990 3991 3992 3993 3994 3995 3996 3997 3998 3999 4000 4001 4002 4003 4004 4005 4006 4007 4008 4009 4010 4011 4012 4013 4014 4015 4016 4017 4018 4019 4020 4021 4022 4023 4024 4025 4026 4027 4028 4029 4030 4031 4032 4033 4034 4035 4036 4037 4038 4039 4040 4041 4042 4043 4044 4045 4046 4047 4048 4049 4050 4051 4052 4053 4054 4055 4056 4057 4058 4059 4060 4061 4062 4063 4064 4065 4066 4067 4068 4069 4070 4071 4072 4073 4074 4075 4076 4077 4078 4079 4080 4081 4082 4083 4084 4085 4086 4087 4088 4089 4090 4091 4092 4093 4094 4095 4096 4097 4098 4099 4100 4101 4102 4103 4104 4105 4106 4107 4108 4109 4110 4111 4112 4113 4114 4115 4116 4117 4118 4119 4120 4121 4122 4123 4124 4125 4126 4127 4128 4129 4130 4131 4132 4133 4134 4135 4136 4137 4138 4139 4140 4141 4142 4143 4144 4145 4146 4147 4148 4149 4150 4151 4152 4153 4154 4155 4156 4157 4158 4159 4160 4161 4162 4163 4164 4165 4166 4167 4168 4169 4170 4171 4172 4173 4174 4175 4176 4177 4178 4179 4180 4181 4182 4183 4184 4185 4186 4187 4188 4189 4190 4191 4192 4193 4194 4195 4196 4197 4198 4199 4200 4201 4202 4203 4204 4205 4206 4207 4208 4209 4210 4211 4212 4213 4214 4215 4216 4217 4218 4219 4220 4221 4222 4223 4224 4225 4226 4227 4228 4229 4230 4231 4232 4233 4234 4235 4236 4237 4238 4239 4240 4241 4242 4243 4244 4245 4246 4247 4248 4249 4250 4251 4252 4253 4254 4255 4256 4257 4258 4259 4260 4261 4262 4263 4264 4265 4266 4267 4268 4269 4270 4271 4272 4273 4274 4275 4276 4277 4278 4279 4280 4281 4282 4283 4284 4285 4286 4287 4288 4289 4290 4291 4292 4293 4294 4295 4296 4297 4298 4299 4300 4301 4302 4303 4304 4305 4306 4307 4308 4309 4310 4311 4312 4313 4314 4315 4316 4317 4318 4319 4320 4321 4322 4323 4324 4325 4326 4327 4328 4329 4330 4331 4332 4333 4334 4335 4336 4337 4338 4339 4340 4341 4342 4343 4344 4345 4346 4347 4348 4349 4350 4351 4352 4353 4354 4355 4356 4357 4358 4359 4360 4361 4362 4363 4364 4365 4366 4367 4368 4369 4370 4371 4372 4373 4374 4375 4376 4377 4378 4379 4380 4381 4382 4383 4384 4385 4386 4387 4388 4389 4390 4391 4392 4393 4394 4395 4396 4397 4398 4399 4400 4401 4402 4403 4404 4405 4406 4407 4408 4409 4410 4411 4412 4413 4414 4415 4416 4417 4418 4419 4420 4421 4422 4423 4424 4425 4426 4427 4428 4429 4430 4431 4432 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 6191 6192 6193 6194 6195 6196 6197 6198 6199 6200 6201 6202 6203 6204 6205 6206 6207 6208 6209 6210 6211 6212 6213 6214 6215 6216 6217 6218 6219 6220 6221 6222 6223 6224 6225 6226 6227 6228 6229 6230 6231 6232 6233 6234 6235 6236 6237 6238 6239 6240 6241 6242 6243 6244 6245 6246 6247 6248 6249 6250 6251 6252 6253 6254 6255 6256 6257 6258 6259 6260 6261 6262 6263 6264 6265 6266 6267 6268 6269 6270 6271 6272 6273 6274 6275 6276 6277 6278 6279 6280 6281 6282 6283 6284 6285 6286 6287 6288 6289 6290 6291 6292 6293 6294 6295 6296 6297 6298 6299 6300 6301 6302 6303 6304 6305 6306 6307 6308 6309 6310 6311 6312 6313 6314 6315 6316 6317 6318 6319 6320 6321 6322 6323 6324 6325 6326 6327 6328 6329 6330 6331 6332 6333 6334 6335 6336 6337 6338 6339 6340 6341 6342 6343 6344 6345 6346 6347 6348 6349 6350 6351 6352 6353 6354 6355 6356 6357 6358 6359 6360 6361 6362 6363 6364 6365 6366 6367 6368 6369 6370 6371 6372 6373 6374 6375 6376 6377 6378 6379 6380 6381 6382 6383 6384 6385 6386 6387 6388 6389 6390 6391 6392 6393 6394 6395 6396 6397 6398 6399 6400 6401 6402 6403 6404 6405 6406 6407 6408 6409 6410 6411 6412 6413 6414 6415 6416 6417 6418 6419 6420 6421 6422 6423 6424 6425 6426 6427 6428 6429 6430 6431 6432 6433 6434 6435 6436 6437 6438 6439 6440 6441 6442 6443 6444 6445 6446 6447 6448 6449 6450 6451 6452 6453 6454 6455 6456 6457 6458 6459 6460 6461 6462 6463 6464 6465 6466 6467 6468 6469 6470 6471 6472 6473 6474 6475 6476 6477 6478 6479 6480 6481 6482 6483 6484 6485 6486 6487 6488 6489 6490 6491 6492 6493 6494 6495 6496 6497 6498 6499 6500 6501 6502 6503 6504 6505 6506 6507 6508 6509 6510 6511 6512 6513 6514 6515 6516 6517 6518 6519 6520 6521 6522 6523 6524 6525 6526 6527 6528 6529 6530 6531 6532 6533 6534 6535 6536 6537 6538 6539 6540 6541 6542 6543 6544 6545 6546 6547 6548 6549 6550 6551 6552 6553 6554 6555 6556 6557 6558 6559 6560 6561 6562 6563 6564 6565 6566 6567 6568 6569 6570 6571 6572 6573 6574 6575 6576 6577 6578 6579 6580 6581 6582 6583 6584 6585 6586 6587 6588 6589 6590 6591 6592 6593 6594 6595 6596 6597 6598 6599 6600 6601 6602 6603 6604 6605 6606 6607 6608 6609 6610 6611 6612 6613 6614 6615 6616 6617 6618 6619 6620 6621 6622 6623 6624 6625 6626 6627 6628 6629 6630 6631 6632 6633 6634 6635 6636 6637 6638 6639 6640 6641 6642 6643 6644 6645 6646 6647 6648 6649 6650 6651 6652 6653 6654 6655 6656 6657 6658 6659 6660 6661 6662 6663 6664 6665 6666 6667 6668 6669 6670 6671 6672 6673 6674 6675 6676 6677 6678 6679 6680 6681 6682 6683 6684 6685 6686 6687 6688 6689 6690 6691 6692 6693 6694 6695 6696 6697 6698 6699 6700 6701 6702 6703 6704 6705 6706 6707 6708 6709 6710 6711 6712 6713 6714 6715 6716 6717 6718 6719 6720 6721 6722 6723 6724 6725 6726 6727 6728 6729 6730 6731 6732 6733 6734 6735 6736 6737 6738 6739 6740 6741 6742 6743 6744 6745 6746 6747 6748 6749 6750 6751 6752 6753 6754 6755 6756 6757 6758 6759 6760 6761 6762 6763 6764 6765 6766 6767 6768 6769 6770 6771 6772 6773 6774 6775 6776 6777 6778 6779 6780 6781 6782 6783 6784 6785 6786 6787 6788 6789 6790 6791 6792 6793 6794 6795 6796 6797 6798 6799 6800 6801 6802 6803 6804 6805 6806 6807 6808 6809 6810 6811 6812 6813 6814 6815 6816 6817 6818 6819 6820 6821 6822 6823 6824 6825 6826 6827 6828 6829 6830 6831 6832 6833 6834 6835 6836 6837 6838 6839 6840 6841 6842 6843 6844 6845 6846 6847 6848 6849 6850 6851 6852 6853 6854 6855 6856 6857 6858 6859 6860 6861 6862 6863 6864 6865 6866 6867 6868 6869 6870 6871 6872 6873 6874 6875 6876 6877 6878 6879 6880 6881 6882 6883 6884 6885 6886 6887 6888 6889 6890 6891 6892 6893 6894 6895 6896 6897 6898 6899 6900 6901 6902 6903 6904 6905 6906 6907 6908 6909 6910 6911 6912 6913 6914 6915 6916 6917 6918 6919 6920 6921 6922 6923 6924 6925 6926 6927 6928 6929 6930 6931 6932 6933 6934 6935 6936 6937 6938 6939 6940 6941 6942 6943 6944 6945 6946 6947 6948 6949 6950 6951 6952 6953 6954 6955 6956 6957 6958 6959 6960 6961 6962 6963 6964 6965 6966 6967 6968 6969 6970 6971 6972 6973 6974 6975 6976 6977 6978 6979 6980 6981 6982 6983 6984 6985 6986 6987 6988 6989 6990 6991 6992 6993 6994 6995 6996 6997 6998 6999 7000 7001 7002 7003 7004 7005 7006 7007 7008 7009 7010 7011 7012 7013 7014 7015 7016 7017 7018 7019 7020 7021 7022 7023 7024 7025 7026 7027 7028 7029 7030 7031 7032 7033 7034 7035 7036 7037 7038 7039 7040 7041 7042 7043 7044 7045 7046 7047 7048 7049 7050 7051 7052 7053 7054 7055 7056 7057 7058 7059 7060 7061 7062 7063 7064 7065 7066 7067 7068 7069 7070 7071 7072 7073 7074 7075 7076 7077 7078 7079 7080 7081 7082 7083 7084 7085 7086 7087 7088 7089 7090 7091 7092 7093 7094 7095 7096 7097 7098 7099 7100 7101 7102 7103 7104 7105 7106 7107 7108 7109 7110 7111 7112 7113 7114 7115 7116 7117 7118 7119 7120 7121 7122 7123 7124 7125 7126 7127 7128 7129 7130 7131 7132 7133 7134 7135 7136 7137 7138 7139 7140 7141 7142 7143 7144 7145 7146 7147 7148 7149 7150 7151 7152 7153 7154 7155 7156 7157 7158 7159 7160 7161 7162 7163 7164 7165 7166 7167 7168 7169 7170 7171 7172 7173 7174 7175 7176 7177 7178 7179 7180 7181 7182 7183 7184 7185 7186 7187 7188 7189 7190 7191 7192 7193 7194 7195 7196 7197 7198 7199 7200 7201 7202 7203 7204 7205 7206 7207 7208 7209 7210 7211 7212 7213 7214 7215 7216 7217 7218 7219 7220 7221 7222 7223 7224 7225 7226 7227 7228 7229 7230 7231 7232 7233 7234 7235 7236 7237 7238 7239 7240 7241 7242 7243 7244 7245 7246 7247 7248 7249 7250 7251 7252 7253 7254 7255 7256 7257 7258 7259 7260 7261 7262 7263 7264 7265 7266 7267 7268 7269 7270 7271 7272 7273 7274 7275 7276 7277 7278 7279 7280 7281 7282 7283 7284 7285 7286 7287 7288 7289 7290 7291 7292 7293 7294 7295 7296 7297 7298 7299 7300 7301 7302 7303 7304 7305 7306 7307 7308 7309 7310 7311 7312 7313 7314 7315 7316 7317 7318 7319 7320 7321 7322 7323 7324 7325 7326 7327 7328 7329 7330 7331 7332 7333 7334 7335 7336 7337 7338 7339 7340 7341 7342 7343 7344 7345 7346 7347 7348 7349 7350 7351 7352 7353 7354 7355 7356 7357 7358 7359 7360 7361 7362 7363 7364 7365 7366 7367 7368 7369 7370 7371 7372 7373 7374 7375 7376 7377 7378 7379 7380 7381 7382 7383 7384 7385 7386 7387 7388 7389 7390 7391 7392 7393 7394 7395 7396 7397 7398 7399 7400 7401 7402 7403 7404 7405 7406 7407 7408 7409 7410 7411 7412 7413 7414 7415 7416 7417 7418 7419 7420 7421 7422 7423 7424 7425 7426 7427 7428 7429 7430 7431 7432 7433 7434 7435 7436 7437 7438 7439 7440 7441 7442 7443 7444 7445 7446 7447 7448 7449 7450 7451 7452 7453 7454 7455 7456 7457 7458 7459 7460 7461 7462 7463 7464 7465 7466 7467 7468 7469 7470 7471 7472 7473 7474 7475 7476 7477 7478 7479 7480 7481 7482 7483 7484 7485 7486 7487 7488 7489 7490 7491 7492 7493 7494 7495 7496 7497 7498 7499 7500 7501 7502 7503 7504 7505 7506 7507 7508 7509 7510 7511 7512 7513 7514 7515 7516 7517 7518 7519 7520 7521 7522 7523 7524 7525 7526 7527 7528 7529 7530 7531 7532 7533 7534 7535 7536 7537 7538 7539 7540 7541 7542 7543 7544 7545 7546 7547 7548 7549 7550 7551 7552 7553 7554 7555 7556 7557 7558 7559 7560 7561 7562 7563 7564 7565 7566 7567 7568 7569 7570 7571 7572 7573 7574 7575 7576 7577 7578 7579 7580 7581 7582 7583 7584 7585 7586 7587 7588 7589 7590 7591 7592 7593 7594 7595 7596 7597 7598 7599 7600 7601 7602 7603 7604 7605 7606 7607 7608 7609 7610 7611 7612 7613 7614 7615 7616 7617 7618 7619 7620 7621 7622 7623 7624 7625 7626 7627 7628 7629 7630 7631 7632 7633 7634 7635 7636 7637 7638 7639 7640 7641 7642 7643 7644 7645 7646 7647 7648 7649 7650 7651 7652 7653 7654 7655 7656 7657 7658 7659 7660 7661 7662 7663 7664 7665 7666 7667 7668 7669 7670 7671 7672 7673
# translation of ur.po to
# Urdu translations for PACKAGE package.
# Copyright (C) 2004 THE PACKAGE'S COPYRIGHT HOLDER
# This file is distributed under the same license as the PACKAGE package.
#
# Automatically generated, 2004.
msgid ""
msgstr ""
"Project-Id-Version: ur\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2008-03-28 10:06-0400\n"
"PO-Revision-Date: 2006-03-25 21:52+0500\n"
"Last-Translator: Usman Siraj Sheikh <usman.siraj@gmail.com>\n"
"Language-Team: SCS GIFT UNIVERSITY (http://cs.gift.edu.pk) <urdu."
"desktop@gmail.com>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Generator: KBabel 1.11\n"
"X-Poedit-Language: Urdu\n"
"X-Poedit-Country: Pakistan\n"

#: ../anaconda:289
#, fuzzy, c-format
msgid "Error processing %%ksappend lines: %s"
msgstr "ککسٹارٹ فائل کو کھولنے میں غلطی%s: %s"

#: ../anaconda:292
#, c-format
msgid "Unknown error processing %%ksappend lines: %s"
msgstr ""

#: ../anaconda:306 ../cmdline.py:78 ../gui.py:1187 ../text.py:509
#, c-format, python-format
msgid ""
"The following error was found while parsing your kickstart configuration:\n"
"\n"
"%s"
msgstr ""
" : درج ذیل غلطی کو تلاش کیا گیا ھے آپ کی کک سٹارٹ  \n"
"کنفیگریشن کو پارس کرتے ھوئے\n"
"%s"

#: ../anaconda:423
msgid "Press <enter> for a shell"
msgstr "شیل کے لیے اینٹر دبائیں۔"

#: ../anaconda:438 ../gui.py:234 ../rescue.py:271 ../rescue.py:339
#: ../rescue.py:366 ../rescue.py:376 ../rescue.py:452 ../rescue.py:458
#: ../text.py:537 ../text.py:699 ../textw/constants_text.py:42
#: ../textw/network_text.py:44 ../textw/network_text.py:54
#: ../textw/network_text.py:76 ../textw/network_text.py:82
#: ../textw/network_text.py:230 ../textw/network_text.py:815
#: ../textw/network_text.py:823 ../loader2/cdinstall.c:145
#: ../loader2/cdinstall.c:146 ../loader2/cdinstall.c:200
#: ../loader2/cdinstall.c:203 ../loader2/cdinstall.c:342
#: ../loader2/cdinstall.c:347 ../loader2/cdinstall.c:351
#: ../loader2/cdinstall.c:421 ../loader2/dirbrowser.c:145
#: ../loader2/driverdisk.c:98 ../loader2/driverdisk.c:235
#: ../loader2/driverdisk.c:266 ../loader2/driverdisk.c:299
#: ../loader2/driverdisk.c:337 ../loader2/driverdisk.c:351
#: ../loader2/driverdisk.c:365 ../loader2/driverdisk.c:375
#: ../loader2/driverdisk.c:535 ../loader2/driverdisk.c:572
#: ../loader2/driverselect.c:75 ../loader2/driverselect.c:199
#: ../loader2/hdinstall.c:141 ../loader2/hdinstall.c:252
#: ../loader2/hdinstall.c:388 ../loader2/hdinstall.c:438
#: ../loader2/hdinstall.c:470 ../loader2/hdinstall.c:540
#: ../loader2/hdinstall.c:583 ../loader2/hdinstall.c:596 ../loader2/kbd.c:138
#: ../loader2/kickstart.c:132 ../loader2/kickstart.c:142
#: ../loader2/kickstart.c:185 ../loader2/kickstart.c:284
#: ../loader2/kickstart.c:372 ../loader2/kickstart.c:529 ../loader2/lang.c:115
#: ../loader2/lang.c:376 ../loader2/loader.c:344 ../loader2/loader.c:379
#: ../loader2/loader.c:414 ../loader2/loader.c:431 ../loader2/loader.c:445
#: ../loader2/loader.c:480 ../loader2/loader.c:997 ../loader2/loader.c:1159
#: ../loader2/mediacheck.c:62 ../loader2/mediacheck.c:101
#: ../loader2/mediacheck.c:108 ../loader2/mediacheck.c:117
#: ../loader2/method.c:120 ../loader2/method.c:346 ../loader2/method.c:420
#: ../loader2/modules.c:336 ../loader2/modules.c:348 ../loader2/net.c:277
#: ../loader2/net.c:320 ../loader2/net.c:750 ../loader2/net.c:1094
#: ../loader2/net.c:1647 ../loader2/net.c:1670 ../loader2/net.c:1863
#: ../loader2/nfsinstall.c:68 ../loader2/nfsinstall.c:153
#: ../loader2/nfsinstall.c:283 ../loader2/nfsinstall.c:301
#: ../loader2/nfsinstall.c:342 ../loader2/telnetd.c:93
#: ../loader2/urlinstall.c:78 ../loader2/urlinstall.c:101
#: ../loader2/urlinstall.c:185 ../loader2/urlinstall.c:196
#: ../loader2/urlinstall.c:437 ../loader2/urlinstall.c:446
#: ../loader2/urlinstall.c:455 ../loader2/urls.c:280 ../loader2/urls.c:315
#: ../loader2/urls.c:321 ../loader2/urls.c:333 ../loader2/urls.c:405
msgid "OK"
msgstr "درست"

#: ../anaconda:445
msgid ""
"You do not have enough RAM to use the graphical installer.  Starting text "
"mode."
msgstr ""
"graphical installer استعمال کرنے کے لیے RAM کے مطلوبہ مقدار کم ھےَ  text "
"mode. کا آغاز"

#: ../anaconda:460
msgid "No video hardware found, assuming headless"
msgstr "ویڈیو ھاڈوٰیر دیافت نھیں  ھیڈلس فرض کر لیا"

#: ../anaconda:467 ../anaconda:958
msgid "Unable to instantiate a X hardware state object."
msgstr " ھاڈویر سٹیٹ اوبجیکٹ کو شروع کرنے سےقاصر ہے X."

#: ../anaconda:517
msgid "Starting graphical installation..."
msgstr "گرافیکل انسٹالیشن شروع ھو رہی ھے۔"

#: ../anaconda:838
msgid "Install class forcing text mode installation"
msgstr "کلاس فورس ٹیکسٹ موڈ انسٹال کریں"

#: ../anaconda:878
msgid "Graphical installation not available...  Starting text mode."
msgstr "گرافیکل تنصیب میسر نھیں۔ ٹیکسٹ مورڈ کا آغاز"

#: ../anaconda:886
msgid "DISPLAY variable not set. Starting text mode!"
msgstr "ڈسپلے کا ویریبل سیٹ نہیں ھے۔ ٹیکسٹ موڈ شروع ھو رہا ھے۔"

#: ../autopart.py:888
#, python-format
msgid ""
"Error resizing partition %s.\n"
"\n"
"%s"
msgstr ""

#: ../autopart.py:891
#, python-format
msgid "Start of partition %s was moved when resizing"
msgstr ""

#: ../autopart.py:983
#, fuzzy
msgid "Could not allocate cylinder-based partitions as primary partitions.\n"
msgstr "سلنڈر بیسڈ پاٹیشن کو پرامری پاٹیشن کی جگہ نھیں کیا گیا  "

#: ../autopart.py:988
#, fuzzy
msgid "Could not allocate partitions as primary partitions.\n"
msgstr "اٹیشن کو پرامری پاٹیشن کی جگہ نھیں کیا گیا"

#: ../autopart.py:993
#, fuzzy
msgid "Could not allocate cylinder-based partitions.\n"
msgstr "سلنڈر بیسڈ پاٹیشن کو  جگہ نھیں دی گی"

#: ../autopart.py:1058
#, python-format
msgid ""
"Boot partition %s doesn't belong to a BSD disk label. SRM won't be able to "
"boot from this partition. Use a partition belonging to a BSD disk label or "
"change this device disk label to BSD."
msgstr ""
" لیبل ڈسک کو استعمال کریں جس کا تعلق پاٹیشن سے ھو BSD. اس پاٹیشن سے بوٹ کرنے "
"کے قابل نھیں SRM  لیبل ڈسک کے نھیں ملتا۔  BSD %sبوٹ پاٹیشن "

#: ../autopart.py:1060
#, python-format
msgid ""
"Boot partition %s doesn't belong to a disk with enough free space at its "
"beginning for the bootloader to live on. Make sure that there's at least 5MB "
"of free space at the beginning of the disk that contains /boot"
msgstr ""
"فری خالی جگہ والی ڈسک کے ساتھ تعلق نھیں رکھتا شروع میں بوٹلوڈر کے لیے۔ یاد "
"رکھیں کہ کم از کم پانچ ایم بی خالی جگہ شروع میں ڈسک کع چاھیے %s بوٹ پاٹیشن "

#: ../autopart.py:1062
#, python-format
msgid ""
"Boot partition %s isn't a VFAT partition.  EFI won't be able to boot from "
"this partition."
msgstr ""
"قابل نھیں ھو گا EFI  پاٹیشن نھیں ھے۔ اس پاٹیشن کو بوٹ کرنے کے لیے  VFAT %s "
"بوٹ پاٹیشن . "

#: ../autopart.py:1064
#, fuzzy
msgid ""
"The boot partition must entirely be in the first 4GB of the disk.  "
"OpenFirmware won't be able to boot this installation."
msgstr ""
"اس پاٹیشن کو بوٹ کرنے کے لیے قابل نھیں ھو گا  OpenFirmware بوٹ پاٹیشن ڈسک پر "
"پہلے سے واقع نھیں ھے۔ ."

#: ../autopart.py:1066
#, fuzzy, python-format
msgid ""
"Boot partition %s is not a Linux filesystem, such as ext3.  The system won't "
"be able to boot from this partition."
msgstr ""
"قابل نھیں ھو گا EFI  پاٹیشن نھیں ھے۔ اس پاٹیشن کو بوٹ کرنے کے لیے  VFAT %s "
"بوٹ پاٹیشن . "

#: ../autopart.py:1069
#, python-format
msgid ""
"Boot partition %s may not meet booting constraints for your architecture."
msgstr ""
"آپ کے خاکے میں بوٹینگ کنسٹرینڈ کی صرورت نھیں پڑ سکے گی۔ بوٹ ڈسک بنانے کی "
"حوصلہ افزای کی جاے %s بوٹ پاٹیشن"

#: ../autopart.py:1094
#, python-format
msgid ""
"Adding this partition would not leave enough disk space for already "
"allocated logical volumes in %s."
msgstr ""
"%s اس پاٹیشن کو ایڈ کرنے سے  لوجیکل والیم کے لیے کافی خالی ڈسک پر جگہ نھیں "
"بچے گی "

#: ../autopart.py:1286
msgid "Requested Partition Does Not Exist"
msgstr "مطلوبہ پاٹیشن نھیں ملی"

#: ../autopart.py:1287
#, fuzzy, python-format
msgid ""
"Unable to locate partition %s to use for %s.\n"
"\n"
"Press 'OK' to exit the installer."
msgstr ""
"پنے سسٹم کو ریبوٹ کرنے کے لیے ٹھیک ھے دبایے\n"
"\n"
"%sاستعمال کے لیے ۔   %sپاٹیشن کو تلاش کرنے سے قاصر ھے "

#: ../autopart.py:1312
msgid "Requested Raid Device Does Not Exist"
msgstr "ڈیواس نھیں ھے RAID مطلوبہ"

#: ../autopart.py:1313
#, fuzzy, python-format
msgid ""
"Unable to locate raid device %s to use for %s.\n"
"\n"
"Press 'OK' to exit the installer."
msgstr ""
"اپنے سسٹم کو ریبوٹ کرنے کے لیے ٹھیک ھے دبایے\n"
"\n"
"%sاستعمال کے لیے ۔   %s ڈیواس موجود نھیں ھے  raid "

#: ../autopart.py:1342
msgid "Requested Volume Group Does Not Exist"
msgstr "مطلوبہ والیم گروپ موجود نھیں ھے"

#: ../autopart.py:1343
#, fuzzy, python-format
msgid ""
"Unable to locate volume group %s to use for %s.\n"
"\n"
"Press 'OK' to exit the installer."
msgstr ""
"اپنے سسٹم کو ریبوٹ کرنے کے لیے ٹھیک ھے دبایے\n"
"\n"
"%sاستعمال کے لیے ۔ %s مطلوبہ والیم گروپ موجود نھیں ھے"

#: ../autopart.py:1380
msgid "Requested Logical Volume Does Not Exist"
msgstr "مطلوبہ لوجیکل والیم موجود نھیں ھے"

#: ../autopart.py:1381
#, fuzzy, python-format
msgid ""
"Unable to locate logical volume %s to use for %s.\n"
"\n"
"Press 'OK' to exit the installer."
msgstr ""
"اپنے سسٹم کو ریبوٹ کرنے کے لیے ٹھیک ھے دبایے\n"
"\n"
"%sاستعمال کے لیے ۔ %s مطلوبہ لوجیکل والیم موجود نھیں ھے"

#: ../autopart.py:1516 ../autopart.py:1563
msgid "Automatic Partitioning Errors"
msgstr "ٹومیٹک پاٹیشن کی غلطی"

#: ../autopart.py:1517
#, fuzzy, python-format
msgid ""
"The following errors occurred with your partitioning:\n"
"\n"
"%s\n"
"\n"
"Press 'OK' to exit the installer."
msgstr ""
"پنے سسٹم کو ریبوٹ کرنے کے لیے ٹھیک ھے دبایے \n"
"\n"
"%s\n"
"\n"
"دی گی غلطیاں کے ساتھ ھوی ھیں ."

#: ../autopart.py:1527
msgid "Warnings During Automatic Partitioning"
msgstr "آٹومیٹک پاٹیشن کے دوران خبردار"

#: ../autopart.py:1528
#, python-format
msgid ""
"Following warnings occurred during automatic partitioning:\n"
"\n"
"%s"
msgstr ""
"  %s \n"
"\n"
":  دی گی احطیاط آٹو میٹک پاٹیشن کے دوران واقع ھوی"

#: ../autopart.py:1542 ../autopart.py:1559
#, fuzzy
msgid ""
"\n"
"\n"
"Press 'OK' to exit the installer."
msgstr ""
"\n"
"\n"
"اپنے سسٹم کو ریبوٹ کرنے کے لیے ٹھیک ھے دبایے۔"

#: ../autopart.py:1543 ../iw/partition_gui.py:1023
#: ../textw/partition_text.py:246
msgid "Error Partitioning"
msgstr "پارٹیشن کی غلطی"

#: ../autopart.py:1544
#, python-format
msgid ""
"Could not allocate requested partitions: \n"
"\n"
"%s.%s"
msgstr ""
"%s.%s\n"
"\n"
" مطلوبہ پاٹیشن کو جگہ نھیں مل سکی"

#: ../autopart.py:1561
msgid ""
"\n"
"\n"
"Press 'OK' to choose a different partitioning option."
msgstr ""

#: ../autopart.py:1564
#, fuzzy, python-format
msgid ""
"The following errors occurred with your partitioning:\n"
"\n"
"%s\n"
"\n"
"This can happen if there is not enough space on your hard drive(s) for the "
"installation. %s"
msgstr ""
"دی گی غلطیاں پاٹیشن کے ساتھ واقع ھوی ھیں\n"
"\n"
"%s\n"
"\n"
"اگر آپ کی ھاڈ ڈراو  پر انسٹالیشن کے لیے کافی جگہ نھیں ھے تو یہ ھو سکتا ھے .%s"

#: ../autopart.py:1575
msgid "Unrecoverable Error"
msgstr "نا قابل معاف غلطی"

#: ../autopart.py:1576
msgid "Your system will now be rebooted."
msgstr "آپ کا سسٹم اب ریبوٹ ھو گا"

#: ../autopart.py:1700
msgid ""
"Automatic Partitioning sets partitions based on the selected installation "
"type. You also can customize the partitions once they have been created.\n"
"\n"
"The manual disk partitioning tool, Disk Druid, allows you to create "
"partitions in an interactive environment. You can set the file system types, "
"mount points, partition sizes, and more."
msgstr ""
"چنے ھوے انسٹالیشن ٹایپ پر انحصار کرتے ھوےآٹومیٹک پاٹیشنینگ پاٹیشن سیٹ کرتا "
"ھے۔ آپ بھی پاٹیشن کو بناتے ھوے ایک دفعہ کسٹمایز کر سکتے ھیں\n"
"\n"
"مینول ڈسک  پاٹیشنینگ کا آلہ آپ کو اینٹراکٹو ماحول میںپاٹیشن بنانے کی اجازت "
"دیتا ھے۔آپ مختلف فایل سسٹم،ماونٹ پوانٹ،پاٹیشن کا سایز اور بہت کچھ سیٹ کر "
"سکتے ھیں  Disk Druid "

#: ../autopart.py:1711
msgid ""
"Before automatic partitioning can be set up by the installation program, you "
"must choose how to use the space on your hard drives."
msgstr ""
"اس سے پہلے کہ پروگرام انسٹالیشن آٹو میٹک پاٹیشنگ سیٹ کرے آپ لازمی طور پر "
"اپنی ھاڈ  ڈراو پا جگہ کو کیسے استعمال کرنا چن لیں"

#: ../autopart.py:1716
msgid "Remove all partitions on this system"
msgstr "اس سسٹم سے ہر پاٹیشن ختم کر دیں"

#: ../autopart.py:1717
msgid "Remove all Linux partitions on this system"
msgstr "اس سسٹم سے ہرلینکس پاٹیشن ختم کر دیں"

#: ../autopart.py:1718
msgid "Keep all partitions and use existing free space"
msgstr "ہر پاٹیشن رکھیں اور موجود خالی جگہ استعمال کریں"

#: ../backend.py:126
#, fuzzy, python-format
msgid "Upgrading %s\n"
msgstr "اپگریڈانگ %s-%s-%s.%s.\n"

#: ../backend.py:128
#, fuzzy, python-format
msgid "Installing %s\n"
msgstr "تنصیب_ %s"

#: ../bootloader.py:44 ../bootloader.py:236 ../image.py:87
#: ../partedUtils.py:365 ../partedUtils.py:395 ../partedUtils.py:1106
#: ../partedUtils.py:1259 ../upgrade.py:432 ../yuminstall.py:1463
#: ../yuminstall.py:1490 ../iw/autopart_type.py:180 ../iw/blpasswidget.py:149
#: ../iw/task_gui.py:53 ../iw/upgrade_swap_gui.py:192
#: ../iw/upgrade_swap_gui.py:200 ../iw/upgrade_swap_gui.py:207
#: ../textw/bootloader_text.py:127 ../textw/bootloader_text.py:452
#: ../textw/partition_text.py:250 ../textw/upgrade_text.py:186
msgid "Warning"
msgstr "خبردار"

#: ../bootloader.py:45
#, fuzzy
msgid ""
"Your filesystems have already been activated.  You cannot go back past this "
"point.\n"
"\n"
"Would you like to continue with the installation?"
msgstr ""
"پارٹیشنینگ آپشنز جن کا آپ نے انتخاب کیا ہے پہلے سے چالو ہیں۔ آپ اب ڈسک کی "
"ترمیم والی سکرین پر واپس نہیں جا سکتے۔ کیا آپ تنصیب کے عمل کے ساتھ جاری رہنا "
"چاہتے ہیں؟"

#: ../bootloader.py:49 ../exception.py:348 ../exception.py:363
#: ../exception.py:381 ../fsset.py:1715 ../fsset.py:1972 ../fsset.py:2711
#: ../fsset.py:2718 ../gui.py:1192 ../gui.py:1326 ../gui.py:1403
#: ../image.py:96 ../livecd.py:361 ../packages.py:152 ../upgrade.py:113
#: ../upgrade.py:133 ../yuminstall.py:718 ../yuminstall.py:793
#: ../yuminstall.py:799 ../yuminstall.py:970 ../yuminstall.py:1018
#: ../yuminstall.py:1251 ../yuminstall.py:1288
#, fuzzy
msgid "_Exit installer"
msgstr "انسٹالر %s "

#: ../bootloader.py:49 ../fsset.py:1973 ../image.py:97 ../image.py:250
#: ../kickstart.py:985 ../kickstart.py:1023 ../partedUtils.py:1262
#: ../upgrade.py:113 ../upgrade.py:133 ../yuminstall.py:975
#: ../iw/partition_gui.py:1037
msgid "_Continue"
msgstr "جاری رکھو _"

#: ../bootloader.py:167
msgid "Bootloader"
msgstr "بوٹلوڈر"

#: ../bootloader.py:167
msgid "Installing bootloader..."
msgstr "بوٹلوڈر انسٹال ھو رھا ھے"

#: ../bootloader.py:237
msgid ""
"No kernel packages were installed on your system.  Your boot loader "
"configuration will not be changed."
msgstr ""
"آپ کے سسٹم پر کرنل پیکیجز انسٹال نھیں ھوے تھے۔آپ کے بوٹلوڈر کی کنفیگریشن "
"نھیں بدلے گی"

#: ../cmdline.py:53
msgid "Completed"
msgstr "ختم ھوا"

#: ../cmdline.py:61
msgid "In progress...   "
msgstr "بڑھ رھا ھے۔"

#: ../cmdline.py:90
msgid "Can't have a question in command line mode!"
msgstr "!کمانڈ لاین موڈ میں سوال نھیں ھو سکتا"

#: ../cmdline.py:109
msgid "Parted exceptions can't be handled in command line mode!"
msgstr "!ایکسیپشنز کمانڈ لاین موڈ میں ہینڈل ھو سکتا parted "

#: ../constants.py:75
#, fuzzy
msgid ""
"An unhandled exception has occurred.  This is most likely a bug.  Please "
"save a copy of the detailed exception and file a bug report"
msgstr ""
"کو محفوظ کریں پھر مکمل رپوڑٹ کے ساتھایک چھوڑ دینے والی ایکسیپشن ھو گی ھے۔ یہ "
"عام طور پر ایک بگ ھے۔ مہربانی فرما کر ایکسیپشن  کے سارے  ٹیکسٹ کو کاپی "
"کریں   کریش ڈنپanacondaکو ہھاں%s بیجھیں"

#: ../constants.py:81
msgid " with the provider of this software."
msgstr ""

#: ../constants.py:85
#, fuzzy, python-format
msgid " against anaconda at %s"
msgstr "ایناکونڈا کی ايپڈيٹيس کو پڑھ رہا ہے"

#: ../exception.py:344 ../exception.py:359 ../exception.py:377
msgid "Dump Written"
msgstr "ڈنپ لکھا گیا"

#: ../exception.py:345 ../exception.py:360
#, fuzzy
msgid ""
"Your system's state has been successfully written to the disk. The installer "
"will now exit."
msgstr ""
"آپ کے سسٹم کی حالت کامیابی سے فلاپی پر لکھ دی گی ھے۔ اب آپ کا سسٹم دوبارہ "
"شروع ھو گا"

#: ../exception.py:351 ../exception.py:368 ../exception.py:384
msgid "Dump Not Written"
msgstr "ڈنپ نہیں لکھا گیا"

#: ../exception.py:352 ../exception.py:369
#, fuzzy
msgid "There was a problem writing the system state to the disk."
msgstr "فلاپی پر سسٹم کی حالت لکھنے میں ایک مسُلہ درپیش تھا۔"

#: ../exception.py:378
#, fuzzy
msgid ""
"Your system's state has been successfully written to the remote host.  The "
"installer will now exit."
msgstr ""
"آپ کے سسٹم کی حالت کامیابی سے ریموٹ ہوسٹ پر لکھ دی گی ھے۔ اب آپ کا سسٹم "
"دوبارہ سیٹ ھو گا"

#: ../exception.py:385
msgid "There was a problem writing the system state to the remote host."
msgstr "ریموٹ میزبان  پر سسٹم کی حالت لکھنے میں ایک مسُلہ درپیش تھا۔"

#: ../fsset.py:548
#, fuzzy
msgid "Checking"
msgstr " \"%s\"...چیکنگ"

#: ../fsset.py:549
#, fuzzy, python-format
msgid "Checking filesystem on %s..."
msgstr "۔۔۔ %s/dev/برے بلاکوں کو دیکھ رھا ھے"

#: ../fsset.py:560 ../fsset.py:1015
#, fuzzy
msgid "Resizing"
msgstr "دوبارہ حاصل کررہا"

#: ../fsset.py:561 ../fsset.py:1016
#, fuzzy, python-format
msgid "Resizing filesystem on %s..."
msgstr "فائل سسٹم %s فارمیٹنگ"

#: ../fsset.py:704 ../fsset.py:1685 ../fsset.py:1716 ../fsset.py:1792
#: ../fsset.py:1860 ../fsset.py:1910 ../fsset.py:1995 ../fsset.py:2008
#: ../image.py:267 ../livecd.py:354 ../partIntfHelpers.py:412 ../text.py:445
#: ../yuminstall.py:374 ../yuminstall.py:438 ../yuminstall.py:609
#: ../yuminstall.py:714 ../yuminstall.py:981 ../yuminstall.py:1022
#: ../yuminstall.py:1256 ../yuminstall.py:1281 ../iw/autopart_type.py:95
#: ../iw/autopart_type.py:170 ../iw/autopart_type.py:314
#: ../iw/netconfig_dialog.py:265 ../iw/osbootwidget.py:214
#: ../iw/osbootwidget.py:223 ../iw/raid_dialog_gui.py:671
#: ../iw/raid_dialog_gui.py:710 ../iw/task_gui.py:43 ../iw/task_gui.py:231
#: ../textw/grpselect_text.py:123 ../textw/partition_text.py:1651
#: ../textw/partition_text.py:1657 ../textw/partition_text.py:1679
#: ../textw/upgrade_text.py:174 ../textw/upgrade_text.py:181
#: ../loader2/cdinstall.c:146 ../loader2/cdinstall.c:421
#: ../loader2/driverdisk.c:98 ../loader2/driverdisk.c:299
#: ../loader2/driverdisk.c:337 ../loader2/driverdisk.c:365
#: ../loader2/driverdisk.c:375 ../loader2/driverdisk.c:439
#: ../loader2/hdinstall.c:141 ../loader2/hdinstall.c:252
#: ../loader2/hdinstall.c:438 ../loader2/hdinstall.c:540
#: ../loader2/hdinstall.c:583 ../loader2/hdinstall.c:596
#: ../loader2/kickstart.c:284 ../loader2/lang.c:115 ../loader2/loader.c:344
#: ../loader2/loader.c:445 ../loader2/loader.c:997 ../loader2/mediacheck.c:62
#: ../loader2/mediacheck.c:101 ../loader2/mediacheck.c:108
#: ../loader2/method.c:120 ../loader2/method.c:346 ../loader2/method.c:420
#: ../loader2/nfsinstall.c:153 ../loader2/nfsinstall.c:283
#: ../loader2/nfsinstall.c:301 ../loader2/telnetd.c:93
#: ../loader2/urlinstall.c:78 ../loader2/urlinstall.c:101
#: ../loader2/urlinstall.c:185 ../loader2/urlinstall.c:196
#: ../loader2/urls.c:315 ../loader2/urls.c:321
msgid "Error"
msgstr "نقص"

#: ../fsset.py:705
#, python-format
msgid ""
"An error occurred migrating %s to ext3.  It is possible to continue without "
"migrating this file system if desired.\n"
"\n"
"Would you like to continue without migrating %s?"
msgstr ""
"%s? یا آپنقل مکانی کے بغیر  جاری رھنا پسند کریں گے \n"
"\n"
"سے۔۔اگر چاہیے تو فایل سسٹم کی نقل مکانی کے بغیر  جاری رھنا ممکن ھے۔ ext3 %"
"sایک غلطی واقع ھوی نقل مکانی کرتے ھو ے  "

#: ../fsset.py:1538
#, fuzzy
msgid "EFI System Partition"
msgstr "پارٹیشن میں تبدیلی کریں"

#: ../fsset.py:1542
msgid "RAID Device"
msgstr "ڈواس RAID"

#: ../fsset.py:1546 ../fsset.py:1552
msgid "Apple Bootstrap"
msgstr "Apple Bootstrap"

#: ../fsset.py:1557 ../partitions.py:1121
msgid "PPC PReP Boot"
msgstr " PPC PReP بوٹ"

#: ../fsset.py:1560
msgid "First sector of boot partition"
msgstr "بوٹ پاٹیشن کا پہلا سکٹر"

#: ../fsset.py:1561
msgid "Master Boot Record (MBR)"
msgstr "ماسٹر بوٹ ریکاڈ (MBR)"

#: ../fsset.py:1686
#, fuzzy, python-format
msgid ""
"An error occurred trying to initialize swap on device %s.  This problem is "
"serious, and the install cannot continue.\n"
"\n"
"Press <Enter> to exit the installer."
msgstr ""
"اپنے سسٹم کو ریبوٹ کرنے کے لیے <Enter>دبایں \n"
"\n"
"۔ یہ ایک سنگین مسلہء ھے اور انسٹالیشن جاری نھیں ھو سکتی  %s ایک غلطی ڈیواس "
"پر سویپ کرنے کی کوشش میں واقع ھو گی ھے \""

#: ../fsset.py:1715 ../packages.py:368 ../rescue.py:305 ../rescue.py:307
#: ../textw/upgrade_text.py:132 ../loader2/cdinstall.c:200
#: ../loader2/cdinstall.c:203 ../loader2/method.c:393
msgid "Skip"
msgstr "سکپ"

#: ../fsset.py:1736
#, python-format
msgid ""
"The swap device:\n"
"\n"
"     /dev/%s\n"
"\n"
"is a version 0 Linux swap partition. If you want to use this device, you "
"must reformat as a version 1 Linux swap partition. If you skip it, the "
"installer will ignore it during the installation."
msgstr ""

#: ../fsset.py:1743
#, fuzzy
msgid "Reformat"
msgstr "فارمیٹ"

#: ../fsset.py:1747
#, python-format
msgid ""
"The swap device:\n"
"\n"
"     /dev/%s\n"
"\n"
"in your /etc/fstab file is currently in use as a software suspend partition, "
"which means your system is hibernating. To perform an upgrade, please shut "
"down your system rather than hibernating it."
msgstr ""

#: ../fsset.py:1755
#, python-format
msgid ""
"The swap device:\n"
"\n"
"     /dev/%s\n"
"\n"
"in your /etc/fstab file is currently in use as a software suspend partition, "
"which means your system is hibernating. If you are performing a new install, "
"make sure the installer is set to format all swap partitions."
msgstr ""

#: ../fsset.py:1765
msgid ""
"\n"
"\n"
"Choose Skip if you want the installer to ignore this partition during the "
"upgrade.  Choose Format to reformat the partition as swap space."
msgstr ""

#: ../fsset.py:1770 ../iw/partition_gui.py:373
msgid "Format"
msgstr "فارمیٹ"

#: ../fsset.py:1776
#, fuzzy, python-format
msgid ""
"Error enabling swap device %s: %s\n"
"\n"
"Devices in /etc/fstab should be specified by label, not by device name.\n"
"\n"
"Press OK to exit the installer."
msgstr ""
"اپنے سسٹم کو ریبوٹ کرنے کے لیے ٹھیک ھے دبایے \n"
" \n"
" اس کا عام طور پر مطلب ھے کہ پاٹیشن صاف نھیں ھوی \n"
"  %s\n"
" :%s جیسا کہ  %s ماونٹ ڈیواس کی غلطی  "

#: ../fsset.py:1781
#, fuzzy, python-format
msgid ""
"Error enabling swap device %s: %s\n"
"\n"
"The /etc/fstab on your upgrade partition does not reference a valid swap "
"partition.\n"
"\n"
"Press OK to exit the installer"
msgstr ""
"اپنے سسٹم کو ریبوٹ کرنے کے لیے <Enter>\n"
" \n"
" یہ عام طور پر سویپ پاٹیشن کی وجہ سے ھے \n"
"\n"
" %s: %s سویپ ڈسک کی غلطی دکھا رھا ھے"

#: ../fsset.py:1787
#, fuzzy, python-format
msgid ""
"Error enabling swap device %s: %s\n"
"\n"
"This most likely means this swap partition has not been initialized.\n"
"\n"
"Press OK to exit the installer."
msgstr ""
"سویُپ ڈیوایُس کو چالو کرنے میں نقص%s: %s\n"
"\n"
"اِس کا یہی مطلب ہے کہ سویُپ پارٹیشن کا آغاز نہیں ہوا۔\n"
"\n"
"اپنے سسٹم کو ریبوٹ کرنے کے لیےُ ٹھیک ہے دبایںُ۔  "

#: ../fsset.py:1861
#, fuzzy, python-format
msgid ""
"An error occurred trying to format %s.  This problem is serious, and the "
"install cannot continue.\n"
"\n"
"Press <Enter> to exit the installer."
msgstr ""
"\"      اپنے سسٹم کو ریبوٹ کرنے کے لیے <Enter>دبایں \n"
"\n"
"۔ یہ ایک سنگین مسلہء ھے اور انسٹالیشن جاری نھیں ھو سکتی  %s ایک غلطی صاف کی "
"کوشش کرتے ھوے واقع ھو گی ھے \""

#: ../fsset.py:1911
#, fuzzy, python-format
msgid ""
"An error occurred trying to migrate %s.  This problem is serious, and the "
"install cannot continue.\n"
"\n"
"Press <Enter> to exit the installer."
msgstr ""
"پنے سسٹم کو ریبوٹ کرنے کے لیے <Enter>دبایں \n"
"\n"
"۔  یہ ایک سنگین مسلہء ھے اور انسٹالیشن جاری نھیں ھو سکتی  %s ایک غلطی "
"مایگریشن کی کوشش کرتے ھوے واقع ھو گی ھے "

#: ../fsset.py:1940 ../fsset.py:1949
msgid "Invalid mount point"
msgstr "ماونٹ پواینٹ خالی ھے"

#: ../fsset.py:1941
#, fuzzy, python-format
msgid ""
"An error occurred when trying to create %s.  Some element of this path is "
"not a directory. This is a fatal error and the install cannot continue.\n"
"\n"
"Press <Enter> to exit the installer."
msgstr ""
"اپنے سسٹم کو ریبوٹ کرنے کے لیے <Enter>دبایں \n"
"\n"
" یہ ایک فیٹل غلطی ھے اور انسٹالیشن جاری نھیں ھو سکتی ۔ کچھ الیمینٹ ڈاریکٹری "
"میں نھیں ھے۔%sایک غلطی ھوی ھے جب بنانے کی کوشش کر رہا تھا  <Enter> ."

#: ../fsset.py:1950
#, fuzzy, python-format
msgid ""
"An error occurred when trying to create %s: %s.  This is a fatal error and "
"the install cannot continue.\n"
"\n"
"Press <Enter> to exit the installer."
msgstr ""
"اپنے سسٹم کو ریبوٹ کرنے کے لیے <Enter>دبایں \n"
"\n"
" یہ ایک فیٹل غلطی ھے اور انسٹالیشن جاری نھیں ھو سکتی %s: %sایک غلطی ھوی ھے "
"جب بنانے کی کوشش کر رہا تھا ."

#: ../fsset.py:1964
#, fuzzy
msgid "Unable to mount filesystem"
msgstr "فایٓل لوڈ نھیں ھو سکتی   "

#: ../fsset.py:1965
#, python-format
msgid ""
"An error occurred mounting device %s as %s.  You may continue installation, "
"but there may be problems."
msgstr ""

#: ../fsset.py:1981
#, fuzzy, python-format
msgid ""
"Error mounting device %s as %s: %s\n"
"\n"
"Devices in /etc/fstab should be specified by label, not by device name.\n"
"\n"
"Press OK to exit the installer."
msgstr ""
"اپنے سسٹم کو ریبوٹ کرنے کے لیے ٹھیک ھے دبایے \n"
" \n"
" اس کا عام طور پر مطلب ھے کہ پاٹیشن صاف نھیں ھوی \n"
"  %s\n"
" :%s جیسا کہ  %s ماونٹ ڈیواس کی غلطی  "

#: ../fsset.py:1988
#, fuzzy, python-format
msgid ""
"Error mounting device %s as %s: %s\n"
"\n"
"This most likely means this partition has not been formatted.\n"
"\n"
"Press OK to exit the installer."
msgstr ""
"اپنے سسٹم کو ریبوٹ کرنے کے لیے ٹھیک ھے دبایے \n"
" \n"
" اس کا عام طور پر مطلب ھے کہ پاٹیشن صاف نھیں ھوی \n"
"  %s\n"
" :%s جیسا کہ  %s ماونٹ ڈیواس کی غلطی  "

#: ../fsset.py:2009
#, fuzzy
msgid ""
"Error finding / entry.\n"
"\n"
"This is most likely means that your fstab is incorrect.\n"
"\n"
"Press OK to exit the installer."
msgstr ""
"اندراج ڈھونڈنے میں نقص۔/\n"
" \n"
"درست نہیں ہے۔  fstab اس کا یقینی طور پر یہی مطلب ہے کہ آپ کا \n"
"\n"
"اپنے سسٹم کو دوبارہ سے شروع کرنے کے لیےُ ٹھیک ہے دباُیں۔"

#: ../fsset.py:2703
msgid "Duplicate Labels"
msgstr "ایک جیسا لیبل"

#: ../fsset.py:2704
#, python-format
msgid ""
"Multiple devices on your system are labelled %s.  Labels across devices must "
"be unique for your system to function properly.\n"
"\n"
"Please fix this problem and restart the installation process."
msgstr ""
"مہربانی فرما کر مسلہء حل کریں اور  تنصیب کا عمل دوبارہ شروع کریں \n"
"\n"
"آپ کے سسٹم کو صحیح طور پر کام کرنے کے لیے  ڈیواسس پرمختلف لیبل ھونے چاھیے۔   "
"%sمختلف ڈیواسسز آپ کے سسٹم پر لیبل ھیں .  ."

#: ../fsset.py:2713
#, fuzzy
msgid "Invalid Label"
msgstr "غلط بوٹ نانہ"

#: ../fsset.py:2714
#, fuzzy, python-format
msgid ""
"An invalid label was found on device %s.  Please fix this problem and "
"restart the installation process."
msgstr ""
"مہربانی فرما کر مسلہء حل کریں اور  تنصیب کا عمل دوبارہ شروع کریں \n"
"\n"
"آپ کے سسٹم کو صحیح طور پر کام کرنے کے لیے  ڈیواسس پرمختلف لیبل ھونے چاھیے۔   "
"%sمختلف ڈیواسسز آپ کے سسٹم پر لیبل ھیں .  ."

#: ../fsset.py:2877
msgid "Formatting"
msgstr "صاف کر رہی ہے"

#: ../fsset.py:2878
#, python-format
msgid "Formatting %s file system..."
msgstr "فائل سسٹم %s فارمیٹنگ"

#: ../gui.py:106
msgid "An error occurred copying the screenshots over."
msgstr "اسکرین شاٹ کو کاپی کرنے کے دوران غلطی ھو گئی ھے۔"

#: ../gui.py:117
msgid "Screenshots Copied"
msgstr "اسکرین مناظر کو کاپی کر لیا گیا ھے۔"

#: ../gui.py:118
msgid ""
"The screenshots have been saved into the directory:\n"
"\n"
"\t/root/anaconda-screenshots/\n"
"\n"
"You can access these when you reboot and login as root."
msgstr ""
"سکرین کے مناظر ڈایکٹری میں محفوظ کر دیےُ جا چکے ہیں:\n"
"\n"
"\t/root/anaconda-screenshots/\n"
"\n"
"  آپ اِن کی رسایُ تب کر سکتے ہیں جب آپ ریبوٹ کریں گے اور روٹ سے داخل ہوں گے۔"

#: ../gui.py:161
msgid "Saving Screenshot"
msgstr "اسکرین شاٹ کو محفوظ کیا جا رہا ھے۔"

#: ../gui.py:162
#, python-format
msgid "A screenshot named '%s' has been saved."
msgstr "ھے کو محفوظ کیا جا چکا ھے۔ '%s' اسکرین شاٹ جس کا نام "

#: ../gui.py:165
msgid "Error Saving Screenshot"
msgstr "اسکرین شاٹ کو محفوظ کرنے کے دوران غلطی ھو گئی ھے۔"

#: ../gui.py:166
msgid ""
"An error occurred while saving the screenshot.  If this occurred during "
"package installation, you may need to try several times for it to succeed."
msgstr ""
"اسکرین شاٹ کو کاپی کرنے کے دوران غلطی ھو گئی ھے۔ اگر پیکیج انسٹالیشن کے "
"دوران بھی ایسا ھوا تو آپ کو کامیابی کے لیے زیادہ دفعہ کوشش کرنی پڑے گی۔"

#: ../gui.py:231 ../text.py:534
msgid "Fix"
msgstr "ٹھیک کرنا۔"

#: ../gui.py:232 ../rescue.py:228 ../text.py:535
#: ../textw/bootloader_text.py:72 ../textw/constants_text.py:54
#: ../loader2/driverdisk.c:479 ../loader2/driverdisk.c:489
#: ../loader2/hdinstall.c:334
msgid "Yes"
msgstr "جی ہاں۔"

#: ../gui.py:233 ../rescue.py:228 ../rescue.py:230 ../text.py:536
#: ../textw/bootloader_text.py:72 ../textw/constants_text.py:58
#: ../loader2/driverdisk.c:479 ../loader2/driverdisk.c:489
msgid "No"
msgstr "نہیں۔"

#: ../gui.py:235 ../text.py:538 ../text.py:669 ../loader2/net.c:92
#: ../loader2/net.c:338 ../loader2/net.c:589 ../loader2/net.c:695
#: ../loader2/net.c:820 ../loader2/net.c:828 ../loader2/net.c:1224
#: ../loader2/net.c:1230
msgid "Retry"
msgstr "دوبارہ کوشش کریں۔"

#: ../gui.py:236 ../text.py:539
msgid "Ignore"
msgstr "پرواہ  نہ کرنا۔"

#: ../gui.py:237 ../gui.py:856 ../gui.py:1403 ../partIntfHelpers.py:244
#: ../partIntfHelpers.py:535 ../text.py:108 ../text.py:109 ../text.py:540
#: ../textw/bootloader_text.py:202 ../textw/constants_text.py:46
#: ../loader2/dirbrowser.c:145 ../loader2/driverdisk.c:236
#: ../loader2/kickstart.c:372 ../loader2/loader.c:379 ../loader2/loader.c:480
msgid "Cancel"
msgstr "رد کرنا۔"

#: ../gui.py:582 ../text.py:466
#, fuzzy
msgid "Installation Key"
msgstr "انسٹالیش کی قسم"

#: ../gui.py:656 ../gui.py:664
#, fuzzy
msgid "Error with passphrase"
msgstr "پاسورڈ کے ساتھ ایرر"

#: ../gui.py:657
#, fuzzy
msgid "The passphrases you entered were different.  Please try again."
msgstr "پاسورڈ جو آپ نے داخل کیا ھے وہ اور ھے۔ دوبارہ کوشش کریں"

#: ../gui.py:665
#, fuzzy
msgid "The passphrase must be at least eight characters long."
msgstr "خفیہ الفاظ کم از کم چھ حروف پر مشتمل ھونا چاھیے"

#: ../gui.py:691 ../text.py:276
#, python-format
msgid ""
"Device %s is encrypted. In order to access the device's contents during "
"installation you must enter the device's passphrase below."
msgstr ""

#: ../gui.py:868 ../gui.py:869 ../gui.py:981 ../gui.py:982
#: tmp/anaconda.glade.h:2
msgid "_Debug"
msgstr "ڈیبگ_"

#: ../gui.py:1025 ../gui.py:1027 ../gui.py:1400 ../livecd.py:112
#, fuzzy
msgid "Exit installer"
msgstr "انسٹالر %s "

#: ../gui.py:1027 ../text.py:254 ../text.py:262
msgid "Debug"
msgstr "ڈیبگ"

#: ../gui.py:1029 ../text.py:258
msgid "Exception Occurred"
msgstr "ایکسیپشن واقع ھو گی ھے"

#: ../gui.py:1189 ../text.py:511
msgid "Error Parsing Kickstart Config"
msgstr "کک سٹارٹ کنفیگریشن کو پارس کرتے ھوئے غلطی۔ "

#: ../gui.py:1235
msgid "default:LTR"
msgstr "ایل ٹی آر LTR : ڈیفالٹ "

#: ../gui.py:1315 ../text.py:664
msgid "Error!"
msgstr "نقص!"

#: ../gui.py:1316 ../text.py:665
#, python-format
msgid ""
"An error occurred when attempting to load an installer interface component.\n"
"\n"
"className = %s"
msgstr ""
" \n"
" انسٹالر انٹر فیس کو لوڈ کرتے ھوئے غلطی ھو گئی ھے۔\n"
"className = %s "

#: ../gui.py:1321 ../image.py:165 ../image.py:191 ../packages.py:417
#: ../packages.py:422
msgid "_Exit"
msgstr "بند کرنا _"

#: ../gui.py:1322 ../image.py:191 ../yuminstall.py:606 ../yuminstall.py:970
#: ../yuminstall.py:1018 ../yuminstall.py:1251
msgid "_Retry"
msgstr "دوبارہ کوشش کریں _"

#: ../gui.py:1325 ../packages.py:189 ../packages.py:421
msgid "The installer will now exit..."
msgstr "انسٹالر اب بند ھو رہا ھے۔"

#: ../gui.py:1328 ../packages.py:424
msgid "Your system will now be rebooted..."
msgstr "اب آپ کا سسٹم دوبارہ چلے گا۔"

#: ../gui.py:1329 ../image.py:250 ../packages.py:190 ../packages.py:425
#: ../partedUtils.py:1261 ../yuminstall.py:1304
msgid "_Reboot"
msgstr "دوبارہ چلاؤ _"

#: ../gui.py:1331
#, fuzzy
msgid "Exiting"
msgstr "اخراج"

#: ../gui.py:1401
#, fuzzy
msgid "Are you sure you wish to exit the installation?"
msgstr " چاہتے ہیں۔\"%s\"   کیا آپ کو یقین ہے کہ آپ لوجیکل والیم کو ختم کرنا"

#: ../gui.py:1410
#, python-format
msgid "%s Installer"
msgstr "انسٹالر %s "

#: ../gui.py:1417
msgid "Unable to load title bar"
msgstr "ٹائٹل بار کو لوڈ نہیں کیا جا سکا"

#: ../gui.py:1470
msgid "Install Window"
msgstr "انسٹال ونڈو"

#: ../image.py:88
#, python-format
msgid ""
"The ISO image %s has a size which is not a multiple of 2048 bytes.  This may "
"mean it was corrupted on transfer to this computer.\n"
"\n"
"It is recommended that you exit and abort your installation, but you can "
"choose to continue if you think this is in error."
msgstr ""

#: ../image.py:157
msgid "Couldn't Mount ISO Source"
msgstr ""

#: ../image.py:158
#, python-format
msgid ""
"An error occurred mounting the source device %s.  This may happen if your "
"ISO images are located on an advanced storage device like LVM or RAID, or if "
"there was a problem mounting a partition.  Click exit to abort the "
"installation."
msgstr ""

#: ../image.py:182
msgid "Missing ISO 9660 Image"
msgstr "تصویر  لا پتہ ہے ISO 9660 "

#: ../image.py:183
#, fuzzy, python-format
msgid ""
"The installer has tried to mount image #%s, but cannot find it on the hard "
"drive.\n"
"\n"
"Please copy this image to the drive and click Retry. Click Exit  to abort "
"the installation."
msgstr ""
" انسٹالر نے #%sخاکہ کو ماونُٹ کرنے کی کوشش کی ہے، لیکن اسے کارآمد پر تلاش "
"نہیں کر سکا۔\n"
"\n"
"مہربانی فرما کر اس خاکہ کو ریموٹ کارآمد کے جڑے ہوےُ راستہ پر رکھیں اور دوبارہ "
"کوشش کریں دبایُں۔ تنصیب کو ختم کرنے کے لیےُ دوبارہ بوٹ کریں دبایُں۔ "

#: ../image.py:241
msgid "Required Install Media"
msgstr "انسٹال میڈیا کی ضرورت ھے۔"

#: ../image.py:242
#, fuzzy, python-format
msgid ""
"The software you have selected to install will require the following discs:\n"
"\n"
"%s\n"
"Please have these ready before proceeding with the installation.  If you "
"need to abort the installation and exit please select \"Reboot\"."
msgstr ""
"تنصیب کرنے کے لیے جس سافٹ وئیرکا  آپ نےانتخاب کیا ھے، اس کی انسٹالیشن کے لیے "
"مندرجہ زیل CDs:\n"
"\n"
"%s\n"
"کی ضرورت ھے۔برائے مہربانی تنصیب کو آگے برھانے کے لیے اسے تیار رکھئیے۔اگر آپ "
"کو تنصیب ختم کرنے یا دوبارہ سے بوٹ کرنے کی ضرورت ہے تو \"Reboot\".کا انتخاب "
"کیجیئے۔"

#: ../image.py:250 ../livecd.py:360 ../packages.py:371 ../packages.py:422
#: ../packages.py:425 ../yuminstall.py:718 ../yuminstall.py:799
#: ../yuminstall.py:1288 ../yuminstall.py:1304
msgid "_Back"
msgstr "پیچھے _"

#: ../image.py:268
#, fuzzy, python-format
msgid ""
"An error occurred unmounting the disc.  Please make sure you're not "
"accessing %s from the shell on tty2 and then click OK to retry."
msgstr ""
"میں شیل سے حاصل نہیں کر رھے اور پھر دوبارہ کوشش کرنے کے لیے او کے کو دبائیں۔ "
"tty2 کو %s کو ان ماؤنٹ کرتے ھوئے غلطی ھو گئی ھے۔ براہ مہربانی اس بات کا یقین "
"کر لیں کہ آپ CD"

#: ../installclass.py:71
msgid "Install on System"
msgstr "سسٹم پر تنصیب"

#: ../iscsi.py:205 ../iscsi.py:206
#, fuzzy
msgid "Initializing iSCSI initiator"
msgstr "شروع کر رہا ہے"

#: ../kickstart.py:86
#, fuzzy, python-format
msgid ""
"There was an error running the kickstart script at line %s.  You may examine "
"the output in %s.  This is a fatal error and your install will be aborted.  "
"Press the OK button to exit the installer."
msgstr ""
" اس موقح پہ ایک غلطی سکڑیپلیٹ کو  دوڑارہی تھی۔ممکنہ طور پہ ٓاپ محاصل کی %s "
"پڑتال میں کر سکتے ہیں۔ یہ ایک مھلک غلطی ہے اورآپ کی انسٹال بھی ختم ھوسکتی "
"ہے۔ \n"
"\n"
"اپنےسسٹم کو دوبارہ سے بُوٹ کرنے کے لئےاوکے بٹن دبائیے۔ "

#: ../kickstart.py:101 ../kickstart.py:103
msgid "Scriptlet Failure"
msgstr "سکریپٹلیٹ ناکام ہو گیا ہے"

#: ../kickstart.py:928 ../kickstart.py:945
msgid "Running..."
msgstr "چل رہا ہے"

#: ../kickstart.py:929
msgid "Running post-install scripts"
msgstr "پوسٹ-انسٹال سکریپٹز چلا رہا ہے"

#: ../kickstart.py:946
msgid "Running pre-install scripts"
msgstr "پری-انسٹال سکریپٹز چلا رہا ہے"

#: ../kickstart.py:977
#, fuzzy
msgid "Missing Package"
msgstr "پیکیجز انسٹال ہو رہے ہیں"

#: ../kickstart.py:978
#, python-format
msgid ""
"You have specified that the package '%s' should be installed.  This package "
"does not exist. Would you like to continue or abort your installation?"
msgstr ""

#: ../kickstart.py:984 ../kickstart.py:1022
#, fuzzy
msgid "_Abort"
msgstr "دوبارہ چلاؤ _"

#: ../kickstart.py:1014
#, fuzzy
msgid "Missing Group"
msgstr "امکمل معلومات  "

#: ../kickstart.py:1015
#, python-format
msgid ""
"You have specified that the group '%s' should be installed. This group does "
"not exist. Would you like to continue or abort your installation?"
msgstr ""

#: ../livecd.py:107
#, fuzzy
msgid "Unable to find image"
msgstr "%sایمیج کو انسٹال کرنے میں ناکام"

#: ../livecd.py:108
#, python-format
msgid ""
"The given location isn't a valid %s live CD to use as an installation source."
msgstr ""

#: ../livecd.py:167
#, fuzzy
msgid "Copying live image to hard drive."
msgstr "... انسٹال امیج کو ہارڈ ڈرائیو پر منتقل کیا جا رھا ھے"

#: ../livecd.py:203
#, fuzzy
msgid "Doing post-installation"
msgstr "%s %s تنصیب"

#: ../livecd.py:204
#, fuzzy
msgid ""
"Performing post-installation filesystem changes.  This may take several "
"minutes..."
msgstr "تنصیب کے عمل کا آغاز ہو رہا ہے۔ یہ کافی منٹ لے سکتا ہے۔۔۔ "

#: ../livecd.py:355
#, python-format
msgid ""
"The root filesystem you created is not large enough for this live image "
"(%.2f MB required)."
msgstr ""

#: ../network.py:57
msgid "Hostname must be 64 or less characters in length."
msgstr "ہوسٹ کے نام 64 یا  کم کریکٹرز کے لازمی ہونے چاہییں"

#: ../network.py:60
msgid "Hostname must start with a valid character in the range 'a-z' or 'A-Z'"
msgstr ""
"میں ہو 'a-z' or 'A-Z' ہوسٹ نیم ایک درست کریکٹر سے شروع ہونا چاہیے جس کی رینج"

#: ../network.py:65
msgid "Hostnames can only contain the characters 'a-z', 'A-Z', '-', or '.'"
msgstr ""
"کریکٹر پر مشتمل ہو سکتے ہیں 'a-z', 'A-Z', '-', or '.'  میزبان کے نام صرف "

#: ../network.py:95
#, fuzzy
msgid "IP address is missing."
msgstr "کا پتہ موجود نہیں IP "

#: ../network.py:99
#, fuzzy
msgid ""
"IPv4 addresses must contain four numbers between 0 and 255, separated by "
"periods."
msgstr "کے پتے کے لیے لازمی کہ اس کے نمبر 0 سے لے کر 255 تک ہوں IP"

#: ../network.py:102
#, fuzzy, python-format
msgid "'%s' is not a valid IPv6 address."
msgstr "%s ایک صحیح ہوسٹ کا نام نہیں ہے"

#: ../network.py:104
#, fuzzy, python-format
msgid "'%s' is an invalid IP address."
msgstr "%s ایک صحیح ہوسٹ کا نام نہیں ہے"

#: ../packages.py:147
#, fuzzy
msgid "Resizing Failed"
msgstr "دوبارہ حاصل کررہا"

#: ../packages.py:148
#, fuzzy, python-format
msgid "There was an error encountered resizing the device %s."
msgstr "یھان پر غلطی ٹارگٹ ڈریو کو چیک کریںأیکسانیت صیھع نھیںأ  "

#: ../packages.py:188
#, fuzzy
msgid "LVM operation failed"
msgstr "مونٹ فیلڈ"

#: ../packages.py:342
#, fuzzy
msgid "Invalid Key"
msgstr " سٹر نگ IP غلط"

#: ../packages.py:343
#, fuzzy
msgid "The key you entered is invalid."
msgstr "غلط نمبر کا اندراج کیا گیا۔"

#: ../packages.py:371
#, fuzzy
msgid "_Skip"
msgstr "سکپ"

#: ../packages.py:403 ../packages.py:426
msgid "Warning! This is pre-release software!"
msgstr "خبردار! یہ ایک ریلیز سے پہلے کا سوفٹ ویرُ ! ہے  "

#: ../packages.py:404
#, python-format
msgid ""
"Thank you for downloading this pre-release of %s.\n"
"\n"
"This is not a final release and is not intended for use on production "
"systems.  The purpose of this release is to collect feedback from testers, "
"and it is not suitable for day to day usage.\n"
"\n"
"To report feedback, please visit:\n"
"\n"
"   %s\n"
"\n"
"and file a report against '%s'.\n"
msgstr ""
"پہلے سے جا ری کردہ%s.\n"
"\n"
" کی ڈائون لو ڈنگ پر   ٓاپ کا شکر یہ۔۔یہ اجراہ  حتمی نہیں اور یہ اجراہ "
"پیداواری سسٹمز کو ذہن میں رکھہ کہ نہیں بنایا گیاھے اس جراہ  کا مقصدپڑکھنے "
"والوں کی صلاح لینا ہے اور روزمرہ استعمال کے لیے یہ ناقابل استعمال ھے۔.\n"
"\n"
"برائے مھربانی معائنہ کیجیئے :\n"
"\n"
"%s\n"
"\n"
"اور '%s'کے خلاف ترتیب سے بیان دیجیئے.\n"

#: ../packages.py:417
msgid "_Install anyway"
msgstr "کسی نہ کسی طرح انسٹال کرو۔"

#: ../partedUtils.py:238 ../textw/partition_text.py:577
msgid "Foreign"
msgstr "فارن"

#: ../partedUtils.py:366
#, python-format
msgid ""
"The device %s is LDL formatted instead of CDL formatted.  LDL formatted "
"DASDs are not supported for usage during an install of %s.  If you wish to "
"use this disk for installation, it must be re-initialized causing the loss "
"of ALL DATA on this drive.\n"
"\n"
"Would you like to reformat this DASD using CDL format?"
msgstr ""
"ڈیوائس%sسی۔ڈی۔ایل کی بجائے ایل۔ڈی۔ایل طریقے سے فارمیٹ ھو گئی ہے۔ ایل۔ڈی۔ایل "
"فارمیٹڈ ڈی۔اے۔ایس۔ڈیز۔  %sکی انسٹال میں موضوع نہیں ہوتیں۔اگر ٓاپ یہ ڈسک "
"انسٹال کے لئے استعمال کرنا چاھتے ہیں تو اس کا دوبارہ سے آغا ز ڈرائیو کے تمام "
"ڈیٹا کو ضائع کر دے گا۔.\n"
"\n"
"کیا ٓاپ ڈی۔اے۔ایس۔ڈی کونئے سرے سے سی۔ڈی۔ایل طریقہ سے فارمیٹ کریں گے؟  "

#: ../partedUtils.py:396
#, fuzzy, python-format
msgid ""
"/dev/%s currently has a %s partition layout.  To use this drive for the "
"installation of %s, it must be re-initialized, causing the loss of ALL DATA "
"on this drive.\n"
"\n"
"Would you like to re-initialize this drive?"
msgstr ""
"/dev/%s  اس وقت %s پارٹیشن لےٓاوٹ  ہے۔  کی تنصیب %s نئی پارٹیشنزبنانے  کے لئے "
"،ان کا آغازکار ،اس ڈرائیو پر موجود تمام ڈیٹا کو برباد کر دے گا\n"
"\n"
"۔کیا آپ اس ڈرائیو کو فارمیٹ کرنا چاہتے ہیں؟"

#: ../partedUtils.py:405
msgid "_Ignore drive"
msgstr "نظرانداز ڈرایو_"

#: ../partedUtils.py:406
msgid "_Re-initialize drive"
msgstr ""

#: ../partedUtils.py:994
msgid "Initializing"
msgstr "شروع کر رہا ہے"

#: ../partedUtils.py:995
#, python-format
msgid "Please wait while formatting drive %s...\n"
msgstr "...%s  مہربانی فرما کر ڈرایوُ فارمیٹنگ کے دوران انتظار کریں\n"

#: ../partedUtils.py:1083
#, python-format
msgid ""
"The partition table on device %s was unreadable. To create new partitions it "
"must be initialized, causing the loss of ALL DATA on this drive.\n"
"\n"
"This operation will override any previous installation choices about which "
"drives to ignore.\n"
"\n"
"Would you like to initialize this drive, erasing ALL DATA?"
msgstr ""
"%sڈیوائیسپر موجود پارٹیشن ٹیبل کو پڑھنا ممکن نہیںتھا۔نئی پارٹیشنز تخلیق کرنے "
"کے لئے ،ان کا ٓاغازکار ،اس ڈرائیو پر موجود تمام ڈیٹا کو برباد کر دے گا۔.\n"
"\n"
"یہ عمل کسی بھی گزشتہ تنصیب انتخاب کو ختم کر کے اس پہ دوبارہ سے  انتخاب کر دے "
"گا، جن ڈرائیوز کو نظرانداز کیا گیا تھا۔\n"
"\n"
"کیا ٓاپ اس ڈرائیو پہ آغاز، جو تمام ڈیٹا کو مٹا دے گا،چاہتے ہیں؟ "

#: ../partedUtils.py:1097
#, python-format
msgid ""
"The partition table on device %s (%s) was unreadable. To create new "
"partitions it must be initialized, causing the loss of ALL DATA on this "
"drive.\n"
"\n"
"This operation will override any previous installation choices about which "
"drives to ignore.\n"
"\n"
"Would you like to initialize this drive, erasing ALL DATA?"
msgstr ""
"(%s)ڈیوائیس %s پر موجود پارٹیشن ٹیبل کو پڑھنا ممکن نہیںتھا۔نئی پارٹیشنز "
"تخلیق کرنے کے لئے ،ان کا آغازکار ،اس ڈرائیو پر موجود تمام ڈیٹا کو برباد کر "
"دے گا۔.\n"
"\n"
"یہ عمل کسی بھی گزشتہ تنصیب کے انتخاب کو ختم کر کے اس پہ دوبارہ سے  انتخاب کر "
"دے گا، جن ڈرائیوز کو نظرانداز کیا گیا تھا۔\n"
"\n"
"کیا ٓاپ اس ڈرائیو پہ ٓاغازکار، جو تمام ڈیٹا کو مٹا دے گا،چاہیتے ہیں؟"

#: ../partedUtils.py:1251
#, python-format
msgid ""
"The drive /dev/%s has more than 15 partitions on it.  The SCSI subsystem in "
"the Linux kernel does not allow for more than 15 partitons at this time.  "
"You will not be able to make changes to the partitioning of this disk or use "
"any partitions beyond /dev/%s15 in %s"
msgstr ""

#: ../partedUtils.py:1342
msgid "No Drives Found"
msgstr "کویُ ڈرایو ز نھیں ملی"

#: ../partedUtils.py:1343
msgid ""
"An error has occurred - no valid devices were found on which to create new "
"file systems. Please check your hardware for the cause of this problem."
msgstr ""
"ایک نقص واقع ہو گیا ہے - کویُ درست ڈیوایُسس نہیں ملیں جن پر نےُ فایُل سسٹم بنایں "
"جا سکیں۔ اِس مسُلہ کی جانچ پڑتال کے لیےُ براہ کرم اپنے ہارڈ ویُر کو دیکھیں۔"

#: ../partIntfHelpers.py:42
msgid "Please enter a volume group name."
msgstr "مہربانی فرما کر والیم گروپ نام کا اندراج کریں"

#: ../partIntfHelpers.py:46
msgid "Volume Group Names must be less than 128 characters"
msgstr "والیم گروپ کے نام 128 کریکٹرز سے لازمی کم ہونے چاہییں"

#: ../partIntfHelpers.py:49
#, python-format
msgid "Error - the volume group name %s is not valid."
msgstr "درست نہیں ہے  %s نقص-   والیم گروپ "

#: ../partIntfHelpers.py:54
msgid ""
"Error - the volume group name contains illegal characters or spaces.  "
"Acceptable characters are letters, digits, '.' or '_'."
msgstr ""
"نقص -  والیم گروپ نام غیر قانونی کریکٹرز اور سپیسز پر مشتمل ہیں۔ قابلِ قبول "
"کریکٹرز  لیٹرز، نمبرز، '.'، یا ، '_' ہیں۔"

#: ../partIntfHelpers.py:64
msgid "Please enter a logical volume name."
msgstr "براےُ کرم لوجیکل والیم نام کا اندراج کریں۔"

#: ../partIntfHelpers.py:68
msgid "Logical Volume Names must be less than 128 characters"
msgstr "لوجیکل والیم گروپ کے نام 128 کریکٹرز سے لازمی کم ہونے چاہییں"

#: ../partIntfHelpers.py:72
#, python-format
msgid "Error - the logical volume name %s is not valid."
msgstr "درست نہیں ہے  %s نقص-  لوجیکل والیم نام "

#: ../partIntfHelpers.py:78
msgid ""
"Error - the logical volume name contains illegal characters or spaces.  "
"Acceptable characters are letters, digits, '.' or '_'."
msgstr ""
"نقص -  لوجیکل والیم نام غیر قانونی کریکٹرز اور سپیسز پر مشتمل ہیں۔ قابلِ قبول "
"کریکٹرز  لیٹرز، نمبرز، '.'، یا ، '_' ہیں۔"

#: ../partIntfHelpers.py:102
#, python-format
msgid ""
"The mount point %s is invalid.  Mount points must start with '/' and cannot "
"end with '/', and must contain printable characters and no spaces."
msgstr ""
"ماوئنٹ نشان ضابطہ کے مطابق نہیں۔مائونٹ پوائنٹس کو ہمیشہ '/' سے شروع ھونا "
"چاھئیے اور اس کا اختتام کبھی بھی '/' پہ نہیں ھونا چاھئیے۔ اور مائونٹ پوائنٹس "
"میں چھپائی کی صلاحیت والی علامات ضرور شامل ھونی چاھئیں جبکہ کوئی خالی جگہ "
"نہیں ھونی چاھئیے %s"

#: ../partIntfHelpers.py:109
msgid "Please specify a mount point for this partition."
msgstr "مہربانی فرما کر اس پارٹیشن کے لیےُ ماوُنٹ پواینٹ واضع کریں۔"

#: ../partIntfHelpers.py:119
#, python-format
msgid "This partition is part of the RAID device /dev/md%s."
msgstr "یہ پارٹیشن ریُڈ ڈیواسُ کا حصٰہ ہے    /dev/md%s "

#: ../partIntfHelpers.py:122
msgid "This partition is part of a RAID device."
msgstr "یہ پارٹیشن ریُڈ ڈیواسُ کا حصٰہ ہے"

#: ../partIntfHelpers.py:127
#, python-format
msgid "This partition is part of the LVM volume group '%s'."
msgstr " کا حصہ ہے۔  '%s' والیم گروپ  LVM یہ پارٹیشن "

#: ../partIntfHelpers.py:130
msgid "This partition is part of a LVM volume group."
msgstr " والیم گروپ کا حصہ ہے۔ LVM یہ پارٹیشن "

#: ../partIntfHelpers.py:145 ../partIntfHelpers.py:153
#: ../partIntfHelpers.py:160 ../partIntfHelpers.py:170
#: ../partIntfHelpers.py:194
msgid "Unable To Delete"
msgstr "ختم کرنے سے قاصر ہے"

#: ../partIntfHelpers.py:146
msgid "You must first select a partition to delete."
msgstr "آپ کو پارٹیشن ختم کرنے سے پہلے منتخب کرنا پڑے گا۔ "

#: ../partIntfHelpers.py:154
msgid "You cannot delete free space."
msgstr "آپ خالی جگہ ختم نہیں کر سکتے۔"

#: ../partIntfHelpers.py:161
msgid "You cannot delete a partition of a LDL formatted DASD."
msgstr ""
"آپ ایل ڈی ایل کی پارٹیشن جو کہ ڈی اے ایس ڈی فارمیٹیڈ ہے ختم نہیں کر سکتے"

#: ../partIntfHelpers.py:171
#, python-format
msgid ""
"You cannot delete this partition, as it is an extended partition which "
"contains %s"
msgstr ""
" پر مشتمل  ہے%s آپ اِس پارٹیشن کو ختم نہیں کر سکتے، کیونکہ یہ ایک ایکسٹنڈیڈ "
"پارٹیشن ہے جو"

#: ../partIntfHelpers.py:189 ../iw/raid_dialog_gui.py:607
msgid "This partition is holding the data for the hard drive install."
msgstr "یہ پارٹیشن تنصیب شدہ ہارڈ ڈرایوُ کے لیے ڈیٹا رکھتی ہے۔"

#: ../partIntfHelpers.py:195
msgid ""
"You cannot delete this partition:\n"
"\n"
msgstr ""
"  آپ اس پارٹیشن کو ختم  نہیں کرسکتے: \n"
"\n"

#: ../partIntfHelpers.py:240 ../partIntfHelpers.py:534
#: ../iw/lvm_dialog_gui.py:800
msgid "Confirm Delete"
msgstr "ختم کرنے کو یقینی بنایںُ"

#: ../partIntfHelpers.py:241
#, python-format
msgid "You are about to delete all partitions on the device '/dev/%s'."
msgstr " پر تمام  پارٹیشنز ختم کرنے والے ہیں۔ '/dev/%s' آپ اِس ڈیوایُس"

#: ../partIntfHelpers.py:244 ../partIntfHelpers.py:535
#: ../iw/lvm_dialog_gui.py:803 ../iw/lvm_dialog_gui.py:1152
#: ../iw/osbootwidget.py:103 ../iw/partition_gui.py:1380
msgid "_Delete"
msgstr "ختم کرو"

#: ../partIntfHelpers.py:301
msgid "Notice"
msgstr "توجہ فرمایےُ"

#: ../partIntfHelpers.py:302
#, python-format
msgid ""
"The following partitions were not deleted because they are in use:\n"
"\n"
"%s"
msgstr ""
"مندرجہ ذیل پارٹیشنز ختم نہیں ہو سکتیں کیونکہ وہ استعمال میں ہیں\n"
":\n"
"%s"

#: ../partIntfHelpers.py:318 ../partIntfHelpers.py:331
#: ../partIntfHelpers.py:357 ../partIntfHelpers.py:368
msgid "Unable To Edit"
msgstr "تبدیل کرنے سے قاصر ہے"

#: ../partIntfHelpers.py:319
msgid "You must select a partition to edit"
msgstr "  آپ کے لیےُ پارٹیشن کا انتخاب ترمیم کے لیےُ ضروری ہے "

#: ../partIntfHelpers.py:331 ../partIntfHelpers.py:369
msgid ""
"You cannot edit this partition:\n"
"\n"
msgstr ""
"  آپ اس پارٹیشن کی  ترمیم  نہیں کرسکتے: \n"
"\n"

#: ../partIntfHelpers.py:358
#, python-format
msgid ""
"You cannot edit this partition, as it is an extended partition which "
"contains %s"
msgstr ""
"   آپ اس پارٹیشن کی  ترمیم  نہیں کرسکتے،کیونکہ یہ ایک ایکسٹینڈ پارٹیشن ہے جس "
"میں %s ہے "

#: ../partIntfHelpers.py:390
msgid "Format as Swap?"
msgstr "سویپ کی طرح فارمیٹ؟"

#: ../partIntfHelpers.py:391
#, python-format
msgid ""
"/dev/%s has a partition type of 0x82 (Linux swap) but does not appear to be "
"formatted as a Linux swap partition.\n"
"\n"
"Would you like to format this partition as a swap partition?"
msgstr ""
"/dev/%s کی پارٹیشن کی قسم 82*0(لینیکس سویپ) ہے۔مگر لینکس سویپ (ادل بدل) "
"پارٹیشن کی طرح نہیں اسکتا۔ کیا ٓاپ اس پارٹیشن کو سویپ (ادل بدل) کی طرح فارمیٹ "
"کرنا چاہتے ہیں؟ "

#: ../partIntfHelpers.py:411
#, fuzzy, python-format
msgid "You need to select at least one hard drive to install %s."
msgstr "کی تنصیب کے لیےُ کم از کم ایک ڈرایوُ کا انتخاب کرنا پڑے گا۔ %s آپ کو"

#: ../partIntfHelpers.py:416
#, fuzzy
msgid ""
"You have chosen to use a pre-existing partition for this installation "
"without formatting it. We recommend that you format this partition to make "
"sure files from a previous operating system installation do not cause "
"problems with this installation of Linux. However, if this partition "
"contains files that you need to keep, such as home directories, then "
"continue without formatting this partition."
msgstr ""
"آپ نے اس تنصیب کے لئے پہلے سے موجود پارٹیشن کا انتخاب بغیر اُسے فارمیٹ کے کیا "
"ہے۔ہم ٓاپ کو مشورہ دیتے ہیں کہ ٓاپ اسے فارمیٹ کرلیں تاکہ یہ یقین ھو جائے کہ "
"پہلے سے تنصیب شدہ اوپریٹنگ سسٹم کی فائل ،لینکس کی تنصیب میں کوئی مسئلہ نہیں "
"کرے گی۔تاھم اگراس پارٹنشن پہ موجود فائلز ٓاپ کو درکار ہیں جیسا کہ ھوم "
"ڈائیریکٹریز تو پھر اس پارٹیشن کو فارمیٹ کئے بغیر تنصیب جاری رکھیے"

#: ../partIntfHelpers.py:424
msgid "Format?"
msgstr "فارمیٹ?  "

#: ../partIntfHelpers.py:424 ../iw/partition_gui.py:1035
msgid "_Modify Partition"
msgstr "پارٹیشن کی ترمیم کریں _"

#: ../partIntfHelpers.py:424
msgid "Do _Not Format"
msgstr "  فارمیٹ _نہ  کریں    "

#: ../partIntfHelpers.py:432
msgid "Error with Partitioning"
msgstr "پارٹیشن کرنے میں نقص"

#: ../partIntfHelpers.py:433
#, python-format
msgid ""
"The following critical errors exist with your requested partitioning scheme. "
"These errors must be corrected prior to continuing with your install of %s.\n"
"\n"
"%s"
msgstr ""
"آپ کی منتخب کردہ پارٹیشن  کی تدبیرمیں مندرجہ زیل خطرناک غلطیاں پائی گئی ہیں %"
"sکی تنصیب سے قبل ان غلطیوں کا درست ھونا ضروری ہے.\n"
"\n"
"%s"

#: ../partIntfHelpers.py:447
msgid "Partitioning Warning"
msgstr "پارٹیشنگ کی دھمکی"

#: ../partIntfHelpers.py:448
#, python-format
msgid ""
"The following warnings exist with your requested partition scheme.\n"
"\n"
"%s\n"
"\n"
"Would you like to continue with your requested partitioning scheme?"
msgstr ""
"آپ کی درخواست شدہ پارٹیشن سکیم سے مندرجہ ذیل دھمکیاں جاری ہویُ ہیں۔\n"
"\n"
"%s\n"
"\n"
"کیا آپ اپنی درخواست شدہ پارٹیشنگ سکیم کے ساتھ قایمُ رہنا چاہیں گے؟"

#: ../partIntfHelpers.py:462 ../iw/partition_gui.py:669
msgid ""
"The following pre-existing partitions have been selected to be formatted, "
"destroying all data."
msgstr ""
"پہلے سے موجود مندرجہ ذیل پارٹیشنز کا انتخاب فارمیٹ کے لیُے ہوا ہے، تمام "
"ڈیٹاختم ہو جاےُ گا۔  "

#: ../partIntfHelpers.py:465
msgid ""
"Select 'Yes' to continue and format these partitions, or 'No' to go back and "
"change these settings."
msgstr ""
"  جاری  رہنے کے لیےُ 'ہاں' اور اِن پارٹیشنز کو فارمیٹ کردیں، یا واپس جانے کے "
"لیُے اور سیٹنگز کی ترمیم کے لیےُ 'نہ' کا انتخاب کریں۔   "

#: ../partIntfHelpers.py:471
msgid "Format Warning"
msgstr "فارمیٹ وارننگ"

#: ../partIntfHelpers.py:519
#, python-format
msgid ""
"You are about to delete the volume group \"%s\".\n"
"\n"
"ALL logical volumes in this volume group will be lost!"
msgstr ""
"آپ والیم گروپ  \"%s\".\n"
" کو ختم کرنے والے ہیں \n"
"اس والیم گروپ میں تمام لوجیکل والیمز کھوُ ! جاہُیں گے"

#: ../partIntfHelpers.py:523
#, python-format
msgid "You are about to delete the logical volume \"%s\"."
msgstr "آپ لوجیکل والیم   \"%s\"کو ختم کرنے والے ہیں۔  "

#: ../partIntfHelpers.py:526
msgid "You are about to delete a RAID device."
msgstr "آپ ریڈ ڈیوایُس کو ختم کرنے والے ہیں۔"

#: ../partIntfHelpers.py:529
#, python-format
msgid "You are about to delete the /dev/%s partition."
msgstr "  آپ  /dev/%s  پارٹیشن کو ختم کرنے والے ہیں۔"

#: ../partIntfHelpers.py:532
msgid "The partition you selected will be deleted."
msgstr "آپ کی منتخب شدہ پارٹیشن ختم ہو جاےُ گی۔"

#: ../partIntfHelpers.py:542
msgid "Confirm Reset"
msgstr "واقع شروع کرنا ہے"

#: ../partIntfHelpers.py:543
msgid ""
"Are you sure you want to reset the partition table to its original state?"
msgstr ""
"کیا آپ کو یقین ہے کہ پارٹیشن ٹیبل کو دوبارہ ٹھیک کر کے اس کی اصل حالت پر "
"واپس لانا چاہتے ہیں؟"

#: ../partitions.py:84
msgid "Installation cannot continue."
msgstr "تنصیب جاری نھیں رہ سکتی۔"

#: ../partitions.py:85
msgid ""
"The partitioning options you have chosen have already been activated. You "
"can no longer return to the disk editing screen. Would you like to continue "
"with the installation process?"
msgstr ""
"پارٹیشنینگ آپشنز جن کا آپ نے انتخاب کیا ہے پہلے سے چالو ہیں۔ آپ اب ڈسک کی "
"ترمیم والی سکرین پر واپس نہیں جا سکتے۔ کیا آپ تنصیب کے عمل کے ساتھ جاری رہنا "
"چاہتے ہیں؟"

#: ../partitions.py:113
#, fuzzy
msgid "Writing partitioning to disk"
msgstr "پارٹیشن کی ہجرت کا مقام:"

#: ../partitions.py:114
msgid ""
"The partitioning options you have selected will now be written to disk.  Any "
"data on deleted or reformatted partitions will be lost"
msgstr ""

#: ../partitions.py:119
#, fuzzy
msgid "Go _back"
msgstr "پیچھے _"

#: ../partitions.py:120
msgid "_Write changes to disk"
msgstr ""

#: ../partitions.py:200 ../textw/constants_text.py:50
#: ../loader2/cdinstall.c:351 ../loader2/driverdisk.c:236
#: ../loader2/driverdisk.c:267 ../loader2/driverdisk.c:351
#: ../loader2/driverselect.c:75 ../loader2/driverselect.c:173
#: ../loader2/driverselect.c:199 ../loader2/hdinstall.c:334
#: ../loader2/hdinstall.c:388 ../loader2/kbd.c:138 ../loader2/loader.c:415
#: ../loader2/loader.c:431 ../loader2/loader.c:1159 ../loader2/loader.c:1181
#: ../loader2/net.c:277 ../loader2/net.c:320 ../loader2/net.c:750
#: ../loader2/net.c:1094 ../loader2/net.c:1863 ../loader2/nfsinstall.c:68
#: ../loader2/urls.c:280 ../loader2/urls.c:405
msgid "Back"
msgstr "واپس"

#: ../partitions.py:200 ../rescue.py:305 ../iw/partition_gui.py:572
#: ../textw/network_text.py:60 ../loader2/cdinstall.c:117
#: ../loader2/cdinstall.c:125 ../loader2/driverdisk.c:440
msgid "Continue"
msgstr "جاری رھے"

#: ../partitions.py:204
#, fuzzy
msgid "Confirm"
msgstr "تصدیق:"

#: ../partitions.py:205
#, python-format
msgid ""
"Are you sure you want to skip entering a passphrase for device %s?\n"
"\n"
"If you skip this step the device's contents will not be available during "
"installation."
msgstr ""

#: ../partitions.py:1026
#, python-format
msgid ""
"You have not defined a root partition (/), which is required for "
"installation of %s to continue."
msgstr ""
"آپ نے روٹ پارٹیشن  (/) کی تعریف نہیں کی، جو کہ  تنصیب %s کے جاری رہنے کے "
"لیےُ  ضروری "
"ہے۔                                                                                                                                                       "

#: ../partitions.py:1031
#, python-format
msgid ""
"Your root partition is less than 250 megabytes which is usually too small to "
"install %s."
msgstr ""
"تنصیب کے لیےُ ناکافی ہے۔ %s آپ کی روٹ پارٹیشن 250 میگابایٹُز سے کم ہے جو کہ "

#: ../partitions.py:1053
#, fuzzy
msgid ""
"You must create an EFI System Partition of type FAT and a size of 50 "
"megabytes."
msgstr ""
"اور ہجم 50 میگابایٹُ ہو گا۔ FAT پارٹیشن بنانا پڑے گی جس کی قسم  /boot/efi آپ "
"کو لازمی طور ایک"

#: ../partitions.py:1067
msgid ""
"Your boot partition isn't on one of the first four partitions and thus won't "
"be bootable."
msgstr ""

#: ../partitions.py:1088
msgid "You must create an Apple Bootstrap partition."
msgstr "آپ کو ایپل بوٹ سٹریپ پارٹیشن لازمی طور پر بنانا پڑے گی۔ "

#: ../partitions.py:1110
msgid "You must create a PPC PReP Boot partition."
msgstr "آپ کو پی پی سی پی ریپ بوٹ پارٹیشن لازمی طور پر بنانا پڑے گی۔ "

#: ../partitions.py:1118 ../partitions.py:1129
#, python-format
msgid ""
"Your %s partition is less than %s megabytes which is lower than recommended "
"for a normal %s install."
msgstr ""
"سے کم ہے۔  %s میگابایُٹ سے کم ہے جو  سفارش  کردہ نارمل تنصیب %s پارٹیشن %s آپ "
"کی"

#: ../partitions.py:1163
msgid ""
"Installing on a USB device.  This may or may not produce a working system."
msgstr ""

#: ../partitions.py:1166
msgid ""
"Installing on a FireWire device.  This may or may not produce a working "
"system."
msgstr ""

#: ../partitions.py:1176
msgid "Bootable partitions can only be on RAID1 devices."
msgstr "قابلِ بوٹ پارٹیشنز صرف ریڈ1 ڈیوایُسز پر ہو سکتی ہیں۔"

#: ../partitions.py:1181
msgid "Bootable partitions cannot be on a logical volume."
msgstr "قابلِ بوٹ پارٹیشنز لوجیکل والیم نہیں ہو سکتیں۔"

#: ../partitions.py:1187
#, fuzzy
msgid "Bootable partitions cannot be on a RAID device."
msgstr "قابلِ بوٹ پارٹیشنز صرف ریڈ1 ڈیوایُسز پر ہو سکتی ہیں۔"

#: ../partitions.py:1194
#, fuzzy, python-format
msgid "Bootable partitions cannot be on an %s filesystem."
msgstr "قابلِ بوٹ پارٹیشنز لوجیکل والیم نہیں ہو سکتیں۔"

#: ../partitions.py:1198
#, fuzzy
msgid "Bootable partitions cannot be on an encrypted block device"
msgstr "قابلِ بوٹ پارٹیشنز لوجیکل والیم نہیں ہو سکتیں۔"

#: ../partitions.py:1204
msgid ""
"You have not specified a swap partition.  Although not strictly required in "
"all cases, it will significantly improve performance for most installations."
msgstr ""
"آپ نے سوُیپ پارٹیشن منتخب نہیں کی۔ یہ تمام حالتوں میں لازمی نہیں چاہیے، یہ "
"بیشتر تنصیبات کی کارکردگی بہتر بنا سکتی ہے۔"

#: ../partitions.py:1211
#, python-format
msgid ""
"You have specified more than 32 swap devices.  The kernel for %s only "
"supports 32 swap devices."
msgstr ""
"کرنل صرف 32 سویُپ ڈیوایُسز کی حمایت کرتا ہے۔ %s  آپ نے 32 سے زیادہ سویُپ "
"ڈیوایُسز منتخب کی ہیں۔"

#: ../partitions.py:1222
#, python-format
msgid ""
"You have allocated less swap space (%dM) than available RAM (%dM) on your "
"system.  This could negatively impact performance."
msgstr ""
"سے کم ہے۔ یہ آپ کے سسٹم کی پرفامنس کو بری طرح متاثر کرے گی۔ (%dM) آلاٹ کی ہے "
"جو آپ کے سسٹم کی دستیاب شدہ ریم (%dM) آپ نے سویپ جگہ"

#: ../partitions.py:1517
msgid "the partition in use by the installer."
msgstr "یہ پارٹیشن انسٹالر کے استعمال کے لیےُ ہے"

#: ../partitions.py:1520
msgid "a partition which is a member of a RAID array."
msgstr " کی رکن ہے۔RAID arrayپارٹیشن جو"

#: ../partitions.py:1523
msgid "a partition which is a member of a LVM Volume Group."
msgstr " کی رکن ہے۔LVM Volume Group پارٹیشن جو"

#: ../partRequests.py:273
#, fuzzy, python-format
msgid "The mount point %s must be formatted during live CD installs."
msgstr "اس ماونٹ پواینٹ کا لینکس فایل سسٹم پر ہونا لازمی ہے۔"

#: ../partRequests.py:278
#, python-format
msgid ""
"This mount point is invalid.  The %s directory must be on the / file system."
msgstr ""
"ڈایکٹری جزوی طور پر / فایل سسٹم پر ہونی چاہیے۔ %s یہ ماوُنٹ پوایُنٹ درست نہیں "
"ہے۔ "

#: ../partRequests.py:281
#, python-format
msgid ""
"The mount point %s cannot be used.  It must be a symbolic link for proper "
"system operation.  Please select a different mount point."
msgstr ""
"استعمال نہیں ہو سکتا۔ اس کا سسٹم کی صحیح کارکردگی کے لیےُ سمبالک رابطہ ہونا "
"ضروری ہے۔ مہربانی فرما کر مختلف ماوُنٹ پواینٹ کا انتخاب کریں۔  %s ماوُنٹ "
"پواُینٹ "

#: ../partRequests.py:290
msgid "This mount point must be on a linux file system."
msgstr "اس ماونٹ پواینٹ کا لینکس فایل سسٹم پر ہونا لازمی ہے۔"

#: ../partRequests.py:311
#, python-format
msgid ""
"The mount point \"%s\" is already in use, please choose a different mount "
"point."
msgstr ""
" پہلے سے استعمال میں ہے، مہربانی فرما کر مختلف ماُونٹ موایُنٹ کا انتخاب کریں۔ "
"\"%s\"  ماوُنٹ پواینُٹ "

#: ../partRequests.py:325
#, python-format
msgid ""
"The size of the %s partition (%10.2f MB) exceeds the maximum size of %10.2f "
"MB."
msgstr "%sپارٹیشن کی مقدار،(%10.2f MB)کی آخری حد %10.2f MB) سے تجاوزکر چکی ھے"

#: ../partRequests.py:533
#, python-format
msgid ""
"The size of the requested partition (size = %s MB) exceeds the maximum size "
"of %s MB."
msgstr ""
"سے  بھی زیادہ ھےsize  %s MB مطالبہ کیا ھے وہ اخروی حد (size = %s MB)  جس "
"مقدار کی پارٹیشن "

#: ../partRequests.py:538
#, python-format
msgid "The size of the requested partition is negative! (size = %s MB)"
msgstr "  (سایُز = %s MB )درخواست کندہ کا سایُز نفی!میں ہے"

#: ../partRequests.py:542
msgid "Partitions can't start below the first cylinder."
msgstr "پارٹیشن پہلے سلنڈر سے نیچے شروع نہیں ہو سکتی۔"

#: ../partRequests.py:545
msgid "Partitions can't end on a negative cylinder."
msgstr "پارٹیشن منفی سلنڈر پر ختم نہیں ہو سکتی۔"

#: ../partRequests.py:746
msgid "No members in RAID request, or not RAID level specified."
msgstr ""
"ریڈ کی درخواست میں کویُ میمبر نہیں ہے، یا ریڈ لا لیول واضع نہیں کیا گیا۔"

#: ../partRequests.py:751
#, python-format
msgid "A RAID device of type %s requires at least %s members."
msgstr "میمبرز چاھیں %s ھو اس کو   %s   جس کی قسم   Raid Device"

#: ../partRequests.py:760
#, python-format
msgid ""
"This RAID device can have a maximum of %s spares. To have more spares you "
"will need to add members to the RAID device."
msgstr ""
"سپیرز ھوں گے۔ زیادہ سپیرز کے لیے آپ کو اس میں لوگ اکٹھے کرنے ھوں گے۔  %s  کے "
"زیادہ سے زیادہ  RAID device  اس "

#: ../partRequests.py:1026
msgid ""
"Logical volume size must be larger than the volume group's physical extent "
"size."
msgstr ""

#: ../rescue.py:157
msgid "Starting Interface"
msgstr "انٹرفیز شروع ھو رہا ھے"

#: ../rescue.py:158
#, python-format
msgid "Attempting to start %s"
msgstr "شروع ھو رہا ھے %s"

#: ../rescue.py:200
msgid "When finished please exit from the shell and your system will reboot."
msgstr ""
"جب حتم ھو جاۓ تو مشین سے اخراج کر جاؤ اور مشین ریبوٹ ھونا شروع ھو جاۓ گی۔"

#: ../rescue.py:226
msgid "Setup Networking"
msgstr "نیٹ ورکینگ کا سیٹ اپ"

#: ../rescue.py:227
msgid "Do you want to start the network interfaces on this system?"
msgstr "کیا آپ نیٹ ورک انٹرفیز اس مشین پر شروع کرنا چاہتے ہیں "

#: ../rescue.py:267 ../text.py:695
msgid "Cancelled"
msgstr "کنسلیڈ"

#: ../rescue.py:268 ../text.py:696
msgid "I can't go to the previous step from here. You will have to try again."
msgstr "میں یہاں سے واپس پیپھے نہیں جا سکتا۔ تمھیں دوبارہ کوشش کرنی پڑ ے گی۔"

#: ../rescue.py:294 ../rescue.py:361 ../rescue.py:369 ../rescue.py:447
msgid "Rescue"
msgstr "امداد"

#: ../rescue.py:295
#, python-format
msgid ""
"The rescue environment will now attempt to find your Linux installation and "
"mount it under the directory %s.  You can then make any changes required to "
"your system.  If you want to proceed with this step choose 'Continue'.  You "
"can also choose to mount your file systems read-only instead of read-write "
"by choosing 'Read-Only'.\n"
"\n"
"If for some reason this process fails you can choose 'Skip' and this step "
"will be skipped and you will go directly to a command shell.\n"
"\n"
msgstr ""
"  ڈایکٹری کے ماتحت ماوُنٹ کرے گا۔ آپ تب اپنے سسٹم کے لیےُ ضروری ترمیم کر سکتے "
"ہیں۔ کا انتخاب کریں۔ آپ اپنےفایل سسٹم کو صرف پڑھنے لکھنے کے بجاےُ صرف پڑھنے "
"کے لیےُ ماونُٹ  'Read-Only' کا انتخاب کر کے کر سکتے ہیں۔   'Continue'  اگر آپ "
"اِس سٹیپ کےساتھ بڑھنا چاہتے ہیں تو %s حفاظتی ماحول اب آپ کی لینکس تنصیب کو "
"تلاش کرے گا اور اسے\n"
"\n"
"کا انتخاب کریں تو یہ سٹیپ ختم ہو جاےُ گا اور آپ سیدھے کمانڈ شیل پر چلے جایُں "
"گے۔\n"
" 'Skip' اگر کسی وجہ سے یہ عمل ناکام ہو جاےُ تو آپ\n"

#: ../rescue.py:305 ../rescue.py:310
msgid "Read-Only"
msgstr "ریڈ اونلی"

#: ../rescue.py:336
msgid "System to Rescue"
msgstr "امداد کے لیے سسٹم"

#: ../rescue.py:337
msgid "What partition holds the root partition of your installation?"
msgstr "کون سی پارٹیشن آپ کی روٹ پارٹیشن کو ھولڈ کرتی ھے۔ "

#: ../rescue.py:339 ../rescue.py:343 ../text.py:669 ../text.py:671
msgid "Exit"
msgstr "اخراج"

#: ../rescue.py:362
msgid ""
"Your system had dirty file systems which you chose not to mount.  Press "
"return to get a shell from which you can fsck and mount your partitions.  "
"The system will reboot automatically when you exit from the shell."
msgstr ""
"آپ کے سسٹم میں خراب فایل سسٹمز ہیں جن کا آپ نے ماونٹ  نہ کرنے کے لیےُ انتخاب "
"کیا ہے۔ شیل کے حصول کے لیےُ واپس کر سکتے ہیں۔ آپ کا سسٹم خودبخود شروع ہو جاےُ "
"گا جب آپ شیل سے باہر نکل آہیں گے۔ fsck  دباُیں جہاں آپ اپنی پارٹیشنز کو ماُونٹ "
"اور  "

#: ../rescue.py:370
#, python-format
msgid ""
"Your system has been mounted under %s.\n"
"\n"
"Press <return> to get a shell. If you would like to make your system the "
"root environment, run the command:\n"
"\n"
"\tchroot %s\n"
"\n"
"The system will reboot automatically when you exit from the shell."
msgstr ""
" کے ماتحت ماونُٹ ہو گیا ہے۔   %s آپ کا سسٹم\n"
"\n"
"شیل کے حصول کے لیےُ واپس کو دبایُں۔ اگر آپ اپنے سسٹم کو روٹ ماحول میں استعمال "
"کرنا چاہتے ہیں، اس کمانڈ کو چلایُں:\n"
"\n"
"\tchroot %s\n"
"\n"
"آپ کا سسٹم خود بخود شروع ہو جاےُ گا جب آپ شیل سے خارج ہوں گے۔"

#: ../rescue.py:448
#, python-format
msgid ""
"An error occurred trying to mount some or all of your system. Some of it may "
"be mounted under %s.\n"
"\n"
"Press <return> to get a shell. The system will reboot automatically when you "
"exit from the shell."
msgstr ""
"کے ماتحت ماونٹ ہو گیا ہے۔ %s.\n"
" آپ کےمکمل یا کچھ سسٹم کو ماونٹ کرنے کی کوشش میں نقص پیدا ہو گیا ہے۔ اِس کا "
"کچھ حصہ \n"
"دبایُں۔ جب آپ کا شیل سے خروج ہو گا تو آپ کا سسٹم خودبخود دوبارہ سے بوٹ ہو جاےُ "
"گا۔  <return> شیل کے حصول کے لیے"

#: ../rescue.py:454
msgid "Rescue Mode"
msgstr "مدادی موڈ"

#: ../rescue.py:455
msgid ""
"You don't have any Linux partitions. Press return to get a shell. The system "
"will reboot automatically when you exit from the shell."
msgstr ""
"آپ کے پاس لینکس کی کویُ پارٹیشن نہیں ہے۔ شیل کو حاصل کرنے کے لیےُ ریٹرن دبایُں۔ "
"سسٹم خود بخود دوبارہ سے شروع ہو جاےُ گا جب آپ شیل سے باہر نکلیں گے۔"

#: ../rescue.py:468
#, python-format
msgid "Your system is mounted under the %s directory."
msgstr "ڈیرکٹری کے  ماتحت ماونُٹ ہو گیا ہے۔  %s  آپ کا سسٹم"

#: ../text.py:185 ../text.py:251 ../text.py:264 tmp/exnSave.glade.h:1
msgid "Save"
msgstr "سیو"

#: ../text.py:188
msgid "Save to Disk"
msgstr ""

#: ../text.py:189
#, fuzzy
msgid "Save to Remote"
msgstr "ریموٹ ھوسٹ پر محفوظ کریں"

#: ../text.py:203
msgid "Host"
msgstr "یوسٹ "

#: ../text.py:205
msgid "Remote path"
msgstr "ریموٹ راستہ"

#: ../text.py:207
msgid "User name"
msgstr "یوزر نیم"

#: ../text.py:209
msgid "Password"
msgstr "شناختی نمبر"

#: ../text.py:283 tmp/lukspassphrase.glade.h:5
msgid "Passphrase"
msgstr ""

#: ../text.py:291 tmp/lukspassphrase.glade.h:6
msgid "This is a global passphrase"
msgstr ""

#: ../text.py:347
msgid "Help not available"
msgstr "ابھی مدد نھیں مل سکتی"

#: ../text.py:348
msgid "No help is available for this step of the install."
msgstr "انسٹالیشن کے اس قدم پر کوئ مدد نھیں مل سکتی"

#: ../text.py:446
#, fuzzy
msgid "Repository editing is not available in text mode."
msgstr "گرافیکل تنصیب میسر نھیں۔ ٹیکسٹ مورڈ کا آغاز"

#: ../text.py:471
#, fuzzy, python-format
msgid "Please enter your %(instkey)s"
msgstr "مہربانی فرما کر والیم گروپ نام کا اندراج کریں"

#: ../text.py:488 tmp/instkey.glade.h:6
#, no-c-format, python-format
msgid "Skip entering %(instkey)s"
msgstr ""

#: ../text.py:564 ../loader2/lang.c:63
#, fuzzy, c-format, python-format
msgid "Welcome to %s for %s"
msgstr " میں  %sخوش آمدید"

#: ../text.py:566
#, python-format
msgid "Welcome to %s"
msgstr " میں  %sخوش آمدید"

#: ../text.py:569
msgid ""
" <F1> for help | <Tab> between elements | <Space> selects | <F12> next screen"
msgstr ""
"اگلی سکرین <F12> سلیکٹ <Space> لفظوں کے درمیان <Tab>   مدد کے لیے  <F1> "

#: ../text.py:571
msgid ""
"  <Tab>/<Alt-Tab> between elements   |  <Space> selects   |  <F12> next "
"screen"
msgstr "اگلی سکرین <F12>سلیکٹ <Space> لفظوں کے درمیان <Tab>/<Alt-Tab>"

#: ../upgrade.py:105 ../upgrade.py:126
msgid "Proceed with upgrade?"
msgstr "اپگریڈ کے ساتھ جاری رہنا چاہتے ہیں؟"

#: ../upgrade.py:106
#, python-format
msgid ""
"You have choosen the upgrade for %s architecture, but the installed system "
"is for %s architecture. \n"
"\n"
msgstr ""

#: ../upgrade.py:110
#, fuzzy, python-format
msgid "Would you like to upgrade  the installed system to the %s architecture?"
msgstr "آپ اس پارٹیشن پر فایُل سسٹم کس طرح تیار کرنا چاہتے ہیں؟"

#: ../upgrade.py:127
msgid ""
"The file systems of the Linux installation you have chosen to upgrade have "
"already been mounted. You cannot go back past this point. \n"
"\n"
msgstr ""
"لینکس کی تنصیب کے جن فایلُ سسٹمز کو آپ نے بہتر بنانے کے لیےُ چنا ہے وہ پہلے سے "
"ماوُنٹیڈ  ہیں۔ آپ اس مقام سے واپس ماضی میں نہیں جا سکتے۔\n"
" \n"

#: ../upgrade.py:131
msgid "Would you like to continue with the upgrade?"
msgstr "کیا آپ اپگریڈ کے ساتھ جاری رہنا چاہتے ہیں؟ "

#: ../upgrade.py:229 ../upgrade.py:237
msgid "Dirty File Systems"
msgstr "گندھے فاءیل سسٹم"

#: ../upgrade.py:230
#, python-format
msgid ""
"The following file systems for your Linux system were not unmounted "
"cleanly.  Please boot your Linux installation, let the file systems be "
"checked and shut down cleanly to upgrade.\n"
"%s"
msgstr ""
"آپ کے لینکس سسٹم کے مندرجہ ذیل فایل سسٹم بھرپور طریقے سے انماونُٹ نہیں ہوےُ۔ "
"مہربانی فرما کر اپنی لینکس کی تنصیب کا آغاز کریں، فایل سسٹم کو بہتر کرنے کے "
"لیےُ اِس کو چیک کریں اور بند کر دیں۔\n"
"%s"

#: ../upgrade.py:238
#, python-format
msgid ""
"The following file systems for your Linux system were not unmounted "
"cleanly.  Would you like to mount them anyway?\n"
"%s"
msgstr ""
"آپ کے لینکس سسٹم کے مندرجہ ذیل فایل سسٹم بھرپور طریقے سے انماونُٹ نہیں ہوےُ۔ "
"کیا آپ انھیں کسی بھی طریقے سے ماوُنٹ کرنا چاہتے ہیں؟\n"
"%s"

#: ../upgrade.py:379 ../upgrade.py:385
msgid "Mount failed"
msgstr "مونٹ فیلڈ"

#: ../upgrade.py:380
msgid ""
"One or more of the file systems listed in the /etc/fstab on your Linux "
"system cannot be mounted. Please fix this problem and try to upgrade again."
msgstr ""
"  میں درج ہیں ماوُنٹ نہیں ہو سکتے۔ مہربانی فرما کر اِس مسلہُ کو حل کریں اور "
"دوبارہ بہتری کی کوشش کریں۔/etc/fstab  آپ کے لینکس سسٹم میں ایک یا اس سے "
"زیادہ فایل سسٹمز  جو"

#: ../upgrade.py:386
msgid ""
"One or more of the file systems listed in the /etc/fstab of your Linux "
"system are inconsistent and cannot be mounted.  Please fix this problem and "
"try to upgrade again."
msgstr ""
"  میں درج ہیں غیر جانبدار ہیں اور ماوُنٹ نہیں ہو سکتے۔ مہربانی فرما کر اِس "
"مسلہُ کو حل کریں اور دوبارہ بہتری کی کوشش کریں۔/etc/fstab  آپ کے لینکس سسٹم "
"میں ایک یا اس سے زیادہ فایل سسٹمز  جو"

#: ../upgrade.py:403
msgid ""
"The following files are absolute symbolic links, which we do not support "
"during an upgrade. Please change them to relative symbolic links and restart "
"the upgrade.\n"
"\n"
msgstr ""
"مندرجہ ذیل فایلز پرانی نشانی والے رابطے ہیں، جس کی ہم  بہتری کے دوران  ضمانت "
"نہیں دیتے۔ مہربانی فرما \n"
"کرانھیں ریلیٹیو نشانی والے رابطے میں منتۡل کریں اور بہتری کو دوبارہ سے شروع "
"کریں۔  \n"

#: ../upgrade.py:409
msgid "Absolute Symlinks"
msgstr "ایبسلیوٹ سیملینکز"

#: ../upgrade.py:420
msgid ""
"The following are directories which should instead be symbolic links, which "
"will cause problems with the upgrade.  Please return them to their original "
"state as symbolic links and restart the upgrade.\n"
"\n"
msgstr ""
"مندرجہ ذیل ڈایکٹریاں ہیں جو کہ سمبالک رابطےنہ ہونے کی وجہ سے، بہتری کے لیےُ "
"مسلےُ کھڑے کر دیں گے۔ آپ اِن کو نشانی والے رابطہ کی حالت میں واپس لے آینُ اور "
"اپگریڈ کو دوبارہ سے شروع کریں۔\n"
" \n"

#: ../upgrade.py:426
msgid "Invalid Directories"
msgstr "اِن ویلیڈ ڈایریکٹری"

#: ../upgrade.py:433
#, python-format
msgid "%s not found"
msgstr "نھیں ملا %s"

#: ../vnc.py:145
#, python-format
msgid "%s %s installation on host %s"
msgstr " %s %s  پر تنصیبhost %s"

#: ../vnc.py:147
#, python-format
msgid "%s %s installation"
msgstr "%s %s تنصیب"

#: ../vnc.py:174
#, python-format
msgid "Attempting to connect to vnc client on host %s..."
msgstr "کلاۡینٹ کو ھوسٹ سے منسلک کرنے کی کوششں کر رھا ھے vnc %s..."

#: ../vnc.py:188
msgid "Connected!"
msgstr "منسلک"

#: ../vnc.py:191
msgid "Will try to connect again in 15 seconds..."
msgstr "۱۵ سیکند مین پھر منسلک کرنے کی کوشش کی جاھے گیَ۔۔"

#: ../vnc.py:197
#, fuzzy, python-format
msgid "Giving up attempting to connect after %d tries!\n"
msgstr " کوششوں کے بعد منسلک کرنے کی کوشش ترک کردی 50  \n"

#: ../vnc.py:206
#, python-format
msgid "Please manually connect your vnc client to %s to begin the install."
msgstr ""
"مہربانی کرکے بزاد خود اپنے vnc client کو %s سے منسلک کرکے تنصیب شروع کریں "

#: ../vnc.py:208
msgid "Please manually connect your vnc client to begin the install."
msgstr " کلاینٹ کو مینولی ملایں  vnc مھربانی فرما کر  تنصیب شروع کرنے کے لیے"

#: ../vnc.py:211
msgid "Starting VNC..."
msgstr "کا اغاز VNC..."

#: ../vnc.py:236
msgid "The VNC server is now running."
msgstr "اب چل رہا ہے VNC server "

#: ../vnc.py:249
msgid ""
"\n"
"\n"
"You chose to connect to a listening vncviewer. \n"
"This does not require a password to be set.  If you \n"
"set a password, it will be used in case the connection \n"
"to the vncviewer is unsuccessful\n"
"\n"
msgstr ""

#: ../vnc.py:254
#, fuzzy
msgid ""
"\n"
"\n"
"WARNING!!! VNC server running with NO PASSWORD!\n"
"You can use the self.password=<password> boot option\n"
"if you would like to secure the server.\n"
"\n"
msgstr ""
"\n"
"\n"
"خبردار VNC server کسی خفیہ الفاظ کے بغیر استعمال ہو ریا ہے  \n"
"اپ vncpassword=<password> boot option استعمال کر سکتے ھین \n"
"اگر server کو حفاظت سے رکھنا چھاتے ھین\n"
"\n"

#: ../vnc.py:258
msgid ""
"\n"
"\n"
"You chose to execute vnc with a password. \n"
"\n"
msgstr ""

#: ../vnc.py:260
#, fuzzy
msgid ""
"\n"
"\n"
"Unknown Error.  Aborting. \n"
"\n"
msgstr "نا معلوم نقص"

#: ../vnc.py:285 ../vnc.py:374
msgid "VNC Configuration"
msgstr "کنفیگوریش VNC"

#: ../vnc.py:288 ../vnc.py:378
msgid "No password"
msgstr "کوئ پاسورڈ نھیں ھے"

#: ../vnc.py:290 ../vnc.py:381
msgid ""
"A password will prevent unauthorized listeners connecting and monitoring "
"your installation progress.  Please enter a password to be used for the "
"installation"
msgstr ""
"خفیہ الفاظ آپ کی تنصیب کی پیش رفت کو غیر یقینی رابطہ اور دہکھنے سے بچاتے "
"ہیں۔ مہربانی فرما کر تنصیب کے استعمال کے لیےُ خفیہ الفاظ کا اندراج کریں"

#: ../vnc.py:298 ../vnc.py:389 ../textw/userauth_text.py:44
msgid "Password:"
msgstr "پاسورڈ"

#: ../vnc.py:299 ../vnc.py:390 ../textw/userauth_text.py:46
msgid "Password (confirm):"
msgstr "پاسورڈ  کنفرم "

#: ../vnc.py:317 ../vnc.py:412 ../textw/userauth_text.py:67
msgid "Password Mismatch"
msgstr "پاسورڈ میچ نھیں ھوا"

#: ../vnc.py:318 ../vnc.py:413 ../textw/userauth_text.py:68
msgid "The passwords you entered were different. Please try again."
msgstr "پاسورڈ جو آپ نے داخل کیا ھے وہ اور ھے۔ دوبارہ کوشش کریں"

#: ../vnc.py:323 ../vnc.py:418 ../textw/userauth_text.py:63
msgid "Password Length"
msgstr "پاسورڈ کی لمبائ"

#: ../vnc.py:324 ../vnc.py:419
msgid "The password must be at least six characters long."
msgstr "خفیہ الفاظ کم از کم چھ حروف پر مشتمل ھونا چاھیے"

#: ../vnc.py:355
msgid "Unable to Start X"
msgstr "شروع نھیں ھو سکا X"

#: ../vnc.py:356
msgid ""
"X was unable to start on your machine.  Would you like to start VNC to "
"connect to this computer from another computer and perform a graphical "
"install or continue with a text mode install?"
msgstr ""
"کو شروع کرنا چاہتے ہیں تاکہ وہ کسی دوسرے کمپیوٹر سے اس کمپیوٹر کے ساتھ رابطہ "
"کرے اور گرافیکل تنصیب کرے یا ٹیکسٹ موڈ تنصیب کے ساتھ جاری رہے؟ VNC آپ کی "
"مشین پر شروع ہونے سے قاصر ہے۔ کیا آپ X "

#: ../vnc.py:363 ../vnc.py:366
msgid "Use text mode"
msgstr "ٹیکسٹ مووڈ استمال کریں "

#: ../vnc.py:364
msgid "Start VNC"
msgstr "شروع ھے VNC"

#: ../yuminstall.py:72
#, python-format
msgid "%s MB"
msgstr "%s میگا بائیٹ"

#: ../yuminstall.py:75
#, python-format
msgid "%s KB"
msgstr "%s کلو بائیٹ"

#: ../yuminstall.py:78
#, python-format
msgid "%s Byte"
msgstr "%s بائیٹ"

#: ../yuminstall.py:80
#, python-format
msgid "%s Bytes"
msgstr "%s بائیٹس"

#: ../yuminstall.py:128
msgid "Processing"
msgstr "پروسیسینگ"

#: ../yuminstall.py:129
msgid "Preparing transaction from installation source..."
msgstr " کی انسٹالیشن ڈھونڈنا %s"

#: ../yuminstall.py:160
#, fuzzy, python-format
msgid "<b>Installing %s</b> (%s)\n"
msgstr "تنصیب_ %s"

#: ../yuminstall.py:205
#, python-format
msgid "%s of %s packages completed"
msgstr ""

#: ../yuminstall.py:217
msgid "Finishing upgrade"
msgstr ""

#: ../yuminstall.py:218
#, fuzzy
msgid "Finishing upgrade process.  This may take a little while..."
msgstr "تنصیب کے عمل کا آغاز ہو رہا ہے۔ یہ کافی منٹ لے سکتا ہے۔۔۔ "

#: ../yuminstall.py:355
msgid "Copying File"
msgstr "فائل کو کاپی کیا جا رھا ھے۔"

#: ../yuminstall.py:356
msgid "Transferring install image to hard drive..."
msgstr "... انسٹال امیج کو ہارڈ ڈرائیو پر منتقل کیا جا رھا ھے"

#: ../yuminstall.py:366
#, fuzzy
msgid ""
"An error occurred transferring the install image to your hard drive.  This "
"is probably due to bad media."
msgstr ""
"آپ کی ہارڈ ڈرایُو پر تنصیبی خاکہ منتقل کرنے میں نقص واقع ہو گیا ہے۔ آپ لازمی "
"طور پر ڈسک کی جگہ سے باہر ہیں۔"

#: ../yuminstall.py:370
msgid ""
"An error occurred transferring the install image to your hard drive. You are "
"probably out of disk space."
msgstr ""
"آپ کی ہارڈ ڈرایُو پر تنصیبی خاکہ منتقل کرنے میں نقص واقع ہو گیا ہے۔ آپ لازمی "
"طور پر ڈسک کی جگہ سے باہر ہیں۔"

#: ../yuminstall.py:417
#, fuzzy
msgid "Change Disc"
msgstr "کو تبدیل کریں CDROM"

#: ../yuminstall.py:418
#, python-format
msgid "Please insert %s disc %d to continue."
msgstr "ڈالیں%s disc %d  براےُ کرم جاری کرنے کے لیےُ"

#: ../yuminstall.py:432
#, fuzzy
msgid "Wrong Disc"
msgstr "CDROM غلط"

#: ../yuminstall.py:433
#, fuzzy, python-format
msgid "That's not the correct %s disc."
msgstr "نھیں ہے۔ %s CDROM یہ درست "

#: ../yuminstall.py:439
#, fuzzy
msgid "Unable to access the disc."
msgstr " کی رسایُ کرنے سے قاصر ہے۔CDROM"

#: ../yuminstall.py:604 ../yuminstall.py:606
msgid "Re_boot"
msgstr "Re_boot"

#: ../yuminstall.py:604
#, fuzzy
msgid "_Eject"
msgstr " سی‌ڈی ناھر نکالے"

#: ../yuminstall.py:610
#, fuzzy, python-format
msgid ""
"The file %s cannot be opened.  This is due to a missing file, a corrupt "
"package or corrupt media.  Please verify your installation source.\n"
"\n"
"If you exit, your system will be left in an inconsistent state that will "
"likely require reinstallation.\n"
"\n"
msgstr ""
" پیکج کُھل نہیں سکتا ۔جسکی وجہ کسی فائل کاکم ھونا یا پیکیج کا خراب ھونا ھو "
"سکتا ھے۔اگر آپ %s-%s-%s-%sسی ڈی میڈیا سے انسٹال کر رہے ہیں تو عموما اس کا "
"مطلب سی۔ڈی میڈیا کا خراب ھونا ھے۔یا سی۔ڈی  ڈرائیو میڈیا کو پڑھ نہیں سکتا۔\n"
"\n"

#: ../yuminstall.py:650
#, fuzzy
msgid "Retrying"
msgstr "دوبارہ حاصل کررہا"

#: ../yuminstall.py:650
msgid "Retrying package download..."
msgstr ""

#: ../yuminstall.py:715
#, fuzzy, python-format
msgid ""
"There was an error running your transaction for the following reason: %s\n"
msgstr ""
"%s\n"
":\n"
" درجہ ذیل کی وجہ سے\"%s\"دیا گیا میزبان نام صیحیح نہیں"

#: ../yuminstall.py:748 ../yuminstall.py:749
msgid "file conflicts"
msgstr ""

#: ../yuminstall.py:750
msgid "older package(s)"
msgstr ""

#: ../yuminstall.py:751
msgid "insufficient disk space"
msgstr ""

#: ../yuminstall.py:752
msgid "insufficient disk inodes"
msgstr ""

#: ../yuminstall.py:753
msgid "package conflicts"
msgstr ""

#: ../yuminstall.py:754
msgid "package already installed"
msgstr ""

#: ../yuminstall.py:755
#, fuzzy
msgid "required package"
msgstr "خالی جگہ"

#: ../yuminstall.py:756
msgid "package for incorrect arch"
msgstr ""

#: ../yuminstall.py:757
msgid "package for incorrect os"
msgstr ""

#: ../yuminstall.py:771
msgid "You need more space on the following file systems:\n"
msgstr ""

#: ../yuminstall.py:784
#, fuzzy, python-format
msgid ""
"There were file conflicts when checking the packages to be installed:\n"
"%s\n"
msgstr "پیکج کو انسٹال کرنے کیلئے کس قسم کا میڈیا چائیے?"

#: ../yuminstall.py:787
#, fuzzy, python-format
msgid ""
"There was an error running your transaction for the following reason(s): %"
"s.\n"
msgstr ""
"%s\n"
":\n"
" درجہ ذیل کی وجہ سے\"%s\"دیا گیا میزبان نام صیحیح نہیں"

#: ../yuminstall.py:791
#, fuzzy
msgid "Error Running Transaction"
msgstr "ٹرانسیکشن کو چلانے میں نقص"

#: ../yuminstall.py:796
msgid "Error running transaction"
msgstr "ٹرانسیکشن کو چلانے میں نقص"

#: ../yuminstall.py:956
msgid "Retrieving installation information..."
msgstr "تنصیب کی معلومات حاصل کر رہا ہے۔"

#: ../yuminstall.py:958
#, fuzzy, python-format
msgid "Retrieving installation information for %s..."
msgstr "تنصیب کی معلومات حاصل کر رہا ہے۔"

#: ../yuminstall.py:970 ../textw/bootloader_text.py:277
#: ../textw/constants_text.py:62 ../textw/partition_text.py:1428
msgid "Edit"
msgstr "ترمیم"

#: ../yuminstall.py:982 ../yuminstall.py:1257
#, fuzzy, python-format
msgid ""
"Unable to read package metadata. This may be due to a missing repodata "
"directory.  Please ensure that your install tree has been correctly "
"generated.\n"
"\n"
"%s"
msgstr ""
"میٹا ڈیٹا پیکج پڑھنے سے قاصر ہے۔ اِس کی وجہ گم جانے والی ریپو ڈیٹا ڈایکٹری ہو "
"سکتی ہے۔ مہربانی فرما کر آپ  %s اِس بات کی یقین دہانی کر لیں کہ آپ کا تنصیبی "
"درخت صحیح طور پر ابھرا ہے۔ "

#: ../yuminstall.py:1023
msgid ""
"Unable to read group information from repositories.  This is a problem with "
"the generation of your install tree."
msgstr ""

#: ../yuminstall.py:1056 ../iw/GroupSelector.py:545
msgid "Uncategorized"
msgstr "کسی تقسیم کے بغیر"

#: ../yuminstall.py:1282
#, python-format
msgid ""
"Your selected packages require %d MB of free space for installation, but you "
"do not have enough available.  You can change your selections or exit the "
"installer."
msgstr ""

#: ../yuminstall.py:1301
msgid "Reboot?"
msgstr "ریبوٹ"

#: ../yuminstall.py:1302
msgid "The system will be rebooted now."
msgstr "سسٹم ابھی ریبوٹ ھو گا"

#: ../yuminstall.py:1464
#, python-format
msgid ""
"You appear to be upgrading from a system which is too old to upgrade to this "
"version of %s.  Are you sure you wish to continue the upgrade process?"
msgstr ""
"کے ورین سے بہت پرانا ہے۔کیا آپ کو یقین ہے کہ آپ بہتری کے عمل کے ساتھ جاری "
"رہنا چاہیں گے؟ %s  یہ دیکھنے میں آ رہا ہے کہ آپ ایسے سسٹم کو بہتر بنانا "
"چاہتے ہیں جو اِس     "

#: ../yuminstall.py:1491
#, fuzzy, python-format
msgid ""
"The arch of the release of %s you are upgrading to appears to be %s which "
"does not match your previously installed arch of %s.  This is likely to not "
"succeed.  Are you sure you wish to continue the upgrade process?"
msgstr ""
"کے ورین سے بہت پرانا ہے۔کیا آپ کو یقین ہے کہ آپ بہتری کے عمل کے ساتھ جاری "
"رہنا چاہیں گے؟ %s  یہ دیکھنے میں آ رہا ہے کہ آپ ایسے سسٹم کو بہتر بنانا "
"چاہتے ہیں جو اِس     "

#: ../yuminstall.py:1538
#, fuzzy
msgid "Post Upgrade"
msgstr "اپ گریڈ"

#: ../yuminstall.py:1539
#, fuzzy
msgid "Performing post upgrade configuration..."
msgstr "پوسٹ تنصیب ترتیبات نبھا رہا ہے۔۔۔"

#: ../yuminstall.py:1541
msgid "Post Install"
msgstr "پوسٹ تنصیب"

#: ../yuminstall.py:1542
msgid "Performing post install configuration..."
msgstr "پوسٹ تنصیب ترتیبات نبھا رہا ہے۔۔۔"

#: ../yuminstall.py:1764
msgid "Installation Progress"
msgstr "انسٹالیش کی پیش رفت"

#: ../yuminstall.py:1799
msgid "Install Starting"
msgstr "تنصیب شروع ہو رہی ھے"

#: ../yuminstall.py:1800
msgid "Starting install process.  This may take several minutes..."
msgstr "تنصیب کے عمل کا آغاز ہو رہا ہے۔ یہ کافی منٹ لے سکتا ہے۔۔۔ "

#: ../yuminstall.py:1837
msgid "Dependency Check"
msgstr "انحصار چیک"

#: ../yuminstall.py:1838
msgid "Checking dependencies in packages selected for installation..."
msgstr "تنصیب کے لیےُ منتخب شدہ پیکیجیز میں انحصار چیک کر رہا ہے۔"

#: ../zfcp.py:49
msgid "You have not specified a device number or the number is invalid"
msgstr "آپ نے ڈیوایس نمبر نھیں دیا یا وہ اِن ویلڈ ھے  "

#: ../zfcp.py:51
msgid "You have not specified a worldwide port name or the name is invalid."
msgstr "آپ نے ورلڈ وایڈ پورٹ نیم نھیں دیا یا نام اِن ویلڈ ھے"

#: ../zfcp.py:53
msgid "You have not specified a FCP LUN or the number is invalid."
msgstr " نھیں لکھا یا آپ کا نمبر اِن ویلڈ ھے   FCP LUN  ٓاپ نے "

#: ../iw/account_gui.py:48
#, fuzzy
msgid "Root _Password:"
msgstr "روٹ پاسورڈ ۔ ۔"

#: ../iw/account_gui.py:50
#, fuzzy
msgid "_Confirm:"
msgstr "کنفرم ۔ ۔"

#: ../iw/account_gui.py:87
msgid "Caps Lock is on."
msgstr ""

#: ../iw/account_gui.py:97 ../iw/account_gui.py:105 ../iw/account_gui.py:112
#: ../iw/account_gui.py:132 ../textw/userauth_text.py:71
msgid "Error with Password"
msgstr "پاسورڈ کے ساتھ ایرر"

#: ../iw/account_gui.py:98
msgid ""
"You must enter your root password and confirm it by typing it a second time "
"to continue."
msgstr "آپ اپنا روٹ پاسورڈ د یں اور دوبارہ لکھ کر کنفرم کریں"

#: ../iw/account_gui.py:106
msgid "The passwords you entered were different.  Please try again."
msgstr "پاسورڈ جو آپ نے داخل کیا ھے وہ اور ھے۔ دوبارہ کوشش کریں"

#: ../iw/account_gui.py:113
msgid "The root password must be at least six characters long."
msgstr "روٹ پاسورڈ کم از کم چھ حروف پر مشتمل ھونا چاھیے"

#: ../iw/account_gui.py:120 ../textw/userauth_text.py:78
#, fuzzy
msgid "Weak Password"
msgstr "شناختی نمبر"

#: ../iw/account_gui.py:121 ../textw/userauth_text.py:79
#, fuzzy, python-format
msgid ""
"Weak password provided: %s\n"
"\n"
"Would you like to continue with this password?"
msgstr "کیا آپ اپگریڈ کے ساتھ جاری رہنا چاہتے ہیں؟ "

#: ../iw/account_gui.py:133 ../textw/userauth_text.py:72
#, fuzzy
msgid ""
"Requested password contains non-ASCII characters, which are not allowed."
msgstr ""
"حروف ہیں جن کے استمال کی پاسورڈ میں اجازت نھیں ھے  non-ascii مانگے گٔے پاسورڈ "
"میں"

#: ../iw/autopart_type.py:96
msgid ""
"No partitions are available to resize.  Only physical partitions with "
"specific filesystems can be resized."
msgstr ""

#: ../iw/autopart_type.py:179
msgid "Do you really want to boot from disk which is not used for instalation?"
msgstr ""

#: ../iw/autopart_type.py:260
#, fuzzy
msgid "Invalid Initiator Name"
msgstr "نام _انیٹیٹر: iSCSI"

#: ../iw/autopart_type.py:261
#, fuzzy
msgid "You must provide an initiator name."
msgstr "آپ کو سرور کا کا نام  داخل کرنا چاہیۓ"

#: ../iw/autopart_type.py:283
msgid "Error with Data"
msgstr "ڈیٹا میں نقص "

#: ../iw/autopart_type.py:403 ../textw/partition_text.py:1517
#, fuzzy
msgid "Remove all partitions on selected drives and create default layout"
msgstr "اس سسٹم سے ہر پاٹیشن ختم کر دیں"

#: ../iw/autopart_type.py:404 ../textw/partition_text.py:1518
#, fuzzy
msgid "Remove Linux partitions on selected drives and create default layout"
msgstr "اس سسٹم سے ہر پاٹیشن ختم کر دیں"

#: ../iw/autopart_type.py:405
#, fuzzy
msgid "Resize existing partition and create default layout in free space"
msgstr "اس سسٹم سے ہر پاٹیشن ختم کر دیں"

#: ../iw/autopart_type.py:406 ../textw/partition_text.py:1519
#, fuzzy
msgid "Use free space on selected drives and create default layout"
msgstr "اس سسٹم سے ہر پاٹیشن ختم کر دیں"

#: ../iw/autopart_type.py:407 ../textw/partition_text.py:1520
msgid "Create custom layout"
msgstr ""

#: ../iw/blpasswidget.py:45
msgid "_Use a boot loader password"
msgstr "بوٹ لوڈر پاسورڈ استمال کریں"

#: ../iw/blpasswidget.py:46
#, fuzzy
msgid ""
"A boot loader password prevents users from changing kernel options, "
"increasing security."
msgstr ""
"بوٹ لوڈر خفیہ الفاظ یوزرز کو کرنل کو دی جانے والی خفیہ آپشنز کی ترمیم سے "
"بچاتا ہے۔ سسٹم کی زیادہ سیکیورٹی کے لیےُ، آپ کو خفیہ الفاظ رکھنے کا مشورہ دیا "
"جاتا ہے۔"

#: ../iw/blpasswidget.py:77
msgid "Change _password"
msgstr "پاسورڈ تبد یل کر یں"

#: ../iw/blpasswidget.py:100
msgid "Enter Boot Loader Password"
msgstr "بوٹ لوڈر پاسورڈ داخل کر یں"

#: ../iw/blpasswidget.py:106
msgid ""
"Enter a boot loader password and then confirm it.  (Note that your BIOS "
"keymap may be different than the actual keymap you are used to.)"
msgstr ""
"کا نقشہ اصل نقشے جس سے آپ منسلک ہیں مختلف بھی ہو سکتا ہے)۔ BIOS بوٹ لوڈر "
"خفیہ الفاظ کا اندراج کریں اور یقین دہانی کریں۔ (اس بات کا آپ خیال رکہیں کہ "
"آپ کی "

#: ../iw/blpasswidget.py:113
msgid "_Password:"
msgstr "پاسورڈ"

#: ../iw/blpasswidget.py:119
msgid "Con_firm:"
msgstr "کنفرم"

#: ../iw/blpasswidget.py:140
msgid "Passwords don't match"
msgstr "پاسورڈ میچ نھیں ھوا"

#: ../iw/blpasswidget.py:141 ../textw/bootloader_text.py:443
msgid "Passwords do not match"
msgstr "پاسورڈ میچ نھیں ھوا"

#: ../iw/blpasswidget.py:150 ../textw/bootloader_text.py:453
#, fuzzy
msgid ""
"Your boot loader password is shorter than six characters.  We recommend a "
"longer boot loader password.\n"
"\n"
"Would you like to continue with this password?"
msgstr ""
"آپ کا بوٹ لوڈر پاسورڈ چھ کریکٹرز سے کم ہے۔ ہم  لمبے  بوٹ لوڈر  پاسورڈ کا "
"مشورہ دیتے ہیں۔\n"
"\n"
"کیا آپ اِس پاسورڈ کے ساتھ آگے جانا چاہتے ہیں؟ "

#: ../iw/bootloader_main_gui.py:34 ../textw/bootloader_text.py:46
#: ../textw/bootloader_text.py:111 ../textw/bootloader_text.py:168
#: ../textw/bootloader_text.py:286 ../textw/bootloader_text.py:395
msgid "Boot Loader Configuration"
msgstr "بوٹ لوڈر کنفیگوریشن"

#: ../iw/bootloader_main_gui.py:170 ../iw/bootloader_main_gui.py:175
#: ../iw/bootloader_main_gui.py:212
#, fuzzy, python-format
msgid "_Install boot loader on /dev/%s."
msgstr "بوٹلوڈر انسٹال ھو رھا ھے"

#: ../iw/bootloader_main_gui.py:218
#, fuzzy
msgid "_Change device"
msgstr "کو تبدیل کریں CDROM"

#: ../iw/congrats_gui.py:31
msgid "Congratulations"
msgstr "مبارک ھو"

#: ../iw/congrats_gui.py:71
#, fuzzy
msgid ""
"Press the \"Reboot\" button to reboot your system.\n"
"\n"
msgstr ""
"\n"
"\n"
"اپنے سسٹم کو ریبوٹ کرنے کے لیے ٹھیک ھے دبایے۔"

#: ../iw/congrats_gui.py:75
#, python-format
msgid ""
"Congratulations, the installation is complete.\n"
"\n"
"%s%s"
msgstr ""
"مبارک ھو انسٹالیشن پوری ھو چکی ھے۔\n"
"\n"
"%s%s"

#: ../iw/examine_gui.py:35
msgid "Upgrade Examine"
msgstr "اکزمن کو اپگڑد کریں"

#: ../iw/examine_gui.py:57
#, python-format
msgid "_Install %s"
msgstr "تنصیب_ %s"

#: ../iw/examine_gui.py:59
msgid ""
"Choose this option to freshly install your system. Existing software and "
"data may be overwritten depending on your configuration choices."
msgstr ""
"اپنے سسٹم کی تازہ ترین تنصیب کے لیےُ اِس آپشن کا انتخاب کریں۔ موجودہ سافٹ ویرُ "
"اور ڈیٹا دوبارہ سے لکہا جا سکتا ہے اس کا  انحصار آپ کی منتخب کردہ ترامیم پر "
"ہے۔"

#: ../iw/examine_gui.py:63
msgid "_Upgrade an existing installation"
msgstr "موجود انسٹالیشں کو اپگڑد کریں_"

#: ../iw/examine_gui.py:65
#, fuzzy, python-format
msgid ""
"Choose this option if you would like to upgrade your existing %s system.  "
"This option preserves the existing data on your drives."
msgstr ""
"تو اس کا انتخاب کریں۔ یہ انتخاب آپ کے موجود دیٹا کی حفاظت کرے گا %s اگر آپ "
"اپنے موجود سسٹم کو اور اچھا کرنا چاہتے ہیں"

#: ../iw/examine_gui.py:112 ../iw/pixmapRadioButtonGroup_gui.py:203
msgid "The following installed system will be upgraded:"
msgstr "درجہ ذیل انسٹال سسٹم اپگڑد کر دیا گیا ہے"

#: ../iw/examine_gui.py:125
msgid "Unknown Linux system"
msgstr " Linux system نہ معلوم  "

#: ../iw/GroupSelector.py:210
#, fuzzy, python-format
msgid "Packages in %s"
msgstr "پیکج سیلیکشن"

#: ../iw/GroupSelector.py:482
#, python-format
msgid "%d of %d optional package selected"
msgid_plural "%d of %d optional packages selected"
msgstr[0] ""
msgstr[1] ""

#: ../iw/GroupSelector.py:485
#, python-format
msgid "<i>%s</i>"
msgstr ""

#: ../iw/language_gui.py:30 ../textw/language_text.py:44
msgid "Language Selection"
msgstr "زبان کا انتخاب کریں"

#: ../iw/language_gui.py:76 ../textw/language_text.py:45 ../loader2/lang.c:374
msgid "What language would you like to use during the installation process?"
msgstr "کون سی زبان کا اپ استعمال کر نا چاہتے ہیں؟"

#: ../iw/lvm_dialog_gui.py:123 ../iw/lvm_dialog_gui.py:170
#: ../iw/lvm_dialog_gui.py:181 ../iw/lvm_dialog_gui.py:221
#: ../iw/lvm_dialog_gui.py:295 ../iw/lvm_dialog_gui.py:624
#: ../iw/lvm_dialog_gui.py:706 ../iw/lvm_dialog_gui.py:925
#: ../textw/partition_text.py:1275 ../textw/partition_text.py:1294
msgid "Not enough space"
msgstr "پوری جگہ نہیں"

#: ../iw/lvm_dialog_gui.py:124
msgid ""
"The physical extent size cannot be changed because otherwise the space "
"required by the currently defined logical volumes will be increased to more "
"than the available space."
msgstr ""
"فیزیکل ایکسٹنٹ  سایز کو تبدیل نہیں کیا جاسکتا کیونکہ  ورنہ موجودہ  لوجیکل "
"والیمز کی مطلوبہ جگہ دستیاب جگہ سے زیادہ  بڑھ جاےُ گی۔  "

#: ../iw/lvm_dialog_gui.py:133
msgid "Confirm Physical Extent Change"
msgstr "یقین کریں کہ فیزیکل بڑھا کر تبدیل کر دیا جاے "

#: ../iw/lvm_dialog_gui.py:134
#, fuzzy
msgid ""
"This change in the value of the physical extent will require the sizes of "
"the current logical volume requests to be rounded up in size to an integer "
"multiple of the physical extent.\n"
"\n"
"This change will take effect immediately."
msgstr ""
"فیزیکل کے سایز میں یہ تبدیلی کے لیے موجود لوجیکل والیم کے سایز کو  فیزیکل "
"ملٹیپل انٹرجر کے سایز کے مطابق کرنا ہے"

#: ../iw/lvm_dialog_gui.py:143 ../iw/lvm_dialog_gui.py:203
#: ../iw/network_gui.py:142 ../iw/network_gui.py:146 ../iw/network_gui.py:166
msgid "C_ontinue"
msgstr "جاری"

#: ../iw/lvm_dialog_gui.py:171
#, python-format
msgid ""
"The physical extent size cannot be changed because the value selected (%"
"10.2f MB) is larger than the smallest physical volume (%10.2f MB) in the "
"volume group."
msgstr ""
"(%10.2f MB )  فیزیکل ایکسٹنٹ کے سایز کو تبدیل نہیں کیا جاسکتا کیونکہ   "
"انتخاب  کیا  ہے اس کا والیم گروپ میں سایز بڑا ہے چھوٹے فیزیکل والیم(%10.2f "
"MB)  سے   "

#: ../iw/lvm_dialog_gui.py:182
#, python-format
msgid ""
"The physical extent size cannot be changed because the value selected (%"
"10.2f MB) is too large compared to the size of the smallest physical volume "
"(%10.2f MB) in the volume group."
msgstr ""
"(%10.2f MB )  فیزیکل ایکسٹنٹ کے سایز کو تبدیل نہیں کیا جاسکتا کیونکہ   "
"انتخاب کیا کیا اس کا والیم گروپ میں سایز بڑا ہے چھوٹے فیزیکل والیم(%10.2f "
"MB)  سے   "

#: ../iw/lvm_dialog_gui.py:196
msgid "Too small"
msgstr "بہت چھوٹا"

#: ../iw/lvm_dialog_gui.py:197
msgid ""
"This change in the value of the physical extent will waste substantial space "
"on one or more of the physical volumes in the volume group."
msgstr ""
"فیزیکل کے سایز میں تبدیلی سے کافی زیادہ جگہ فیزیکل والیو پر ضایہ ہوگی فیزیکل "
"گوروپ میں۔"

#: ../iw/lvm_dialog_gui.py:222
#, python-format
msgid ""
"The physical extent size cannot be changed because the resulting maximum "
"logical volume size (%10.2f MB) is smaller than one or more of the currently "
"defined logical volumes."
msgstr ""
"فیزیکل کے سایز کو تبدیل نہیں کیا جاسکتا کیونکہ اس کا نتیجہاتن زیادہ سے زیادہ "
"لوجیکل سایز (%10.2f MB) چھوٹا ہے موجود لوجیکل والیم سے"

#: ../iw/lvm_dialog_gui.py:296
msgid ""
"You cannot remove this physical volume because otherwise the volume group "
"will be too small to hold the currently defined logical volumes."
msgstr ""
"آپ اس فیزیکل والیم کو ختم نہیں کرسکتے کیونکہ والیم گوروپ  بہت چھوٹا ہے دیے "
"گے لوجیکل والیم سے"

#: ../iw/lvm_dialog_gui.py:376 ../textw/partition_text.py:1114
msgid "Make Logical Volume"
msgstr "لوجیکل والیوم  بنیں"

#: ../iw/lvm_dialog_gui.py:379
#, python-format
msgid "Edit Logical Volume: %s"
msgstr "لوجیکل والیوم کو تبدیل کریں%s"

#: ../iw/lvm_dialog_gui.py:381 ../textw/partition_text.py:1112
msgid "Edit Logical Volume"
msgstr "لوجیکل والیوم کو تبدیل کریں"

#: ../iw/lvm_dialog_gui.py:394 ../iw/partition_dialog_gui.py:322
#: ../iw/raid_dialog_gui.py:321
msgid "_Mount Point:"
msgstr "مونٹ پواءنٹ:"

#: ../iw/lvm_dialog_gui.py:402 ../iw/raid_dialog_gui.py:334
msgid "_File System Type:"
msgstr "فایل سسٹم کی قسم:"

#: ../iw/lvm_dialog_gui.py:412 ../iw/raid_dialog_gui.py:344
msgid "Original File System Type:"
msgstr "اصل میں موجود فایل سسٹم کی قسم:"

#: ../iw/lvm_dialog_gui.py:417 ../iw/raid_dialog_gui.py:349
msgid "Unknown"
msgstr "نہ معلوم"

#: ../iw/lvm_dialog_gui.py:423 ../iw/partition_dialog_gui.py:374
#: ../iw/raid_dialog_gui.py:355
msgid "Original File System Label:"
msgstr ":اصلی فائل سسٹم کا لیبل"

#: ../iw/lvm_dialog_gui.py:432
msgid "_Logical Volume Name:"
msgstr "_لوجیکل والیوم کا نام:"

#: ../iw/lvm_dialog_gui.py:440 ../textw/partition_text.py:305
msgid "Logical Volume Name:"
msgstr "الوجیکل والیوم کا نام:"

#: ../iw/lvm_dialog_gui.py:448 ../iw/partition_dialog_gui.py:386
msgid "_Size (MB):"
msgstr "_سایز(MB):"

#: ../iw/lvm_dialog_gui.py:454 ../iw/partition_dialog_gui.py:403
#: ../textw/partition_text.py:320 ../textw/partition_text.py:397
#: ../textw/partition_text.py:480 ../textw/partition_text.py:588
msgid "Size (MB):"
msgstr "سایز(MB):"

#: ../iw/lvm_dialog_gui.py:469
#, python-format
msgid "(Max size is %s MB)"
msgstr "(ہے %s MBسب سے بڑا سایز یہ)"

#: ../iw/lvm_dialog_gui.py:478 ../iw/partition_dialog_gui.py:334
#: ../iw/partition_ui_helpers_gui.py:300 ../iw/raid_dialog_gui.py:329
#, fuzzy
msgid "_Encrypt"
msgstr "اینکر پشن کی"

#: ../iw/lvm_dialog_gui.py:543 ../textw/partition_text.py:1264
msgid "Illegal size"
msgstr "غیر قانونی سایز"

#: ../iw/lvm_dialog_gui.py:544 ../textw/partition_text.py:1265
msgid "The requested size as entered is not a valid number greater than 0."
msgstr "مطلوبہ سایز جو دیا گیا ہے وہ صیحیح نہیں ے دورست یہ ہو گا 0 سے بڑ کر"

#: ../iw/lvm_dialog_gui.py:579
msgid "Mount point in use"
msgstr "مونٹ پواءنٹ استعمال میں ہے"

#: ../iw/lvm_dialog_gui.py:580
#, fuzzy, python-format
msgid "The mount point \"%s\" is in use. Please pick another."
msgstr " استعمال میں ہے ،دوسرے کا انتخاب کریں\"%s\"ماونٹ پونٹ"

#: ../iw/lvm_dialog_gui.py:591 ../textw/partition_text.py:1235
msgid "Illegal Logical Volume Name"
msgstr "غیر قانونی لوجیکل والیوم کا نام"

#: ../iw/lvm_dialog_gui.py:610 ../textw/partition_text.py:1252
msgid "Illegal logical volume name"
msgstr "غیر قانونی لوجیکل والیوم کا نام"

#: ../iw/lvm_dialog_gui.py:611 ../textw/partition_text.py:1253
#, python-format
msgid "The logical volume name \"%s\" is already in use. Please pick another."
msgstr "استعمال میں ہے ،دوسرے کا انتخاب کریں\"%s\"لوجیکل والیم کا نام"

#: ../iw/lvm_dialog_gui.py:625
#, fuzzy, python-format
msgid ""
"The current requested size (%10.2f MB) is larger than the maximum logical "
"volume size (%10.2f MB). To increase this limit you can create more Physical "
"Volumes from unpartitioned disk space and add them to this Volume Group."
msgstr ""
"موجودہ سایز (%10.2f MB) بڑا ھےاس سایز سے جو موجود ھے (%10.2f MB)اِس کی حد  سے "
"بڑھنے کے لیےُ آپ اور بھی زیادہ فیزیکل والیمز غیر پارٹیشنڈ ڈیکس جگہ سے بنا  "
"اور انھیں اِس والیم گروپ  میں جمع کر سکتے ہیں۔   "

#: ../iw/lvm_dialog_gui.py:683 ../iw/partition_dialog_gui.py:197
#: ../iw/partition_dialog_gui.py:209 ../iw/partition_dialog_gui.py:268
#: ../iw/raid_dialog_gui.py:248 ../textw/partition_text.py:888
#: ../textw/partition_text.py:909 ../textw/partition_text.py:1082
#: ../textw/partition_text.py:1313
msgid "Error With Request"
msgstr "غلطی درخواست کے ساتھ"

#: ../iw/lvm_dialog_gui.py:707 ../iw/lvm_dialog_gui.py:926
#, fuzzy, python-format
msgid ""
"The logical volumes you have configured require %d MB, but the volume group "
"only has %d MB.  Please either make the volume group larger or make the "
"logical volume(s) smaller."
msgstr ""
"ہے۔ براء مہربانی وایم گروپ کو بڑا کریں یالوجیکل والیم کو چھوٹا کریں %g "
"MBچاہیے،مگر والیم گروپ کے پاس صرف %g MBلوجیکل والیم جو آپ نے دیی ہے اس کو"

#: ../iw/lvm_dialog_gui.py:765
msgid "No free slots"
msgstr "کوئ خالی سلوٹ نہیں"

#: ../iw/lvm_dialog_gui.py:766
#, python-format
msgid "You cannot create more than %s logical volumes per volume group."
msgstr "زیادہ لوجیکل گروپ پر والیم  والیم نہیں بنا سکتے %s آپ اس سے"

#: ../iw/lvm_dialog_gui.py:772
msgid "No free space"
msgstr "کوئ خالی جگہ نہیں"

#: ../iw/lvm_dialog_gui.py:773
#, fuzzy
msgid ""
"There is no room left in the volume group to create new logical volumes. To "
"add a logical volume you must reduce the size of one or more of the "
"currently existing logical volumes"
msgstr ""
"والیم گروپ میں نُیے لوجیکل والیمز بنانے کے لیےُ کویُ جگہ نہیں بچی۔ لوجیکل والیم "
"کو جمع کرنے کے لیےُ آپ کو ایک یا اس سے زیادہ  پہلے سے موجودہ لوجیکل والیمز کا "
"ہجم کم کرنا پٹرے گا  "

#: ../iw/lvm_dialog_gui.py:801
#, fuzzy, python-format
msgid "Are you sure you want to delete the logical volume \"%s\"?"
msgstr " چاہتے ہیں۔\"%s\"   کیا آپ کو یقین ہے کہ آپ لوجیکل والیم کو ختم کرنا"

#: ../iw/lvm_dialog_gui.py:937
msgid "Invalid Volume Group Name"
msgstr "غلط والیو گوروپ کا نام "

#: ../iw/lvm_dialog_gui.py:948
msgid "Name in use"
msgstr "نام  استعمال میں ہے"

#: ../iw/lvm_dialog_gui.py:949
#, python-format
msgid "The volume group name \"%s\" is already in use. Please pick another."
msgstr ""
"  پہلے سے استعمال میں ہے۔ مہربانی فرما کر کسی دوسرے کا انتخاب کریں۔\"%s\"  "
"والیم گروپ نام "

#: ../iw/lvm_dialog_gui.py:992
msgid "Not enough physical volumes"
msgstr "فیزیکل والیمز نا کافی ہیں"

#: ../iw/lvm_dialog_gui.py:993
msgid ""
"At least one unused physical volume partition is needed to create an LVM "
"Volume Group.\n"
"\n"
"Create a partition or RAID array of type \"physical volume (LVM)\" and then "
"select the \"LVM\" option again."
msgstr ""
"والیم گروپ کو بنانے کے لیےُ کم از کم ایک غیر استعمال شدہ فیزیکل والیم پارٹیشن "
"درکار ہے۔ LVM \n"
"\n"
"   آپشن کا دوبارہ انتخاب کریں۔ \"LVM\"  فیزیکل والیم کی  قسم کی پارٹیشن یا "
"ریڈ ایرے بنایُں اور\" (LVM)\"      "

#: ../iw/lvm_dialog_gui.py:1004
msgid "Make LVM Volume Group"
msgstr "والیو کا گوروپ بنیں LVM"

#: ../iw/lvm_dialog_gui.py:1007
#, python-format
msgid "Edit LVM Volume Group: %s"
msgstr "والیو  گوروپ کو تبدیل کریں LVM: %s"

#: ../iw/lvm_dialog_gui.py:1009
msgid "Edit LVM Volume Group"
msgstr "والیو  گوروپ کو تبدیل کریں LVM"

#: ../iw/lvm_dialog_gui.py:1025
msgid "_Volume Group Name:"
msgstr "_والیو گوروپ کا نام:"

#: ../iw/lvm_dialog_gui.py:1033
msgid "Volume Group Name:"
msgstr "والیو گوروپ کا نام:"

#: ../iw/lvm_dialog_gui.py:1041
msgid "_Physical Extent:"
msgstr "_فیزیکل کو بڑھیں:"

#: ../iw/lvm_dialog_gui.py:1056
msgid "Physical Volumes to _Use:"
msgstr "فیزیکل والیوز کو استعمال کریں:"

#: ../iw/lvm_dialog_gui.py:1062
msgid "Used Space:"
msgstr "ااستعال شدہ جگہ:"

#: ../iw/lvm_dialog_gui.py:1079
msgid "Free Space:"
msgstr "خالی جگہ:"

#: ../iw/lvm_dialog_gui.py:1097
msgid "Total Space:"
msgstr "پوری جگہ:"

#: ../iw/lvm_dialog_gui.py:1126
msgid "Logical Volume Name"
msgstr "لوجیکل والیو کا نام"

#: ../iw/lvm_dialog_gui.py:1129 ../iw/partition_gui.py:369
#: ../iw/upgrade_swap_gui.py:140 ../textw/partition_text.py:1423
#: ../textw/upgrade_text.py:120
msgid "Mount Point"
msgstr "ماونُٹ پواینُٹ"

#: ../iw/lvm_dialog_gui.py:1132 ../iw/partition_gui.py:374
msgid "Size (MB)"
msgstr "سایز(MB)"

#: ../iw/lvm_dialog_gui.py:1146 ../iw/osbootwidget.py:95
msgid "_Add"
msgstr "_جمع"

#: ../iw/lvm_dialog_gui.py:1149 ../iw/network_gui.py:457
#: ../iw/osbootwidget.py:99 ../iw/partition_gui.py:1379
msgid "_Edit"
msgstr "_تبدیل"

#: ../iw/lvm_dialog_gui.py:1164
#, fuzzy
msgid "_Logical Volumes"
msgstr "لوجیکل والیو"

#: ../iw/netconfig_dialog.py:143
#, python-format
msgid ""
"An error occurred converting the value entered for \"%s\":\n"
"%s"
msgstr ""
" \"%s\":\n"
"غلطی آی ہے دیی گی ویلیو کو تبدیل کرتے ہوے%s"

#: ../iw/netconfig_dialog.py:145 ../iw/netconfig_dialog.py:154
#: ../iw/network_gui.py:141 ../iw/network_gui.py:145 ../iw/network_gui.py:149
#: ../iw/network_gui.py:153 ../iw/network_gui.py:161 ../iw/network_gui.py:166
#: ../textw/network_text.py:52 ../textw/network_text.py:57
#: ../textw/network_text.py:63
msgid "Error With Data"
msgstr "  ڈیٹا میں نقص "

#: ../iw/netconfig_dialog.py:153 ../iw/network_gui.py:154
#: ../textw/network_text.py:53
#, fuzzy, python-format
msgid "A value is required for the field %s."
msgstr "\"%s\"ویلیو کی ضرورت ہے فیلد کے لیے."

#: ../iw/netconfig_dialog.py:176
msgid "Dynamic IP"
msgstr "IP ڈائنامک "

#: ../iw/netconfig_dialog.py:177 ../loader2/net.c:416 ../loader2/net.c:860
#, c-format, python-format
msgid "Sending request for IP information for %s..."
msgstr " کیلۓ بھجی جارہی ہیں%s... آئ-پی معلومات"

#: ../iw/netconfig_dialog.py:198 ../iw/netconfig_dialog.py:201
#: ../textw/network_text.py:93 tmp/netpostconfig.glade.h:12
msgid "IP Address"
msgstr "کا پتا IP"

#: ../iw/netconfig_dialog.py:208
#, fuzzy
msgid "IPv4 CIDR prefix must be between 0 and 32."
msgstr "کے پتے کے لیے لازمی کہ اس کے نمبر 1 سے لے کر 255 تک ہوں IP"

#: ../iw/netconfig_dialog.py:209 ../iw/netconfig_dialog.py:215
#: ../iw/netconfig_dialog.py:223 ../iw/netconfig_dialog.py:226
#, fuzzy
msgid "IPv4 Network Mask"
msgstr "آ ئی پی / نیٹ ماسک"

#: ../iw/netconfig_dialog.py:233 ../iw/netconfig_dialog.py:236
#: ../iw/network_gui.py:34 ../iw/network_gui.py:533
msgid "Gateway"
msgstr "گیٹ وے"

#: ../iw/netconfig_dialog.py:243
msgid "Nameserver"
msgstr "نیم سرور"

#: ../iw/netconfig_dialog.py:253
#, fuzzy
msgid "Error configuring network device:"
msgstr "یھان پر غلطی ٹارگٹ ڈریو کو چیک کریںأیکسانیت صیھع نھیںأ  "

#: ../iw/netconfig_dialog.py:266
#, fuzzy
msgid "Error configuring network device"
msgstr "یھان پر غلطی ٹارگٹ ڈریو کو چیک کریںأیکسانیت صیھع نھیںأ  "

#: ../iw/network_gui.py:34 ../iw/network_gui.py:535
msgid "Primary DNS"
msgstr "DNS پہلی"

#: ../iw/network_gui.py:34 ../iw/network_gui.py:537
msgid "Secondary DNS"
msgstr "DNS دوسری"

#: ../iw/network_gui.py:35
msgid "_Gateway"
msgstr "_گیٹ وے"

#: ../iw/network_gui.py:35
msgid "_Primary DNS"
msgstr "_DNS پہلی"

#: ../iw/network_gui.py:35
msgid "_Secondary DNS"
msgstr "_DNS دوسری"

#: ../iw/network_gui.py:38 ../textw/network_text.py:532
msgid "Network Configuration"
msgstr "نٹورک کی سیٹنگز "

#: ../iw/network_gui.py:142
msgid ""
"You have not specified a hostname.  Depending on your network environment "
"this may cause problems later."
msgstr ""
"آپ کا دیا گیا میزبان نام موجود نہیں ہے۔یہ اپ کے نٹورک پر انحصار کرتا ہے اور "
"بعد میں مثل کر سکتا ہے"

#: ../iw/network_gui.py:146
#, python-format
msgid ""
"You have not specified the field \"%s\".  Depending on your network "
"environment this may cause problems later."
msgstr ""
"۔یہ اپ کے نٹورک پر انحصار کرتا ہے اور بعد میں مثل کر سکتا ہے\"%s\"آپ نے فیلد "
"نہیں دیا"

#: ../iw/network_gui.py:150 ../textw/network_text.py:820
#, python-format
msgid ""
"The hostname \"%s\" is not valid for the following reason:\n"
"\n"
"%s"
msgstr ""
"%s\n"
":\n"
" درجہ ذیل کی وجہ سے\"%s\"دیا گیا میزبان نام صیحیح نہیں"

#: ../iw/network_gui.py:157 ../textw/network_text.py:43
#, fuzzy, python-format
msgid "Error With %s Data"
msgstr "  ڈیٹا میں نقص "

#: ../iw/network_gui.py:162 ../textw/network_text.py:64
#, fuzzy
msgid "The IPv4 information you have entered is invalid."
msgstr "کی معلومات جو دیی گی ہیں غلط ہیں IP "

#: ../iw/network_gui.py:166
#, fuzzy
msgid ""
"You have no active network devices.  Your system will not be able to "
"communicate over a network by default without at least one device active."
msgstr ""
"کی طرح کا نٹورک اڈاپٹر ہے تو آپ اس کو مت کولیں یہاں پر۔جب آپ سسٹم کو دوبارہ "
"شروع کریںگے تو تب اڈاپٹر خود بہ خود کول جاءے گا۔ PCMCIA نوٹ: گر آپ کے پاس \n"
"\n"
"آپ کے پاس کو ئ موجود نٹورک دیواس نہیں۔آپ کا سسٹم نٹورک پر رابطہ نہیں کر سکتا "
"جب تک کم سے کم ایک دیواس موجود نہ ہو۔"

#: ../iw/network_gui.py:291 ../iw/network_gui.py:305
msgid "Disabled"
msgstr ""

#: ../iw/network_gui.py:398
msgid "Active on Boot"
msgstr "بوٹ پر ایکٹیو کریں"

#: ../iw/network_gui.py:400 ../iw/osbootwidget.py:66
#: ../iw/partition_gui.py:367 ../textw/bootloader_text.py:196
#: ../textw/bootloader_text.py:262 ../textw/partition_text.py:1423
msgid "Device"
msgstr "ڈیوا ئیس"

#: ../iw/network_gui.py:402
#, fuzzy
msgid "IPv4/Netmask"
msgstr "آ ئی پی / نیٹ ماسک"

#: ../iw/network_gui.py:404
msgid "IPv6/Prefix"
msgstr ""

#: ../iw/network_gui.py:464
msgid "Network Devices"
msgstr "نیٹ ورک ڈیوا ئیسز"

#: ../iw/network_gui.py:475
msgid "Set the hostname:"
msgstr "ہوسٹ کا نام رکھیں "

#: ../iw/network_gui.py:480
msgid "_automatically via DHCP"
msgstr "کے ذریعے _خودکار DHCP "

#: ../iw/network_gui.py:487
msgid "_manually"
msgstr "خود کریں_"

#: ../iw/network_gui.py:492
#, fuzzy
msgid "(e.g., host.domain.com)"
msgstr "(\"/ای ایکس. /\"یوسٹ۔ڈومین۔کام)"

#: ../iw/network_gui.py:498
msgid "Hostname"
msgstr "یوسٹ کا نام"

#: ../iw/network_gui.py:542
msgid "Miscellaneous Settings"
msgstr "مختلف چیزوں کو ایک ساتھ ترتیب دینا "

#: ../iw/network_gui.py:630
#, fuzzy
msgid "Edit Device "
msgstr "ڈیوائیس مین تبدیلی کرو RAID"

#: ../iw/network_gui.py:634
msgid "Unknown Ethernet Device"
msgstr ""

#: ../iw/network_gui.py:640
#, fuzzy
msgid "unknown"
msgstr "نہ معلوم"

#: ../iw/network_gui.py:642
#, fuzzy
msgid "Hardware address: "
msgstr "ہارڈویئر"

#: ../iw/network_gui.py:778 ../textw/network_text.py:228 ../loader2/net.c:820
#, fuzzy
msgid "Missing Protocol"
msgstr "امکمل معلومات  "

#: ../iw/network_gui.py:779 ../textw/network_text.py:229
msgid "You must select at least IPv4 or IPv6 support."
msgstr ""

#: ../iw/network_gui.py:802 ../iw/network_gui.py:843 ../iw/network_gui.py:849
#: ../textw/network_text.py:74 ../loader2/net.c:92
#, fuzzy
msgid "Invalid Prefix"
msgstr " سٹر نگ IP غلط"

#: ../iw/network_gui.py:803
#, fuzzy
msgid "IPv4 prefix must be between 0 and 32."
msgstr "کے پتے کے لیے لازمی کہ اس کے نمبر 1 سے لے کر 255 تک ہوں IP"

#: ../iw/network_gui.py:844 ../iw/network_gui.py:850
#, fuzzy
msgid "IPv6 prefix must be between 0 and 128."
msgstr "کے پتے کے لیے لازمی کہ اس کے نمبر 1 سے لے کر 255 تک ہوں IP"

#: ../iw/osbootwidget.py:50
#, fuzzy
msgid "Boot loader operating system list"
msgstr "بوت لوڈر اشارہ بھت چھوٹا ھے "

#: ../iw/osbootwidget.py:66 ../textw/bootloader_text.py:262
msgid "Default"
msgstr "ڈیفالٹ"

#: ../iw/osbootwidget.py:66 ../iw/partition_gui.py:368
msgid "Label"
msgstr "لیبل"

#: ../iw/osbootwidget.py:129
msgid "Image"
msgstr "تصویر"

#: ../iw/osbootwidget.py:136
#, fuzzy
msgid ""
"Enter a label for the boot loader menu to display. The device (or hard drive "
"and partition number) is the device from which it boots."
msgstr ""
"بوٹ لوڈر مینیو میں ظاہر کرنے کے لیےایک لیبل کا اندراج کریں۔ یہ ڈیوائس(یا تو "
"ہارڈ ڈرائیو اور پارٹیشن نمبر) وہ ڈیوائس ہے جہاں سے یہ بوٹ کرتی ہے۔"

#: ../iw/osbootwidget.py:144
msgid "_Label"
msgstr " لیبل_ "

#: ../iw/osbootwidget.py:152
msgid "_Device"
msgstr "_ڈیوایس"

#: ../iw/osbootwidget.py:186
msgid "Default Boot _Target"
msgstr "ڈیفالٹ بوٹ _ٹارگٹ"

#: ../iw/osbootwidget.py:215
msgid "You must specify a label for the entry"
msgstr "اندراج کے لیے ایک لیبل بتانا ضروری ہے  "

#: ../iw/osbootwidget.py:224
msgid "Boot label contains illegal characters"
msgstr "بوٹ لیبل غیر ضروری الفاظ پر مشتمل یے"

#: ../iw/osbootwidget.py:248
msgid "Duplicate Label"
msgstr "لیبل کو دوگنا کریں"

#: ../iw/osbootwidget.py:249
msgid "This label is already in use for another boot entry."
msgstr "یہ لیبل پہلے سے ہی ایک دوسری بوٹ انٹری کے لیے استعمال میں ہے"

#: ../iw/osbootwidget.py:262
msgid "Duplicate Device"
msgstr "ڈیوا ئیس کو دوگنا کریں"

#: ../iw/osbootwidget.py:263
msgid "This device is already being used for another boot entry."
msgstr "یہ ڈیوائیس پیلے سے ہی ایک دوسری بوٹ انٹری کے لیے استعمال ہو رہا ہے"

#: ../iw/osbootwidget.py:327 ../textw/bootloader_text.py:345
msgid "Cannot Delete"
msgstr "مٹا نہیں سکتے"

#: ../iw/osbootwidget.py:328 ../textw/bootloader_text.py:346
#, python-format
msgid ""
"This boot target cannot be deleted because it is for the %s system you are "
"about to install."
msgstr ""
"یہ بوٹ ٹارگٹ مٹایا نہیں جا سکتا کیونکہ جو سسٹم  آپ انسٹال کرنے لگے ہیں سسٹم "
"کے لیے ہے%s یہ اُس"

#: ../iw/partition_dialog_gui.py:66
msgid "Additional Size Options"
msgstr "زائد سائز کے لیے آپشنز "

#: ../iw/partition_dialog_gui.py:71
msgid "_Fixed size"
msgstr "فکسڈ سائز_"

#: ../iw/partition_dialog_gui.py:73
msgid "Fill all space _up to (MB):"
msgstr "تمام سپیس بھر دیں _اپ ٹو (میگا بائیٹ     "

#: ../iw/partition_dialog_gui.py:83
msgid "Fill to maximum _allowable size"
msgstr "جائز سائز تک پورا بھر دیں"

#: ../iw/partition_dialog_gui.py:198
msgid "The end cylinder must be greater than the start cylinder."
msgstr "آخری سلنڈر آغاز کے سلنڈر سے بڑا ہونا چاہیے۔"

#: ../iw/partition_dialog_gui.py:299 ../textw/partition_text.py:712
msgid "Add Partition"
msgstr "پارٹیشنز میں اضافہ کریں"

#: ../iw/partition_dialog_gui.py:302
#, python-format
msgid "Edit Partition: /dev/%s"
msgstr "پارٹیشن میں تبدیلی کریں : /dev/%s"

#: ../iw/partition_dialog_gui.py:304
msgid "Edit Partition"
msgstr "پارٹیشن میں تبدیلی کریں"

#: ../iw/partition_dialog_gui.py:331
msgid "File System _Type:"
msgstr "فائل سسٹم کی _قِسم"

#: ../iw/partition_dialog_gui.py:350
msgid "Allowable _Drives:"
msgstr "ڈرائیوز "

#: ../iw/partition_dialog_gui.py:365
msgid "Drive:"
msgstr ":ڈرائیو"

#: ../iw/partition_dialog_gui.py:409
msgid "_Start Cylinder:"
msgstr ":آغاز کا سلنڈر_"

#: ../iw/partition_dialog_gui.py:427
msgid "_End Cylinder:"
msgstr ":آخری سلنڈر_"

#: ../iw/partition_dialog_gui.py:475
msgid "Force to be a _primary partition"
msgstr "پرائمری پارٹیشن کے لیے مجبور کریں_"

#: ../iw/partition_gui.py:318
#, python-format
msgid "Drive %s (Geom: %s/%s/%s) (Model: %s)"
msgstr ""

#: ../iw/partition_gui.py:325
#, python-format
msgid "Drive %s (%-0.f MB) (Model: %s)"
msgstr ""

#: ../iw/partition_gui.py:370 ../textw/partition_text.py:1423
msgid "Type"
msgstr "قِسم"

#: ../iw/partition_gui.py:375 ../textw/partition_text.py:1423
msgid "Start"
msgstr "آغاز"

#: ../iw/partition_gui.py:376 ../textw/partition_text.py:1423
msgid "End"
msgstr "آخر"

#: ../iw/partition_gui.py:413
msgid ""
"Mount Point/\n"
"RAID/Volume"
msgstr ""
"ماؤنٹ پوائنٹ/\n"
"RAID/حجم"

#: ../iw/partition_gui.py:415
msgid ""
"Size\n"
"(MB)"
msgstr ""
"سائز \n"
"(میگا بائیٹ)"

#: ../iw/partition_gui.py:547 ../textw/partition_text.py:1417
msgid "Partitioning"
msgstr "پارٹیشن ہو رہی ہے"

#: ../iw/partition_gui.py:638
msgid ""
"The partitioning scheme you requested caused the following critical errors."
msgstr ""

#: ../iw/partition_gui.py:640
#, fuzzy, python-format
msgid ""
"You must correct these errors before you continue your installation of %s."
msgstr "کے ساتھ انسٹال جاری رکھنے سے پہلے یہ غلطیاں ٹھیک کرنا ضروری ہیں %s"

#: ../iw/partition_gui.py:646
msgid "Partitioning Errors"
msgstr "پارٹیشن کرتے ہوئے غلطیاں ہیں"

#: ../iw/partition_gui.py:652
msgid "The partitioning scheme you requested generated the following warnings."
msgstr ""

#: ../iw/partition_gui.py:654
msgid "Would you like to continue with your requested partitioning scheme?"
msgstr ""
"کیا آپ اپنی درخواست کردہ پارٹیشننگ سکیم کے ساتھ جاری رکھنا پسند کریں گے؟"

#: ../iw/partition_gui.py:659
msgid "Partitioning Warnings"
msgstr "خطرے کی اطلاعات کی پارٹیشن کر رہے ہیں"

#: ../iw/partition_gui.py:681
msgid "Format Warnings"
msgstr "خطرے کی اطلاعات کو فارمیٹ کریں"

#: ../iw/partition_gui.py:686
msgid "_Format"
msgstr "فارمیٹ_"

#: ../iw/partition_gui.py:723
msgid "LVM Volume Groups"
msgstr "حجم گروپس LVM "

#: ../iw/partition_gui.py:764
msgid "RAID Devices"
msgstr "ڈیوائیسز RAID"

#: ../iw/partition_gui.py:794 ../iw/partition_gui.py:928
#: ../textw/partition_text.py:114 ../textw/partition_text.py:178
msgid "None"
msgstr "کچھ بھی نہیں"

#: ../iw/partition_gui.py:816 ../loader2/hdinstall.c:334
msgid "Hard Drives"
msgstr "ہارڈ ڈرائیوز"

#: ../iw/partition_gui.py:889 ../textw/partition_text.py:160
#: ../textw/partition_text.py:199
msgid "Free space"
msgstr "خالی جگہ"

#: ../iw/partition_gui.py:891 ../textw/partition_text.py:162
msgid "Extended"
msgstr "پھیلا ہوا"

#: ../iw/partition_gui.py:893 ../textw/partition_text.py:164
msgid "software RAID"
msgstr "سافٹ ویئر RAID"

#: ../iw/partition_gui.py:930
msgid "Free"
msgstr "خالی"

#: ../iw/partition_gui.py:1024 ../textw/partition_text.py:247
#, python-format
msgid "Could not allocate requested partitions: %s."
msgstr "%s  : آپ نے جن پارٹیشنز کی درخواست کی تھی وہ ایلوکیٹ نہیں ہو سکیں"

#: ../iw/partition_gui.py:1033
#, python-format
msgid "Warning: %s."
msgstr "%s :خطرے کی اطلاع"

#: ../iw/partition_gui.py:1215 ../iw/partition_gui.py:1229
msgid "Not supported"
msgstr "اس کی سپّورٹ نہیں ہے"

#: ../iw/partition_gui.py:1216
msgid "LVM is NOT supported on this platform."
msgstr "اس پلیٹ فارم پر سپّورٹ نہیں کیا جاتا۔ LVM"

#: ../iw/partition_gui.py:1230
msgid "Software RAID is NOT supported on this platform."
msgstr "کو اِس پلیٹ فارم پر سپّورٹ نہیان کیا جاتا  RAID سافٹ ویئر "

#: ../iw/partition_gui.py:1237
msgid "No RAID minor device numbers available"
msgstr "ڈیوائیس نمبرز دستیاب نہیں ہیں RAID کوئی بھی چھوٹے"

#: ../iw/partition_gui.py:1238
msgid ""
"A software RAID device cannot be created because all of the available RAID "
"minor device numbers have been used."
msgstr "ڈیوائیس نہیں بنائی جا سکتی کیونکہ تمام  RAID سافٹ ویئر"

#: ../iw/partition_gui.py:1252
msgid "RAID Options"
msgstr "آپشنز RAID "

#: ../iw/partition_gui.py:1263
#, python-format
msgid ""
"Software RAID allows you to combine several disks into a larger RAID "
"device.  A RAID device can be configured to provide additional speed and "
"reliability compared to using an individual drive.  For more information on "
"using RAID devices please consult the %s documentation.\n"
"\n"
"You currently have %s software RAID partition(s) free to use.\n"
"\n"
msgstr ""
"سافٹ ویرُ  ریڈ آپ کو کافی ڈیکسز کو ایک بڑی ریڈ ڈیوایسُ میں اکھٹا کرنے کی اجازت "
"دیتی ہے۔  ایک ریڈ ڈیوایُس کی ترتیب آپ دستاویزات کو دیکھیں۔  %s  کو ایک ڈرایوُ "
"کے مقابلے میں اضافی سپیڈ اور اعتماد مہیا کرتی ہے۔ ریڈ ڈیوایُسز پر مزید "
"معلومات کے لیےُ براےُ کرم  \n"
"\n"
"ریڈ پارٹیشنز استعمال کے لیےُ باقی ہیں۔  %s آپ کے پاس اِس وقت \n"
"\n"

#: ../iw/partition_gui.py:1274
#, fuzzy
msgid ""
"To use RAID you must first create at least two partitions of type 'software "
"RAID'.  Then you can create a RAID device that can be formatted and "
"mounted.\n"
"\n"
msgstr ""
"آلہ بنا سکتے ہیں جس کو صاف  اور چڑھایا جا سکتا ہے   RAID کی پارٹیشنز  "
"بنائیں۔ پھر آپ ایک  'RAID استمعال کرنے سے پہلے دو 'سافٹ وئیر RAID\n"
"\n"

#: ../iw/partition_gui.py:1280
msgid "What do you want to do now?"
msgstr "ٓپ کیا کرنا چاہتے ہیں؟"

#: ../iw/partition_gui.py:1289
msgid "Create a software RAID _partition."
msgstr " پارٹیشن بنائیں۔ _  RAID ایک سافٹ ویئر"

#: ../iw/partition_gui.py:1292
#, python-format
msgid "Create a RAID _device [default=/dev/md%s]."
msgstr " [default=/dev/md%s]ڈیوائیس بنائیں_  RAID ایک"

#: ../iw/partition_gui.py:1296
#, python-format
msgid "Clone a _drive to create a RAID device [default=/dev/md%s]."
msgstr ""
"[default=/dev/md/%s] ڈیوائیس بنانے کے لیے ایک ڈرائیو جیسی ہی دوسری _ڈرائیو "
"بنائیں RAID"

#: ../iw/partition_gui.py:1335
msgid "Couldn't Create Drive Clone Editor"
msgstr "ڈرائیو کی طرح کا ایڈیٹر نہیں بن سکا"

#: ../iw/partition_gui.py:1336
msgid "The drive clone editor could not be created for some reason."
msgstr "کسی وجہ سے ڈرائیو کی طرح کا ایڈیٹر نہیں بن سکا"

#: ../iw/partition_gui.py:1378
msgid "Ne_w"
msgstr "نیا"

#: ../iw/partition_gui.py:1381
msgid "Re_set"
msgstr "ری_سیٹ"

#: ../iw/partition_gui.py:1382
msgid "R_AID"
msgstr "آر_اے آئی ڈی"

#: ../iw/partition_gui.py:1383
msgid "_LVM"
msgstr "ایل وی ایم_"

#: ../iw/partition_gui.py:1424
msgid "Hide RAID device/LVM Volume _Group members"
msgstr "ریڈ ڈیواُس/ایل وی ایم _گروپ ممبران کو چھپا دو"

#: ../iw/partition_ui_helpers_gui.py:102 ../iw/partition_ui_helpers_gui.py:123
#: ../iw/partition_ui_helpers_gui.py:125 ../textw/partition_text.py:270
#: ../textw/partition_text.py:272 ../textw/partition_text.py:274
#: ../textw/partition_text.py:299
msgid "<Not Applicable>"
msgstr "<لاگو نھیں ہے>"

#: ../iw/partition_ui_helpers_gui.py:284
#, fuzzy
msgid "_Format as:"
msgstr "بنا و ٹ جسطر ح:"

#: ../iw/partition_ui_helpers_gui.py:307
#, fuzzy
msgid "Mi_grate filesystem to:"
msgstr "ھجرت نظام فاٰیل"

#: ../iw/partition_ui_helpers_gui.py:327 tmp/autopart.glade.h:9
#, fuzzy
msgid "_Resize"
msgstr "فکسڈ سائز_"

#: ../iw/partition_ui_helpers_gui.py:381
#, fuzzy, python-format
msgid ""
"Partitions of type '%s' must be constrained to a single drive.  To do this, "
"select the drive in the 'Allowable Drives' checklist."
msgstr "قِسم کی پارٹیشنز ایک ہی ڈرائیو تک محدود ہونی چاہییں۔ '%s'"

#: ../iw/partmethod_gui.py:31 ../textw/partmethod_text.py:30
msgid "Disk Partitioning Setup"
msgstr "ڈسک پارٹیشنگ کو درست کرنا"

#: ../iw/partmethod_gui.py:56
msgid "_Automatically partition"
msgstr "خودبخود پارٹیشن_"

#: ../iw/partmethod_gui.py:59
msgid "Manually partition with _Disk Druid"
msgstr "ڈسک ڈریوڈ کے ساتھ خود پارٹیشن کریں_"

#: ../iw/progress_gui.py:38
msgid "Installing Packages"
msgstr "پیکیجز انسٹال ہو رہے ہیں"

#: ../iw/raid_dialog_gui.py:288
msgid ""
"At least two unused software RAID partitions are needed to create a RAID "
"device.\n"
"\n"
"First create at least two partitions of type \"software RAID\", and then "
"select the \"RAID\" option again."
msgstr ""
"آراےآئی ڈی  ڈیوائیس بنانے کے لیے کم از کم دو سافٹ ویئر ٓراےآئی ڈی پارٹیشنز جو "
"استعمال نہ ہوئی ہوں اُن کی ضرورت ہے /n /n "

#: ../iw/raid_dialog_gui.py:302 ../iw/raid_dialog_gui.py:735
#: ../textw/partition_text.py:944
msgid "Make RAID Device"
msgstr "آراےآئی ڈی ڈیوائیس  بنائیں"

#: ../iw/raid_dialog_gui.py:305
#, python-format
msgid "Edit RAID Device: /dev/md%s"
msgstr "/dev/md%s :ڈیوائیس مین تبدیلی کرو RAID"

#: ../iw/raid_dialog_gui.py:307 ../textw/partition_text.py:942
msgid "Edit RAID Device"
msgstr "ڈیوائیس مین تبدیلی کرو RAID"

#: ../iw/raid_dialog_gui.py:363
msgid "RAID _Device:"
msgstr "آراےآئی ڈی  _ڈیوائیس "

#: ../iw/raid_dialog_gui.py:381
msgid "RAID _Level:"
msgstr " ا ٓر اے آ ئی ڈی _لیول "

#: ../iw/raid_dialog_gui.py:422
msgid "_RAID Members:"
msgstr "آر اے آ ئی ڈی کے ارکان_"

#: ../iw/raid_dialog_gui.py:439
msgid "Number of _spares:"
msgstr " :سپیسز کی تعداد_"

#: ../iw/raid_dialog_gui.py:449
msgid "_Format partition?"
msgstr " پارٹیشنز کو فارمیٹ کرنا ہے؟_"

#: ../iw/raid_dialog_gui.py:536
msgid ""
"The source drive has no partitions to be cloned.  You must first define "
"partitions of type 'software RAID' on this drive before it can be cloned."
msgstr ""
"سورس ڈرایُو کے پاس نقل بنانے کے لیےُ پارٹیشنز نہیں ہیں۔ آپ کے لیےُ ضروری ہے کہ "
"آپ نقل بنانے سے پہلے اِس ڈرایوُ پر 'سافٹ ویرُ ریڈ' کی قسم کی پارٹیشنز متعارف "
"کروایں۔"

#: ../iw/raid_dialog_gui.py:540 ../iw/raid_dialog_gui.py:546
#: ../iw/raid_dialog_gui.py:558 ../iw/raid_dialog_gui.py:571
msgid "Source Drive Error"
msgstr "سورس ڈرائیو میں غلطی ہے"

#: ../iw/raid_dialog_gui.py:547
#, fuzzy
msgid ""
"The source drive you selected has partitions which are not of type 'software "
"RAID'.\n"
"\n"
"You must remove these partitions before this drive can be cloned. "
msgstr ""
"منتخب کرسہ سورس ڈرائیو پر پارٹیشنز ہیں جو کہ 'سافٹ ویئر آراےآئی ڈی' کی طرح "
"کی نہیں ہیں ۔\n"
"\n"
"س ڈرائیو جیسی دوسری ڈرائیو بنانے سے پہلے یہ پارٹیشنز ختم کرنی ہوں گی۔"

#: ../iw/raid_dialog_gui.py:559
#, fuzzy, python-format
msgid ""
"The source drive you selected has partitions which are not constrained to "
"the drive /dev/%s.\n"
"\n"
"You must remove these partitions or restrict them to this drive before this "
"drive can be cloned. "
msgstr ""
"آپ کی منتخب کردہ سورس ڈرایوُ کے پاس ایسی پارٹیشنز ہیں جو ڈرایوُ تک محدود نہیں "
"ہیں /dev/%s.\n"
"\n"
"اِس ڈرایوُ کی نقل بنانے سے پہلے اِن پارٹیشنز کو ختم کرنا یا اِس ڈرایوُ کے ساتھ "
"جوڑنا ضروری ہے۔"

#: ../iw/raid_dialog_gui.py:572
#, fuzzy
msgid ""
"The source drive you selected has software RAID partition(s) which are "
"members of an active software RAID device.\n"
"\n"
"You must remove these partitions before this drive can be cloned."
msgstr ""
"منتخب کردہ سورس ڈرائیو میں سافٹ ویئر آراےآئی ڈی  پارٹیشنز ہیں جو کہ ایک "
"ایکٹیو سافٹ ویئر آراےآئی ڈی ڈیوائیس کے ارکان ہیں۔ \n"
"\n"
" اس ڈرائیو جیسی دوسری ڈرائیو بنانے سے پہلے یہ پارٹیشنز ختم کرنی ہوں گی۔"

#: ../iw/raid_dialog_gui.py:585 ../iw/raid_dialog_gui.py:591
#: ../iw/raid_dialog_gui.py:610
msgid "Target Drive Error"
msgstr "منزل  ڈرایو غلط ھے "

#: ../iw/raid_dialog_gui.py:586
msgid "Please select the target drives for the clone operation."
msgstr "مھربا نی فرما کر یکساں اوپریشن کے لیے   منزل ڈرایوز منتخب کریں "

#: ../iw/raid_dialog_gui.py:592
#, python-format
msgid "The source drive /dev/%s cannot be selected as a target drive as well."
msgstr "ابتداہی ڈرایو /dev/%s منتخب نھیں ھو سکتی جیسا کے منزل ڈرایوز "

#: ../iw/raid_dialog_gui.py:611
#, fuzzy, python-format
msgid ""
"The target drive /dev/%s has a partition which cannot be removed for the "
"following reason:\n"
"\n"
"\"%s\"\n"
"\n"
"You must remove this partition before this drive can be a target."
msgstr ""
"منزل ڈرایوز /dev/%s حصے رکھتی ھے جو نیچے د ی گی وجۃ سے ختم نھیں ھو سکتی :\n"
"\n"
"\"%s\"\n"
"\n"
"یۃ حصۃ ضروری ختم کرنا ھو گا اس سے پھلے کےیۃ منزل ڈرایوز ھو سکتی ھے"

#: ../iw/raid_dialog_gui.py:672
msgid "Please select a source drive."
msgstr "مھربانی ابتداہی ڈرایوز منتخب کریں "

#: ../iw/raid_dialog_gui.py:692
#, python-format
msgid ""
"The drive /dev/%s will now be cloned to the following drives:\n"
"\n"
msgstr ""
"ڈرایو /dev/%s اب دی گی ڈرایوز یکساں ھو گی  \n"
"\n"

#: ../iw/raid_dialog_gui.py:697
msgid ""
"\n"
"\n"
"WARNING! ALL DATA ON THE TARGET DRIVES WILL BE DESTROYED."
msgstr ""
"\n"
"\n"
"خبردار ! منزل ڈرایوز سے سارہ ڈیٹا ختم ھو جا ے گا"

#: ../iw/raid_dialog_gui.py:700
msgid "Final Warning"
msgstr "آخری آگاھی"

#: ../iw/raid_dialog_gui.py:702
msgid "Clone Drives"
msgstr "یکساں ڈرایو"

#: ../iw/raid_dialog_gui.py:711
msgid "There was an error clearing the target drives.  Cloning failed."
msgstr "یھان پر غلطی ٹارگٹ ڈریو کو چیک کریںأیکسانیت صیھع نھیںأ  "

#: ../iw/raid_dialog_gui.py:745
#, fuzzy
msgid ""
"Clone Drive Tool\n"
"\n"
"This tool allows you to significantly reduce the amount of effort required "
"to setup RAID arrays.  This tool uses a source drive which has been prepared "
"with the desired partitioning layout, and clones this layout onto other "
"similar sized drives.  Then a RAID device can be created.\n"
"\n"
"NOTE: The source drive must have partitions which are restricted to be on "
"that drive only, and can only contain unused software RAID partitions.  "
"Other partition types are not allowed.\n"
"\n"
"EVERYTHING on the target drive(s) will be destroyed by this process."
msgstr ""
"یکساں ڈرایو ٹول\n"
"\n"
" یہ ٹول آپ کی حاصل کوشش کو   قدرے قیمت  ختم کرتا ھے     \n"
"\n"
"یہ راءے ابتدا ہی ڈرایو جو کے آپ کی خواھش کے مطابق حصہے ڈزاین بناے کے لیے ھے  "
"اور یہ ڈزاین دوسری ایک جیسی ڈرایو کے لیے ھے آلہ بن سکتا ھے  RAID پھر      \n"
"\n"
"  نوٹ:  ابتدا ہی ڈرایو کے حصے ھو نا اس ڈرایو کے لیے ضروری ھے اور یہ صرف نہ "
"استمعال  سافٹ ویر حصہ کی ھو سکتی ھے دوسرے حصہ نمونہ نھیں آ سکتا  اس طرح کرنے "
"سےسارہ کچھ منزل ڈرایو  سےختم ھو جاے گا    "

#: ../iw/raid_dialog_gui.py:765
msgid "Source Drive:"
msgstr "پرامر ی ڈرایو"

#: ../iw/raid_dialog_gui.py:773
msgid "Target Drive(s):"
msgstr "منزل  ڈرایو"

#: ../iw/raid_dialog_gui.py:781
msgid "Drives"
msgstr "ڈرایوز"

#: ../iw/task_gui.py:44
#, fuzzy, python-format
msgid ""
"Unable to read package metadata from repository.  This may be due to a "
"missing repodata directory.  Please ensure that your repository has been "
"correctly generated.\n"
"\n"
"%s"
msgstr ""
"میٹا ڈیٹا پیکج پڑھنے سے قاصر ہے۔ اِس کی وجہ گم جانے والی ریپو ڈیٹا ڈایکٹری ہو "
"سکتی ہے۔ مہربانی فرما کر آپ  %s اِس بات کی یقین دہانی کر لیں کہ آپ کا تنصیبی "
"درخت صحیح طور پر ابھرا ہے۔ "

#: ../iw/task_gui.py:54
#, python-format
msgid ""
"Unable to find a group file for %s.  This will prevent manual selection of "
"packages from the repository from working"
msgstr ""

#: ../iw/task_gui.py:80
#, fuzzy
msgid "Edit Repository"
msgstr "غلط بوٹ نانہ"

#: ../iw/task_gui.py:155
#, fuzzy
msgid "Invalid Repository Name"
msgstr "غلط میز با ن کا نا م"

#: ../iw/task_gui.py:156
#, fuzzy
msgid "You must provide a repository name."
msgstr "آپ کو سرور کا کا نام  داخل کرنا چاہیۓ"

#: ../iw/task_gui.py:167
#, fuzzy
msgid "Invalid Proxy URL"
msgstr "غلط بوٹ نانہ"

#: ../iw/task_gui.py:168
msgid "You must provide an HTTP, HTTPS, or FTP URL to a proxy."
msgstr ""

#: ../iw/task_gui.py:187
#, fuzzy
msgid "Invalid Repository URL"
msgstr "غلط بوٹ نانہ"

#: ../iw/task_gui.py:188
#, fuzzy
msgid "You must provide an HTTP, HTTPS, or FTP URL to a repository."
msgstr "آپ کو سرور کا کا نام  داخل کرنا چاہیۓ"

#: ../iw/task_gui.py:232
#, fuzzy, python-format
msgid ""
"The repository %s has already been added.  Please choose a different "
"repository name and URL."
msgstr ""
" پہلے سے استعمال میں ہے، مہربانی فرما کر مختلف ماُونٹ موایُنٹ کا انتخاب کریں۔ "
"\"%s\"  ماوُنٹ پواینُٹ "

#: ../iw/timezone_gui.py:62 ../textw/timezone_text.py:95
msgid "Time Zone Selection"
msgstr "ایریا ٹا ٓیم انتخاب کریں "

#: ../iw/upgrade_bootloader_gui.py:33 ../textw/upgrade_bootloader_text.py:132
msgid "Upgrade Boot Loader Configuration"
msgstr "بوٹ لوڈر سیٹنگ کی بھتری  "

#: ../iw/upgrade_bootloader_gui.py:119
msgid "_Update boot loader configuration"
msgstr "بوٹ لوڈر سیٹنگ اپ ڈیٹ  (_U)"

#: ../iw/upgrade_bootloader_gui.py:120
msgid "This will update your current boot loader."
msgstr "آپ کا موجودہ بوٹ لوڈر میں اپ ڈیٹ ھو گی"

#: ../iw/upgrade_bootloader_gui.py:124 ../textw/upgrade_bootloader_text.py:104
msgid ""
"Due to system changes, your boot loader configuration can not be "
"automatically updated."
msgstr ""

#: ../iw/upgrade_bootloader_gui.py:127 ../textw/upgrade_bootloader_text.py:108
msgid ""
"The installer is unable to detect the boot loader currently in use on your "
"system."
msgstr ""
"موجودہ بوٹ لوڈر جو کے آپ کے سسٹم کے استعما ل میں ھے انسٹالر  تلاش کرنیں سے "
"قا صر ھے"

#: ../iw/upgrade_bootloader_gui.py:134 ../textw/upgrade_bootloader_text.py:117
#, python-format
msgid ""
"The installer has detected the %s boot loader currently installed on %s."
msgstr "انسٹالر نے تلاش کیا  %s  اب بوٹ لوڈر موجودہ  انسٹال ھے %s"

#: ../iw/upgrade_bootloader_gui.py:138
msgid "This is the recommended option."
msgstr "یہ مشاوراتی آپشن ھے "

#: ../iw/upgrade_bootloader_gui.py:143
msgid "_Create new boot loader configuration"
msgstr "نیےء  بوٹ لوڈر کی سیٹنگ بنایے  (_C)"

#: ../iw/upgrade_bootloader_gui.py:145
#, fuzzy
msgid ""
"This option creates a new boot loader configuration.  If you wish to switch "
"boot loaders, you should choose this."
msgstr ""
"یہ آپ کو نیا بوٹ لوڈر بنانے میں مدد دے گا۔ اگر آپ کی خواھش کسی اور بوٹ لوڈر "
"کی طرف ھے آپ کو یہ منتخب کرنا ھو گا"

#: ../iw/upgrade_bootloader_gui.py:152
msgid "_Skip boot loader updating"
msgstr "بوٹ لوڈر کی بھتری چھوڑ دو(_S)"

#: ../iw/upgrade_bootloader_gui.py:153
#, fuzzy
msgid ""
"This option makes no changes to boot loader configuration.  If you are using "
"a third party boot loader, you should choose this."
msgstr ""
"یہ بوٹ لوڈر میں کو ہی نھیں تبدیلی نھیں کرے گا اگر آپ کو ہی اور بوٹ لوڈر "
"استعمال کر رھے ھیں آپ کو اس کا انتخاب کرنا ھو گا "

#: ../iw/upgrade_bootloader_gui.py:164
msgid "What would you like to do?"
msgstr "آٓپ کیا کرنا چا ھتے ھو ؟"

#: ../iw/upgrade_migratefs_gui.py:32 ../textw/upgrade_text.py:37
msgid "Migrate File Systems"
msgstr "ھجرت نظام فاٰیل"

#: ../iw/upgrade_migratefs_gui.py:62 ../textw/upgrade_text.py:39
#, fuzzy, python-format
msgid ""
"This release of %s supports the an updated file system, which has several "
"benefits over the file system traditionally shipped in %s.  This "
"installation program can migrate formatted partitions without data loss.\n"
"\n"
"Which of these partitions would you like to migrate?"
msgstr ""
"%s  ایڈیشنن  ext3 فایل سسٹم پر سارے فادے ھیں کو جنرل فایل سسٹم کو  مدد دیتا "
"ھے  ext2 اس کے  %s  میں خالی حصہ بغیر کسی نقصان کے     ext3 سے  ext2 یہ ممکن "
"ھے کے ٓاپ  \n"
"\n"
"آپ ان میں سے کس حسے میں ھضرت کرنا پسند کریں گے؟"

#: ../iw/upgrade_swap_gui.py:33
msgid "Upgrade Swap Partition"
msgstr "سویپ حصہ کے لیے بھتری "

#: ../iw/upgrade_swap_gui.py:93 ../textw/upgrade_text.py:103
#, fuzzy, python-format
msgid ""
"Recent kernels (2.4 or newer) need significantly more swap than older "
"kernels, up to twice the amount of RAM on the system.  You currently have %"
"dMB of swap configured, but you may create additional swap space on one of "
"your file systems now."
msgstr ""
"آپ کی موجودہ سویپ جگہ لیکن اب آپ اس سے زیادہ سویپ جگہ بنا سکتے ھیں آپ کے کسے "
"ایک فایل سسٹم پر  %dMB  سے سویپ کرنے کی  قدرے زیادہ ضرورت ھے  kernel  پرانے "
"2.4 کو  kernelپر اس سسٹم میں RAM بھت زیادہ سویپ جگہ"

#: ../iw/upgrade_swap_gui.py:100
#, python-format
msgid ""
"\n"
"\n"
"The installer has detected %s MB of RAM.\n"
msgstr ""
"\n"
"\n"
"کے لیے انسٹالر نے تلاش کی ھے(RAM) %s MB \n"

#: ../iw/upgrade_swap_gui.py:112
msgid "I _want to create a swap file"
msgstr "میں ادلا بدلا یا سویپ فاٰیل بنانا چاھتا ھوں(_W)"

#: ../iw/upgrade_swap_gui.py:121
msgid "Select the _partition to put the swap file on:"
msgstr "سویپ فایل رکھنے کے لیے حصہ منتخب کریں(_P):"

#: ../iw/upgrade_swap_gui.py:140 ../textw/upgrade_text.py:121
msgid "Partition"
msgstr "حصۃ"

#: ../iw/upgrade_swap_gui.py:140
msgid "Free Space (MB)"
msgstr "خالی جگۃ  (MB)"

#: ../iw/upgrade_swap_gui.py:158
#, fuzzy, python-format
msgid ""
"A minimum swap file size of %d MB is recommended.  Please enter a size for "
"the swap file:"
msgstr ""
"یہ آپ کی سویپ فایل کے لیے مشورہ ھے  %d مھربانی سویپ فایل کے لیے سایز لکھیں"

#: ../iw/upgrade_swap_gui.py:173
msgid "Swap file _size (MB):"
msgstr "ادلا بدلا یا سویپ فاٰیل ساٰیژ(MB)(_s):"

#: ../iw/upgrade_swap_gui.py:183
msgid "I _don't want to create a swap file"
msgstr "میں ادلا بدلا یا سویپ فاٰیل نھیں بنانا چاھتا (_d)"

#: ../iw/upgrade_swap_gui.py:193
#, fuzzy
msgid ""
"A swap file is strongly recommended. Failure to create one could cause the "
"installer to abort abnormally.  Are you sure you wish to continue?"
msgstr ""
"یہی بھت بھتر مشورہ ھےت کے آپ سویپ فایل بنایں فیل ھونے کی صورت میں انسٹالر "
"بند ھو سکتا ھے واقع آپ ایسا کرنا چاھتے ھیں؟"

#: ../iw/upgrade_swap_gui.py:201 ../textw/upgrade_text.py:187
msgid "The swap file must be between 1 and 2000 MB in size."
msgstr "۔1  اور، 2000 سویپ فایل  اس کے درمیان ھو ضروری ھے"

#: ../iw/upgrade_swap_gui.py:208 ../textw/upgrade_text.py:182
msgid ""
"There is not enough space on the device you selected for the swap partition."
msgstr ""
"یھاں پر سویپ حصہ کیلیے  جگہ خالی نھیں ھے جس ڈرایو کو آپ نے منتخب کیا ھے "

#: ../iw/zipl_gui.py:35
msgid "z/IPL Boot Loader Configuration"
msgstr "z/IPL بوٹ لوڈر سیٹنگژ"

#: ../iw/zipl_gui.py:59
msgid "The z/IPL boot loader will be installed on your system."
msgstr "بوٹ لوڈر آپ کے سسڑم پر انسٹال ھو گی z/IPL "

#: ../iw/zipl_gui.py:61
msgid ""
"The z/IPL Boot Loader will now be installed on your system.\n"
"\n"
"The root partition will be the one you selected previously in the partition "
"setup.\n"
"\n"
"The kernel used to start the machine will be the one to be installed by "
"default.\n"
"\n"
"If you wish to make changes later after the installation feel free to change "
"the /etc/zipl.conf configuration file.\n"
"\n"
"You can now enter any additional kernel parameters which your machine or "
"your setup may require."
msgstr ""
"The z/IPL بوٹ لوڈر آپ کے سےسسٹم پر انسٹال ھو گا۔\n"
"\n"
"پھلے تقسیم سیٹ اپ پیچھے والی ھو گی.\n"
"\n"
"کرنل خود ھی مشین کو انسٹال کرنے کےلیے استعمال کرے گا۔ .\n"
"\n"
" /etc/zipl.conf اگر آپ کو انسٹالیشن میں تبدیلی درکار ھے تو آپ جب چاھیں "
"تبدیلی کر سکتے ھیں۔ .\n"
"\n"
"ٓاپ جو چاھتے ھین کرنل مین جمع کر سکتے ھیں جب آپ کی مشین کے سیٹ اپ کو چاھیے ھو "
"گا۔."

#: ../iw/zipl_gui.py:88 ../textw/zipl_text.py:68
msgid "Kernel Parameters"
msgstr "Kernel لیمٹ"

#: ../iw/zipl_gui.py:91 ../iw/zipl_gui.py:94
msgid "Chandev Parameters"
msgstr "Chandev لیمٹ"

#: ../textw/bootloader_text.py:32
msgid "Which boot loader would you like to use?"
msgstr "آپ کونسا بوٹ لوڈر استعمال کرنا چاھتے ھیں؟"

#: ../textw/bootloader_text.py:42
msgid "Use GRUB Boot Loader"
msgstr "استعمال(GRUB ) بوٹ لوڈر"

#: ../textw/bootloader_text.py:43
msgid "No Boot Loader"
msgstr "بوٹ لوڈر ینھں ھے"

#: ../textw/bootloader_text.py:63
msgid "Skip Boot Loader"
msgstr "بوٹ لوڈر چھو ڑنا"

#: ../textw/bootloader_text.py:64
#, fuzzy
msgid ""
"You have elected not to install any boot loader, which is not recommended "
"unless you have an advanced need. Booting your system into Linux directly "
"from the hard drive almost always requires a boot loader.\n"
"\n"
"Are you sure you want to skip boot loader installation?"
msgstr ""
"آپ نے کوہی بوٹ لوڈر انسٹال کرنے کیلیے تلاش نھیں کیا۔ یہ بھت ھی یھم مشورہ ھے "
"کے باٹ لوڈر انسٹال کریں یھاں تک آپ بھتر ضرورت سمجتے ھوں۔ بوٹ لوڈر ھر دفعہ "
"ضروری ھے جب جب دابارہ سسٹم چلایں لینکس ھارڈ ڈسک سے  \n"
"\n"
"آپ واقع ھی ایسا کرنا چاھتے ھیں"

#: ../textw/bootloader_text.py:96
#, fuzzy
msgid ""
"A few systems need to pass special options to the kernel at boot time to "
"function properly. If you need to pass boot options to the kernel, enter "
"them now. If you don't need any or aren't sure, leave this blank."
msgstr ""
"سسٹم کے صحیع کام کرنے کیلیے کچھ کرنل سپیشل آپشن سے بوٹ ٹایم پر گزرنے کی "
"ضرورت ھوتی ھے۔ اگر آپ کو بوٹ آپشن کرنل کو دینے کی ضرورت ھے تو ان کو ٓٓاگے کریں "
"اگر ضرورت نھیں یا آپ اس کے بارے میں نھیں جانتے تو خالی چھڑ دیں "

#: ../textw/bootloader_text.py:105
msgid "Force use of LBA32 (not normally required)"
msgstr "LBA32 قوت استعمال (not normally required)"

#: ../textw/bootloader_text.py:128
#, fuzzy
msgid ""
"If LBA32 is not supported by your system's BIOS, forcing its use can prevent "
"your machine from booting.\n"
"\n"
"Would you like to continue and force LBA32 mode?"
msgstr ""
"سے منظور شدہ نہ ہو آپ کی مشین کو بوٹ نہیں ہونے دےگا۔  BIOS  آپ کے بوٹ لوڈر "
"کے لیےُ ذبردستی  استعمال  جب یہ   LBA32 \n"
"\n"
"موڈ کو فورس کرناچاہتے ہیں؟ LBA32 کیا آپ جاری رہنا  اور "

#: ../textw/bootloader_text.py:169
msgid "Where do you want to install the boot loader?"
msgstr "آپ کھاں پر بوٹ لوڈر انسٹال کرنا چاھتے ھیں؟"

#: ../textw/bootloader_text.py:197 ../textw/bootloader_text.py:262
msgid "Boot label"
msgstr "بوٹ نامہ"

#: ../textw/bootloader_text.py:201
msgid "Clear"
msgstr "صاف"

#: ../textw/bootloader_text.py:209
msgid "Edit Boot Label"
msgstr "ترمیم بوٹ نامہ"

#: ../textw/bootloader_text.py:227 ../textw/bootloader_text.py:232
msgid "Invalid Boot Label"
msgstr "غلط بوٹ نانہ"

#: ../textw/bootloader_text.py:228
msgid "Boot label may not be empty."
msgstr "بوٹ لیبل خالی نھیں ھو سکتا"

#: ../textw/bootloader_text.py:233
msgid "Boot label contains illegal characters."
msgstr "بوٹ لیبل میں غیر ضروری حرف ھٰیں"

#: ../textw/bootloader_text.py:281
#, fuzzy, python-format
msgid ""
"The boot manager %s uses can boot other operating systems as well.  Please "
"tell me what partitions you would like to be able to boot and what label you "
"want to use for each of them."
msgstr ""
" دوسرے اوپریٹنگ سسٹمز کو بٹ کرنے کیلے بھی استعمال کعر سکتے ھیں۔ آپ کو مجھے "
"حصہ بتانا ضروری جس میں آپ بوٹ کرنا پسند کرتے ھیں اور کیا آپ اسے ھر ایک کیلے "
"استعمال کرنا چاھتے ھیں  %s بوٹ مینجر "

#: ../textw/bootloader_text.py:294
#, fuzzy
msgid ""
" <Space> select | <F2> select default | <F4> delete | <F12> next screen>"
msgstr " <Space> انتخاب  بٹن | <F2> پھلی بوٹ انٹری منتخب  | <F12> اگلی سکرین>"

#: ../textw/bootloader_text.py:390
#, fuzzy
msgid ""
"A boot loader password prevents users from passing arbitrary options to the "
"kernel.  For highest security, you should set a password, but a password is "
"not necessary for more casual users."
msgstr ""
"بوٹ لوڈر اشارہ جھاں سے باقاءہدہ آ راھا کرنل آپشن کو باز رکھتا ھے ھم آپ کو "
"زیادہ سیکورٹی کے لیے مشورہ ھے اشارہ سیٹ کریں لیکن ضروری بھی نھیں"

#: ../textw/bootloader_text.py:400
msgid "Use a GRUB Password"
msgstr "استعمال (GRUB) اشارہ"

#: ../textw/bootloader_text.py:412
msgid "Boot Loader Password:"
msgstr "بوٹ لوڈر اشارہ"

#: ../textw/bootloader_text.py:413 tmp/account.glade.h:1
msgid "Confirm:"
msgstr "تصدیق:"

#: ../textw/bootloader_text.py:442
msgid "Passwords Do Not Match"
msgstr "اشارہ ملاپ نھیں کرتا"

#: ../textw/bootloader_text.py:447
msgid "Password Too Short"
msgstr "اشارہ بھت چھوٹا ھے"

#: ../textw/bootloader_text.py:448
msgid "Boot loader password is too short"
msgstr "بوت لوڈر اشارہ بھت چھوٹا ھے "

#: ../textw/complete_text.py:31
msgid ""
"Press <Enter> to end the installation process.\n"
"\n"
msgstr ""
"کارواہی انسٹالیشن ختم کرنے کیلے <Enter> دبایں\n"
"\n"

#: ../textw/complete_text.py:32
msgid "<Enter> to exit"
msgstr "باھر یا ختم کرنے کیلے<Enter>"

#: ../textw/complete_text.py:36
#, python-format
msgid ""
"Congratulations, your %s installation is complete.\n"
"\n"
"%s%s"
msgstr ""
"مبارک, آپ کی %s انسٹالیشن پوری ھے।\n"
"\n"
"%s%s"

#: ../textw/complete_text.py:39
#, python-format
msgid ""
"For information on errata (updates and bug fixes), visit http://www.redhat."
"com/errata/.\n"
"\n"
"Information on using your system is available in the %s manuals at http://"
"www.redhat.com/docs/."
msgstr ""
" visit http://www.redhat.com/errata/. مدد کے لیے \n"
"\n"
" اس لنک پر موجود ھے http://www.redhat.com/docs/  اس کے لیے مدد %s آ پ جو "
"سسٹم استعمال کر رھے ھیں   "

#: ../textw/complete_text.py:45
msgid "Complete"
msgstr "مکمل"

#: ../textw/complete_text.py:46
msgid "Reboot"
msgstr "دوبارہ بوٹ"

#: ../textw/grpselect_text.py:94
#, fuzzy
msgid "Please select the package groups you would like to install."
msgstr ""
"مہر بانی کرکے پیکج گروپ کا انتحاب کر یں جو آپ استمال کرنا پسند کر ے گے :"

#: ../textw/grpselect_text.py:112
msgid ""
"<Space>,<+>,<-> selection   |   <F2> Group Details   |   <F12> next screen"
msgstr "ا گلی سکرین <F12> | گرو پ کی تفصیل <F2> | حا لی  جگہ>,<+>,<->انتحا ب "

#: ../textw/grpselect_text.py:124
msgid "No optional packages to select"
msgstr ""

#: ../textw/grpselect_text.py:146
msgid "Package Group Details"
msgstr "پیکج گرو پ کی تفصیل"

#: ../textw/keyboard_text.py:46
msgid "Keyboard Selection"
msgstr "کی بو ر ڈ کا ا نتحا ب"

#: ../textw/keyboard_text.py:47
msgid "Which model keyboard is attached to this computer?"
msgstr "اس کمپیو ٹر کے سا تھ کو نسا کی بو ر ڈ  ماڈ ل  لگا  ھے؟ "

#: ../textw/network_text.py:58
#, fuzzy, python-format
msgid ""
"You have not specified the field %s.  Depending on your network environment "
"this may cause problems later."
msgstr ""
"۔یہ اپ کے نٹورک پر انحصار کرتا ہے اور بعد میں مثل کر سکتا ہے\"%s\"آپ نے فیلد "
"نہیں دیا"

#: ../textw/network_text.py:75
#, fuzzy, python-format
msgid "IPv%d prefix must be between 0 and %d."
msgstr "کے پتے کے لیے لازمی کہ اس کے نمبر 1 سے لے کر 255 تک ہوں IP"

#: ../textw/network_text.py:79
msgid "Integer Required for Prefix"
msgstr ""

#: ../textw/network_text.py:80
#, python-format
msgid ""
"You must enter a valid integer for the %s.  For IPv4, the value can be "
"between 0 and 32.  For IPv6 it can be between 0 and 128."
msgstr ""

#: ../textw/network_text.py:87 tmp/netpostconfig.glade.h:16
#, fuzzy
msgid "Prefix (Netmask)"
msgstr "نیٹ ما سک"

#: ../textw/network_text.py:89 tmp/netpostconfig.glade.h:15
#, fuzzy
msgid "Prefix"
msgstr " سٹر نگ IP غلط"

#: ../textw/network_text.py:142
msgid "Activate on boot"
msgstr "بو ٹ پر کا م شرو ع ھو نا"

#: ../textw/network_text.py:149 ../loader2/net.c:730
#: tmp/netpostconfig.glade.h:9
msgid "Enable IPv4 support"
msgstr ""

#: ../textw/network_text.py:156 ../loader2/net.c:743
#: tmp/netpostconfig.glade.h:10
msgid "Enable IPv6 support"
msgstr ""

#: ../textw/network_text.py:169
msgid "P-to-P:"
msgstr ""

#: ../textw/network_text.py:187 tmp/netpostconfig.glade.h:7
#, fuzzy
msgid "ESSID:"
msgstr "ای ایس ایس آئی ڈی_"

#: ../textw/network_text.py:196
msgid "WEP Key:"
msgstr ""

#: ../textw/network_text.py:209
#, python-format
msgid "Network Configuration for %s"
msgstr "کے لیے %sجا ل کی و ضع"

#: ../textw/network_text.py:246 ../textw/network_text.py:249
msgid "point-to-point IP address"
msgstr ""

#: ../textw/network_text.py:272 tmp/netpostconfig.glade.h:5
#, fuzzy
msgid "Dynamic IP configuration (DHCP)"
msgstr "ڈائنامک آئ-پی کو استعمال کریں (BOOTP/DHCP)"

#: ../textw/network_text.py:275 ../textw/network_text.py:406
#, fuzzy
msgid "Manual address configuration"
msgstr " کی تر تیب z/IPL"

#: ../textw/network_text.py:295
#, fuzzy, python-format
msgid "IPv4 Configuration for %s"
msgstr "کے لیے %sجا ل کی و ضع"

#: ../textw/network_text.py:325 ../textw/network_text.py:337
#: ../textw/network_text.py:340
#, fuzzy
msgid "IPv4 address"
msgstr "عنوان IP :"

#: ../textw/network_text.py:329
#, fuzzy
msgid "IPv4 network mask"
msgstr "آ ئی پی / نیٹ ماسک"

#: ../textw/network_text.py:355 ../textw/network_text.py:358
#: ../textw/network_text.py:361
#, fuzzy
msgid "IPv4 prefix (network mask)"
msgstr "نیٹ ما سک"

#: ../textw/network_text.py:400 tmp/netpostconfig.glade.h:4
msgid "Automatic neighbor discovery"
msgstr ""

#: ../textw/network_text.py:403 tmp/netpostconfig.glade.h:6
#, fuzzy
msgid "Dynamic IP configuration (DHCPv6)"
msgstr "ڈائنامک آئ-پی کو استعمال کریں (BOOTP/DHCP)"

#: ../textw/network_text.py:430
#, fuzzy, python-format
msgid "IPv6 Configuration for %s"
msgstr "کے لیے %sجا ل کی و ضع"

#: ../textw/network_text.py:460 ../textw/network_text.py:471
#: ../textw/network_text.py:474
#, fuzzy
msgid "IPv6 address"
msgstr "عنوان IP :"

#: ../textw/network_text.py:464 ../textw/network_text.py:483
#, fuzzy
msgid "IPv6 prefix"
msgstr " سٹر نگ IP غلط"

#: ../textw/network_text.py:509
#, fuzzy
msgid "Configure Network Interface"
msgstr "یھان پر غلطی ٹارگٹ ڈریو کو چیک کریںأیکسانیت صیھع نھیںأ  "

#: ../textw/network_text.py:510
#, fuzzy, python-format
msgid "Would you like to configure the %s network interface in your system?"
msgstr "کیا آپ نیٹ ورک انٹرفیز اس مشین پر شروع کرنا چاہتے ہیں "

#: ../textw/network_text.py:524 ../textw/network_text.py:526
msgid "UNCONFIGURED"
msgstr ""

#: ../textw/network_text.py:535
msgid ""
"The current configuration settings for each interface are listed next to the "
"device name.  Unconfigured interfaces are shown as UNCONFIGURED.  To "
"configure an interface, highlight it and choose Edit.  When you are "
"finished, press OK to continue."
msgstr ""

#: ../textw/network_text.py:567
#, fuzzy
msgid "Active on boot"
msgstr "بو ٹ پر کا م شرو ع ھو نا"

#: ../textw/network_text.py:569
#, fuzzy
msgid "Inactive on boot"
msgstr "بو ٹ پر کا م شرو ع ھو نا"

#: ../textw/network_text.py:572
msgid "DHCP"
msgstr ""

#: ../textw/network_text.py:577
msgid "Auto IPv6"
msgstr ""

#: ../textw/network_text.py:579
msgid "DHCPv6"
msgstr ""

#: ../textw/network_text.py:678 ../loader2/net.c:1055
msgid "Gateway:"
msgstr "گیٹ و ے"

#: ../textw/network_text.py:687
msgid "Primary DNS:"
msgstr "DNSا بتد ا یی"

#: ../textw/network_text.py:692
msgid "Secondary DNS:"
msgstr " DNSدو سرے د ر جے کا"

#: ../textw/network_text.py:699
msgid "Miscellaneous Network Settings"
msgstr "متفر ق جا ل کی تر تیب"

#: ../textw/network_text.py:716 ../textw/network_text.py:719
#, fuzzy
msgid "gateway"
msgstr "گیٹ وے"

#: ../textw/network_text.py:726 ../textw/network_text.py:729
#, fuzzy
msgid "primary DNS"
msgstr "DNS پہلی"

#: ../textw/network_text.py:738
#, fuzzy
msgid "secondary DNS"
msgstr "DNS دوسری"

#: ../textw/network_text.py:762
msgid "automatically via DHCP"
msgstr "کے ذ ر یعےDHCPحو د بحو د"

#: ../textw/network_text.py:765
msgid "manually"
msgstr "حو د سے کا م کر نا "

#: ../textw/network_text.py:784
msgid "Hostname Configuration"
msgstr "میز با ن کے نا م کی تر تیب"

#: ../textw/network_text.py:787
#, fuzzy
msgid ""
"If your system is part of a larger network where hostnames are assigned by "
"DHCP, select automatically via DHCP. Otherwise, select manually and enter a "
"hostname for your system. If you do not, your system will be known as "
"'localhost.'"
msgstr ""
"اگر آپکا سسٹم بڑے نیٹ و ر ک کا حصہ ھے جھا ں ھو DHCPکے زریعے یا حود انتحا ب "
"کریں اور سسٹم کے لے ھوسٹ کا نام درج کرءں۔اگر آپ ایسا نھیں کریں گے تو سسٹم کا "
"نا م لوکل ھو سٹ ھو گا۔سے اسا ین ھےحود بحود انتحا بDHCPسٹ کا نام "

#: ../textw/network_text.py:813 ../textw/network_text.py:819
msgid "Invalid Hostname"
msgstr "غلط میز با ن کا نا م"

#: ../textw/network_text.py:814
msgid "You have not specified a hostname."
msgstr "ٓاپ نے میزبا ن کا نا م  محصو ص نھین کیا"

#: ../textw/partition_text.py:50
msgid "Must specify a value"
msgstr "کا ضرور تعین کر یںvalueاسکی "

#: ../textw/partition_text.py:53
msgid "Requested value is not an integer"
msgstr "نھیں ھو گیinteger valueد ر حو ا ست کی گی"

#: ../textw/partition_text.py:55
msgid "Requested value is too large"
msgstr "مطلوبہ ویلیو بہت بڑی ہے"

#: ../textw/partition_text.py:122
#, python-format
msgid "RAID Device %s"
msgstr "ٓا لہ RAID %s"

#: ../textw/partition_text.py:250
#, python-format
msgid "Warning: %s"
msgstr "حطر ے کی ا طلا ع: %s"

#: ../textw/partition_text.py:251
msgid "Modify Partition"
msgstr "تقسیم کو مز ید ٹھیک کر نا"

#: ../textw/partition_text.py:251
msgid "Add anyway"
msgstr "کسی بھی صو ر ت میں جمع  کر دو"

#: ../textw/partition_text.py:289
msgid "Mount Point:"
msgstr "جمع ھو نے کی جگہ:"

#: ../textw/partition_text.py:341
msgid "File System type:"
msgstr "فا یل سسٹم ٹا یپ :"

#: ../textw/partition_text.py:375
msgid "Allowable Drives:"
msgstr "وہ ڈراییو ر جن کو اجا ز ت ھے :"

#: ../textw/partition_text.py:431
msgid "Fixed Size:"
msgstr "مستحکم مقد ا ر:"

#: ../textw/partition_text.py:433
msgid "Fill maximum size of (MB):"
msgstr "زیا دہ سے زیا دہ مقد ار میں  (МB):"

#: ../textw/partition_text.py:437
msgid "Fill all available space:"
msgstr "تمام حا لی جگہ کو پر کر دو:"

#: ../textw/partition_text.py:460
msgid "Start Cylinder:"
msgstr "سلنڈ ر کو شر و ع کر دو:"

#: ../textw/partition_text.py:473
msgid "End Cylinder:"
msgstr "سلنڈ ر کو حتم کر دو:"

#: ../textw/partition_text.py:496
msgid "Volume Group:"
msgstr "گر وہ کا حجم:"

#: ../textw/partition_text.py:518
msgid "RAID Level:"
msgstr "لیو ل RAID:"

#: ../textw/partition_text.py:536
msgid "RAID Members:"
msgstr "ر کن RAID:"

#: ../textw/partition_text.py:555
msgid "Number of spares?"
msgstr "کتنے کم کر نے ھیں؟"

#: ../textw/partition_text.py:569
msgid "File System Type:"
msgstr "فا یل سسٹم ٹا یپ :"

#: ../textw/partition_text.py:582
msgid "File System Label:"
msgstr "فا یل سسٹم لیبل :"

#: ../textw/partition_text.py:593
msgid "File System Option:"
msgstr "فا یل سسٹم کا انتحا ب کر نا :"

#: ../textw/partition_text.py:596 ../textw/partition_text.py:803
#: ../textw/partition_text.py:1028 ../textw/partition_text.py:1198
#, python-format
msgid "Format as %s"
msgstr " %sبنا و ٹ جسطر ح"

#: ../textw/partition_text.py:598 ../textw/partition_text.py:805
#: ../textw/partition_text.py:1030 ../textw/partition_text.py:1200
#, python-format
msgid "Migrate to %s"
msgstr "  کی طرف جا نا%s"

#: ../textw/partition_text.py:600 ../textw/partition_text.py:807
#: ../textw/partition_text.py:1032 ../textw/partition_text.py:1202
msgid "Leave unchanged"
msgstr "بغیر بد لے ھو یے رھنے دو"

#: ../textw/partition_text.py:613 ../textw/partition_text.py:783
#: ../textw/partition_text.py:1008 ../textw/partition_text.py:1178
msgid "File System Options"
msgstr "فا یل سسٹم کے انتحا بات"

#: ../textw/partition_text.py:616
msgid ""
"Please choose how you would like to prepare the file system on this "
"partition."
msgstr ""
"مھر با نی کر کے انتحا ب کر یں کہ اس تقسیم کے لےّ آپ فا یّل سسٹم کو کیسے تیا ر "
"کریں گے"

#: ../textw/partition_text.py:623
msgid "Leave unchanged (preserve data)"
msgstr "بغیر بد لے ھو یّےرھنے دو(محفو ظ ڈیٹا)"

#: ../textw/partition_text.py:632
msgid "Format as:"
msgstr "بنا و ٹ جسطر ح:"

#: ../textw/partition_text.py:652
msgid "Migrate to:"
msgstr "کی طرف جا نا:"

#: ../textw/partition_text.py:753
msgid "Force to be a primary partition"
msgstr "ابتدا یّی تقسیم کیلّے کھنا"

#: ../textw/partition_text.py:762
msgid "Not Supported"
msgstr "اسکو تعا و ن نھیں کرتا "

#: ../textw/partition_text.py:763
#, fuzzy
msgid "You can only edit LVM Volume Groups in the graphical installer."
msgstr "وا لیم گروپ گر ا فکل ا نسٹا لر میں ھی در ست کیا جا سکتا ھے LVM "

#: ../textw/partition_text.py:830 ../textw/partition_text.py:878
msgid "Invalid Entry for Partition Size"
msgstr "تقسیم کے سا ّیز کیلّے غلط ا ند ر ا ج"

#: ../textw/partition_text.py:842
msgid "Invalid Entry for Maximum Size"
msgstr "مکمل سا ّیز کیلّے غلط اند ر ا ج"

#: ../textw/partition_text.py:861
msgid "Invalid Entry for Starting Cylinder"
msgstr "سلنڈر کے آغا ز کیلّے غلط اند ر اج"

#: ../textw/partition_text.py:870
msgid "Invalid Entry for End Cylinder"
msgstr "سلنڈر کے احتتام کیلّے غلط اند ر اج"

#: ../textw/partition_text.py:981
msgid "No RAID partitions"
msgstr " تقسیم نھیںRAIDکو ّیی"

#: ../textw/partition_text.py:982
msgid "At least two software RAID partitions are needed."
msgstr " تقسیم کیلّے کم از کم دو سا فٹ و ّیر کی ضر ورت ھےRAID "

#: ../textw/partition_text.py:994 ../textw/partition_text.py:1165
msgid "Format partition?"
msgstr "فا ر مٹ تقسیم؟"

#: ../textw/partition_text.py:1056
msgid "Invalid Entry for RAID Spares"
msgstr "کم کرنے کیلّے غلط اندرا ج RAID"

#: ../textw/partition_text.py:1071
msgid "Too many spares"
msgstr "بھت زیا دہ کم "

#: ../textw/partition_text.py:1072
#, fuzzy
msgid "You may not use any spares with a RAID0 array."
msgstr "کے ساتھ فالتو تعداد زیادہ سے زیادہ 0 ہے۔  RAID0 array"

#: ../textw/partition_text.py:1151
msgid "No Volume Groups"
msgstr "کوئی گروپ نھیں"

#: ../textw/partition_text.py:1152
#, fuzzy
msgid "No volume groups exist in which to create a logical volume"
msgstr "لوجیکل وا لیم کے لےّ کو ییّ والیم گر و پ نھین"

#: ../textw/partition_text.py:1276
#, fuzzy, python-format
msgid ""
"The current requested size (%10.2f MB) is larger than the maximum logical "
"volume size (%10.2f MB). "
msgstr "موجودہ سایز (%10.2f MB) بڑا ھےاس سایز سے جو موجود ھے (%10.2f MB)"

#: ../textw/partition_text.py:1295
#, python-format
msgid ""
"The current requested size (%10.2f MB) is larger than the available size in "
"the volume group (%10.2f MB)."
msgstr "پارٹیشن کی مقدار،(%10.2f MB)کی آخری حد %10.2f MB) سے تجاوزکر چکی ھے"

#: ../textw/partition_text.py:1348
msgid "New Partition or Logical Volume?"
msgstr "نیّ پا ر ٹیشن یا لو جیکل وا لیم؟"

#: ../textw/partition_text.py:1349
msgid "Would you like to create a new partition or a new logical volume?"
msgstr "کیا آپ نیّ پا ر ٹیشن یا لو جیکل وا لیم؟\" "

#: ../textw/partition_text.py:1351
msgid "partition"
msgstr "بناوٹ"

#: ../textw/partition_text.py:1351
msgid "logical volume"
msgstr "لوجیکل و ا لیم"

#: ../textw/partition_text.py:1423
msgid "Size"
msgstr "سایز"

#: ../textw/partition_text.py:1427
msgid "New"
msgstr "نیا"

#: ../textw/partition_text.py:1429
msgid "Delete"
msgstr "مٹائیں"

#: ../textw/partition_text.py:1430
msgid "RAID"
msgstr "RAID"

#: ../textw/partition_text.py:1433
msgid ""
"    F1-Help     F2-New      F3-Edit   F4-Delete    F5-Reset    F12-OK        "
msgstr "  F1-مدد  F2-نیا  F3-بدلنا  F4-ختم کرنا F5-ابتدائی حالت  F12-ٹھیک ھے  "

#: ../textw/partition_text.py:1465
msgid "No Root Partition"
msgstr "روٹ پا ر ٹیشن نھیں"

#: ../textw/partition_text.py:1466
#, fuzzy
msgid "Installation requires a / partition."
msgstr "%s  : آپ نے جن پارٹیشنز کی درخواست کی تھی وہ ایلوکیٹ نہیں ہو سکیں"

#: ../textw/partition_text.py:1508
msgid "Partitioning Type"
msgstr "پارٹیشن کی قسم"

#: ../textw/partition_text.py:1510
#, fuzzy
msgid ""
"Installation requires partitioning of your hard drive.  The default layout "
"is reasonable for most users.  You can either choose to use this or create "
"your own."
msgstr ""
"تنصیب کو آپ کی ہارڈ کی پارٹیشنگ درکار ہے۔ پہلے سے، ایک پارٹیشنگ صورت کا "
"انتخاب کیا جا چکا ہے جو اکثر یوزرز کے لیےُ قابلِ قبول ہے۔  آپ استعمال کے لیےُ "
"اس کا انتخاب بھی کر سکتے ہیں یا اپنا بھی بنا سکتے ہیں۔"

#: ../textw/partition_text.py:1534
msgid "Which drive(s) do you want to use for this installation?"
msgstr "انسٹا لیشن کے لےّ کو نسی ڈرا یو استعمال کر نی ھے"

#: ../textw/partition_text.py:1549
#, fuzzy
msgid "<Space>,<+>,<-> selection   |   <F2> Add drive   |   <F12> next screen"
msgstr "ا گلی سکرین <F12> | گرو پ کی تفصیل <F2> | حا لی  جگہ>,<+>,<->انتحا ب "

#: ../textw/partition_text.py:1616
msgid "Review Partition Layout"
msgstr "پا ر ٹیشن کو دیکھیں ؟"

#: ../textw/partition_text.py:1617
msgid "Review and modify partitioning layout?"
msgstr "پارٹیشنگ لےآوٹ کو دوبارہ دیکھیں اور ترمیم کریں"

#: ../textw/partition_text.py:1638 tmp/adddrive.glade.h:3
#, fuzzy
msgid "Advanced Storage Options"
msgstr "زائد سائز کے لیے آپشنز "

#: ../textw/partition_text.py:1639 tmp/adddrive.glade.h:5
#, fuzzy
msgid "How would you like to modify your drive configuration?"
msgstr "آپ پارٹیشن کے لیےُ کتنی جگہ چاہتے ہیں؟"

#: ../textw/partition_text.py:1662
#, fuzzy
msgid "Add FCP Device"
msgstr "جمع  FCP اٰلہ "

#: ../textw/partition_text.py:1663 tmp/zfcp-config.glade.h:5
#, fuzzy
msgid ""
"zSeries machines can access industry-standard SCSI devices via Fibre Channel "
"(FCP). You need to provide a 16 bit device number, a 64 bit World Wide Port "
"Name (WWPN), and a 64 bit FCP LUN for each device."
msgstr ""
" کے ذریعے کر سکتی ہیں۔ آپ کو ہر ایک آلے کے لیےُ 5 پیرامیٹرز مہیا کرنے ہوں گے:"
"a 16 bit device number, a 16bit SCSI ID, a 64 bit World Wide Port Name "
"(WWPN), a 16bit SCSI LUN and a 64 bit FCP LUN.  (FCP) آلات کی رسایُ فایُبر "
"چینل SCSI مشینز صرف انڈسٹری معیار zSeries"

#: ../textw/partition_text.py:1686 tmp/iscsi-config.glade.h:5
#, fuzzy
msgid "Configure iSCSI Parameters"
msgstr "Chandev لیمٹ"

#: ../textw/partition_text.py:1687 tmp/iscsi-config.glade.h:6
msgid ""
"To use iSCSI disks, you must provide the address of your iSCSI target and "
"the iSCSI initiator name you've configured for your host."
msgstr ""

#: ../textw/partition_text.py:1688
#, fuzzy
msgid "Target IP Address"
msgstr "عنوان IP ٹارگٹ :"

#: ../textw/partition_text.py:1689
#, fuzzy
msgid "iSCSI Initiator Name"
msgstr "<b>: نام _انیٹیٹرiSCSI</b>"

#: ../textw/partmethod_text.py:32
msgid "Autopartition"
msgstr "حو د بحود پا رٹیشن"

#: ../textw/partmethod_text.py:33
msgid "Disk Druid"
msgstr "Disk Druid"

#: ../textw/progress_text.py:59
msgid "Package Installation"
msgstr "پیکج انسٹا لیشن"

#: ../textw/task_text.py:51
msgid "Package selection"
msgstr "پیکج سیلیکشن"

#: ../textw/task_text.py:57 tmp/tasksel.glade.h:4
#, fuzzy, no-c-format, python-format
msgid ""
"The default installation of %s includes a set of software applicable for "
"general internet usage.  What additional tasks would you like your system to "
"support?"
msgstr ""
" کی موجودہ تنصیب سافٹ ویُر کے گہٹے پر مبنی ہے جو کہ عمومی طور پر انٹرنیٹ کے "
"استعمال کے لیےُ ہے۔ کون سے اضافی کاموں کے لیےُ آپ اپنے سسٹم کے لیےُ رہنمایُ "
"چاہتے ہیں؟ %s"

#: ../textw/task_text.py:72
msgid "Customize software selection"
msgstr "تبدیلی براے سافٹ ویر انتخاب"

#: ../textw/timezone_text.py:74
#, fuzzy
msgid "In which time zone are you located?"
msgstr "آپ کس ٹا یّم ز و ن میں ھیں ؟"

#: ../textw/timezone_text.py:92
msgid "System clock uses UTC"
msgstr "کا استعمال کرتی ہے UTC سسٹم کی گھڑی"

#: ../textw/upgrade_bootloader_text.py:112
#: ../textw/upgrade_bootloader_text.py:121
msgid "Update boot loader configuration"
msgstr "بو ٹ لو ڈر کی ترتیب کو نیا کریں"

#: ../textw/upgrade_bootloader_text.py:124
msgid "Skip boot loader updating"
msgstr "نیّ بو ٹ لو ڈر کو ر ھنے دے"

#: ../textw/upgrade_bootloader_text.py:126
msgid "Create new boot loader configuration"
msgstr "بوٹ لو ڈر کی نیّ تر تیب بنا ییّں"

#: ../textw/upgrade_text.py:121
msgid "Free Space"
msgstr "خالی جگة"

#: ../textw/upgrade_text.py:136
msgid "RAM detected (MB):"
msgstr "RAM مل گئ (Мб):"

#: ../textw/upgrade_text.py:139
msgid "Suggested size (MB):"
msgstr "بتائی ھوئی مقدار (Мб):"

#: ../textw/upgrade_text.py:142
msgid "Swap file size (MB):"
msgstr "(Мб)سویپ  فایل سا یز"

#: ../textw/upgrade_text.py:150
msgid "Add Swap"
msgstr "سویپ کو جمع کریں"

#: ../textw/upgrade_text.py:175
msgid "The value you entered is not a valid number."
msgstr "غلط نمبر کا اندراج کیا گیا۔"

#: ../textw/upgrade_text.py:208
msgid "Reinstall System"
msgstr "سسٹم کو دو بارھ انسٹا ل کر یں"

#: ../textw/upgrade_text.py:222
msgid "System to Upgrade"
msgstr "سسٹم کو نیا کر یں"

#: ../textw/upgrade_text.py:223
#, fuzzy
msgid ""
"There seem to be one or more existing Linux installations on your system.\n"
"\n"
"Please choose one to upgrade, or select 'Reinstall System' to freshly "
"install your system."
msgstr ""
"ایک یا زیادہ پہلے سے موجود لینکس تنصیبات آپ کے سسٹم پر مل چکی  ہیں۔\n"
"\n"
"مہربانی فرما کر اپنے سسٹم کو بہتر بنانے کے لیے کسی ایک کا انتخاب کریں، یا "
"سسٹم کی تازہ ترین تنۡصیب کے لیےُ  'پھر سے سسٹم کی  تنصیب کا انتخاب کریں۔'  "

#: ../textw/userauth_text.py:27
msgid "Root Password"
msgstr "بنیادی شناختی نمبر"

#: ../textw/userauth_text.py:30
#, fuzzy
msgid ""
"Pick a root password. You must type it twice to ensure you know it and do "
"not make a typing mistake. "
msgstr ""
"ایک بنیادی نمبر چنیں۔ اس کو یاد کرنے کے لئے دو دفع ٹائپ کریں۔ اور ٹائپ کرتے "
"ھوئے غلطی نة کریں۔ یاد رکھیں کة بنیادئ شناختی نمبر بہت"

#: ../textw/userauth_text.py:64
msgid "The root password must be at least 6 characters long."
msgstr "بنیادی شناختی نمبر کم از کم 6 حروف پر مشتمل ھونا چاھئے"

#: ../textw/welcome_text.py:27
#, python-format
msgid "%s"
msgstr "%s"

#: ../textw/welcome_text.py:28
#, python-format
msgid ""
"Welcome to %s!\n"
"\n"
msgstr ""
" %s خوش آمد ید!\n"
"\n"

#: ../textw/zipl_text.py:32
#, fuzzy
msgid ""
"The z/IPL Boot Loader will be installed on your system after installation is "
"complete. You can now enter any additional kernel and chandev parameters "
"which your machine or your setup require."
msgstr ""
" بو ٹ لوڈر بھی سستم پر انسٹال ھو جائےگا۔ اب آپ کو ئی بھی زائید جن کی سےسسٹم "
"کو ضرورت ھو  (chandev parameters) کرنل اور z/IPL انسٹالشن کے مکمل ھو نے کے "
"بعد  "

#: ../textw/zipl_text.py:64
msgid "z/IPL Configuration"
msgstr " کی تر تیب z/IPL"

#: ../textw/zipl_text.py:72 ../textw/zipl_text.py:76
msgid "Chandev line "
msgstr "لا ئن Chandev "

#: ../installclasses/fedora.py:34
msgid "_Fedora"
msgstr "_Fedora"

#: ../installclasses/fedora.py:35 ../installclasses/rhel.py:42
#, fuzzy, python-format
msgid ""
"The default installation of %s includes a set of software applicable for "
"general internet usage. What additional tasks would you like your system to "
"include support for?"
msgstr ""
" کی موجودہ تنصیب سافٹ ویُر کے گہٹے پر مبنی ہے جو کہ عمومی طور پر انٹرنیٹ کے "
"استعمال کے لیےُ ہے۔ کون سے اضافی کاموں کے لیےُ آپ اپنے سسٹم کے لیےُ رہنمایُ "
"چاہتے ہیں؟ %s"

#: ../installclasses/fedora.py:44
msgid "Office and Productivity"
msgstr "آفس اور پروڈیکٹیوٹی"

#: ../installclasses/fedora.py:45 ../installclasses/rhel.py:54
#: ../installclasses/rhel.py:59
msgid "Software Development"
msgstr "سافٹ ویُر کی تعمیر"

#: ../installclasses/fedora.py:46 ../installclasses/rhel.py:58
msgid "Web server"
msgstr " ویب سرور"

#: ../installclasses/rhel.py:41
#, fuzzy
msgid "Red Hat Enterprise Linux"
msgstr "ریڈ ھیٹ انٹرپراُس لینکس ڈبلیو ایس"

#: ../installclasses/rhel.py:51
msgid "Office"
msgstr ""

#: ../installclasses/rhel.py:52
msgid "Multimedia"
msgstr ""

#: ../installclasses/rhel.py:63
#, fuzzy
msgid "Virtualization"
msgstr "Virtualization (Xen)"

#: ../installclasses/rhel.py:64
msgid "Clustering"
msgstr ""

#: ../installclasses/rhel.py:65
msgid "Storage Clustering"
msgstr ""

#: ../installclasses/rhel.py:69
#, fuzzy
msgid "Installation Number"
msgstr "انسٹالیش کی قسم"

#: ../installclasses/rhel.py:70
msgid ""
"To install the full set of supported packages included in your subscription, "
"please enter your Installation Number"
msgstr ""

#: ../installclasses/rhel.py:73
msgid ""
"If you're unable to locate the Installation Number, consult http://www."
"redhat.com/apps/support/in.html.\n"
"\n"
"If you skip:\n"
"* You may not get access to the full set of packages included in your "
"subscription.\n"
"* It may result in an unsupported/uncertified installation of Red Hat "
"Enterprise Linux.\n"
"* You will not get software and security updates for packages not included "
"in your subscription."
msgstr ""

#: ../loader2/cdinstall.c:96 ../loader2/cdinstall.c:117
#: ../loader2/mediacheck.c:76
msgid "Media Check"
msgstr " میڈا چیک کریں "

#: ../loader2/cdinstall.c:96 ../loader2/cdinstall.c:99
#: ../loader2/cdinstall.c:117 ../loader2/cdinstall.c:125
#: ../loader2/method.c:393
msgid "Test"
msgstr "آزمایش"

#: ../loader2/cdinstall.c:96 ../loader2/cdinstall.c:100
#, fuzzy
msgid "Eject Disc"
msgstr " سی‌ڈی ناھر نکالے"

#: ../loader2/cdinstall.c:97
#, fuzzy, c-format
msgid ""
"Choose \"%s\" to test the disc currently in the drive, or \"%s\" to eject "
"the disc and insert another for testing."
msgstr ""
"سی ڈی باھر نکالے اور آزمائش کے لیے دوسری ڈال د یں۔ \"%s\" آزمائش کا کہ سی ڈی "
"ڈائیو میں موجود ھے ،یا \"%s\"  انتحاب کریں."

#: ../loader2/cdinstall.c:118
#, fuzzy, c-format
msgid ""
"If you would like to test additional media, insert the next disc and press "
"\"%s\". Testing each disc is not strictly required, however it is highly "
"recommended.  Minimally, the discs should be tested prior to using them for "
"the first time. After they have been successfully tested, it is not required "
"to retest each disc prior to using it again."
msgstr ""
"دبایُں۔ ہر سی ڈی کو ٹیسٹ کرنے کی اشد ضرورت نہیں ہے، تاہم اِس کا سخت مشورہ دیا "
"جاتا ہے۔ سی ڈیز کو کم از کم پہلی بار استعمال کرنے سے پہلے ٹیسٹ کریں۔ جب اِن "
"کی کامیابی کے ساتھ ٹیسٹ مکمل ہو جاےُ گا، تو یہ لازمی نہیں ہو گا کہ آپ ہر ایک "
"سی ڈی کو استعمال کرنے سے پہلے ٹیسٹ کریں۔ \"%s\"  اگر آپ اضافی میڈیا کو ٹیسٹ "
"کرنا چاہتے ہیں، اگلی سی ڈی ڈالیں اور "

#: ../loader2/cdinstall.c:142
#, fuzzy, c-format
msgid ""
"The %s disc was not found in any of your drives. Please insert the %s disc "
"and press %s to retry."
msgstr ""
" سی ڈی  %s کسی سی ڈی درائیو میں ملئ نھیں۔ مھربانی کر کے ڈالیں  %s سی ڈی اور "
"ڈ بائیں %s دو بارا تلاش کرنے کے لیے۔."

#: ../loader2/cdinstall.c:200
#, fuzzy
msgid "Disc Found"
msgstr "سی‌ڈی تلاش ھو گی "

#: ../loader2/cdinstall.c:201
#, fuzzy, c-format
msgid ""
"To begin testing the media before installation press %s.\n"
"\n"
"Choose %s to skip the media test and start the installation."
msgstr ""
"  انسٹالیشن کے عمل سے پھلے سی ڈ یز کے چیک کو شروع کر نے کے لیے دبائیں %s.\n"
"\n"
"انتحاب کریں %s میڈ یا چیک کو چھوڑ نے اور انسٹالیشن شروع کر نے کے لیے."

#: ../loader2/cdinstall.c:339
#, fuzzy, c-format
msgid ""
"No %s disc was found which matches your boot media.  Please insert the %s "
"disc and press %s to retry."
msgstr ""
"سی ڈی نھیں ملی %s جو بوٹ میڈ یا سے ملتی ھو۔ مھربانی کر کے ڈالیں %s سی ڈی اور "
"د بائیں %s دو بارہ کوشش کے لیے۔ "

#: ../loader2/cdinstall.c:344
#, fuzzy, c-format
msgid ""
"The %s disc was not found in any of your CDROM drives. Please insert the %s "
"disc and press %s to retry."
msgstr ""
" سی ڈی  %s کسی سی ڈی درائیو میں ملئ نھیں۔ مھربانی کر کے ڈالیں  %s سی ڈی اور "
"ڈ بائیں %s دو بارا تلاش کرنے کے لیے۔."

#: ../loader2/cdinstall.c:350
#, fuzzy
msgid "Disc Not Found"
msgstr "سی‌ڈی تلاش نہیں ھو ئی"

#: ../loader2/cdinstall.c:422
msgid "Cannot find kickstart file on CDROM."
msgstr "فائل نہیں ملی  kickstart سی ڈی روم پر        "

#: ../loader2/copy.c:51 ../loader2/method.c:121 ../loader2/method.c:347
#, c-format
msgid "Failed to read directory %s: %s"
msgstr "ڑائریکٹری کو پڑھنے میں ناکام%s: %s"

#: ../loader2/driverdisk.c:138
msgid "Loading"
msgstr "چلا نے کلیے کام جاری ھیں"

#: ../loader2/driverdisk.c:138
msgid "Reading driver disk..."
msgstr "ڈسک درائیو کو پڑ ھا جا رھا ھے۔۔۔۔"

#: ../loader2/driverdisk.c:230 ../loader2/driverdisk.c:262
msgid "Driver Disk Source"
msgstr "ڈسک درائیو کی بنیاد "

#: ../loader2/driverdisk.c:231
msgid ""
"You have multiple devices which could serve as sources for a driver disk.  "
"Which would you like to use?"
msgstr ""
"آپ کے پاس بہت سی ڈوأسز ھیں جو کہ ڈرائیور ڈ یسک کی خد مت کا ز ر یعہ بن سکتی "
"ھیں۔ آپ استمال کے لیے کس کا انتحاب کر یں گے  "

#: ../loader2/driverdisk.c:263
msgid ""
"There are multiple partitions on this device which could contain the driver "
"disk image.  Which would you like to use?"
msgstr ""
"اس ڈیوایسُ میں بیشمار پارٹیشنز ایسی ہیں جو ڈرایور ڈسک خاکے پر مبنی ہیں۔ کیا "
"آپ استعمال کرنا چاہتے ہیں؟"

#: ../loader2/driverdisk.c:300
msgid "Failed to mount partition."
msgstr "پارٹیشن کو ماُونٹ کرنے میں ناکام"

#: ../loader2/driverdisk.c:308
msgid "Select driver disk image"
msgstr "ڈرایور ڈیکس امیج کا انتخاب کریں"

#: ../loader2/driverdisk.c:309
msgid "Select the file which is your driver disk image."
msgstr "جو فایل آپ  کی ڈسک کے ڈرایور کا خاکہ ہے اس کا انتخاب کریں۔ "

#: ../loader2/driverdisk.c:338
msgid "Failed to load driver disk from file."
msgstr "فایُل سے ڈیسک ڈرایور اٹھانے میں ناکام"

#: ../loader2/driverdisk.c:349
#, c-format
msgid "Insert your driver disk into /dev/%s and press \"OK\" to continue."
msgstr ""
" ڈرئیور ڈیسک اس میں ڈالیں /dev/%s اور د بائیں« ھو گیا » جاری لکھنے کے لیے  ."

#: ../loader2/driverdisk.c:351
msgid "Insert Driver Disk"
msgstr "درائیورڈسک ڈالیں"

#: ../loader2/driverdisk.c:366
msgid "Failed to mount driver disk."
msgstr " خود انتخاب کریں "

#: ../loader2/driverdisk.c:376
#, c-format
msgid "Driver disk is invalid for this release of %s."
msgstr ""

#: ../loader2/driverdisk.c:439
msgid "Manually choose"
msgstr " خود انتخاب کریں "

#: ../loader2/driverdisk.c:440
msgid "Load another disk"
msgstr "دوسری ڈسک کو  لوڈ کر یں "

#: ../loader2/driverdisk.c:441
msgid ""
"No devices of the appropriate type were found on this driver disk.  Would "
"you like to manually select the driver, continue anyway, or load another "
"driver disk?"
msgstr ""
"؟ صحیصع طرع کی ڈوا ئسز اس ڈرائیور ڈ یسک پر نھییں ملی۔ کیا آپ خود ڈرائیور کو "
"منتحب کرنا پسند کر ے گے، جاری رھنے د یں یا کسی اور ڈرائیور ڈ یسک کو لوڈ کر "
"ہں؟  "

#: ../loader2/driverdisk.c:479
msgid "Driver disk"
msgstr "ڈرائیور ڈ یسک"

#: ../loader2/driverdisk.c:480
msgid "Do you have a driver disk?"
msgstr "کیا آپ کے پاس ڈ یسک ڈرائیور ھے؟"

#: ../loader2/driverdisk.c:489
msgid "More Driver Disks?"
msgstr "مز ید ڈ یسک ڈرائیور"

#: ../loader2/driverdisk.c:490
msgid "Do you wish to load any more driver disks?"
msgstr " کیا آپ مزید ڈرائیور ڈ یسکس لوڈ کرنا چاھتے ھیں؟"

#: ../loader2/driverdisk.c:535 ../loader2/driverdisk.c:572
#: ../loader2/hdinstall.c:470 ../loader2/kickstart.c:132
#: ../loader2/kickstart.c:142 ../loader2/kickstart.c:185
#: ../loader2/kickstart.c:529 ../loader2/modules.c:336
#: ../loader2/modules.c:348 ../loader2/net.c:1647 ../loader2/net.c:1670
#: ../loader2/nfsinstall.c:342 ../loader2/urlinstall.c:437
#: ../loader2/urlinstall.c:446 ../loader2/urlinstall.c:455
msgid "Kickstart Error"
msgstr " \" غلطی  Kickstart\" "

#: ../loader2/driverdisk.c:536
#, c-format
msgid "Unknown driver disk kickstart source: %s"
msgstr "زر یعہ kickstartنا معلوم ڈرائیور ڈ یسک: %s"

#: ../loader2/driverdisk.c:573
#, c-format
msgid ""
"The following invalid argument was specified for the kickstart driver disk "
"command: %s:%s"
msgstr ""
"    ڈرائیور ڈ یسک کمانڈ کو بتانے کے لیے ھیں  kickstart نیچےبتا یا گیی نا اھل "
"دلیل    : %s:%s"

#: ../loader2/driverselect.c:65
#, c-format
msgid ""
"Please enter any parameters which you wish to pass to the %s module "
"separated by spaces.  If you don't know what parameters to supply, skip this "
"screen by pressing the \"OK\" button."
msgstr ""
"مھربانی کر کے کسی پرامیڑر کا اندراج کریں جو اس میں بھجنا چاھتے ھیں %s نمو نے "
"حالی جگہ سے علیعدہ کیٌے گئیں ھیں۔ اگر آپ نھیں جانتے کون سے پیرامیٹر بھجنے "
"ھیں، اس کو \"OK\" د با کر چھوڑ سکتے۔a نٹن کو د با کر حا صل کی جا سکتی ھیں F1 "
"ایک لسٹ تمام موجود انتحابات کی ."

#: ../loader2/driverselect.c:85
msgid "Enter Module Parameters"
msgstr "نمو نہ کے پرامیٹرز کو درج کر یں"

#: ../loader2/driverselect.c:172
msgid "No drivers found"
msgstr "کو ئی ڈرئیور نھیں ملا"

#: ../loader2/driverselect.c:172
msgid "Load driver disk"
msgstr "  ڈ یسک ڈرائیور کو لوڈ کریں "

#: ../loader2/driverselect.c:173
msgid ""
"No drivers were found to manually insert.  Would you like to use a driver "
"disk?"
msgstr ""
"کو ئی ڈرائیورز تلاش نہیں ھو ے خود داخل کرنے کے لیے . کیا آپ ڈ یسک ڈرائیور "
"یوز کرنا چاھئں گے؟"

#: ../loader2/driverselect.c:191
msgid ""
"Please select the driver below which you wish to load.  If it does not "
"appear and you have a driver disk, press F2."
msgstr ""
" مھرباجی کر کے نیچے سے اپنی پسند کا ڈرائیور لوڈ کرنے کے لیے منتحب کر یں. اگر "
"یہ ظاھر نھیں ھو تا اور آپ کے پاس ڈ یسک ڈرائیور ھے تو F2 کا بٹن د بائیں۔."

#: ../loader2/driverselect.c:200
msgid "Specify optional module arguments"
msgstr "زائد نقشوں کے دلا ئل کو بیا ن کر یں    "

#: ../loader2/driverselect.c:225
msgid "Select Device Driver to Load"
msgstr "لوڈ کرنے کے لیے ڈ یوائس ڈرائیور کو منتحب کر یں"

#: ../loader2/hdinstall.c:80 ../loader2/nfsinstall.c:168
#: ../loader2/urlinstall.c:274
msgid "Media Detected"
msgstr "میڈیا مل گیا ہے"

#: ../loader2/hdinstall.c:81 ../loader2/nfsinstall.c:169
#: ../loader2/urlinstall.c:275
msgid "Local installation media detected..."
msgstr "لوکل انسٹالیشن کیلے میڈیا مل گیا ہے..."

#: ../loader2/hdinstall.c:137 ../loader2/nfsinstall.c:293
#: ../loader2/urlinstall.c:192
#, c-format
msgid ""
"The %s installation tree in that directory does not seem to match your boot "
"media."
msgstr ""
"یہ %s انسٹالیشن درخت اّس ڈاریکٹری میں آپ کے بو ٹ میڈ یا سے ملتا ھوا نظر نھیں "
"آتا."

#: ../loader2/hdinstall.c:253
msgid ""
"An error occured reading the install from the ISO images. Please check your "
"ISO images and try again."
msgstr ""
"سے پڑ تے ھو ے غلظی ھو گئ ھے ، مھر با نی کر کے اس  کو چیک کرئیں اور دوبارہ "
"کوشش کرے  ISO "

#: ../loader2/hdinstall.c:335
msgid ""
"You don't seem to have any hard drives on your system! Would you like to "
"configure additional devices?"
msgstr ""
" آپ کے سسٹم میں کو ئی ھارڈ ڈرئیو نھیں ھے! کیا آپ مز ید ڈ یو ئسز کا تر تیب د "
"ینا پسند کر ے گے ؟"

#: ../loader2/hdinstall.c:349
#, c-format
msgid ""
"What partition and directory on that partition hold the CD (iso9660) images "
"for %s? If you don't see the disk drive you're using listed here, press F2 "
"to configure additional devices."
msgstr ""
"کیا تقسیم اور ڈاریکٹری اس خاص تقسیم پر سی ڈی کا ساتھ د یتی ھے  (iso9660) اس "
"کی معلومات کلیے   %s   اگر ڈ یسک ڈرائیور ظاھر نھیں   ھیں تو لسٹ استمال ھو "
"رھی ھے ، F2  کو دبائیں مزئید ڈ یوائسز کی ترتیب کلیے ."

#: ../loader2/hdinstall.c:372
msgid "Directory holding images:"
msgstr "ڈاریکٹری میں تصو یر یں ھیں:"

#: ../loader2/hdinstall.c:400
msgid "Select Partition"
msgstr "کا انتہاب کریں (patition) تقسیمی حصے    "

#: ../loader2/hdinstall.c:439
#, c-format
msgid "Device %s does not appear to contain %s CDROM images."
msgstr " ڈ یوائس %s میں نھیں ھے %s سی ڈی روم کی معلومات."

#: ../loader2/hdinstall.c:471
#, c-format
msgid "Bad argument to HD kickstart method command %s: %s"
msgstr "  کمانڈ کے طر یقے کے لیے دلیل غلظ ھے HD kickstart  %s: %s"

#: ../loader2/hdinstall.c:541 ../loader2/hdinstall.c:597
msgid "Cannot find kickstart file on hard drive."
msgstr "فا ئل تلاش نھیں ھو سکی ھارڈ ڈرائیو پر  Kickstart\" 150"

#: ../loader2/hdinstall.c:584
#, c-format
msgid "Cannot find hard drive for BIOS disk %s"
msgstr "کے لیُے ہارڈ ڈرایوُ  تلاش نھیں کر سکا %s بایوس ڈیسک "

#: ../loader2/kbd.c:136
msgid "Keyboard Type"
msgstr "کی بورڈ کہ قسم"

#: ../loader2/kbd.c:137
msgid "What type of keyboard do you have?"
msgstr "آپ کے پاس کس طرح کا کی بورڈ ہے؟"

#: ../loader2/kickstart.c:133
#, c-format
msgid "Error opening kickstart file %s: %s"
msgstr "ککسٹارٹ فائل کو کھولنے میں غلطی%s: %s"

#: ../loader2/kickstart.c:143
#, c-format
msgid "Error reading contents of kickstart file %s: %s"
msgstr "ککسٹارٹ فائل کے کانٹنٹس کو پڑھنے میں غلطی%s: %s"

#: ../loader2/kickstart.c:186
#, c-format
msgid "Error in %s on line %d of kickstart file %s."
msgstr "غلطی%sلائن پر%d ککسٹارٹ فائل%s."

#: ../loader2/kickstart.c:285
#, fuzzy
msgid "Cannot find ks.cfg on removable media."
msgstr "ks.cfg  پر نہیں مل سکتابوٹ فلاپی"

#: ../loader2/kickstart.c:377
msgid ""
"Unable to download the kickstart file.  Please modify the kickstart "
"parameter below or press Cancel to proceed as an interactive installation."
msgstr ""

#: ../loader2/kickstart.c:386
#, fuzzy
msgid "Error downloading kickstart file"
msgstr "ککسٹارٹ فائل کو کھولنے میں غلطی%s: %s"

#: ../loader2/kickstart.c:530
#, c-format
msgid "Bad argument to shutdown kickstart method command %s: %s"
msgstr "ککسٹارٹ طریقہ کمانڈ کو بند کرنےکیلئے غلط آرگومنٹ%s: %s"

#: ../loader2/lang.c:64
#, fuzzy, c-format
msgid "Welcome to %s for %s - Rescue Mode"
msgstr "ریسکیو موڈ %s - میں خوش آمدید"

#: ../loader2/lang.c:65 ../loader2/loader.c:166
msgid ""
"  <Tab>/<Alt-Tab> between elements  | <Space> selects | <F12> next screen "
msgstr ""
"<Tab>/<Alt-Tab>ایلیمنٹس کے درمیان| <Space>انتخاپ | <F12>اگلی سکرین پر جانے "
"کیلئے"

#: ../loader2/lang.c:373
msgid "Choose a Language"
msgstr "زبان کا انتخاب کریں"

#: ../loader2/loader.c:123
#, fuzzy
msgid "Local CD/DVD"
msgstr "لوکل سی ڈی روم"

#: ../loader2/loader.c:125
msgid "Hard drive"
msgstr "ہارڈ ڈرائیو"

#: ../loader2/loader.c:126
#, fuzzy
msgid "NFS directory"
msgstr "ڈائریکٹری %s:"

#: ../loader2/loader.c:156
#, fuzzy, c-format
msgid "Welcome to %s%n for %s"
msgstr " میں  %sخوش آمدید"

#: ../loader2/loader.c:374 ../loader2/loader.c:410
msgid "Update Disk Source"
msgstr "ڈسک سورس ايپڈيٹيس "

#: ../loader2/loader.c:375
msgid ""
"You have multiple devices which could serve as sources for an update disk.  "
"Which would you like to use?"
msgstr ""
"آپ کے پاس مختلف ڈیواسز ہیں جن کو ايپڈيٹيس ڈسک کیلئیے استعمال کیا جاسکتا ہے "
"۔آپ کس کو استعمال کرنا چاہیں گے"

#: ../loader2/loader.c:411
#, fuzzy
msgid ""
"There are multiple partitions on this device which could contain the update "
"disk image.  Which would you like to use?"
msgstr ""
"اس ڈیوایسُ میں بیشمار پارٹیشنز ایسی ہیں جو ڈرایور ڈسک خاکے پر مبنی ہیں۔ کیا "
"آپ استعمال کرنا چاہتے ہیں؟"

#: ../loader2/loader.c:429
#, c-format
msgid "Insert your updates disk into /dev/%s and press \"OK\" to continue."
msgstr "اپنی ايپڈيٹيس ڈسک داخل کریں/dev/%s \"OK\" پرس کریں اور"

#: ../loader2/loader.c:431
msgid "Updates Disk"
msgstr "ايپڈيٹيس ڈسک"

#: ../loader2/loader.c:446
msgid "Failed to mount updates disk"
msgstr "ماؤنٹ ايپڈيٹيس ڈسک ناکام"

#: ../loader2/loader.c:449
msgid "Updates"
msgstr "ايپڈيٹيس"

#: ../loader2/loader.c:449
msgid "Reading anaconda updates..."
msgstr "ایناکونڈا کی ايپڈيٹيس کو پڑھ رہا ہے"

#: ../loader2/loader.c:485
msgid ""
"Unable to download the updates image.  Please modify the updates location "
"below or press Cancel to proceed without updates.."
msgstr ""

#: ../loader2/loader.c:494
#, fuzzy
msgid "Error downloading updates image"
msgstr "ککسٹارٹ فائل کو کھولنے میں غلطی%s: %s"

#: ../loader2/loader.c:994
#, c-format
msgid "You do not have enough RAM to install %s on this machine."
msgstr "آپ کے پاس %sناکافی ہے RAMانسٹالیشن کیلئیے "

#: ../loader2/loader.c:1151
msgid "Rescue Method"
msgstr "بچانے کا طریقہ"

#: ../loader2/loader.c:1152
msgid "Installation Method"
msgstr "انسٹالیشن کا طریقہ"

#: ../loader2/loader.c:1154
msgid "What type of media contains the rescue image?"
msgstr "ایمیج ریسکیو کرنے کیلئے کس قسم کا میڈیا چائیے?"

#: ../loader2/loader.c:1156
msgid "What type of media contains the packages to be installed?"
msgstr "پیکج کو انسٹال کرنے کیلئے کس قسم کا میڈیا چائیے?"

#: ../loader2/loader.c:1180
msgid "No driver found"
msgstr "کوئ ڈرائیو نہیںملی"

#: ../loader2/loader.c:1180
msgid "Select driver"
msgstr "ڈرائیو کا انختاب کریں"

#: ../loader2/loader.c:1181
msgid "Use a driver disk"
msgstr "ڈرائیو ڈسک استعمال کریں"

#: ../loader2/loader.c:1182
msgid ""
"Unable to find any devices of the type needed for this installation type.  "
"Would you like to manually select your driver or use a driver disk?"
msgstr ""
"انسٹالیشن کیلئے جو ڈیوائسز چاہئے تھں نہیں ملیںکیا آپ خود سےکوئ ڈیوائسز چچنا "
"چاہہں گے یا ڈرائیو ڈسک استعمال کرنا چاہیں گے"

#: ../loader2/loader.c:1415
msgid "The following devices have been found on your system."
msgstr "آپکے سسٹم پر درج ذیل ڈیوائسز ملی ہیں"

#: ../loader2/loader.c:1417
msgid ""
"No device drivers have been loaded for your system.  Would you like to load "
"any now?"
msgstr ""
"آپ کے سسٹم کیلئے کوئ ڈیوائس ڈرائور لوڈ نہیں کیا گیا کیا آپ کوئلوڈ کرنا چاہیں "
"گے"

#: ../loader2/loader.c:1421
msgid "Devices"
msgstr "ڈیوائسز"

#: ../loader2/loader.c:1422
msgid "Done"
msgstr "مکمل"

#: ../loader2/loader.c:1423
msgid "Add Device"
msgstr "ڈیوائس داخل کریں"

#: ../loader2/loader.c:1600
#, c-format
msgid "loader has already been run.  Starting shell.\n"
msgstr "لوڈر پہلے ہی جاری ہے۔ شیل شروع ہورہا ہے.\n"

#: ../loader2/loader.c:1946
#, fuzzy, c-format
msgid "Running anaconda %s, the %s rescue mode - please wait...\n"
msgstr ""
" ایناکونڈا جاری ہے  %s ۔برائے مہربانی انتظار کریں... ریسکیو موڈ میں۔ \n"

#: ../loader2/loader.c:1948
#, fuzzy, c-format
msgid "Running anaconda %s, the %s system installer - please wait...\n"
msgstr " ایناکونڈا جاری ہے %s.. .سسٹم نسٹالر۔برائےمہربانی انتظار کریں\n"

#: ../loader2/mediacheck.c:62
#, c-format
msgid "Unable to find install image %s"
msgstr "%sایمیج کو انسٹال کرنے میں ناکام"

#: ../loader2/mediacheck.c:68
#, c-format
msgid "Checking \"%s\"..."
msgstr " \"%s\"...چیکنگ"

#: ../loader2/mediacheck.c:70
#, c-format
msgid "Checking media now..."
msgstr "اب میڈیا چیک ہو رہا ہے۔۔۔۔"

#: ../loader2/mediacheck.c:102
msgid ""
"Unable to read the disc checksum from the primary volume descriptor.  This "
"probably means the disc was created without adding the checksum."
msgstr ""
"پرائمری والیم ڈسکرپٹر سے ڈسک چیک کرنے میں ناکام جس کا مطلب ہے کہ ڈسک چیکازم "
"کے بغیر تیار کی گئ ہے"

#: ../loader2/mediacheck.c:109
msgid ""
"The image which was just tested has errors. This could be due to a corrupt "
"download or a bad disc.  If applicable, please clean the disc and try "
"again.  If this test continues to fail you should not continue the install."
msgstr ""
"ناکامL.امیج جو اپھی چیک کی گئ ہے اس میں غلطیاں ہیں یہ ڈائنلوڈ کرپٹ یا  پیڈ "
"ڈسک کی وجہ سے ہو سکتی ہے اگر ممکن ہو تو ڈسک کو صاف کریں اور دوپارہ کوشش کریں "
"اگر ہ ٹیسٹ پارپار ناکام ہو تو آب کو انسٹالیشن جاری نہیں رکھنی چاہئے"

#: ../loader2/mediacheck.c:117
msgid "Success"
msgstr ""

#: ../loader2/mediacheck.c:118
msgid ""
"The image which was just tested was successfully verified.  It should be OK "
"to install from this media.  Note that not all media/drive errors can be "
"detected by the media check."
msgstr ""

#: ../loader2/method.c:390
#, c-format
msgid ""
"Would you like to perform a checksum test of the ISO image:\n"
"\n"
"   %s?"
msgstr ""
"کیا آپimage:\n"
"\n"
"   %s?کیئے چیکاازم ٹیسٹ کرنا چاہتے ہیں"

#: ../loader2/method.c:393
msgid "Checksum Test"
msgstr "چیک ازم ٹیسٹ"

#: ../loader2/modules.c:337
#, c-format
msgid "Bad argument to device kickstart method command %s: %s"
msgstr "دلیل ککسٹارٹ نیٹ ورک کمانڈ کیلے غلط%s: %s"

#: ../loader2/modules.c:349
#, fuzzy
msgid "A module name must be specified for the kickstart device command."
msgstr ""
"    ڈرائیور ڈ یسک کمانڈ کو بتانے کے لیے ھیں  kickstart نیچےبتا یا گیی نا اھل "
"دلیل    : %s:%s"

#: ../loader2/net.c:93
msgid ""
"Prefix must be between 1 and 32 for IPv4 networks or between 1 and 128 for "
"IPv6 networks"
msgstr ""

#: ../loader2/net.c:266
#, c-format
msgid ""
"%s is a wireless network adapter.  Please provide the ESSID and encryption "
"key needed to access your wireless network.  If no key is needed, leave this "
"field blank and the install will continue."
msgstr ""
"%s اور انکرپشن کی وائرلیس نیٹ ورک تک رسائ حاصل کرنے کیلئےاگر کوئ کی دستیاب "
"نہیں تو اس کو خالی چھوڑ دیں اور انسٹالیشن خود جاری ہو جاائے گی مہیا کریں ایک "
"نیٹ ورک اڈاپٹر ہے ESSID"

#: ../loader2/net.c:272
msgid "ESSID"
msgstr "ESSID"

#: ../loader2/net.c:273
msgid "Encryption Key"
msgstr "اینکر پشن کی"

#: ../loader2/net.c:276
msgid "Wireless Settings"
msgstr "وائرلس سیٹنگز"

#: ../loader2/net.c:311
msgid "Nameserver IP"
msgstr "نیم سرور آئ-پی"

#: ../loader2/net.c:315
#, fuzzy
msgid "Missing Nameserver"
msgstr "نیم سرور"

#: ../loader2/net.c:316
#, fuzzy
msgid ""
"Your IP address request returned configuration information, but it did not "
"include a nameserver address. If you do not have this information, you can "
"leave the field blank and the install will continue."
msgstr ""
"پ کی ڈانامک آئ-بی کی درحواست کے نتیجے  جو آئ-پی کی ترتیب کی معلومات ملی ہے "
"لیکن اس میںڈی-این-ایس نیم سرور کے متعلق معلومات نہیں ہے۔اگر آپ اپنے نیم سرور "
"کی معلومات رکھتے ہیں تو براۓ مہربانی اسکا اندراج کیجۓ۔اگر آپ کے پاس یہ "
"ملومات نہیں ہے تو اس کک جگہ کو خالی چھوژ دیں اور انسٹالیشن خود ہی شروع ہو "
"جاۓگی"

#: ../loader2/net.c:338
msgid "Invalid IP Information"
msgstr "آئ-پی سے متعلق غلط معلومات"

#: ../loader2/net.c:339
msgid "You entered an invalid IP address."
msgstr "اڈریس کا اندراج کیا ہے IP آپ نے غلط"

#: ../loader2/net.c:589 ../loader2/net.c:695
#, fuzzy
msgid "Network Error"
msgstr "کوئ پاسورڈ نھیں ھے"

#: ../loader2/net.c:590 ../loader2/net.c:696
#, fuzzy
msgid "There was an error configuring your network interface."
msgstr "یھان پر غلطی ٹارگٹ ڈریو کو چیک کریںأیکسانیت صیھع نھیںأ  "

#: ../loader2/net.c:776
msgid "Configure TCP/IP"
msgstr "ٹی-سی-پی/آئ-پی  وضع"

#: ../loader2/net.c:821
msgid "You must select at least one protocol (IPv4 or IPv6)."
msgstr ""

#: ../loader2/net.c:828
msgid "IPv4 Needed for NFS"
msgstr ""

#: ../loader2/net.c:829
msgid "NFS installation method requires IPv4 support."
msgstr ""

#: ../loader2/net.c:950
#, fuzzy
msgid "IPv4 address:"
msgstr "عنوان IP :"

#: ../loader2/net.c:962 ../loader2/net.c:1014 tmp/netconfig.glade.h:1
#: tmp/netpostconfig.glade.h:1
msgid "/"
msgstr ""

#: ../loader2/net.c:1002
#, fuzzy
msgid "IPv6 address:"
msgstr "عنوان IP :"

#: ../loader2/net.c:1063
#, fuzzy
msgid "Name Server:"
msgstr "نیم سرور"

#: ../loader2/net.c:1099
msgid ""
"Enter the IPv4 and/or the IPv6 address and prefix (address / prefix).  For "
"IPv4, the dotted-quad netmask or the CIDR-style prefix are acceptable. The "
"gateway and name server fields must be valid IPv4 or IPv6 addresses."
msgstr ""

#: ../loader2/net.c:1115
#, fuzzy
msgid "Manual TCP/IP Configuration"
msgstr " کی تر تیب z/IPL"

#: ../loader2/net.c:1224 ../loader2/net.c:1230
msgid "Missing Information"
msgstr "امکمل معلومات  "

#: ../loader2/net.c:1225
#, fuzzy
msgid ""
"You must enter both a valid IPv4 address and a network mask or CIDR prefix."
msgstr "آپ کو درست آئ-پی عنوان اور نیٹ ماسک دونوں داخل کرنے چاہۓ"

#: ../loader2/net.c:1231
#, fuzzy
msgid "You must enter both a valid IPv6 address and a CIDR prefix."
msgstr "آپ کو درست آئ-پی عنوان اور نیٹ ماسک دونوں داخل کرنے چاہۓ"

#: ../loader2/net.c:1552
msgid "Determining host name and domain..."
msgstr "ڈومین اور ہوسٹنیم کا تعین جاری ہے..."

#: ../loader2/net.c:1648
#, c-format
msgid "Bad argument to kickstart network command %s: %s"
msgstr "دلیل ککسٹارٹ نیٹ ورک کمانڈ کیلے غلط%s: %s"

#: ../loader2/net.c:1671
#, c-format
msgid "Bad bootproto %s specified in network command"
msgstr " جو نیٹ ورک کمانڈ میں دی گئ ہے%s غلط بوٹپروٹو"

#: ../loader2/net.c:1859
msgid "Networking Device"
msgstr "نیٹ ورک ڈئواس"

#: ../loader2/net.c:1860
msgid ""
"You have multiple network devices on this system. Which would you like to "
"install through?"
msgstr ""
"آپ کے کمپیوٹر پر مختلف نیٹ ورک ڈئواسز ہیں آپ کونسی انسٹال کرنا چاہیں گے"

#: ../loader2/nfsinstall.c:57
msgid "NFS server name:"
msgstr "ااین-ایف-ایس سرور کا نام:"

#: ../loader2/nfsinstall.c:60
#, c-format
msgid "%s directory:"
msgstr "ڈائریکٹری %s:"

#: ../loader2/nfsinstall.c:65
#, c-format
msgid "Please enter the server name and path to your %s images."
msgstr ""

#: ../loader2/nfsinstall.c:67
msgid "NFS Setup"
msgstr "این-ایف-ایس  سیٹ اپ"

#: ../loader2/nfsinstall.c:154
msgid "Hostname specified with no DNS configured"
msgstr " ترتیب کے بغیر میزبان کا نام واضع کیا گیا ہےDNS"

#: ../loader2/nfsinstall.c:215 ../loader2/urls.c:223
msgid "Retrieving"
msgstr "دوبارہ حاصل کررہا"

#: ../loader2/nfsinstall.c:284
msgid "That directory could not be mounted from the server."
msgstr "ڈائریکٹری سرور سے استوار نہیں ہوسکی."

#: ../loader2/nfsinstall.c:297
#, c-format
msgid "That directory does not seem to contain a %s installation tree."
msgstr "انسٹالیشن ٹری نظر نہیں آرہا%s.ڈائریکٹریمیں"

#: ../loader2/nfsinstall.c:343
#, c-format
msgid "Bad argument to NFS kickstart method command %s: %s"
msgstr "این ایف ایس ککسٹارٹ کمانڈ کیلے غلط طریقہ%s: %s"

#: ../loader2/telnetd.c:89 ../loader2/telnetd.c:131
msgid "Telnet"
msgstr "ٹيل نيٹ  "

#: ../loader2/telnetd.c:89
msgid "Waiting for telnet connection..."
msgstr "ٹیل نیٹ کے وصل کے لۓ انتظار..."

#: ../loader2/telnetd.c:131
msgid "Running anaconda via telnet..."
msgstr "یل نیٹ کے ذریعے ایناکوڈا  جاری ہے..."

#: ../loader2/urlinstall.c:79
#, fuzzy, c-format
msgid "Unable to retrieve %s://%s/%s."
msgstr "دوبارہ حاصل کرنے میں ناکام %s://%s/%s/%s."

#: ../loader2/urlinstall.c:186
msgid "Unable to retrieve the install image."
msgstr "تقرری تصویر کو دوبارہ حاصل کرنے میں ناکام ."

#: ../loader2/urlinstall.c:438
#, c-format
msgid "Bad argument to Url kickstart method command %s: %s"
msgstr "یو-آر-ایل ککسٹارٹ طریقہ %s: %s"

#: ../loader2/urlinstall.c:447
msgid "Must supply a --url argument to Url kickstart method."
msgstr " یو-آر-ایل ککسٹارٹ طریقہ کو ایک یو-آر-ایل آرگومنٹ  -- مہیا کرنا چاہۓ"

#: ../loader2/urlinstall.c:456
#, c-format
msgid "Unknown Url method %s"
msgstr "نامعلوم  یو-آر-ایل طریقہ  %s"

#: ../loader2/urls.c:282
#, c-format
msgid "Please enter the URL containing the %s images on your server."
msgstr ""

#: ../loader2/urls.c:293
#, fuzzy
msgid "Configure proxy"
msgstr "ٹی-سی-پی/آئ-پی  وضع"

#: ../loader2/urls.c:308
#, fuzzy
msgid "URL Setup"
msgstr "این-ایف-ایس  سیٹ اپ"

#: ../loader2/urls.c:316
#, fuzzy
msgid "You must enter a URL."
msgstr "آپ کو ایک ڈائریکٹری درج کرنی چاہۓ۔ "

#: ../loader2/urls.c:322
msgid "URL must be either an ftp or http URL"
msgstr ""

#: ../loader2/urls.c:333
msgid "Unknown Host"
msgstr "نامعلوم ہوسٹ"

#: ../loader2/urls.c:334
#, c-format
msgid "%s is not a valid hostname."
msgstr "%s ایک صحیح ہوسٹ کا نام نہیں ہے"

#: ../loader2/urls.c:380
msgid ""
"If you are using a HTTP proxy server enter the name of the HTTP proxy server "
"to use."
msgstr ""
"اگر آپ ایک ایچ-ٹی-ٹی-پی پروکسي سرور استمعال کر رہے ہیں تو ایچ-ٹی-ٹی-پی "
"پروکسي سرور استعمال کرنے کے لۓ اس کا نام راخل کریں۔"

#: ../loader2/urls.c:395
msgid "Proxy Name:"
msgstr ""

#: ../loader2/urls.c:400
msgid "Proxy Port:"
msgstr ""

#: ../loader2/urls.c:416
#, fuzzy
msgid "Further Setup"
msgstr "مزید ایف-ٹی-پی سیٹ اپ"

#: ../loader2/windows.c:63
msgid "Loading SCSI driver"
msgstr "SCSIڈرائیور لوڈنگ"

#: ../loader2/windows.c:64
#, c-format
msgid "Loading %s driver..."
msgstr "چلا نے کلیے کام جاری ھیں %s...ڈرائیور"

#: tmp/account.glade.h:2
#, fuzzy
msgid "Root Password:"
msgstr "بنیادی شناختی نمبر"

#: tmp/account.glade.h:3
msgid ""
"The root account is used for administering the system.  Enter a password for "
"the root user."
msgstr ""
"کے لیے استمال کیا جاتا ھے۔ روٹ یوزر کے لیے پاسورڈ داخل کریں۔ administering "
"روٹ اکاونٹ سسٹم کی"

#: tmp/adddrive.glade.h:1
#, fuzzy
msgid "Add _ZFCP LUN"
msgstr "FCP LUN"

#: tmp/adddrive.glade.h:2
msgid "Add _iSCSI target"
msgstr ""

#: tmp/adddrive.glade.h:4
msgid "Disable _dmraid device"
msgstr ""

#: tmp/adddrive.glade.h:6
#, fuzzy
msgid "_Add drive"
msgstr "ہارڈ ڈرائیو"

#: tmp/addrepo.glade.h:1
#, fuzzy
msgid "<b>Repository _name:</b>"
msgstr "<b>: نام _انیٹیٹرiSCSI</b>"

#: tmp/addrepo.glade.h:2
msgid "Add Repository"
msgstr ""

#: tmp/addrepo.glade.h:3
msgid ""
"Please provide the location where your additional software can be installed "
"from."
msgstr ""

#: tmp/addrepo.glade.h:4
msgid "Proxy U_RL:"
msgstr ""

#: tmp/addrepo.glade.h:5
#, fuzzy
msgid "Proxy pass_word:"
msgstr "کوئ پاسورڈ نھیں ھے"

#: tmp/addrepo.glade.h:6
#, fuzzy
msgid "Proxy u_sername:"
msgstr "ایف ٹی پی سائٹ کا نام:"

#: tmp/addrepo.glade.h:7
msgid "Repository _Mirror"
msgstr ""

#: tmp/addrepo.glade.h:8
#, fuzzy
msgid "Repository _URL"
msgstr "غلط بوٹ نانہ"

#: tmp/addrepo.glade.h:9
#, fuzzy
msgid "_Proxy configuration"
msgstr "ماوس کی سیٹنگز"

#: tmp/anaconda.glade.h:1
msgid "Reboo_t"
msgstr "ريبو _ٹ"

#: tmp/anaconda.glade.h:3
msgid "_Next"
msgstr "_ اگلا"

#: tmp/autopart.glade.h:1
#, fuzzy
msgid "<b>Resize _target:</b>"
msgstr "<b>: نام _انیٹیٹرiSCSI</b>"

#: tmp/autopart.glade.h:2
msgid ""
"Installation requires partitioning of your hard drive.  By default, a "
"partitioning layout is chosen which is reasonable for most users.  You can "
"either choose to use this or create your own."
msgstr ""
"تنصیب کو آپ کی ہارڈ کی پارٹیشنگ درکار ہے۔ پہلے سے، ایک پارٹیشنگ صورت کا "
"انتخاب کیا جا چکا ہے جو اکثر یوزرز کے لیےُ قابلِ قبول ہے۔  آپ استعمال کے لیےُ "
"اس کا انتخاب بھی کر سکتے ہیں یا اپنا بھی بنا سکتے ہیں۔"

#: tmp/autopart.glade.h:3
msgid "Re_view and modify partitioning layout"
msgstr "پارٹیشنگ شکل کو دوبارہ_ دیکھیں اور ترمیم کریں"

#: tmp/autopart.glade.h:4
#, fuzzy
msgid "What drive would you like to _boot this installation from?"
msgstr "کون سی زبان کا اپ استعمال کر نا چاہتے ہیں؟"

#: tmp/autopart.glade.h:5
msgid "Which Partition to resize"
msgstr ""

#: tmp/autopart.glade.h:6
#, fuzzy
msgid ""
"Which partition would you like to resize to make room for your installation?"
msgstr "کون سی پارٹیشن آپ کی روٹ پارٹیشن کو ھولڈ کرتی ھے۔ "

#: tmp/autopart.glade.h:7
#, fuzzy
msgid "_Advanced storage configuration"
msgstr "ایڈوانس بوٹ لوڈر کنفیگوریشن"

#: tmp/autopart.glade.h:8
#, fuzzy
msgid "_Encrypt system"
msgstr "اینکر پشن کی"

#: tmp/autopart.glade.h:10
msgid "_Select the drive(s) to use for this installation."
msgstr ":اِس انسٹالیشن کےاستعمال کے لیے ڈرائیو(ز)چنیں"

#: tmp/blwhere.glade.h:1
#, fuzzy
msgid "/boot"
msgstr "دوبارہ بوٹ"

#: tmp/blwhere.glade.h:2
#, fuzzy
msgid "BIOS Drive Order"
msgstr "ڈرایٔیو آڈر میں تبد یلی کر یں"

#: tmp/blwhere.glade.h:3
#, fuzzy
msgid "Boot loader device"
msgstr "بوٹلوڈر"

#: tmp/blwhere.glade.h:4
msgid "First BIOS drive:"
msgstr ""

#: tmp/blwhere.glade.h:5
msgid "Fourth BIOS drive:"
msgstr ""

#: tmp/blwhere.glade.h:6
msgid "MBR"
msgstr ""

#: tmp/blwhere.glade.h:7
msgid "Second BIOS drive:"
msgstr ""

#: tmp/blwhere.glade.h:8
msgid "Third BIOS drive:"
msgstr ""

#: tmp/blwhere.glade.h:9
#, fuzzy
msgid "Where would you like to install the boot loader for your system?"
msgstr "آپ کھاں پر بوٹ لوڈر انسٹال کرنا چاھتے ھیں؟"

#: tmp/detailed-dialog.glade.h:1
#, fuzzy
msgid "Info"
msgstr "پرواہ  نہ کرنا۔"

#: tmp/detailed-dialog.glade.h:2
msgid "_Details"
msgstr ""

#: tmp/exnSave.glade.h:2
#, fuzzy
msgid "Select A File"
msgstr "ڈرائیو کا انختاب کریں"

#: tmp/exnSave.glade.h:3
msgid "Select a destination for the exception information."
msgstr ""

#: tmp/exnSave.glade.h:4
msgid "_Disk"
msgstr ""

#: tmp/exnSave.glade.h:5
#, fuzzy
msgid "_Remote"
msgstr "ریموٹ"

#: tmp/GroupSelector.glade.h:1
msgid ""
"Some packages associated with this group are not required to be installed "
"but may provide additional functionality.  Please choose the packages which "
"you would like to have installed."
msgstr ""

#: tmp/GroupSelector.glade.h:2
#, fuzzy
msgid "_Deselect"
msgstr "ختم کرو"

#: tmp/GroupSelector.glade.h:3
#, fuzzy
msgid "_Deselect all optional packages"
msgstr "پیکیجز انسٹال ہو رہے ہیں"

#: tmp/GroupSelector.glade.h:4
msgid "_Optional packages"
msgstr ""

#: tmp/GroupSelector.glade.h:5
#, fuzzy
msgid "_Select"
msgstr "ختم کرو"

#: tmp/GroupSelector.glade.h:6
msgid "_Select all optional packages"
msgstr ""

#: tmp/GroupSelector.glade.h:7
msgid "dialog1"
msgstr ""

#: tmp/instkey.glade.h:2
#, no-c-format
msgid "%(instkey)s:"
msgstr ""

#: tmp/instkey.glade.h:4
#, fuzzy, no-c-format
msgid "Please enter your %(instkey)s."
msgstr "مہربانی فرما کر والیم گروپ نام کا اندراج کریں"

#: tmp/iscsi-config.glade.h:1
#, fuzzy
msgid "<b>_Password:</b>"
msgstr "پاسورڈ"

#: tmp/iscsi-config.glade.h:2
msgid "<b>_Target IP Address:</b>"
msgstr "<b>ٹارگٹ آیی پی پتہ:_</b>"

#: tmp/iscsi-config.glade.h:3
#, fuzzy
msgid "<b>_Username:</b>"
msgstr "<b>: پورٹ نمبر_ </b>"

#: tmp/iscsi-config.glade.h:4
msgid "<b>iSCSI Initiator _Name:</b>"
msgstr "<b>: نام _انیٹیٹرiSCSI</b>"

#: tmp/iscsi-config.glade.h:7
msgid "_Add target"
msgstr ""

#: tmp/liveinst.desktop.in.h:1
#, fuzzy
msgid "Install"
msgstr "تنصیب_ %s"

#: tmp/liveinst.desktop.in.h:2
msgid "Install the live CD to your hard disk"
msgstr ""

#: tmp/liveinst.desktop.in.h:3
#, fuzzy
msgid "Install to Hard Drive"
msgstr "تنصیب شروع ہو رہی ھے"

#: tmp/lukspassphrase.glade.h:1
msgid ""
"Choose a passphrase for this encrypted partition. You will be prompted for "
"the passphrase during system boot."
msgstr ""

#: tmp/lukspassphrase.glade.h:2
#, fuzzy
msgid "Confirm passphrase:"
msgstr "واقع شروع کرنا ہے"

#: tmp/lukspassphrase.glade.h:3
msgid "Enter passphrase for encrypted partition"
msgstr ""

#: tmp/lukspassphrase.glade.h:4
msgid "Enter passphrase:"
msgstr ""

#: tmp/netconfig.glade.h:2
#, fuzzy
msgid "<b>Gateway:</b>"
msgstr "گیٹ و ے"

#: tmp/netconfig.glade.h:3
#, fuzzy
msgid "<b>IPv4 Address:</b>"
msgstr "<b>ٹارگٹ آیی پی پتہ:_</b>"

#: tmp/netconfig.glade.h:4
#, fuzzy
msgid "<b>IPv6 Address:</b>"
msgstr "<b>ٹارگٹ آیی پی پتہ:_</b>"

#: tmp/netconfig.glade.h:5
#, fuzzy
msgid "<b>Nameserver:</b>"
msgstr "نیم سرور"

#: tmp/netconfig.glade.h:6
#, fuzzy
msgid "<b>_Interface:</b>"
msgstr "<b>: پورٹ نمبر_ </b>"

#: tmp/netconfig.glade.h:7
msgid "Enable IPv_4 support"
msgstr ""

#: tmp/netconfig.glade.h:8
msgid "Enable IPv_6 support"
msgstr ""

#: tmp/netconfig.glade.h:9
msgid "Enable network interface"
msgstr ""

#: tmp/netconfig.glade.h:10
msgid ""
"This requires that you have an active network connection during the "
"installation process.  Please configure a network interface."
msgstr ""

#: tmp/netconfig.glade.h:11
#, fuzzy
msgid "Use _dynamic IP configuration (DHCP)"
msgstr "ڈائنامک آئ-پی کو استعمال کریں (BOOTP/DHCP)"

#: tmp/netpostconfig.glade.h:2
#, fuzzy
msgid "<b>Description Goes Here</b>"
msgstr " %s:مکمل بیا ن"

#: tmp/netpostconfig.glade.h:3
msgid "<b>Hardware address: DE:AD:00:BE:EF:00</b>"
msgstr ""

#: tmp/netpostconfig.glade.h:8
#, fuzzy
msgid "Edit Interface"
msgstr "انٹر فیس کو تبدیل کریں %s"

#: tmp/netpostconfig.glade.h:11
#, fuzzy
msgid "Encryption Key:"
msgstr "انکریپشن کِی"

#: tmp/netpostconfig.glade.h:13
#, fuzzy
msgid "Manual configuration"
msgstr " کی تر تیب z/IPL"

#: tmp/netpostconfig.glade.h:14
#, fuzzy
msgid "Point to Point (IP):"
msgstr "آئی پی) _پوا ئنٹ ٹو پوا ئنٹ )"

#: tmp/tasksel.glade.h:1
msgid "Customize _later"
msgstr " بعد میں تبدیل کریں"

#: tmp/tasksel.glade.h:2
msgid ""
"Please select any additional repositories that you want to use for software "
"installation."
msgstr ""

#: tmp/tasksel.glade.h:5
#, fuzzy
msgid ""
"You can further customize the software selection now, or after install via "
"the software management application."
msgstr ""
"سافٹ ویُر کے انتخاب کی مزید ردوبدل اب بھی ہو سکتی ہے یا تنصیب کے بعد سافٹ ویُر "
"مینیجمنٹ کے ذریعے بھی ہو سکتی ہے۔ "

#: tmp/tasksel.glade.h:6
msgid "_Add additional software repositories"
msgstr ""

#: tmp/tasksel.glade.h:7
msgid "_Customize now"
msgstr " ابھی تبدیل کریں"

#: tmp/tasksel.glade.h:8
#, fuzzy
msgid "_Modify repository"
msgstr "پارٹیشن کی ترمیم کریں _"

#: tmp/zfcp-config.glade.h:1
#, fuzzy
msgid "<b>Device number:</b>"
msgstr "ڈیواءس نمبر"

#: tmp/zfcp-config.glade.h:2
#, fuzzy
msgid "<b>FCP LUN:</b>"
msgstr "FCP LUN"

#: tmp/zfcp-config.glade.h:3
#, fuzzy
msgid "<b>WWPN:</b>"
msgstr "پاسورڈ"

#: tmp/zfcp-config.glade.h:4
msgid "Add FCP device"
msgstr "جمع  FCP اٰلہ "

#. generated from lang-table
msgid "Afrikaans"
msgstr "افریکن"

#. generated from lang-table
msgid "Arabic"
msgstr "عربی"

#. generated from lang-table
msgid "Assamese"
msgstr ""

#. generated from lang-table
msgid "Bengali"
msgstr "بنگالی"

#. generated from lang-table
msgid "Bengali(India)"
msgstr "بنگالی انڈیا"

#. generated from lang-table
msgid "Bulgarian"
msgstr "بلگیرین"

#. generated from lang-table
msgid "Catalan"
msgstr "کتلان"

#. generated from lang-table
msgid "Chinese(Simplified)"
msgstr "چائنہ آسان"

#. generated from lang-table
msgid "Chinese(Traditional)"
msgstr "چائنہ رویاتی"

#. generated from lang-table
msgid "Croatian"
msgstr "کروشین"

#. generated from lang-table
msgid "Czech"
msgstr "سیزیق"

#. generated from lang-table
msgid "Danish"
msgstr "ڈینش"

#. generated from lang-table
msgid "Dutch"
msgstr "ولندیزی"

#. generated from lang-table
msgid "English"
msgstr "انگلش"

#. generated from lang-table
msgid "Estonian"
msgstr "عسٹونین"

#. generated from lang-table
msgid "Finnish"
msgstr "فنش"

#. generated from lang-table
msgid "French"
msgstr "فرانسیسی"

#. generated from lang-table
msgid "German"
msgstr "جرمن"

#. generated from lang-table
#, fuzzy
msgid "Greek"
msgstr "خالی"

#. generated from lang-table
msgid "Gujarati"
msgstr "گجراتی"

#. generated from lang-table
msgid "Hindi"
msgstr "ہندی"

#. generated from lang-table
msgid "Hungarian"
msgstr "ہنگیرین"

#. generated from lang-table
msgid "Icelandic"
msgstr "ائیس لینڈ"

#. generated from lang-table
msgid "Iloko"
msgstr ""

#. generated from lang-table
msgid "Indonesian"
msgstr "انڈونیشین"

#. generated from lang-table
msgid "Italian"
msgstr "اٹیلین"

#. generated from lang-table
msgid "Japanese"
msgstr "جاپانی"

#. generated from lang-table
msgid "Kannada"
msgstr ""

#. generated from lang-table
msgid "Korean"
msgstr "کررین"

#. generated from lang-table
msgid "Macedonian"
msgstr "میسڈونین"

#. generated from lang-table
msgid "Malay"
msgstr "مالے"

#. generated from lang-table
#, fuzzy
msgid "Malayalam"
msgstr "مالے"

#. generated from lang-table
#, fuzzy
msgid "Marathi"
msgstr "گجراتی"

#. generated from lang-table
msgid "Norwegian"
msgstr "ناروین"

#. generated from lang-table
msgid "Northern Sotho"
msgstr "شمالی سوتھو"

#. generated from lang-table
msgid "Oriya"
msgstr ""

#. generated from lang-table
msgid "Persian"
msgstr "مصر"

#. generated from lang-table
msgid "Polish"
msgstr "پالیش"

#. generated from lang-table
msgid "Portuguese"
msgstr "پرتگالی"

#. generated from lang-table
msgid "Portuguese(Brazilian)"
msgstr "پرتگالی(برازیلین"

#. generated from lang-table
msgid "Punjabi"
msgstr "پنجابی"

#. generated from lang-table
#, fuzzy
msgid "Romanian"
msgstr "کروشین"

#. generated from lang-table
msgid "Russian"
msgstr "رشیا"

#. generated from lang-table
msgid "Serbian"
msgstr "سربین"

#. generated from lang-table
msgid "Serbian(Latin)"
msgstr "سیربین (لیٹن)۔"

#. generated from lang-table
msgid "Sinhala"
msgstr ""

#. generated from lang-table
msgid "Slovak"
msgstr "سلوویک"

#. generated from lang-table
msgid "Slovenian"
msgstr "سلونین"

#. generated from lang-table
msgid "Spanish"
msgstr "سپینش"

#. generated from lang-table
msgid "Swedish"
msgstr "سویڈش"

#. generated from lang-table
msgid "Tamil"
msgstr "تمیل"

#. generated from lang-table
msgid "Telugu"
msgstr ""

#. generated from lang-table
msgid "Turkish"
msgstr "ترکی"

#. generated from lang-table
msgid "Ukrainian"
msgstr "یوکرایین"

#. generated from lang-table
msgid "Vietnamese"
msgstr "یٹنامیز"

#. generated from lang-table
msgid "Welsh"
msgstr "ویلش"

#. generated from lang-table
msgid "Zulu"
msgstr "زولو"

#~ msgid "Mouse Configuration"
#~ msgstr "ماوس کی سیٹنگز"

#~ msgid "/dev/ttyS0 (COM1 under DOS)"
#~ msgstr "/dev/ttyS0 (COM1 under DOS)"

#~ msgid "/dev/ttyS1 (COM2 under DOS)"
#~ msgstr "/dev/ttyS1 (COM2 under DOS)"

#~ msgid "/dev/ttyS2 (COM3 under DOS)"
#~ msgstr "/dev/ttyS2 (COM3 under DOS)"

#~ msgid "/dev/ttyS3 (COM4 under DOS)"
#~ msgstr "/dev/ttyS3 (COM4 under DOS)"

#~ msgid "_Model"
#~ msgstr "_ماڈل"

#~ msgid "_Emulate 3 buttons"
#~ msgstr "_کاپی کریں 3 بٹنون کو"

#~ msgid "Select the appropriate mouse for the system."
#~ msgstr "انتخاب کریں ٹھیک ماوس کا سسٹمکے لیے"

#~ msgid "What device is your mouse located on?"
#~ msgstr " آپکا ما وس کس کس ڈیو ا یّیس  کے سا تھ لگا  ھوا ھے؟ "

#~ msgid "Which model mouse is attached to this computer?"
#~ msgstr "اس کمپیو ٹر کے سا تھ کو نسا ما وس لگا  ھے؟"

#~ msgid "Emulate 3 Buttons?"
#~ msgstr "ایمولیٹ 3 بٹن"

#~ msgid "Mouse Selection"
#~ msgstr " ما وس کا انتحا ب "

#~ msgid "Error pulling second part of kickstart config: %s!"
#~ msgstr "نقص pulling second part of kickstart config: %s!"

#~ msgid "Unknown install method"
#~ msgstr "نامعلوم  تنصیب کا طریقہ  "

#~ msgid ""
#~ "You have specified an install method which isn't supported by anaconda."
#~ msgstr "آپ نے تنصیب کا وہ طریقہ منتخب کیا ہے جس سے ایناکونڈا واقف نہیں ہے۔ "

#~ msgid "unknown install method: %s"
#~ msgstr "نامعلوم  تنصیب کا  طریقہ  %s"

#~ msgid ""
#~ "You have chosen to remove all partitions (ALL DATA) on the following "
#~ "drives:%s\n"
#~ "Are you sure you want to do this?"
#~ msgstr ""
#~ "%sآپ نے دی گی ڈراو سے سب پاٹیشن ختم کرنے کو چن لیا ھے\n"
#~ "کیا آپ کو یقین ھے کہ آپ یہ کرنا چاھتے ھیں"

#~ msgid ""
#~ "You have chosen to remove all Linux partitions (and ALL DATA on them) on "
#~ "the following drives:%s\n"
#~ "Are you sure you want to do this?"
#~ msgstr ""
#~ "کیا آپ کو یقین ھے کہ آپ یہ کرنا چاھتے ھیں\n"
#~ "%s:آپ نے دی گی ڈراو سے سب لینکس پاٹیشن ختم کرنے کو چن لیا ھے"

#~ msgid "Checking for Bad Blocks"
#~ msgstr "برے بلاکوں کو دیکھ رھا ھے"

#, fuzzy
#~ msgid ""
#~ "Bad blocks have been detected on device /dev/%s. We do not recommend you "
#~ "use this device.\n"
#~ "\n"
#~ "Press <Enter> to exit the installer."
#~ msgstr ""
#~ "اپنے سسٹم کو ریبوٹ کرنے کے لیے <Enter>دبایں \n"
#~ "\n"
#~ "ہم اس ڈیواس کو استعمال کرنے کی صلاح نہیں دیتے %s/dev/ ڈیواس پر بیڈ بلاک "
#~ "ملے ھیں"

#, fuzzy
#~ msgid ""
#~ "An error occurred searching for bad blocks on %s.  This problem is "
#~ "serious, and the install cannot continue.\n"
#~ "\n"
#~ "Press <Enter> to exit the installer."
#~ msgstr ""
#~ "اپنے سسٹم کو ریبوٹ کرنے کے لیے <Enter>دبایں \n"
#~ "\n"
#~ "۔ یہ ایک سنگین مسلہء ھے اور انسٹالیشن جاری نھیں ھو سکتی  %s ایک غلطی بیڈ "
#~ "بلاک کو تلاش کرتے ھوے واقع ھو گی ھے \""

#~ msgid ""
#~ "Please insert a floppy now. All contents of the disk will be erased, so "
#~ "please choose your diskette carefully."
#~ msgstr ""
#~ "براہ مہربانی اب فلاپی کو ڈالیں۔ ڈسک پر موجود ہر چیز کو ختم کر دیا جائے "
#~ "گا۔ اس لیے اپنی ڈسک احتیاط سے چنیں۔"

#, fuzzy
#~ msgid ""
#~ "The file %s cannot be opened.  This is due to a missing file or perhaps a "
#~ "corrupt package.  Please verify your installation images and that you "
#~ "have all the required media.\n"
#~ "\n"
#~ "If you exit, your system will be left in an inconsistent state that will "
#~ "likely require reinstallation.\n"
#~ "\n"
#~ msgstr ""
#~ " پیکج کُھل نہیں سکتا ۔جسکی وجہ کسی فائل کاکم ھونا یا پیکیج کا خراب ھونا ھو "
#~ "سکتا ھے۔اگر آپ %s-%s-%s-%sسی ڈی میڈیا سے انسٹال کر رہے ہیں تو عموما اس کا "
#~ "مطلب سی۔ڈی میڈیا کا خراب ھونا ھے۔یا سی۔ڈی  ڈرائیو میڈیا کو پڑھ نہیں "
#~ "سکتا۔\n"
#~ "\n"

#, fuzzy
#~ msgid ""
#~ "The installer has tried to mount image #%s, but cannot find it on the "
#~ "server.\n"
#~ "\n"
#~ "Please copy this image to the remote server's share path and click Retry. "
#~ "Click Exit to abort the installation."
#~ msgstr ""
#~ " انسٹالر نے #%sخاکہ کو ماونُٹ کرنے کی کوشش کی ہے، لیکن اسے کارآمد پر تلاش "
#~ "نہیں کر سکا۔\n"
#~ "\n"
#~ "مہربانی فرما کر اس خاکہ کو ریموٹ کارآمد کے جڑے ہوےُ راستہ پر رکھیں اور "
#~ "دوبارہ کوشش کریں دبایُں۔ تنصیب کو ختم کرنے کے لیےُ دوبارہ بوٹ کریں دبایُں۔ "

#~ msgid "Low Memory"
#~ msgstr "محدود میموری"

#~ msgid ""
#~ "As you don't have much memory in this machine, we need to turn on swap "
#~ "space immediately. To do this we'll have to write your new partition "
#~ "table to the disk immediately. Is that OK?"
#~ msgstr ""
#~ "جیسا کہ آپ کے پاس اِس مشین میں زیادہ میموری نہیں ہے، ہمیں اسی وقت سویُپ کی "
#~ "جگہ چالو کرنا پڑے گی۔ اس مقصد کے لیےُ ہمیں آپ کا نیا پارٹیشن ٹیبل اسی وقت "
#~ "ڈسک پر لکھنا پڑے گا۔ کیا یہ ٹھیک ہے؟ "

#~ msgid "Save to Remote Host"
#~ msgstr "ریموٹ ھوسٹ پر محفوظ کریں"

#~ msgid "Save Crash Dump"
#~ msgstr "سیو کریش ڈنپ"

#~ msgid "Searching"
#~ msgstr "ڈھونڈنا"

#~ msgid "Searching for %s installations..."
#~ msgstr " کی انسٹالیشن ڈھونڈنا %s"

#~ msgid "Connecting..."
#~ msgstr "کونیکٹینگ"

#, fuzzy
#~ msgid ""
#~ "The file %s cannot be opened.  This is due to a missing file or perhaps a "
#~ "corrupt package.  Please verify your mirror contains all required "
#~ "packages, and try using a different one.\n"
#~ "\n"
#~ "If you exit, your system will be left in an inconsistent state that will "
#~ "likely require reinstallation.\n"
#~ "\n"
#~ msgstr ""