#!/usr/bonsaitools/bin/perl -wT # -*- Mode: perl; indent-tabs-mode: nil -*- # # The contents of this file are subject to the Mozilla Public # License Version 1.1 (the "License"); you may not use this file # except in compliance with the License. You may obtain a copy of # the License at http://www.mozilla.org/MPL/ # # Software distributed under the License is distributed on an "AS # IS" basis, WITHOUT WARRANTY OF ANY KIND, either express or # implied. See the License for the specific language governing # rights and limitations under the License. # # The Original Code is the Bugzilla Bug Tracking System. # # The Initial Developer of the Original Code is Netscape Communications # Corporation. Portions created by Netscape are # Copyright (C) 1998 Netscape Communications Corporation. All # Rights Reserved. # # Contributor(s): Myk Melez ############################################################################ # Script Initialization ############################################################################ # Make it harder for us to do dangerous things in Perl. use strict; use lib qw(.); use vars qw($template $vars); # Include the Bugzilla CGI and general utility library. require "CGI.pl"; # Establish a connection to the database backend. ConnectToDatabase(); quietly_check_login('permit_anonymous'); # Use the "Token" module that contains functions for doing various # token-related tasks. use Token; ################################################################################ # Data Validation / Security Authorization ################################################################################ # Throw an error if the form does not contain an "action" field specifying # what the user wants to do. $::FORM{'a'} || ThrowCodeError("unknown_action"); # Assign the action to a global variable. $::action = $::FORM{'a'}; # If a token was submitted, make sure it is a valid token that exists in the # database and is the correct type for the action being taken. if ($::FORM{'t'}) { # Assign the token and its SQL quoted equivalent to global variables. $::token = $::FORM{'t'}; $::quotedtoken = SqlQuote($::token); # Make sure the token contains only valid characters in the right amount. my $validationerror = ValidatePassword($::token); if ($validationerror) { ThrowUserError("token_invalid"); } Token::CleanTokenTable(); # Make sure the token exists in the database. SendSQL( "SELECT tokentype FROM tokens WHERE token = $::quotedtoken" ); (my $tokentype = FetchSQLData()) || ThrowUserError("token_inexistent"); # Make sure the token is the correct type for the action being taken. if ( grep($::action eq $_ , qw(cfmpw cxlpw chgpw)) && $tokentype ne 'password' ) { Token::Cancel($::token, "wrong_token_for_changing_passwd"); ThrowUserError("wrong_token_for_changing_passwd"); } if ( ($::action eq 'cxlem') && (($tokentype ne 'emailold') && ($tokentype ne 'emailnew')) ) { Token::Cancel($::token, "wrong_token_for_cancelling_email_change"); ThrowUserError("wrong_token_for_cancelling_email_change"); } if ( grep($::action eq $_ , qw(cfmem chgem)) && ($tokentype ne 'emailnew') ) { Token::Cancel($::token, "wrong_token_for_confirming_email_change"); ThrowUserError("wrong_token_for_confirming_email_change"); } } # If the user is requesting a password change, make sure they submitted # their login name and it exists in the database. if ( $::action eq 'reqpw' ) { defined $::FORM{'loginname'} || ThrowUserError("login_needed_for_password_change"); # Make sure the login name looks like an email address. This function # displays its own error and stops execution if the login name looks wrong. CheckEmailSyntax($::FORM{'loginname'}); my $quotedloginname = SqlQuote($::FORM{'loginname'}); SendSQL("SELECT userid FROM profiles WHERE login_name = $quotedloginname"); FetchSQLData() || ThrowUserError("account_inexistent"); } # If the user is changing their password, make sure they submitted a new # password and that the new password is valid. if ( $::action eq 'chgpw' ) { defined $::FORM{'password'} && defined $::FORM{'matchpassword'} || ThrowUserError("require_new_password"); ValidatePassword($::FORM{'password'}, $::FORM{'matchpassword'}); } ################################################################################ # Main Body Execution ################################################################################ # All calls to this script should contain an "action" variable whose value # determines what the user wants to do. The code below checks the value of # that variable and runs the appropriate code. if ($::action eq 'reqpw') { requestChangePassword(); } elsif ($::action eq 'cfmpw') { confirmChangePassword(); } elsif ($::action eq 'cxlpw') { cancelChangePassword(); } elsif ($::action eq 'chgpw') { changePassword(); } elsif ($::action eq 'cfmem') { confirmChangeEmail(); } elsif ($::action eq 'cxlem') { cancelChangeEmail(); } elsif ($::action eq 'chgem') { changeEmail(); } else { # If the action that the user wants to take (specified in the "a" form field) # is none of the above listed actions, display an error telling the user # that we do not understand what they would like to do. ThrowCodeError("unknown_action"); } exit; ################################################################################ # Functions ################################################################################ sub requestChangePassword { Token::IssuePasswordToken($::FORM{'loginname'}); $vars->{'message'} = "password_change_request"; print "Content-Type: text/html\n\n"; $template->process("global/message.html.tmpl", $vars) || ThrowTemplateError($template->error()); } sub confirmChangePassword { $vars->{'token'} = $::token; print "Content-Type: text/html\n\n"; $template->process("account/password/set-forgotten-password.html.tmpl", $vars) || ThrowTemplateError($template->error()); } sub cancelChangePassword { $vars->{'message'} = "password_change_canceled"; Token::Cancel($::token, $vars->{'message'}); print "Content-Type: text/html\n\n"; $template->process("global/message.html.tmpl", $vars) || ThrowTemplateError($template->error()); } sub changePassword { # Quote the password and token for inclusion into SQL statements. my $cryptedpassword = Crypt($::FORM{'password'}); my $quotedpassword = SqlQuote($cryptedpassword); # Get the user's ID from the tokens table. SendSQL("SELECT userid FROM tokens WHERE token = $::quotedtoken"); my $userid = FetchSQLData(); # Update the user's password in the profiles table and delete the token # from the tokens table. SendSQL("LOCK TABLES profiles WRITE , tokens WRITE"); SendSQL("UPDATE profiles SET cryptpassword = $quotedpassword WHERE userid = $userid"); SendSQL("DELETE FROM tokens WHERE token = $::quotedtoken"); SendSQL("UNLOCK TABLES"); InvalidateLogins($userid); $vars->{'message'} = "password_changed"; print "Content-Type: text/html\n\n"; $template->process("global/message.html.tmpl", $vars) || ThrowTemplateError($template->error()); } sub confirmChangeEmail { # Return HTTP response headers. print "Content-Type: text/html\n\n"; $vars->{'token'} = $::token; $template->process("account/email/confirm.html.tmpl", $vars) || ThrowTemplateError($template->error()); } sub changeEmail { # Get the user's ID from the tokens table. SendSQL("SELECT userid, eventdata FROM tokens WHERE token = $::quotedtoken"); my ($userid, $eventdata) = FetchSQLData(); my ($old_email, $new_email) = split(/:/,$eventdata); my $quotednewemail = SqlQuote($new_email); # Check the user entered the correct old email address if($::FORM{'email'} ne $old_email) { ThrowUserError("email_confirmation_failed"); } # The new email address should be available as this was # confirmed initially so cancel token if it is not still available if (! ValidateNewUser($new_email,$old_email)) { $vars->{'email'} = $new_email; Token::Cancel($::token,"account_exists"); ThrowUserError("account_exists"); } # Update the user's login name in the profiles table and delete the token # from the tokens table. SendSQL("LOCK TABLES profiles WRITE , tokens WRITE"); SendSQL("UPDATE profiles SET login_name = $quotednewemail WHERE userid = $userid"); SendSQL("DELETE FROM tokens WHERE token = $::quotedtoken"); SendSQL("DELETE FROM tokens WHERE userid = $userid AND tokentype = 'emailnew'"); SendSQL("UNLOCK TABLES"); DeriveGroup($userid); # Return HTTP response headers. print "Content-Type: text/html\n\n"; # Let the user know their email address has been changed. $vars->{'message'} = "login_changed"; $template->process("global/message.html.tmpl", $vars) || ThrowTemplateError($template->error()); } sub cancelChangeEmail { # Get the user's ID from the tokens table. SendSQL("SELECT userid, tokentype, eventdata FROM tokens WHERE token = $::quotedtoken"); my ($userid, $tokentype, $eventdata) = FetchSQLData(); my ($old_email, $new_email) = split(/:/,$eventdata); if($tokentype eq "emailold") { $vars->{'message'} = "emailold_change_cancelled"; SendSQL("SELECT login_name FROM profiles WHERE userid = $userid"); my $actualemail = FetchSQLData(); # check to see if it has been altered if($actualemail ne $old_email) { my $quotedoldemail = SqlQuote($old_email); SendSQL("LOCK TABLES profiles WRITE"); SendSQL("UPDATE profiles SET login_name = $quotedoldemail WHERE userid = $userid"); SendSQL("UNLOCK TABLES"); DeriveGroup($userid); $vars->{'message'} = "email_change_cancelled_reinstated"; } } else { $vars->{'message'} = 'email_change_cancelled' } $vars->{'old_email'} = $old_email; $vars->{'new_email'} = $new_email; Token::Cancel($::token, $vars->{'message'}); SendSQL("LOCK TABLES tokens WRITE"); SendSQL("DELETE FROM tokens WHERE userid = $userid AND tokentype = 'emailold' OR tokentype = 'emailnew'"); SendSQL("UNLOCK TABLES"); # Return HTTP response headers. print "Content-Type: text/html\n\n"; $template->process("global/message.html.tmpl", $vars) || ThrowTemplateError($template->error()); } 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
# Translation of libDrakX.po to Russian
# Copyright (C) 1999-2006 Mandriva
#
# Pavel Maryanov <acid_jack@ukr.net>, 2002,2003, 2005, 2006, 2007.
# Alice Lafox <alice@lafox.com.ua>, 2003.
# Alice Lafox <alice@lafox.net>, 2004, 2005.
msgid ""
msgstr ""
"Project-Id-Version: libDrakX\n"
"POT-Creation-Date: 2007-07-02 17:45+0800\n"
"PO-Revision-Date: 2007-01-18 17:50+0200\n"
"Last-Translator: Pavel Maryanov <acid_jack@ukr.net>\n"
"Language-Team: Russian <ru@li.org>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Generator: KBabel 1.11.4\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"

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

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

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

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

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

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

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

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

#: ../lib/Xconfig/card.pm:27
#, c-format
msgid "64 MB or more"
msgstr "64 МБ или больше"

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

#: ../lib/Xconfig/card.pm:176
#, c-format
msgid "Choose an X server"
msgstr "Выберите X-сервер"

#: ../lib/Xconfig/card.pm:207
#, c-format
msgid "Multi-head configuration"
msgstr "Настройка нескольких ядер"

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

#: ../lib/Xconfig/card.pm:279
#, c-format
msgid "Select the memory size of your graphics card"
msgstr "Укажите объём памяти вашей видеокарты"

#: ../lib/Xconfig/card.pm:304
#, c-format
msgid ""
"There is a proprietary driver available for your video card which may "
"support additional features.\n"
"Do you wish to use it?"
msgstr ""
"Для вашей видеокарты доступны проприетарные драйверы, которые могут "
"обеспечить дополнительные функциональные возможности.\n"
"Хотите использовать их?"

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

#: ../lib/Xconfig/card.pm:398
#, c-format
msgid "Configure all heads independently"
msgstr "Настроить все головки независимо"

#: ../lib/Xconfig/card.pm:399
#, c-format
msgid "Use Xinerama extension"
msgstr "Использовать расширение Xinerama"

#: ../lib/Xconfig/card.pm:404
#, c-format
msgid "Configure only card \"%s\"%s"
msgstr "Настроить только карту \"%s\"%s"

#: ../lib/Xconfig/main.pm:91 ../lib/Xconfig/main.pm:92
#: ../lib/Xconfig/monitor.pm:115
#, c-format
msgid "Custom"
msgstr "Выборочно"

#: ../lib/Xconfig/main.pm:126
#, c-format
msgid "Graphic Card & Monitor Configuration"
msgstr "Настройка видеокарты и монитора"

#: ../lib/Xconfig/main.pm:127
#, c-format
msgid "Quit"
msgstr "Выход"

#: ../lib/Xconfig/main.pm:129
#, c-format
msgid "Graphic Card"
msgstr "Видеокарта"

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

#: ../lib/Xconfig/main.pm:135 ../lib/Xconfig/resolution_and_depth.pm:312
#, c-format
msgid "Resolution"
msgstr "Разрешение"

#: ../lib/Xconfig/main.pm:138
#, c-format
msgid "Test"
msgstr "Проверить"

#: ../lib/Xconfig/main.pm:143
#, c-format
msgid "Options"
msgstr "Параметры"

#: ../lib/Xconfig/main.pm:148
#, c-format
msgid "Plugins"
msgstr "Модули"

#: ../lib/Xconfig/main.pm:182
#, c-format
msgid "Your Xorg configuration file is broken, we will ignore it."
msgstr "Ваш конфигурационный файл Xorg  неверен, мы его игнорируем."

#: ../lib/Xconfig/main.pm:201
#, c-format
msgid ""
"Keep the changes?\n"
"The current configuration is:\n"
"\n"
"%s"
msgstr ""
"Сохранить изменения?\n"
"Текущие настройки:\n"
"\n"
"%s"

#: ../lib/Xconfig/monitor.pm:110
#, c-format
msgid "Choose a monitor for head #%d"
msgstr "Выберите монитор для головы #%d"

#: ../lib/Xconfig/monitor.pm:110
#, c-format
msgid "Choose a monitor"
msgstr "Выберите монитор"

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

#: ../lib/Xconfig/monitor.pm:117 ../lib/mouse.pm:47
#, c-format
msgid "Generic"
msgstr "Обычный"

#: ../lib/Xconfig/monitor.pm:118
#, c-format
msgid "Vendor"
msgstr "Производитель"

#: ../lib/Xconfig/monitor.pm:128
#, c-format
msgid "Plug'n Play probing failed. Please select the correct monitor"
msgstr ""
"Исследование Plug'n'Play завершилось неудачей. Пожалуйста, выберите "
"соответствующий монитор"

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

#: ../lib/Xconfig/monitor.pm:143
#, c-format
msgid "Horizontal refresh rate"
msgstr "Частота обновления по горизонтали"

#: ../lib/Xconfig/monitor.pm:144
#, c-format
msgid "Vertical refresh rate"
msgstr "Частота обновления по вертикали"

#: ../lib/Xconfig/plugins.pm:219
#, fuzzy, c-format
msgid "Choose plugins"
msgstr "Выберите действие"

#: ../lib/Xconfig/resolution_and_depth.pm:10
#, c-format
msgid "256 colors (8 bits)"
msgstr "256 цветов (8 бит)"

#: ../lib/Xconfig/resolution_and_depth.pm:11
#, c-format
msgid "32 thousand colors (15 bits)"
msgstr "32 тысячи цветов (15 бит)"

#: ../lib/Xconfig/resolution_and_depth.pm:12
#, c-format
msgid "65 thousand colors (16 bits)"
msgstr "65 тысяч цветов (16 бит)"

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

#: ../lib/Xconfig/resolution_and_depth.pm:128
#, c-format
msgid "Resolutions"
msgstr "Разрешения"

#: ../lib/Xconfig/resolution_and_depth.pm:334 ../lib/mouse.pm:184
#, c-format
msgid "Other"
msgstr "Другие"

#: ../lib/Xconfig/resolution_and_depth.pm:383
#, c-format
msgid "Choose the resolution and the color depth"
msgstr "Выберите разрешение и глубину цвета"

#: ../lib/Xconfig/resolution_and_depth.pm:384
#, c-format
msgid "Graphics card: %s"
msgstr "Видеокарта: %s"

#: ../lib/Xconfig/resolution_and_depth.pm:398
#, c-format
msgid "Ok"
msgstr "ОК"

#: ../lib/Xconfig/resolution_and_depth.pm:398
#, c-format
msgid "Cancel"
msgstr "Отмена"

#: ../lib/Xconfig/resolution_and_depth.pm:398
#, c-format
msgid "Help"
msgstr "Справка"

#: ../lib/Xconfig/test.pm:30
#, c-format
msgid "Test of the configuration"
msgstr "Проверка настроек"

#: ../lib/Xconfig/test.pm:31
#, c-format
msgid "Do you want to test the configuration?"
msgstr "Хотите протестировать настройки?"

#: ../lib/Xconfig/test.pm:31
#, c-format
msgid "Warning: testing this graphic card may freeze your computer"
msgstr ""
"Предупреждение: тестирование этой видеокарты может подвесить ваш компьютер"

#: ../lib/Xconfig/test.pm:69
#, c-format
msgid ""
"An error occurred:\n"
"%s\n"
"Try to change some parameters"
msgstr ""
"Возникла ошибка:\n"
"%s\n"
"Попробуйте изменить некоторые параметры"

#: ../lib/Xconfig/test.pm:130
#, c-format
msgid "Leaving in %d seconds"
msgstr "Закроется через %d секунд"

#: ../lib/Xconfig/test.pm:130
#, c-format
msgid "Is this the correct setting?"
msgstr "Это правильная настройка?"

#: ../lib/Xconfig/various.pm:26
#, c-format
msgid "3D hardware acceleration: %s\n"
msgstr "Аппаратное 3D-ускорение: %s\n"

#: ../lib/Xconfig/various.pm:27
#, c-format
msgid "Keyboard layout: %s\n"
msgstr "Раскладка клавиатуры: %s\n"

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

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

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

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

#: ../lib/Xconfig/various.pm:34
#, c-format
msgid "Graphics card: %s\n"
msgstr "Видеокарта: %s\n"

#: ../lib/Xconfig/various.pm:35
#, c-format
msgid "Graphics memory: %s kB\n"
msgstr "Видеопамять: %s КБ\n"

#: ../lib/Xconfig/various.pm:37
#, c-format
msgid "Color depth: %s\n"
msgstr "Глубина цвета: %s\n"

#: ../lib/Xconfig/various.pm:38
#, c-format
msgid "Resolution: %s\n"
msgstr "Разрешение: %s\n"

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

#: ../lib/Xconfig/various.pm:204
#, c-format
msgid "Xorg configuration"
msgstr "Настройка Xorg"

#: ../lib/Xconfig/various.pm:205
#, c-format
msgid "Graphic card options"
msgstr "Параметры видеокарты"

#: ../lib/Xconfig/various.pm:207
#, c-format
msgid "3D hardware acceleration"
msgstr "Аппаратное 3D-ускорение"

#: ../lib/Xconfig/various.pm:209
#, c-format
msgid "Enable Translucency (Composite extension)"
msgstr "Включить прозрачность (расширение Composite)"

#: ../lib/Xconfig/various.pm:212
#, c-format
msgid "Use hardware accelerated mouse pointer"
msgstr "Использовать для курсора мыши аппаратное ускорение"

#: ../lib/Xconfig/various.pm:215
#, c-format
msgid "Enable RENDER Acceleration (this may cause bugs displaying text)"
msgstr ""
"Включить ускорение RENDER (это может привести к проблемам с отображением "
"текста)"

#: ../lib/Xconfig/various.pm:219
#, c-format
msgid "Enable duplicate display on the external monitor"
msgstr "Включить дублирование экрана на внешнем мониторе"

#: ../lib/Xconfig/various.pm:220
#, c-format
msgid "Enable duplicate display on the second display"
msgstr "Включить дублирование экрана на втором мониторе"

#: ../lib/Xconfig/various.pm:223
#, c-format
msgid "Enable BIOS hotkey for external monitor switching"
msgstr "Включить горячие клавиши BIOS для переключения внешнего монитора"

#: ../lib/Xconfig/various.pm:226
#, c-format
msgid "Use EXA instead of XAA (better performance for Render and Composite)"
msgstr ""
"Использовать EXA вместо XAA (улучшенная производительность для Render и "
"Composite)"

#: ../lib/Xconfig/various.pm:228
#, c-format
msgid "Graphical interface at startup"
msgstr "Графический интерфейс при загрузке"

#: ../lib/Xconfig/various.pm:229
#, c-format
msgid "Automatically start the graphical interface (Xorg) upon booting"
msgstr ""
"Автоматический запускать графический интерфейс (Xorg) во время загрузки"

#: ../lib/Xconfig/various.pm:241
#, c-format
msgid ""
"Your graphic card seems to have a TV-OUT connector.\n"
"It can be configured to work using frame-buffer.\n"
"\n"
"For this you have to plug your graphic card to your TV before booting your "
"computer.\n"
"Then choose the \"TVout\" entry in the bootloader\n"
"\n"
"Do you have this feature?"
msgstr ""
"Похоже, что у вашей видеокарты имеется разъём TV-OUT.\n"
"Он может быть настроен для работы с использованием видеобуфера.\n"
"\n"
"Для этого сначала подключите видеокарту к телевизору перед загрузкой "
"компьютера.\n"
"А затем выберите пункт \"TVout\" в начальном загрузчике.\n"
"\n"
"Есть у вас этот разъем?"

#: ../lib/Xconfig/various.pm:253
#, c-format
msgid "What norm is your TV using?"
msgstr "Какой формат использует ваш телевизор?"

#: ../lib/Xconfig/various.pm:348
#, c-format
msgid ""
"The display resolution being used may not be correct. \n"
"\n"
"If your desktop appears to stretch beyond the edges of the display, \n"
"installing %s may help fix the problem. Install it now?"
msgstr ""
"Используемое разрешение экрана может оказаться некорректным.\n"
"\n"
"Если рабочий стол вылезает за пределы экрана, \n"
"установка %s может устранить эту проблему. Установить его сейчас?"

#: ../lib/Xconfig/xfree.pm:770
#, c-format
msgid ""
"_:weird aspect ratio\n"
"other"
msgstr "другое"

#: ../lib/keyboard.pm:183 ../lib/keyboard.pm:215
#, c-format
msgid ""
"_: keyboard\n"
"Czech (QWERTZ)"
msgstr "Чешская (QWERTZ)"

#: ../lib/keyboard.pm:184 ../lib/keyboard.pm:217
#, c-format
msgid ""
"_: keyboard\n"
"German"
msgstr "Немецкая"

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

#: ../lib/keyboard.pm:186 ../lib/keyboard.pm:229
#, c-format
msgid ""
"_: keyboard\n"
"Spanish"
msgstr "Испанская"

#: ../lib/keyboard.pm:187 ../lib/keyboard.pm:230
#, c-format
msgid ""
"_: keyboard\n"
"Finnish"
msgstr "Финская"

#: ../lib/keyboard.pm:188 ../lib/keyboard.pm:232
#, c-format
msgid ""
"_: keyboard\n"
"French"
msgstr "Французская"

#: ../lib/keyboard.pm:189 ../lib/keyboard.pm:233
#, c-format
msgid "UK keyboard"
msgstr "UK клавиатура"

#: ../lib/keyboard.pm:190 ../lib/keyboard.pm:278
#, c-format
msgid ""
"_: keyboard\n"
"Norwegian"
msgstr "Норвежская"

#: ../lib/keyboard.pm:191
#, c-format
msgid ""
"_: keyboard\n"
"Polish"
msgstr "Польская"

#: ../lib/keyboard.pm:192 ../lib/keyboard.pm:288
#, c-format
msgid ""
"_: keyboard\n"
"Russian"
msgstr "Русская"

#: ../lib/keyboard.pm:193 ../lib/keyboard.pm:290
#, c-format
msgid ""
"_: keyboard\n"
"Swedish"
msgstr "Шведская"

#: ../lib/keyboard.pm:194 ../lib/keyboard.pm:325
#, c-format
msgid "US keyboard"
msgstr "US клавиатура "

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

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

#: ../lib/keyboard.pm:198
#, c-format
msgid ""
"_: keyboard\n"
"Armenian (typewriter)"
msgstr "Армянская (машинописная)"

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

#: ../lib/keyboard.pm:200
#, c-format
msgid ""
"_: keyboard\n"
"Arabic"
msgstr "Арабская"

#: ../lib/keyboard.pm:201
#, c-format
msgid ""
"_: keyboard\n"
"Azerbaidjani (latin)"
msgstr "Азербайджанская (латинская)"

#: ../lib/keyboard.pm:202
#, c-format
msgid ""
"_: keyboard\n"
"Belgian"
msgstr "Бельгийская"

#: ../lib/keyboard.pm:203
#, c-format
msgid ""
"_: keyboard\n"
"Bengali (Inscript-layout)"
msgstr "Bengali (Inscript-layout)"

#: ../lib/keyboard.pm:204
#, c-format
msgid ""
"_: keyboard\n"
"Bengali (Probhat)"
msgstr "Bengali (Probhat)"

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

#: ../lib/keyboard.pm:206
#, c-format
msgid ""
"_: keyboard\n"
"Bulgarian (BDS)"
msgstr "Болгарская (BDS)"

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

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

#: ../lib/keyboard.pm:209
#, c-format
msgid ""
"_: keyboard\n"
"Dzongkha/Tibetan"
msgstr "Dzongkha/Tibetan"

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

#: ../lib/keyboard.pm:211
#, c-format
msgid ""
"_: keyboard\n"
"Swiss (German layout)"
msgstr "Швейцарская (немецкая раскладка)"

#: ../lib/keyboard.pm:212
#, c-format
msgid ""
"_: keyboard\n"
"Swiss (French layout)"
msgstr "Швейцарская (французская раскладка)"

#: ../lib/keyboard.pm:214
#, c-format
msgid ""
"_: keyboard\n"
"Cherokee syllabics"
msgstr "Cherokee syllabics"

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

#: ../lib/keyboard.pm:218
#, c-format
msgid ""
"_: keyboard\n"
"German (no dead keys)"
msgstr "Немецкая (без мертвых клавиш)"

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

#: ../lib/keyboard.pm:220
#, c-format
msgid ""
"_: keyboard\n"
"Danish"
msgstr "Датская"

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

#: ../lib/keyboard.pm:222
#, c-format
msgid ""
"_: keyboard\n"
"Dvorak (Esperanto)"
msgstr "Dvorak (Esperanto)"

#: ../lib/keyboard.pm:223
#, c-format
msgid ""
"_: keyboard\n"
"Dvorak (French)"
msgstr "Dvorak (French)"

#: ../lib/keyboard.pm:224
#, c-format
msgid ""
"_: keyboard\n"
"Dvorak (UK)"
msgstr "Dvorak (UK)"

#: ../lib/keyboard.pm:225
#, c-format
msgid ""
"_: keyboard\n"
"Dvorak (Norwegian)"
msgstr "Дворака (норвежская)"

#: ../lib/keyboard.pm:226
#, c-format
msgid ""
"_: keyboard\n"
"Dvorak (Polish)"
msgstr "Dvorak (Polish)"

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

#: ../lib/keyboard.pm:228
#, c-format
msgid ""
"_: keyboard\n"
"Estonian"
msgstr "Эстонская"

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

#: ../lib/keyboard.pm:234
#, c-format
msgid ""
"_: keyboard\n"
"Georgian (\"Russian\" layout)"
msgstr "Грузинская (\"русская\" раскладка)"

#: ../lib/keyboard.pm:235
#, c-format
msgid ""
"_: keyboard\n"
"Georgian (\"Latin\" layout)"
msgstr "Грузинская (\"латинская\" раскладка)"

#: ../lib/keyboard.pm:236
#, c-format
msgid ""
"_: keyboard\n"
"Greek"
msgstr "Греческая"

#: ../lib/keyboard.pm:237
#, c-format
msgid ""
"_: keyboard\n"
"Greek (polytonic)"
msgstr "Греческий (polytonic)"

#: ../lib/keyboard.pm:238
#, c-format
msgid ""
"_: keyboard\n"
"Gujarati"
msgstr "Гуджаратская"

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

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

#: ../lib/keyboard.pm:241
#, c-format
msgid ""
"_: keyboard\n"
"Hungarian"
msgstr "Венгерская"

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

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

#: ../lib/keyboard.pm:244
#, c-format
msgid ""
"_: keyboard\n"
"Israeli"
msgstr "Израильская"

#: ../lib/keyboard.pm:245
#, c-format
msgid ""
"_: keyboard\n"
"Israeli (phonetic)"
msgstr "Израильская (фонетическая)"

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

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

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

#: ../lib/keyboard.pm:252
#, c-format
msgid ""
"_: keyboard\n"
"Japanese 106 keys"
msgstr "Японская 106 клавиш"

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

#: ../lib/keyboard.pm:254
#, c-format
msgid ""
"_: keyboard\n"
"Kyrgyz"
msgstr "Киргизская клавиатура"

#: ../lib/keyboard.pm:257
#, c-format
msgid ""
"_: keyboard\n"
"Korean"
msgstr "Корейская клавиатура"

#: ../lib/keyboard.pm:259
#, c-format
msgid ""
"_: keyboard\n"
"Kurdish (arabic script)"
msgstr "Kurdish (arabic script)"

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

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

#: ../lib/keyboard.pm:263
#, c-format
msgid ""
"_: keyboard\n"
"Lithuanian AZERTY (old)"
msgstr "Литовская AZERTY (старая)"

#: ../lib/keyboard.pm:265
#, c-format
msgid ""
"_: keyboard\n"
"Lithuanian AZERTY (new)"
msgstr "Литовская AZERTY (новая)"

#: ../lib/keyboard.pm:266
#, c-format
msgid ""
"_: keyboard\n"
"Lithuanian \"number row\" QWERTY"
msgstr "Литовская \"числовой ряд\" QWERTY"

#: ../lib/keyboard.pm:267
#, c-format
msgid ""
"_: keyboard\n"
"Lithuanian \"phonetic\" QWERTY"
msgstr "Литовская \"фонетическая\" QWERTY"

#: ../lib/keyboard.pm:268
#, c-format
msgid ""
"_: keyboard\n"
"Latvian"
msgstr "Латвийская"

#: ../lib/keyboard.pm:269
#, c-format
msgid ""
"_: keyboard\n"
"Malayalam"
msgstr "Малайская"

#: ../lib/keyboard.pm:270
#, c-format
msgid ""
"_: keyboard\n"
"Maori"
msgstr "Маори"

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

#: ../lib/keyboard.pm:272
#, c-format
msgid ""
"_: keyboard\n"
"Myanmar (Burmese)"
msgstr "Мьянмская (Бирма)"

#: ../lib/keyboard.pm:273
#, c-format
msgid ""
"_: keyboard\n"
"Mongolian (cyrillic)"
msgstr "Монгольская (кириллическая)"

#: ../lib/keyboard.pm:274
#, c-format
msgid ""
"_: keyboard\n"
"Maltese (UK)"
msgstr "Мальтийская (UK)"

#: ../lib/keyboard.pm:275
#, c-format
msgid ""
"_: keyboard\n"
"Maltese (US)"
msgstr "Мальтийская (США)"

#: ../lib/keyboard.pm:276
#, c-format
msgid ""
"_: keyboard\n"
"Nigerian"
msgstr "Нигерийская"

#: ../lib/keyboard.pm:277
#, c-format
msgid ""
"_: keyboard\n"
"Dutch"
msgstr "Голландская"

#: ../lib/keyboard.pm:279
#, c-format
msgid ""
"_: keyboard\n"
"Oriya"
msgstr "Орисса"

#: ../lib/keyboard.pm:280
#, c-format
msgid ""
"_: keyboard\n"
"Polish (qwerty layout)"
msgstr "Польская (раскладка QWERTY)"

#: ../lib/keyboard.pm:281
#, c-format
msgid ""
"_: keyboard\n"
"Polish (qwertz layout)"
msgstr "Польская (раскладка QWERTZ)"

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

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

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

#: ../lib/keyboard.pm:286
#, c-format
msgid ""
"_: keyboard\n"
"Romanian (qwertz)"
msgstr "Румынская (QWERTZ)"

#: ../lib/keyboard.pm:287
#, c-format
msgid ""
"_: keyboard\n"
"Romanian (qwerty)"
msgstr "Румынская (QWERTY)"

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

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

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

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

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

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

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

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

#: ../lib/keyboard.pm:301
#, c-format
msgid ""
"_: keyboard\n"
"Serbian (cyrillic)"
msgstr "Сербская (кириллическая)"

#: ../lib/keyboard.pm:302
#, c-format
msgid ""
"_: keyboard\n"
"Syriac"
msgstr "Сирийский"

#: ../lib/keyboard.pm:303
#, c-format
msgid ""
"_: keyboard\n"
"Syriac (phonetic)"
msgstr "Сирийская (фонетическая)"

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

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

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

#: ../lib/keyboard.pm:308
#, c-format
msgid ""
"_: keyboard\n"
"Thai (Kedmanee)"
msgstr "Thai (Kedmanee)"

#: ../lib/keyboard.pm:309
#, c-format
msgid ""
"_: keyboard\n"
"Thai (TIS-820)"
msgstr "Thai (TIS-820)"

#: ../lib/keyboard.pm:311
#, c-format
msgid ""
"_: keyboard\n"
"Thai (Pattachote)"
msgstr "Thai (Pattachote)"

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

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

#: ../lib/keyboard.pm:316
#, c-format
msgid ""
"_: keyboard\n"
"Tajik"
msgstr "Таджикская клавиатура"

#: ../lib/keyboard.pm:318
#, c-format
msgid ""
"_: keyboard\n"
"Turkmen"
msgstr "Туркменская"

#: ../lib/keyboard.pm:319
#, c-format
msgid ""
"_: keyboard\n"
"Turkish (traditional \"F\" model)"
msgstr "Турецкая (традиционная модель \"F\")"

#: ../lib/keyboard.pm:320
#, c-format
msgid ""
"_: keyboard\n"
"Turkish (modern \"Q\" model)"
msgstr "Турецкая (современная модель \"Q\")"

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

#: ../lib/keyboard.pm:324
#, c-format
msgid ""
"_: keyboard\n"
"Urdu keyboard"
msgstr "Клавиатура Урду"

#: ../lib/keyboard.pm:326
#, c-format
msgid "US keyboard (international)"
msgstr "US-клавиатура (международная)"

#: ../lib/keyboard.pm:327
#, c-format
msgid "ISO9995-3 (US keyboard with 3 levels per key)"
msgstr "ISO9995-3 (US-клавиатура с тремя уровнями 3 на клавишу)"

#: ../lib/keyboard.pm:328
#, c-format
msgid ""
"_: keyboard\n"
"Uzbek (cyrillic)"
msgstr "Узбекская (кириллическая)"

#: ../lib/keyboard.pm:330
#, c-format
msgid ""
"_: keyboard\n"
"Vietnamese \"numeric row\" QWERTY"
msgstr "Вьетнамская \"числовой ряд\" QWERTY"

#: ../lib/keyboard.pm:331
#, c-format
msgid ""
"_: keyboard\n"
"Yugoslavian (latin)"
msgstr "Югославская (латинская)"

#: ../lib/keyboard.pm:338
#, c-format
msgid "Right Alt key"
msgstr "Правая клавиша Alt"

#: ../lib/keyboard.pm:339
#, c-format
msgid "Both Shift keys simultaneously"
msgstr "Обе клавиши Shift одновременно"

#: ../lib/keyboard.pm:340
#, c-format
msgid "Control and Shift keys simultaneously"
msgstr "Клавиши Control и Shift одновременно"

#: ../lib/keyboard.pm:341
#, c-format
msgid "CapsLock key"
msgstr "Клавиша CapsLock"

#: ../lib/keyboard.pm:342
#, c-format
msgid "Shift and CapsLock keys simultaneously"
msgstr "Клавиши Shift и CapsLock одновременно"

#: ../lib/keyboard.pm:343
#, c-format
msgid "Ctrl and Alt keys simultaneously"
msgstr "Клавиши Ctrl и Alt одновременно"

#: ../lib/keyboard.pm:344
#, c-format
msgid "Alt and Shift keys simultaneously"
msgstr "Клавиши Alt и Shift одновременно"

#: ../lib/keyboard.pm:345
#, c-format
msgid "\"Menu\" key"
msgstr "Клавиша \"Меню\""

#: ../lib/keyboard.pm:346
#, c-format
msgid "Left \"Windows\" key"
msgstr "Левая клавиша \"Windows\""

#: ../lib/keyboard.pm:347
#, c-format
msgid "Right \"Windows\" key"
msgstr "Правая клавиша \"Windows\""

#: ../lib/keyboard.pm:348
#, c-format
msgid "Both Control keys simultaneously"
msgstr "Обе клавиши Control одновременно"

#: ../lib/keyboard.pm:349
#, c-format
msgid "Both Alt keys simultaneously"
msgstr "Обе клавиши Alt одновременно"

#: ../lib/keyboard.pm:350
#, c-format
msgid "Left Shift key"
msgstr "Левая клавиша Shift"

#: ../lib/keyboard.pm:351
#, c-format
msgid "Right Shift key"
msgstr "Правая клавиша Shift"

#: ../lib/keyboard.pm:352
#, c-format
msgid "Left Alt key"
msgstr "Левая клавиша Alt"

#: ../lib/keyboard.pm:353
#, c-format
msgid "Left Control key"
msgstr "Левая клавиша Control"

#: ../lib/keyboard.pm:354
#, c-format
msgid "Right Control key"
msgstr "Правая клавиша Control"

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

#: ../lib/keyboard.pm:394
#, c-format
msgid "Warning"
msgstr "Внимание"

#: ../lib/keyboard.pm:395
#, c-format
msgid ""
"This setting will be activated after the installation.\n"
"During installation, you will need to use the Right Control\n"
"key to switch between the different keyboard layouts."
msgstr ""
"Данные настройки вступят в силу после инсталляции.\n"
"В процессе инсталляции используйте клавишу Правый Control\n"
"для переключения между различными раскладками клавиатуры."

#: ../lib/mouse.pm:25
#, c-format
msgid "Sun - Mouse"
msgstr "Мышь Sun"

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

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

#: ../lib/mouse.pm:33
#, c-format
msgid "Generic PS2 Wheel Mouse"
msgstr "Стандартная мышь PS2 с колесиком"

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

#: ../lib/mouse.pm:35
#, c-format
msgid "Automatic"
msgstr "Автоматический"

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

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

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

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

#: ../lib/mouse.pm:45 ../lib/mouse.pm:77
#, c-format
msgid "1 button"
msgstr "1 кнопка"

#: ../lib/mouse.pm:46 ../lib/mouse.pm:55
#, c-format
msgid "Generic 2 Button Mouse"
msgstr "Стандартная мышь с 2-я кнопками"

#: ../lib/mouse.pm:48 ../lib/mouse.pm:57
#, c-format
msgid "Generic 3 Button Mouse with Wheel emulation"
msgstr "Стандартная трёхкнопочная мышь с эмуляцией ролика"

#: ../lib/mouse.pm:49
#, c-format
msgid "Wheel"
msgstr "Колесико"

#: ../lib/mouse.pm:53
#, c-format
msgid "serial"
msgstr "последовательная"

#: ../lib/mouse.pm:56
#, c-format
msgid "Generic 3 Button Mouse"
msgstr "Стандартная мышь с 3-я кнопками"

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

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

#: ../lib/mouse.pm:60
#, c-format
msgid "Logitech MouseMan with Wheel emulation"
msgstr "Logitech MouseMan с эмуляцией ролика"

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

#: ../lib/mouse.pm:63
#, c-format
msgid "Logitech CC Series"
msgstr "Logitech CC Series"

#: ../lib/mouse.pm:64
#, c-format
msgid "Logitech CC Series with Wheel emulation"
msgstr "Logitech CC Series с эмуляцией ролика"

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

#: ../lib/mouse.pm:67
#, c-format
msgid "MM Series"
msgstr "MM Series"

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

#: ../lib/mouse.pm:69
#, c-format
msgid "Logitech Mouse (serial, old C7 type)"
msgstr "Logitech Mouse (последовательная, старого типа C7)"

#: ../lib/mouse.pm:70
#, c-format
msgid "Logitech Mouse (serial, old C7 type) with Wheel emulation"
msgstr "Мышь Logitech (последовательная, старого типа C7) с эмуляцией ролика"

#: ../lib/mouse.pm:72
#, c-format
msgid "Kensington Thinking Mouse with Wheel emulation"
msgstr "Мышь Kensington Thinking с эмуляцией ролика"

#: ../lib/mouse.pm:75
#, c-format
msgid "busmouse"
msgstr "busmouse"

#: ../lib/mouse.pm:78
#, c-format
msgid "2 buttons"
msgstr "2 кнопки"

#: ../lib/mouse.pm:79
#, c-format
msgid "3 buttons"
msgstr "3 кнопки"

#: ../lib/mouse.pm:80
#, c-format
msgid "3 buttons with Wheel emulation"
msgstr "Три кнопки с эмуляцией ролика"

#: ../lib/mouse.pm:83
#, c-format
msgid "Universal"
msgstr "Универсальный"

#: ../lib/mouse.pm:85
#, c-format
msgid "Any PS/2 & USB mice"
msgstr "Любая PS/2 & USB мышь"

#: ../lib/mouse.pm:86
#, c-format
msgid "Microsoft Xbox Controller S"
msgstr "Microsoft Xbox Контроллер S"

#: ../lib/mouse.pm:89
#, c-format
msgid "none"
msgstr "отсутствует"

#: ../lib/mouse.pm:91
#, c-format
msgid "No mouse"
msgstr "Мышь отсутствует"

#: ../lib/mouse.pm:484
#, c-format
msgid "Testing the mouse"
msgstr "Тестирование мыши"

#: ../lib/mouse.pm:516
#, c-format
msgid "Please choose your type of mouse."
msgstr "Выберите тип своей мыши."

#: ../lib/mouse.pm:517
#, c-format
msgid "Mouse choice"
msgstr "Выбор мыши"

#: ../lib/mouse.pm:530
#, c-format
msgid "Emulate third button?"
msgstr "Эмулировать третью кнопку?"

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

#: ../lib/mouse.pm:535
#, c-format
msgid "Please choose which serial port your mouse is connected to."
msgstr "Укажите порт, к которому подключена мышь."

#: ../lib/mouse.pm:544
#, c-format
msgid "Buttons emulation"
msgstr "Эмуляция кнопок"

#: ../lib/mouse.pm:546
#, c-format
msgid "Button 2 Emulation"
msgstr "Эмуляция двух кнопок"

#: ../lib/mouse.pm:547
#, c-format
msgid "Button 3 Emulation"
msgstr "Эмуляция трёх кнопок"

#: ../lib/mouse.pm:598
#, c-format
msgid "Please test the mouse"
msgstr "Протестируйте свою мышь"

#: ../lib/mouse.pm:600
#, c-format
msgid "To activate the mouse,"
msgstr "Чтобы привести мышь в действие,"

#: ../lib/mouse.pm:601
#, c-format
msgid "MOVE YOUR WHEEL!"
msgstr "ПОКРУТИТЕ КОЛЕСИКО!"

#: ../tools/XFdrake:71
#, c-format
msgid "You need to reboot for changes to take effect"
msgstr "Вам нужно перезагрузиться чтобы изменения вступили в силу"

#: ../tools/keyboarddrake:32
#, c-format
msgid "Keyboard"
msgstr "Клавиатура"

#: ../tools/keyboarddrake:33
#, c-format
msgid "Please, choose your keyboard layout."
msgstr "Пожалуйста, выберите раскладку своей клавиатуры."

#: ../tools/keyboarddrake:34
#, c-format
msgid "Keyboard layout"
msgstr "Раскладка клавиатуры"

#: ../tools/keyboarddrake:42
#, c-format
msgid "Keyboard type"
msgstr "Тип клавиатуры"

#: ../tools/keyboarddrake:54
#, c-format
msgid "Do you want the BackSpace to return Delete in console?"
msgstr "Хотите, чтобы клавиша BackSpace в консоли возвращала Delete?"

#: ../tools/mousedrake:44
#, c-format
msgid "Mouse test"
msgstr "Тест мыши"

#: ../tools/mousedrake:47
#, c-format
msgid "Please test your mouse:"
msgstr "Протестируйте свою мышь:"

#~ msgid "native support"
#~ msgstr "родная поддержка"

#~ msgid ""
#~ "Some drivers provide native support for OpenGL compositing (using AIGLX "
#~ "for example). If your system supports it, it is the preferred solution."
#~ msgstr ""
#~ "В некоторых драйверах обеспечивается родная поддержка OpenGL-наложения "
#~ "(например, с помощью AIGLX). Если в вашей системе есть такая поддержка, "
#~ "это будет рекомендуемым решением."

#~ msgid "Xgl is an additional graphical server that adds 3D desktop support."
#~ msgstr ""
#~ "Xgl - это дополнительный графический сервер, обеспечивающий поддержку "
#~ "трёхмерного рабочего стола."

#~ msgid "Compiz is the reference compositing window manager."
#~ msgstr "Compiz - это оконный менеджер с поддержкой наложения."

#~ msgid "Beryl is a fork of compiz and provides bleeding-edge features."
#~ msgstr ""
#~ "Beryl - это отделившийся от compiz проекта, предоставляющий много "
#~ "дополнительных функций."

#~ msgid "3D Desktop effects"
#~ msgstr "Эффекты трёхмерного рабочего стола"

#~ msgid "Your system does not support 3D desktop effects."
#~ msgstr ""
#~ "В  вашей системе не поддерживаются эффекты трёхмерного рабочего стола."

#~ msgid "Use %s"
#~ msgstr "Использовать %s"

#~ msgid "No 3D desktop effects"
#~ msgstr "Без эффектов трёхмерного рабочего стола"

#~ msgid "Please wait"
#~ msgstr "Подождите, пожалуйста"

#~ msgid "Bootloader installation in progress"
#~ msgstr "Выполняется установка начального загрузчика"

#~ msgid ""
#~ "LILO wants to assign a new Volume ID to drive %s.  However, changing\n"
#~ "the Volume ID of a Windows NT, 2000, or XP boot disk is a fatal Windows "
#~ "error.\n"
#~ "This caution does not apply to Windows 95 or 98, or to NT data disks.\n"
#~ "\n"
#~ "Assign a new Volume ID?"
#~ msgstr ""
#~ "LILO желает прописать новый Volume ID для диска %s.  Примите к сведению, "
#~ "что\n"
#~ "изменение Volume ID для загрузочного диска Windows NT, 2000 или XP "
#~ "фатально для Windows.\n"
#~ "Это предупреждение не актуально для Windows 95, 98 или для дисков с "
#~ "данными NT.\n"
#~ "\n"
#~ "Назначить новый Volume ID?"

#~ msgid "Installation of bootloader failed. The following error occurred:"
#~ msgstr ""
#~ "Не удалось установить начальный загрузчик. Возникла следующая ошибка:"

#~ msgid ""
#~ "You may need to change your Open Firmware boot-device to\n"
#~ " enable the bootloader.  If you do not see the bootloader prompt at\n"
#~ " reboot, hold down Command-Option-O-F at reboot and enter:\n"
#~ " setenv boot-device %s,\\\\:tbxi\n"
#~ " Then type: shut-down\n"
#~ "At your next boot you should see the bootloader prompt."
#~ msgstr ""
#~ "Возможно, вам необходимо сменить свое загрузочное устройство\n"
#~ "Open Firmware, чтобы заработал начальный загрузчик. Если вы не видите\n"
#~ "приглашения начального загрузчика при перезагрузке, нажмите и\n"
#~ "удерживайте Command-Option-O-F при перезагрузке и введите:\n"
#~ "setenv boot-device %s,\\\\:tbxi\n"
#~ "Затем введите: shut-down\n"
#~ "При следующей загрузке вы должны увидеть приглашение начального "
#~ "загрузчика."

#~ msgid ""
#~ "You decided to install the bootloader on a partition.\n"
#~ "This implies you already have a bootloader on the hard drive you boot "
#~ "(eg: System Commander).\n"
#~ "\n"
#~ "On which drive are you booting?"
#~ msgstr ""
#~ "Вы решили установить начальный загрузчик на раздел.\n"
#~ "Предполагается, что у вас уже есть начальный загрузчик на жестком диске,\n"
#~ "с которого вы загрузились (напр., System Commander).\n"
#~ "\n"
#~ "С какого диска вы загружаетесь?"

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

#~ msgid "First sector of the root partition"
#~ msgstr "Первый сектор корневого раздела"

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

#~ msgid "Skip"
#~ msgstr "Пропустить"

#~ msgid "LILO/grub Installation"
#~ msgstr "Установка LILO/grub"

#~ msgid "Where do you want to install the bootloader?"
#~ msgstr "Куда вы хотите установить начальный загрузчик?"

#~ msgid "Boot Style Configuration"
#~ msgstr "Настройка стиля загрузки"

#~ msgid "Bootloader main options"
#~ msgstr "Главные параметры начального загрузчика"

#~ msgid "Bootloader"
#~ msgstr "Начальный загрузчик"

#~ msgid "Bootloader to use"
#~ msgstr "Используемый начальный загрузчик"

#~ msgid "Boot device"
#~ msgstr "Загрузочное устройство"

#~ msgid "Main options"
#~ msgstr "Основные параметры"

#~ msgid "Delay before booting default image"
#~ msgstr "Пауза перед загрузкой образа по умолчанию"

#~ msgid "Enable ACPI"
#~ msgstr "Включить ACPI"

#~ msgid "Enable APIC"
#~ msgstr "Включить APIC"

#~ msgid "Enable Local APIC"
#~ msgstr "Включить Local APIC"

#~ msgid "Password"
#~ msgstr "Пароль"

#~ msgid "The passwords do not match"
#~ msgstr "Пароли не совпадают"

#~ msgid "Please try again"
#~ msgstr "Попробуйте ещё раз"

#~ msgid "You can not use a password with %s"
#~ msgstr "Нельзя использовать пароль с %s"

#~ msgid "Password (again)"
#~ msgstr "Пароль (еще раз)"

#~ msgid "Restrict command line options"
#~ msgstr "Ограничить параметры командной строки"

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

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

#~ msgid "Clean /tmp at each boot"
#~ msgstr "Очищать /tmp  при каждой загрузке"

#~ msgid "Precise RAM size if needed (found %d MB)"
#~ msgstr "Укажите точный объем RAM (найдено %d MB)"

#~ msgid "Give the ram size in MB"
#~ msgstr "Укажите объем RAM в MB"

#~ msgid "Init Message"
#~ msgstr "Сообщение инициализации"

#~ msgid "Open Firmware Delay"
#~ msgstr "Задержка Open Firmware"

#~ msgid "Kernel Boot Timeout"
#~ msgstr "Тайм-аут при загрузке ядра"

#~ msgid "Enable CD Boot?"
#~ msgstr "Включить загрузку с CD?"

#~ msgid "Enable OF Boot?"
#~ msgstr "Включить загрузку OF?"

#~ msgid "Default OS?"
#~ msgstr "ОС по умолчанию?"

#~ msgid "Image"
#~ msgstr "Образ"

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

#~ msgid "Append"
#~ msgstr "Дополнение"

#~ msgid "Xen append"
#~ msgstr "Дополнение Xen"

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

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

#~ msgid "Network profile"
#~ msgstr "Сетевой профиль"

#~ msgid "Label"
#~ msgstr "Метка"

#~ msgid "Default"
#~ msgstr "По умолчанию"

#~ msgid "NoVideo"
#~ msgstr "Без видео"

#~ msgid "Empty label not allowed"
#~ msgstr "Пустая метка не допускается"

#~ msgid "You must specify a kernel image"
#~ msgstr "Вы должны указать образ ядра"

#~ msgid "You must specify a root partition"
#~ msgstr "Вы должны указать корневой раздел"

#~ msgid "This label is already used"
#~ msgstr "Эта метка уже используется"

#~ msgid "Which type of entry do you want to add?"
#~ msgstr "Какой тип пункта вы хотите добавить?"

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

#~ msgid "Other OS (SunOS...)"
#~ msgstr "Другая ОС (SunOS...)"

#~ msgid "Other OS (MacOS...)"
#~ msgstr "Другая ОС (MacOS...)"

#~ msgid "Other OS (Windows...)"
#~ msgstr "Другая ОС (Windows...)"

#~ msgid ""
#~ "Here are the entries on your boot menu so far.\n"
#~ "You can create additional entries or change the existing ones."
#~ msgstr ""
#~ "На данный момент в вашем меню загрузки имеются следующие пункты.\n"
#~ "Вы можете добавить еще несколько или изменить существующие."

#~ msgid "access to X programs"
#~ msgstr "доступ к Х-программам"

#~ msgid "access to rpm tools"
#~ msgstr "доступ к инструментам rpm"

#~ msgid "allow \"su\""
#~ msgstr "разрешить \"su\""

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

#~ msgid "access to network tools"
#~ msgstr "доступ к сетевым утилитам"

#~ msgid "access to compilation tools"
#~ msgstr "доступ к утилитам компиляции"

#~ msgid "(already added %s)"
#~ msgstr "(уже добавлено %s)"

#~ msgid "Please give a user name"
#~ msgstr "Укажите имя пользователя, пожалуйста"

#~ msgid ""
#~ "The user name must contain only lower cased letters, numbers, `-' and `_'"
#~ msgstr ""
#~ "Имя пользователя должно содержать только буквы в нижнем регистре, \n"
#~ "цифры , `-' и `_'"

#~ msgid "The user name is too long"
#~ msgstr "Имя пользователя слишком длинное"

#~ msgid "This user name has already been added"
#~ msgstr "Это имя пользователя уже добавлено"

#~ msgid "User ID"
#~ msgstr "ID пользователя"

#~ msgid "Group ID"
#~ msgstr "ID группы"

#~ msgid "%s must be a number"
#~ msgstr " %s должно быть числом"

#~ msgid "%s should be above 500. Accept anyway?"
#~ msgstr "%s должно быть больше 500. Принять в любом случае?"

#~ msgid "Add user"
#~ msgstr "Добавить пользователя"

#~ msgid ""
#~ "Enter a user\n"
#~ "%s"
#~ msgstr ""
#~ "Введите пользователя\n"
#~ "%s"

#~ msgid "Done"
#~ msgstr "Готово"

#~ msgid "Accept user"
#~ msgstr "Принять"

#~ msgid "Real name"
#~ msgstr "Настоящее имя"

#~ msgid "Login name"
#~ msgstr "Login name"

#~ msgid "Shell"
#~ msgstr "Командный процессор"

#~ msgid "Icon"
#~ msgstr "Значок"

#~ msgid "Autologin"
#~ msgstr "Автоматический вход"

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

#~ msgid "Use this feature"
#~ msgstr "Использовать эту возможность"

#~ msgid "Choose the default user:"
#~ msgstr "Выберите пользователя по умолчанию:"

#~ msgid "Choose the window manager to run:"
#~ msgstr "Выберите запускаемый оконный менеджер:"

#~ msgid "License agreement"
#~ msgstr "Лицензионное соглашение"

#~ msgid "Release Notes"
#~ msgstr "Заметки о релизе"

#~ msgid "Accept"
#~ msgstr "Принять"

#~ msgid "Refuse"
#~ msgstr "Отказаться"

#~ msgid "Please choose a language to use."
#~ msgstr "Выберите используемый язык, пожалуйста."

#~ msgid "Language choice"
#~ msgstr "Выбор языка"

#~ msgid ""
#~ "Mandriva Linux can support multiple languages. Select\n"
#~ "the languages you would like to install. They will be available\n"
#~ "when your installation is complete and you restart your system."
#~ msgstr ""
#~ "Mandriva Linux может поддерживать несколько языков. Выберите\n"
#~ "языки, которые вы хотите установить. Они будут доступны, когда\n"
#~ "завершится установка и вы перезапустите свою систему."

#~ msgid "Multi languages"
#~ msgstr "Многоязычность"

#~ msgid "Old compatibility (non UTF-8) encoding"
#~ msgstr "Кодировка для обратной совместимости (не UTF-8)"

#~ msgid "All languages"
#~ msgstr "Все языки"

#~ msgid "Country / Region"
#~ msgstr "Страна / Регион"

#~ msgid "Please choose your country."
#~ msgstr "Выберите свою страну."

#~ msgid "Here is the full list of available countries"
#~ msgstr "Здесь представлен полный список имеющихся стран"

#~ msgid "Other Countries"
#~ msgstr "Другие страны"

#~ msgid "Advanced"
#~ msgstr "Дополнительно"

#~ msgid "Input method:"
#~ msgstr "Метод ввода:"

#~ msgid "None"
#~ msgstr "Отсутствует"

#~ msgid "No sharing"
#~ msgstr "Нет общего доступа"

#~ msgid "Allow all users"
#~ msgstr "Разрешить всем пользователям"

#~ msgid ""
#~ "Would you like to allow users to share some of their directories?\n"
#~ "Allowing this will permit users to simply click on \"Share\" in konqueror "
#~ "and nautilus.\n"
#~ "\n"
#~ "\"Custom\" permit a per-user granularity.\n"
#~ msgstr ""
#~ "Хотите разрешить пользователям открывать доступ к некоторым своим\n"
#~ "каталогам? Это позволит пользователям просто нажать на \"Общий доступ\"\n"
#~ "в konqueror и nautilus.\n"
#~ "\"Выборочно\" разрешит настроить доступ отдельным пользователям.\n"

#~ msgid ""
#~ "NFS: the traditional Unix file sharing system, with less support on Mac "
#~ "and Windows."
#~ msgstr ""
#~ "NFS: традиционная для Unix система раздачи файлов, имеет слабую поддержку "
#~ "в Mac и Windows."

#~ msgid ""
#~ "SMB: a file sharing system used by Windows, Mac OS X and many modern "
#~ "Linux systems."
#~ msgstr ""
#~ "SMB: система совместного использования файлов, используется в Windows, "
#~ "Mac OS X и в большинстве современных систем Linux."

#~ msgid ""
#~ "You can export using NFS or SMB. Please select which you would like to "
#~ "use."
#~ msgstr ""
#~ "Вы можете экспортировать при помощи NFS или SMB. Пожалуйста, выберите, "
#~ "который из них вы желаете использовать."

#~ msgid "Launch userdrake"
#~ msgstr "Запустить userdrake"

#~ msgid "Close"
#~ msgstr "Закрыть"

#~ msgid ""
#~ "The per-user sharing uses the group \"fileshare\". \n"
#~ "You can use userdrake to add a user to this group."
#~ msgstr ""
#~ "Общий доступ каждого пользователя использует группу \"fileshare\". \n"
#~ "Вы можете использовать userdrake для добавления пользователей в эту "
#~ "группу."

#~ msgid "Please log out and then use Ctrl-Alt-BackSpace"
#~ msgstr ""
#~ "Пожалуйста, выйдите из системы, а затем используйте Ctrl-Alt-BackSpace"

#~ msgid "You need to log out and back in again for changes to take effect"
#~ msgstr "Вам нужно выйти и зайти снова чтобы изменения вступили в силу"

#~ msgid "Timezone"
#~ msgstr "Часовой пояс"

#~ msgid "Which is your timezone?"
#~ msgstr "Какой у вас часовой пояс?"

#~ msgid "Date, Clock & Time Zone Settings"
#~ msgstr "Настройка даты, времени и часового пояса"

#~ msgid "What is the best time?"
#~ msgstr "Какое наилучшее время?"

#~ msgid "%s (hardware clock set to UTC)"
#~ msgstr "%s (аппаратные часы выставлены по UTC)"

#~ msgid "%s (hardware clock set to local time)"
#~ msgstr "%s (Аппаратные часы выставлены по местному времени)"

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

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

#~ msgid "Local file"
#~ msgstr "Локальный файл"

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

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

#~ msgid "Smart Card"
#~ msgstr "Смарт-карта"

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

#~ msgid "Active Directory with SFU"
#~ msgstr "Active Directory с SFU"

#~ msgid "Active Directory with Winbind"
#~ msgstr "Active Directory с Winbind"

#~ msgid "Local file:"
#~ msgstr "Локальный файл:"

#~ msgid ""
#~ "Use local for all authentication and information user tell in local file"
#~ msgstr ""
#~ "Использовать локальную авторизацию и информацию пользователя из "
#~ "локального файла"

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

#~ msgid ""
#~ "Tells your computer to use LDAP for some or all authentication. LDAP "
#~ "consolidates certain types of information within your organization."
#~ msgstr ""
#~ "Сообщает вашему компьютеру, что он должен использовать LDAP для всех или "
#~ "некоторых авторизаций. LDAP объединяет определенные типы информации "
#~ "внутри вашей организации."

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

#~ msgid ""
#~ "Allows you to run a group of computers in the same Network Information "
#~ "Service domain with a common password and group file."
#~ msgstr ""
#~ "Позволяет группе компьютеров работать в одинаковом домене Network "
#~ "Information Service с общими файлами паролей и групп."

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

#~ msgid ""
#~ "Winbind allows the system to retrieve information and authenticate users "
#~ "in a Windows domain."
#~ msgstr ""
#~ "Winbind позволяет системе получать информацию и аутентифицировать "
#~ "пользователей в домене Windows."

#~ msgid "Active Directory with SFU:"
#~ msgstr "Active Directory с SFU:"

#~ msgid ""
#~ "With Kerberos and Ldap for authentication in Active Directory Server "
#~ msgstr "С Kerberos и Ldap для аутентификации на сервере с Active Directory"

#~ msgid "Active Directory with Winbind:"
#~ msgstr "Active Directory с Winbind:"

#~ msgid ""
#~ "Winbind allows the system to authenticate users in a Windows Active "
#~ "Directory Server."
#~ msgstr ""
#~ "Winbind позволяет системе аутентифицировать пользователей на сервере "
#~ "Windows с Active Directory."

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

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

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

#~ msgid "simple"
#~ msgstr "простой"

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

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

#~ msgid "security layout (SASL/Kerberos)"
#~ msgstr "слой безопасности (SASL/Kerberos)"

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

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

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

#~ msgid "LDAP users database"
#~ msgstr "База данных пользователей LDAP"

#~ msgid "Use Anonymous BIND "
#~ msgstr "Использовать анонимный BIND "

#~ msgid "LDAP user allowed to browse the Active Directory"
#~ msgstr "Пользователю LDAP разрешено просматривать Active Directory"

#~ msgid "Password for user"
#~ msgstr "Пароль для пользователя"

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

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

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

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

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

#~ msgid "Active Directory Realm "
#~ msgstr "Active Directory Realm "

#~ msgid "Domain Admin User Name"
#~ msgstr "Имя пользователя - администратора домена"

#~ msgid "Domain Admin Password"
#~ msgstr "Пароль администратора домена"

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

#~ msgid "Set administrator (root) password"
#~ msgstr "Установка пароля администратора (root)"

#~ msgid "Authentication method"
#~ msgstr "Метод аутентификации"

#~ msgid "No password"
#~ msgstr "Без пароля"

#~ msgid "This password is too short (it must be at least %d characters long)"
#~ msgstr ""
#~ "Этот пароль слишком прост (его длина должна быть не менее %d символов)"

#~ msgid "Can not use broadcast with no NIS domain"
#~ msgstr "Невозможно использовать широковещание без домена NIS"

#~ msgid ""
#~ "Welcome to the operating system chooser!\n"
#~ "\n"
#~ "Choose an operating system from the list above or\n"
#~ "wait for default boot.\n"
#~ "\n"
#~ msgstr ""
#~ "Welcome to the operating system chooser!\n"
#~ "\n"
#~ "Choose an operating system from the list above or\n"
#~ "wait for default boot.\n"
#~ "\n"

#~ msgid "LILO with text menu"
#~ msgstr "LILO с текстовым меню"

#~ msgid "GRUB with graphical menu"
#~ msgstr "GRUB с графическим меню"

#~ msgid "GRUB with text menu"
#~ msgstr "GRUB с текстовым меню"

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

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

#~ msgid "not enough room in /boot"
#~ msgstr "не хватает места в /boot"

#~ msgid "You can not install the bootloader on a %s partition\n"
#~ msgstr "Начальный загрузчик нельзя установить на раздел %s\n"

#~ msgid ""
#~ "Your bootloader configuration must be updated because partition has been "
#~ "renumbered"
#~ msgstr ""
#~ "Так как был изменён номера раздела, необходимо обновить конфигурацию "
#~ "начального загрузчика"

#~ msgid ""
#~ "The bootloader can not be installed correctly. You have to boot rescue "
#~ "and choose \"%s\""
#~ msgstr ""
#~ "Начальный загрузчик не может быть корректно установлен. Вам необходимо "
#~ "загрузиться в режиме rescue и выбрать \"%s\""

#~ msgid "Re-install Boot Loader"
#~ msgstr "Переустановка начального загрузчика"

#~ msgid "B"
#~ msgstr "Б"

#~ msgid "KB"
#~ msgstr "КБ"

#~ msgid "MB"
#~ msgstr "МБ"

#~ msgid "GB"
#~ msgstr "ГБ"

#~ msgid "TB"
#~ msgstr "ТБ"

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

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

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

#~ msgid "command %s missing"
#~ msgstr "отсутствует команда %s"

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

#~ msgid "New"
#~ msgstr "Новая"

#~ msgid "Unmount"
#~ msgstr "Размонтировать"

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

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

#~ msgid "Error"
#~ msgstr "Ошибка"

#~ msgid "Please enter the WebDAV server URL"
#~ msgstr "Пожалуйста, введите URL сервера WebDAV"

#~ msgid "The URL must begin with http:// or https://"
#~ msgstr "URL должен начинаться с  http:// или https://"

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

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

#~ msgid "Options: %s"
#~ msgstr "Параметры: %s"

#~ msgid "Partitioning"
#~ msgstr "Разметка диска"

#~ msgid "Read carefully!"
#~ msgstr "Прочтите внимательно!"

#~ msgid "Please make a backup of your data first"
#~ msgstr "Пожалуйста, сделайте резервную копию данных сначала"

#~ msgid "Exit"
#~ msgstr "Выход"

#~ msgid "Continue"
#~ msgstr "Продолжить"

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

#~ msgid "Choose action"
#~ msgstr "Выберите действие"

#~ msgid ""
#~ "You have one big Microsoft Windows partition.\n"
#~ "I suggest you first resize that partition\n"
#~ "(click on it, then click on \"Resize\")"
#~ msgstr ""
#~ "У вас есть один большой раздел MS Windows.\n"
#~ "Я предлагаю вам сначала изменить размер раздела\n"
#~ "(выберите его, а затем нажмите \"Изменить размер\")"

#~ msgid "Please click on a partition"
#~ msgstr "Пожалуйста, щелкните на раздел"

#~ msgid "Details"
#~ msgstr "Подробности"

#~ msgid "No hard drives found"
#~ msgstr "Жесткие диски не найдены"

#~ msgid "Unknown"
#~ msgstr "Неизвестный"

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

#~ msgid "Journalised FS"
#~ msgstr "Журналируемая ФС"

#~ msgid "Swap"
#~ msgstr "Своп"

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

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

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

#~ msgid "Empty"
#~ msgstr "Пусто"

#~ msgid "Filesystem types:"
#~ msgstr "Типы файловых систем:"

#~ msgid "This partition is already empty"
#~ msgstr "Этот раздела уже пуст"

#~ msgid "Use ``Unmount'' first"
#~ msgstr "Используйте сначала ``Размонтировать''"

#~ msgid "Use ``%s'' instead"
#~ msgstr "Вместо этого используйте ``%s'' "

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

#~ msgid "Choose another partition"
#~ msgstr "Выберите другой раздел"

#~ msgid "Choose a partition"
#~ msgstr "Выберите раздел"

#~ msgid "Undo"
#~ msgstr "Отменить действие"

#~ msgid "Toggle to normal mode"
#~ msgstr "Переключиться в нормальный режим"

#~ msgid "Toggle to expert mode"
#~ msgstr "Переключиться в режим эксперта"

#~ msgid "Confirmation"
#~ msgstr "Подтверждение"

#~ msgid "Continue anyway?"
#~ msgstr "Все-таки продолжить?"

#~ msgid "Quit without saving"
#~ msgstr "Выйти без сохранения"

#~ msgid "Quit without writing the partition table?"
#~ msgstr "Выйти без записи таблицы разделов?"

#~ msgid "Do you want to save /etc/fstab modifications"
#~ msgstr "Желаете сохранить изменения /etc/fstab"

#~ msgid ""
#~ "You need to reboot for the partition table modifications to take place"
#~ msgstr ""
#~ "Вам нужно перезагрузиться, чтобы изменения таблицы разделов вступили в "
#~ "силу"

#~ msgid ""
#~ "You should format partition %s.\n"
#~ "Otherwise no entry for mount point %s will be written in fstab.\n"
#~ "Quit anyway?"
#~ msgstr ""
#~ "Вам следует отформатировать раздел %s.\n"
#~ "Иначе в fstab не будет записи о точке монтирования %s .\n"
#~ "Выйти в любом случае?"

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

#~ msgid "Auto allocate"
#~ msgstr "Разместить автоматически"

#~ msgid "More"
#~ msgstr "Больше"

#~ msgid "Hard drive information"
#~ msgstr "Информация о жестком диске"

#~ msgid "All primary partitions are used"
#~ msgstr "Все первичные разделы уже использованы"

#~ msgid "I can not add any more partitions"
#~ msgstr "Добавление новых разделов невозможно"

#~ msgid ""
#~ "To have more partitions, please delete one to be able to create an "
#~ "extended partition"
#~ msgstr ""
#~ "Чтобы получить больше разделов, удалите один, чтобы получить возможность "
#~ "создать расширенный раздел"

#~ msgid "No supermount"
#~ msgstr "Без супермонтирования"

#~ msgid "Supermount"
#~ msgstr "С супермонтированием"

#~ msgid "Supermount except for CDROM drives"
#~ msgstr "Супермонтирование за исключением приводов CDROM"

#~ msgid "Save partition table"
#~ msgstr "Сохранить таблицу разделов"

#~ msgid "Restore partition table"
#~ msgstr "Восстановить таблицу разделов"

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

#~ msgid "Reload partition table"
#~ msgstr "Перезагрузить таблицу разделов"

#~ msgid "Removable media automounting"
#~ msgstr "Автомонтирование съёмных носителей"

#~ msgid "Select file"
#~ msgstr "Выберите файл"

#~ msgid ""
#~ "The backup partition table has not the same size\n"
#~ "Still continue?"
#~ msgstr ""
#~ "Резервная таблица разделов диска имеет другой размер\n"
#~ "Все-таки продолжить?"

#~ msgid "Trying to rescue partition table"
#~ msgstr "Выполняется попытка спасти таблицу разделов"

#~ msgid "Detailed information"
#~ msgstr "Подробная информация"

#~ msgid "Resize"
#~ msgstr "Изменить размер"

#~ msgid "Format"
#~ msgstr "Форматировать"

#~ msgid "Add to RAID"
#~ msgstr "Добавить в RAID"

#~ msgid "Add to LVM"
#~ msgstr "Добавить в LVM"

#~ msgid "Delete"
#~ msgstr "Удалить"

#~ msgid "Remove from RAID"
#~ msgstr "Удалить из RAID"

#~ msgid "Remove from LVM"
#~ msgstr "Удалить из LVM"

#~ msgid "Modify RAID"
#~ msgstr "Изменить RAID"

#~ msgid "Use for loopback"
#~ msgstr "Использовать для loopback"

#~ msgid "Create"
#~ msgstr "Создать"

#~ msgid "Create a new partition"
#~ msgstr "Создать новый раздел"

#~ msgid "Start sector: "
#~ msgstr "Начальный сектор: "

#~ msgid "Size in MB: "
#~ msgstr "Размер в MB: "

#~ msgid "Filesystem type: "
#~ msgstr "Тип файловой системы: "

#~ msgid "Preference: "
#~ msgstr "Предпочтение: "

#~ msgid "Logical volume name "
#~ msgstr "Имя логического раздела"

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

#~ msgid "Remove the loopback file?"
#~ msgstr "Удалить файл loopback?"

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

#~ msgid "Change partition type"
#~ msgstr "Изменить тип раздела"

#~ msgid "Which filesystem do you want?"
#~ msgstr "Какую файловую систему желаете?"

#~ msgid "Switching from ext2 to ext3"
#~ msgstr "переключение с ext2 на ext3"

#~ msgid "Which volume label?"
#~ msgstr "Метка тома?"

#~ msgid "Label:"
#~ msgstr "Метка:"

#~ msgid "Where do you want to mount the loopback file %s?"
#~ msgstr "Куда вы хотите примонтировать файл loopback %s?"

#~ msgid "Where do you want to mount device %s?"
#~ msgstr "Куда вы хотите примонтировать устройство %s?"

#~ msgid ""
#~ "Can not unset mount point as this partition is used for loop back.\n"
#~ "Remove the loopback first"
#~ msgstr ""
#~ "Невозможно снять точку монтирования, поскольку этот раздел используется "
#~ "для loop back. Удалите сначала loopback"

#~ msgid "Where do you want to mount %s?"
#~ msgstr "Куда вы хотите примонтировать %s?"

#~ msgid "Resizing"
#~ msgstr "Изменение размера"

#~ msgid "Computing FAT filesystem bounds"
#~ msgstr "Вычисляются границы файловой системы FAT"

#~ msgid "This partition is not resizeable"
#~ msgstr "Размер этого раздела нельзя изменить"

#~ msgid "All data on this partition should be backed-up"
#~ msgstr "Для всех данных в этом разделе должна быть сделана резервная копия"

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

#~ msgid "Choose the new size"
#~ msgstr "Выбрать новый размер"

#~ msgid "New size in MB: "
#~ msgstr "Новый размер в MB: "

#~ msgid "Minimum size: %s MB"
#~ msgstr "Минимальный размер: %s МБ"

#~ msgid "Maximum size: %s MB"
#~ msgstr "Максимальный размер: %s МБ"

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

#~ msgid "Choose an existing RAID to add to"
#~ msgstr "Выберите существующий RAID для добавления"

#~ msgid "new"
#~ msgstr "новый"

#~ msgid "Choose an existing LVM to add to"
#~ msgstr "Выберите существующий LVM для добавления"

#~ msgid "LVM name?"
#~ msgstr "Имя LVM?"

#~ msgid ""
#~ "Physical volume %s is still in use.\n"
#~ "Do you want to move used physical extents on this volume to other volumes?"
#~ msgstr ""
#~ "Физический раздел %s используется.\n"
#~ "Желаете ли вы переместить используемые физические области на этом разделе "
#~ "на другие разделы?"

#~ msgid "Moving physical extents"
#~ msgstr "Перемещение физических расширений"

#~ msgid "This partition can not be used for loopback"
#~ msgstr "Этот раздел не может быть использован для loopback"

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

#~ msgid "Loopback file name: "
#~ msgstr "Имя файла loopback: "

#~ msgid "Give a file name"
#~ msgstr "Укажите имя файла"

#~ msgid "File is already used by another loopback, choose another one"
#~ msgstr "Файл уже используется другим loopback, выберите другой"

#~ msgid "File already exists. Use it?"
#~ msgstr "Файл уже существует. Использовать его?"

#~ msgid "Mount options"
#~ msgstr "Параметры монтирования"

#~ msgid "Various"
#~ msgstr "Различные"

#~ msgid "device"
#~ msgstr "устройство"

#~ msgid "level"
#~ msgstr "уровень"

#~ msgid "chunk size in KiB"
#~ msgstr "размер куска в KiB"

#~ msgid "Be careful: this operation is dangerous."
#~ msgstr "Осторожно: эта операция опасна."

#~ msgid "What type of partitioning?"
#~ msgstr "Какой тип разбиения на разделы?"

#~ msgid "You'll need to reboot before the modification can take place"
#~ msgstr "Вам необходимо перегрузиться, чтобы изменения вступили в силу"

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

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

#~ msgid "Check bad blocks?"
#~ msgstr "Проверить плохие блоки?"

#~ msgid "Move files to the new partition"
#~ msgstr "Переместить файлы на новый раздел"

#~ msgid "Hide files"
#~ msgstr "Скрыть файлы"

#~ msgid ""
#~ "Directory %s already contains data\n"
#~ "(%s)\n"
#~ "\n"
#~ "You can either choose to move the files into the partition that will be "
#~ "mounted there or leave them where they are (which results in hiding them "
#~ "by the contents of the mounted partition)"
#~ msgstr ""
#~ "Каталог %s уже содержит данные\n"
#~ "(%s)\n"
#~ "\n"
#~ "Вы можете или переместить файлы на раздел, который потом будет "
#~ "примонтирован в этот каталог, или оставить оставить их нетронутыми (в "
#~ "результате чего они будут скрыты примонтированным каталогом)."

#~ msgid "Moving files to the new partition"
#~ msgstr "Перемещение файлов в новый раздел"

#~ msgid "Copying %s"
#~ msgstr "Копируется %s"

#~ msgid "Removing %s"
#~ msgstr "Удаляется %s"

#~ msgid "partition %s is now known as %s"
#~ msgstr "раздел %s теперь известен как %s"

#~ msgid "Partitions have been renumbered: "
#~ msgstr "У Для разделов были изменены номера: "

#~ msgid "Device: "
#~ msgstr "Устройство: "

#~ msgid "Volume label: "
#~ msgstr "Метка тома: "

#~ msgid "DOS drive letter: %s (just a guess)\n"
#~ msgstr "буква диска DOS: %s (просто предположение)\n"

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

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

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

#~ msgid "Size: %s"
#~ msgstr "Размер: %s"

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

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

#~ msgid "Number of logical extents: %d\n"
#~ msgstr "Количество логических областей: %d\n"

#~ msgid "Formatted\n"
#~ msgstr "Отформатирован\n"

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

#~ msgid "Mounted\n"
#~ msgstr "Примонтирован\n"

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

#~ msgid ""
#~ "Loopback file(s):\n"
#~ "   %s\n"
#~ msgstr ""
#~ "Файл(ы) loopback:\n"
#~ "   %s\n"

#~ msgid ""
#~ "Partition booted by default\n"
#~ "    (for MS-DOS boot, not for lilo)\n"
#~ msgstr ""
#~ "Загрузочный раздел по умолчанию\n"
#~ "    (для загрузки MS-DOS, не для lilo)\n"

#~ msgid "Level %s\n"
#~ msgstr "Уровень %s\n"

#~ msgid "Chunk size %d KiB\n"
#~ msgstr "Размер chunk %d KiB\n"

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

#~ msgid "Loopback file name: %s"
#~ msgstr "Имя файла loopback: %s"

#~ msgid ""
#~ "\n"
#~ "Chances are, this partition is\n"
#~ "a Driver partition. You should\n"
#~ "probably leave it alone.\n"
#~ msgstr ""
#~ "\n"
#~ "Есть вероятность, что этот раздел\n"
#~ "является разделом драйвера.\n"
#~ "Лучше вам его не трогать.\n"

#~ msgid ""
#~ "\n"
#~ "This special Bootstrap\n"
#~ "partition is for\n"
#~ "dual-booting your system.\n"
#~ msgstr ""
#~ "\n"
#~ "Этот специальный раздел\n"
#~ "Bootstrap предназначен\n"
#~ "для двойной загрузки вашей системы.\n"

#~ msgid "Read-only"
#~ msgstr "Только для чтения"

#~ msgid "Size: %s\n"
#~ msgstr "Размер: %s\n"

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

#~ msgid "Info: "
#~ msgstr "Информация: "

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

#~ msgid "Partition table type: %s\n"
#~ msgstr "Тип таблицы разделов: %s\n"

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

#~ msgid "Filesystem encryption key"
#~ msgstr "Ключ шифрования файловой системы: "

#~ msgid "Choose your filesystem encryption key"
#~ msgstr "Выберите ключ шифрования вашей файловой системы"

#~ msgid ""
#~ "This encryption key is too simple (must be at least %d characters long)"
#~ msgstr ""
#~ "Этот ключ шифрования слишком прост (должен быть длиной по крайней мере в %"
#~ "d символов)"

#~ msgid "The encryption keys do not match"
#~ msgstr "Ключи шифрования не совпадают"

#~ msgid "Encryption key"
#~ msgstr "Ключ шифрования"

#~ msgid "Encryption key (again)"
#~ msgstr "Ключ шифрования (еще раз)"

#~ msgid "Encryption algorithm"
#~ msgstr "Алгоритм шифрования"

#~ msgid "Change type"
#~ msgstr "Изменить тип"

#~ msgid "Can not login using username %s (bad password?)"
#~ msgstr "Невозможно войти под пользователем %s (неверный пароль?)"

#~ msgid "Domain Authentication Required"
#~ msgstr "Требуется аутентификация домена"

#~ msgid "Which username"
#~ msgstr "Какое имя пользователя"

#~ msgid "Another one"
#~ msgstr "Еще один"

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

#~ msgid "Username"
#~ msgstr "Имя пользователя"

#~ msgid "Search servers"
#~ msgstr "Поиск серверов"

#~ msgid "Search new servers"
#~ msgstr "Поиск новых серверов"

#~ msgid "The package %s needs to be installed. Do you want to install it?"
#~ msgstr "Необходимо установить пакет %s. Хотите установить его?"

#~ msgid "Could not install the %s package!"
#~ msgstr "Невозможно установить пакет %s !"

#~ msgid "Mandatory package %s is missing"
#~ msgstr "Обязательный пакет %s отсутствует"

#~ msgid "The following packages need to be installed:\n"
#~ msgstr "Следующие пакеты должны быть установлены:\n"

#~ msgid "Installing packages..."
#~ msgstr "Устанавливаются пакеты..."

#~ msgid "Removing packages..."
#~ msgstr "Удаляются пакеты..."

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

#~ msgid "You must have a FAT partition mounted in /boot/efi"
#~ msgstr "У вас должен быть раздел FAT, примонтированный на /boot/efi"

#~ msgid "Formatting partition %s"
#~ msgstr "Форматируется раздел %s"

#~ msgid "Creating and formatting file %s"
#~ msgstr "Создается и форматируется файл %s"

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

#~ msgid "%s formatting of %s failed"
#~ msgstr "%s форматирование %s завершилось неудачно"

#~ msgid "Circular mounts %s\n"
#~ msgstr "Замыкающие монтирования %s\n"

#~ msgid "Mounting partition %s"
#~ msgstr "Монтируется раздел %s"

#~ msgid "mounting partition %s in directory %s failed"
#~ msgstr "монтирование раздела %s в каталог %s завершилось неудачно"

#~ msgid "Checking %s"
#~ msgstr "Проверяется %s"

#~ msgid "error unmounting %s: %s"
#~ msgstr "ошибка размонтирования %s: %s"

#~ msgid "Enabling swap partition %s"
#~ msgstr "Включается раздел swap %s"

#~ msgid "Use an encrypted file system"
#~ msgstr "Использовать шифрованную файловую систему"

#~ msgid "Enable group disk quota accounting and optionally enforce limits"
#~ msgstr ""
#~ "Разрешить подсчет дисковых квот для групп и опционально установку лимитов"

#~ msgid ""
#~ "Do not update inode access times on this file system\n"
#~ "(e.g, for faster access on the news spool to speed up news servers)."
#~ msgstr ""
#~ "Не обновлять время доступа к inode на этой файловой системе\n"
#~ "(нужно для более быстрого доступа к спулу новостей для ускорения работы "
#~ "серверов новостей)."

#~ msgid ""
#~ "Can only be mounted explicitly (i.e.,\n"
#~ "the -a option will not cause the file system to be mounted)."
#~ msgstr ""
#~ "Может быть примонтировано только явным образом (то есть,\n"
#~ "опция -a  не приведет к монтированию файловой системы)."

#~ msgid ""
#~ "Do not interpret character or block special devices on the file system."
#~ msgstr ""
#~ "Не интерпретировать символьные или специальные блочные устройства в "
#~ "файловой системе."

#~ msgid ""
#~ "Do not allow execution of any binaries on the mounted\n"
#~ "file system. This option might be useful for a server that has file "
#~ "systems\n"
#~ "containing binaries for architectures other than its own."
#~ msgstr ""
#~ "Не позволять выполнение любых бинарников на примонтированной\n"
#~ "файловой системе. Эта опция может быть полезна для серверов,\n"
#~ "которые имеют файловые системы, содержащие бинарники для архитектур,\n"
#~ "отличных от их собственной."

#~ msgid ""
#~ "Do not allow set-user-identifier or set-group-identifier\n"
#~ "bits to take effect. (This seems safe, but is in fact rather unsafe if "
#~ "you\n"
#~ "have suidperl(1) installed.)"
#~ msgstr ""
#~ "Не разрешать битам set-user-identifier или set-group-identifier\n"
#~ "вступать в силу. (Это вроде бы безопасно, но на деле будет более "
#~ "безопасно \n"
#~ "если у вас установлен suidperl(1).)"

#~ msgid "Mount the file system read-only."
#~ msgstr "Монтировать файловую систему в режиме только-для-чтения."

#~ msgid "All I/O to the file system should be done synchronously."
#~ msgstr "Все I/O для файловой системы должны быть выполнены синхронно."

#~ msgid "Allow every user to mount and umount the file system."
#~ msgstr ""
#~ "Разрешить всем пользователям монтировать и размонтировать файловую "
#~ "систему."

#~ msgid "Allow an ordinary user to mount the file system."
#~ msgstr "Разрешить обычному пользователям монтировать файловую систему."

#~ msgid "Enable user disk quota accounting, and optionally enforce limits"
#~ msgstr ""
#~ "Включить учёт дисковых квот для пользователей и, опционально, установку "
#~ "лимитов."

#~ msgid "Support \"user.\" extended attributes"
#~ msgstr "Поддержка расширенных атрибутов \"user.\""

#~ msgid "Give write access to ordinary users"
#~ msgstr "Разрешить запись обычным пользователям."

#~ msgid "Give read-only access to ordinary users"
#~ msgstr "Разрешить доступ только-на-чтение обычным пользователям."

#~ msgid "Duplicate mount point %s"
#~ msgstr "Дублирование точки монтирования %s"

#~ msgid "No partition available"
#~ msgstr "Нет доступных разделов"

#~ msgid "Scanning partitions to find mount points"
#~ msgstr "Сканируются разделы на наличие точек монтирования"

#~ msgid "Choose the mount points"
#~ msgstr "Выберите точки монтирования"

#~ msgid "Choose the partitions you want to format"
#~ msgstr "Выберите разделы, которые вы хотите отформатировать"

#~ msgid ""
#~ "Failed to check filesystem %s. Do you want to repair the errors? (beware, "
#~ "you can lose data)"
#~ msgstr ""
#~ "Проверка файловой системы %s завершилась неудачей. Хотите исправить "
#~ "ошибки (осторожно, вы можете потерять данные)?"

#~ msgid "Not enough swap space to fulfill installation, please add some"
#~ msgstr ""
#~ "Не хватает swap-пространства для завершения установки, пожалуйста, "
#~ "увеличьте его немного"

#~ msgid ""
#~ "You must have a root partition.\n"
#~ "For this, create a partition (or click on an existing one).\n"
#~ "Then choose action ``Mount point'' and set it to `/'"
#~ msgstr ""
#~ "У вас должен быть корневой раздел.\n"
#~ "Для этого создайте раздел (или выберите уже существующий).\n"
#~ "Затем выберите действие ``Точка монтирования'' и установите ее в `/'"

#~ msgid ""
#~ "You do not have a swap partition.\n"
#~ "\n"
#~ "Continue anyway?"
#~ msgstr ""
#~ "У вас нет раздела swap\n"
#~ "\n"
#~ "Желаете продолжить?"

#~ msgid "Use free space"
#~ msgstr "Использовать свободное место"

#~ msgid "Not enough free space to allocate new partitions"
#~ msgstr "Недостаточно свободного места для размещения новых разделов"

#~ msgid "Use existing partitions"
#~ msgstr "Использовать существующие разделы"

#~ msgid "There is no existing partition to use"
#~ msgstr "Нет существующих для использования разделов"

#~ msgid "Use the Microsoft Windows® partition for loopback"
#~ msgstr "Использовать раздел Microsoft Windows® для loopback"

#~ msgid "Which partition do you want to use for Linux4Win?"
#~ msgstr "Какой раздел вы хотите использовать для Linux4Win?"

#~ msgid "Choose the sizes"
#~ msgstr "Выберите размеры"

#~ msgid "Root partition size in MB: "
#~ msgstr "Размер корневого раздела в MB: "

#~ msgid "Swap partition size in MB: "
#~ msgstr "Размер раздела swap в MB: "

#~ msgid ""
#~ "There is no FAT partition to use as loopback (or not enough space left)"
#~ msgstr ""
#~ "Отсутствует раздел FAT для использования в качестве loopback (или не "
#~ "хватает места)"

#~ msgid "Use the free space on the Microsoft Windows® partition"
#~ msgstr "Использовать свободное место на разделе Windows"

#~ msgid "Which partition do you want to resize?"
#~ msgstr "Размер какого из разделов вы хотите изменить?"

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

#~ msgid "Computing the size of the Microsoft Windows® partition"
#~ msgstr "Вычисляется размер раздела Microsoft Windows®"

#~ msgid ""
#~ "Your Microsoft Windows® partition is too fragmented. Please reboot your "
#~ "computer under Microsoft Windows®, run the ``defrag'' utility, then "
#~ "restart the Mandriva Linux installation."
#~ msgstr ""
#~ "Ваш раздел Microsoft Windows® слишком фрагментирован. Пожалуйста, "
#~ "перезагрузите свой компьютер под Microsoft Windows®, запустите утилиту "
#~ "``defrag'', а затем повторно запустите установку Mandriva Linux."

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

#~ msgid "Next"
#~ msgstr "Далее"

#~ msgid ""
#~ "Which size do you want to keep for Microsoft Windows® on partition %s?"
#~ msgstr "Какой объём оставить для раздела %s с Microsoft Windows®?"

#~ msgid "Size"
#~ msgstr "Размер"

#~ msgid "Resizing Microsoft Windows® partition"
#~ msgstr "Изменяется размер раздела Microsoft Windows®"

#~ msgid "FAT resizing failed: %s"
#~ msgstr "Изменение размера FAT завершилось неудачно: %s"

#~ msgid "There is no FAT partition to resize (or not enough space left)"
#~ msgstr "Отсутствует раздел FAT для изменения размера (или не хватает места)"

#~ msgid "Remove Microsoft Windows®"
#~ msgstr "Удалить Microsoft Windows®"

#~ msgid "Erase and use entire disk"
#~ msgstr "Очистить и использовать весь диск"

#~ msgid ""
#~ "You have more than one hard drive, which one do you install linux on?"
#~ msgstr ""
#~ "У вас есть более одного жёсткого диска. На какой из них вы хотите "
#~ "установить Linux?"

#~ msgid "ALL existing partitions and their data will be lost on drive %s"
#~ msgstr "ВСЕ существующие разделы и данные на них будут потеряны на диске %s"

#~ msgid "Custom disk partitioning"
#~ msgstr "Ручная разметка диска"

#~ msgid "Use fdisk"
#~ msgstr "Используйте fdisk"

#~ msgid ""
#~ "You can now partition %s.\n"
#~ "When you are done, do not forget to save using `w'"
#~ msgstr ""
#~ "Теперь вы можете разметить %s.\n"
#~ "После завершения не забудьте сохранить при помощи `w'"

#~ msgid "I can not find any room for installing"
#~ msgstr "Вообще не могу найти места для установки"

#~ msgid "The DrakX Partitioning wizard found the following solutions:"
#~ msgstr "Мастер Разметки диска DrakX нашел следующие решения:"

#~ msgid "Partitioning failed: %s"
#~ msgstr "Разметка на разделы завершилась неудачно: %s"

#~ msgid "You can not use JFS for partitions smaller than 16MB"
#~ msgstr "Вы не можете использовать JFS на разделах размером менее 16MB"

#~ msgid "You can not use ReiserFS for partitions smaller than 32MB"
#~ msgstr "Вы не можете использовать ReiserFS на разделах менее 32MB"

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

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

#~ msgid "BIOS software RAID detected on disks %s. Activate it?"
#~ msgstr ""
#~ "На дисках %s обнаружен программный (BIOS) RAID-массив. Включить его?"

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

#~ msgid "Mount points must begin with a leading /"
#~ msgstr "Точка монтирования должна начинаться с /"

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

#~ msgid "There is already a partition with mount point %s\n"
#~ msgstr "Уже есть раздел с точкой монтирования %s\n"

#~ msgid ""
#~ "You've selected a software RAID partition as root (/).\n"
#~ "No bootloader is able to handle this without a /boot partition.\n"
#~ "Please be sure to add a /boot partition"
#~ msgstr ""
#~ "Вы выбрали программный раздел RAID в качестве корневого (/).\n"
#~ "Никакой загрузчик не в состоянии управлять им без раздела /boot.\n"
#~ "Пожалуйста, убедитесь, что раздел /boot добавлен"

#~ msgid ""
#~ "You can not use the LVM Logical Volume for mount point %s since it spans "
#~ "physical volumes"
#~ msgstr ""
#~ "Вы не можете использовать логический том LVM для точки монтирования %s, "
#~ "поскольку он распределён по физическим разделам"

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

#~ msgid "This directory should remain within the root filesystem"
#~ msgstr "Этот каталог должен оставаться в пределах корневой файловой системы"

#~ msgid ""
#~ "You need a true filesystem (ext2/ext3, reiserfs, xfs, or jfs) for this "
#~ "mount point\n"
#~ msgstr ""
#~ "Для этой точки монтирования требуется реальная файловая система\n"
#~ "(ext2/ext3, reiserfs, xfs или jfs)\n"

#~ msgid "You can not use an encrypted file system for mount point %s"
#~ msgstr ""
#~ "Вы не можете использовать зашифрованную файловую систему для точки "
#~ "монтирования %s"

#~ msgid "Not enough free space for auto-allocating"
#~ msgstr "Недостаточно свободного места для автоматического распределения"

#~ msgid "Nothing to do"
#~ msgstr "Нечего выполнять"

#~ msgid "Floppy"
#~ msgstr "Дискета"

#~ msgid "Zip"
#~ msgstr "Zip"

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

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

#~ msgid "CD/DVD burners"
#~ msgstr "Пишущие CD/DVD"

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

#~ msgid "Tape"
#~ msgstr "Магнитная лента"

#~ msgid "AGP controllers"
#~ msgstr "Контроллеры AGP"

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

#~ msgid "DVB card"
#~ msgstr "DVB-карта"

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

#~ msgid "Other MultiMedia devices"
#~ msgstr "Другие устройства мультимедиа"

#~ msgid "Soundcard"
#~ msgstr "Звуковая карта"

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

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

#~ msgid "ISDN adapters"
#~ msgstr "Адаптеры ISDN"

#~ msgid "USB sound devices"
#~ msgstr "USB звуковые устройства"

#~ msgid "Radio cards"
#~ msgstr "Радио-карты"

#~ msgid "ATM network cards"
#~ msgstr "ATM сетевые карты"

#~ msgid "WAN network cards"
#~ msgstr "WAN сетевые карты"

#~ msgid "Bluetooth devices"
#~ msgstr "Устройства Bluetooth"

#~ msgid "Ethernetcard"
#~ msgstr "Карта ethernet"

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

#~ msgid "ADSL adapters"
#~ msgstr "Адаптеры ADSL"

#~ msgid "Memory"
#~ msgstr "Память"

#~ msgid "Printer"
#~ msgstr "Принтер"

#~ msgid "Game port controllers"
#~ msgstr "Контроллеры игровых портов"

#~ msgid "Joystick"
#~ msgstr "Джойстик"

#~ msgid "SATA controllers"
#~ msgstr "Контроллеры SATA"

#~ msgid "RAID controllers"
#~ msgstr "Контроллеры RAID"

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

#~ msgid "USB Mass Storage Devices"
#~ msgstr "Устройства хранения данных на USB"

#~ msgid "Firewire controllers"
#~ msgstr "Контроллеры Firewire"

#~ msgid "PCMCIA controllers"
#~ msgstr "Контроллеры PCMCIA"

#~ msgid "SCSI controllers"
#~ msgstr "Контроллеры SCSI"

#~ msgid "USB controllers"
#~ msgstr "Контроллеры USB"

#~ msgid "USB ports"
#~ msgstr "USB порты"

#~ msgid "SMBus controllers"
#~ msgstr "Контроллеры SMBus"

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

#~ msgid "Tablet and touchscreen"
#~ msgstr "Планшет и сенсорная панель"

#~ msgid "Mouse"
#~ msgstr "Мышь"

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

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

#~ msgid "Unknown/Others"
#~ msgstr "Неизвестный/Другие"

#~ msgid "cpu # "
#~ msgstr "процессор # "

#~ msgid "Please Wait... Applying the configuration"
#~ msgstr "Подождите, пожалуйста... Применяются настройки"

#~ msgid "No alternative driver"
#~ msgstr "Альтернативный драйвер отсутствует"

#~ msgid ""
#~ "There's no known OSS/ALSA alternative driver for your sound card (%s) "
#~ "which currently uses \"%s\""
#~ msgstr ""
#~ "Для вашей звуковой карты (%s) отсутствует альтернативный драйвер OSS/"
#~ "ALSA, которая в данный момент использует \"%s\""

#~ msgid "Sound configuration"
#~ msgstr "Настройка звука"

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

#~ msgid ""
#~ "\n"
#~ "\n"
#~ "Your card currently use the %s\"%s\" driver (default driver for your card "
#~ "is \"%s\")"
#~ msgstr ""
#~ "\n"
#~ "\n"
#~ "В настоящий момент ваша карта использует драйвер %s\"%s\" (драйвером по "
#~ "умолчанию для вашей карты является \"%s\")"

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

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

#~ msgid "Trouble shooting"
#~ msgstr "Поиск и устранение неисправностей"

#~ msgid ""
#~ "The old \"%s\" driver is blacklisted.\n"
#~ "\n"
#~ "It has been reported to oops the kernel on unloading.\n"
#~ "\n"
#~ "The new \"%s\" driver will only be used on next bootstrap."
#~ msgstr ""
#~ "Старый драйвер \"%s\" занесен в черный список.\n"
#~ "\n"
#~ "О нем был создан отчет, чтобы предупредить ядро при выгрузке.\n"
#~ "\n"
#~ "Новый драйвер \"%s\" будет использован только при следующей начальной\n"
#~ "загрузке."

#~ msgid "No open source driver"
#~ msgstr "Нет драйвера с открытым исходным кодом"

#~ msgid ""
#~ "There's no free driver for your sound card (%s), but there's a "
#~ "proprietary driver at \"%s\"."
#~ msgstr ""
#~ "Для вашей звуковой карты (%s) нет свободного драйвера, но имеется "
#~ "собственный драйвер на \"%s\""

#~ msgid "No known driver"
#~ msgstr "Отсутствует известный драйвер"

#~ msgid "There's no known driver for your sound card (%s)"
#~ msgstr "Для вашей звуковой карты отсутствует известный драйвер (%s)"

#~ msgid "Unknown driver"
#~ msgstr "Неизвестный драйвер "

#~ msgid "Error: The \"%s\" driver for your sound card is unlisted"
#~ msgstr "Ошибка: драйвера \"%s\"для вашей звуковой карты нет в списке"

#~ msgid "Sound trouble shooting"
#~ msgstr "Решение проблем со звуком"

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

#~ msgid "Let me pick any driver"
#~ msgstr "Выбрать другой драйвер"

#~ msgid "Choosing an arbitrary driver"
#~ msgstr "Выбор произвольного драйвера"

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

#~ msgid "Auto-detect"
#~ msgstr "Автоопределение"

#~ msgid "Unknown|Generic"
#~ msgstr "Неизвестный|Обычный"

#~ msgid "Unknown|CPH05X (bt878) [many vendors]"
#~ msgstr "Неизвестный|CPH05X (bt878) [большинство производителей]"

#~ msgid "Unknown|CPH06X (bt878) [many vendors]"
#~ msgstr "Неизвестный|CPH06X (bt878) [большинство производителей]"

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

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

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

#~ msgid "Number of capture buffers:"
#~ msgstr "Количество буферов захвата :"

#~ msgid "number of capture buffers for mmap'ed capture"
#~ msgstr "количество буферов захвата для mmap'ингового захвата"

#~ msgid "PLL setting:"
#~ msgstr "Настройка PLL :"

#~ msgid "Radio support:"
#~ msgstr "Поддержка радио :"

#~ msgid "enable radio support"
#~ msgstr "включить поддержку радио"

#~ msgid "Yes"
#~ msgstr "Да"

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

#~ msgid "Choose a file"
#~ msgstr "Выберите файл"

#~ msgid "Add"
#~ msgstr "Добавить"

#~ msgid "Modify"
#~ msgstr "Изменить"

#~ msgid "Remove"
#~ msgstr "Удалить"

#~ msgid "Finish"
#~ msgstr "Завершить"

#~ msgid "Previous"
#~ msgstr "Назад"

#~ msgid "Bad choice, try again\n"
#~ msgstr "Неудачный выбор, попробуйте еще раз\n"

#~ msgid "Your choice? (default %s) "
#~ msgstr "Что вы выбираете? (по умолчанию %s) "

#~ msgid ""
#~ "Entries you'll have to fill:\n"
#~ "%s"
#~ msgstr ""
#~ "Пункты, которые вы должны заполнить:\n"
#~ "%s"

#~ msgid "Your choice? (0/1, default `%s') "
#~ msgstr "Что вы выбираете? (0/1, по умолчанию `%s') "

#~ msgid "Button `%s': %s"
#~ msgstr "Кнопка: `%s': %s"

#~ msgid "Do you want to click on this button?"
#~ msgstr "Вы хотите нажать на эту кнопку?"

#~ msgid "Your choice? (default `%s'%s) "
#~ msgstr "Что вы выбираете? (по умолчанию `%s'%s) "

#~ msgid " enter `void' for void entry"
#~ msgstr " введите `void', чтобы очистить пункт"

#~ msgid "=> There are many things to choose from (%s).\n"
#~ msgstr "=> Существует множество вещей для выбора (%s).\n"

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

#~ msgid ""
#~ "=> Notice, a label changed:\n"
#~ "%s"
#~ msgstr ""
#~ "=> Запомните, метка изменилась:\n"
#~ "%s"

#~ msgid "Re-submit"
#~ msgstr "Заново отправить"

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

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

#~ msgid "United Arab Emirates"
#~ msgstr "Объединенные арабские Эмираты"

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

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

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

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

#~ msgid "Armenia"
#~ msgstr "Армения"

#~ msgid "Netherlands Antilles"
#~ msgstr "Нидерландские антильские острова"

#~ msgid "Angola"
#~ msgstr "Ангола"

#~ msgid "Antarctica"
#~ msgstr "Антарктика"

#~ msgid "Argentina"
#~ msgstr "Аргентина"

#~ msgid "American Samoa"
#~ msgstr "Американские Самоа"

#~ msgid "Austria"
#~ msgstr "Австрия"

#~ msgid "Australia"
#~ msgstr "Австралия"

#~ msgid "Aruba"
#~ msgstr "Аруба"

#~ msgid "Azerbaijan"
#~ msgstr "Азербайджан"

#~ msgid "Bosnia and Herzegovina"
#~ msgstr "Босния и Герцеговина"

#~ msgid "Barbados"
#~ msgstr "Барбадос"

#~ msgid "Bangladesh"
#~ msgstr "Бангладеш"

#~ msgid "Belgium"
#~ msgstr "Бельгия"

#~ msgid "Burkina Faso"
#~ msgstr "Буркина-Фасо"

#~ msgid "Bulgaria"
#~ msgstr "Болгария"

#~ msgid "Bahrain"
#~ msgstr "Бахрейн"

#~ msgid "Burundi"
#~ msgstr "Бурунди"

#~ msgid "Benin"
#~ msgstr "Бенин"

#~ msgid "Bermuda"
#~ msgstr "Бермуды"

#~ msgid "Brunei Darussalam"
#~ msgstr "Бруней Даруссалам"

#~ msgid "Bolivia"
#~ msgstr "Боливия"

#~ msgid "Brazil"
#~ msgstr "Бразилия"

#~ msgid "Bahamas"
#~ msgstr "Багамы"

#~ msgid "Bhutan"
#~ msgstr "Бутан"

#~ msgid "Bouvet Island"
#~ msgstr "Остров Буве"

#~ msgid "Botswana"
#~ msgstr "Ботсвана"

#~ msgid "Belarus"
#~ msgstr "Беларусь"

#~ msgid "Belize"
#~ msgstr "Белиз"

#~ msgid "Canada"
#~ msgstr "Канада"

#~ msgid "Cocos (Keeling) Islands"
#~ msgstr "Кокосовые острова "

#~ msgid "Congo (Kinshasa)"
#~ msgstr "Конго (Kinshasa)"

#~ msgid "Central African Republic"
#~ msgstr "Центрально-африканская республика"

#~ msgid "Congo (Brazzaville)"
#~ msgstr "Конго (Brazzaville)"

#~ msgid "Switzerland"
#~ msgstr "Швейцария"

#~ msgid "Cote d'Ivoire"
#~ msgstr "Кот-д'Ивуар"

#~ msgid "Cook Islands"
#~ msgstr "Острова Кука"

#~ msgid "Chile"
#~ msgstr "Чили"

#~ msgid "Cameroon"
#~ msgstr "Камерун"

#~ msgid "China"
#~ msgstr "Китай"

#~ msgid "Colombia"
#~ msgstr "Колумбия"

#~ msgid "Costa Rica"
#~ msgstr "Коста-Рика"

#~ msgid "Serbia & Montenegro"
#~ msgstr "Serbia & Montenegro"

#~ msgid "Cuba"
#~ msgstr "Куба"

#~ msgid "Cape Verde"
#~ msgstr "Кабо-Верде"

#~ msgid "Christmas Island"
#~ msgstr "Остров Рождества"

#~ msgid "Cyprus"
#~ msgstr "Кипр"

#~ msgid "Czech Republic"
#~ msgstr "Чешская Республика"

#~ msgid "Germany"
#~ msgstr "Германия"

#~ msgid "Djibouti"
#~ msgstr "Джибути"

#~ msgid "Denmark"
#~ msgstr "Дания"

#~ msgid "Dominica"
#~ msgstr "Доминика"

#~ msgid "Dominican Republic"
#~ msgstr "Доминиканская республика"

#~ msgid "Algeria"
#~ msgstr "Алжир"

#~ msgid "Ecuador"
#~ msgstr "Эквадор"

#~ msgid "Estonia"
#~ msgstr "Эстония"

#~ msgid "Egypt"
#~ msgstr "Египет"

#~ msgid "Western Sahara"
#~ msgstr "Западная Сахара"

#~ msgid "Eritrea"
#~ msgstr "Эритрея"

#~ msgid "Spain"
#~ msgstr "Испания"

#~ msgid "Ethiopia"
#~ msgstr "Эфиопия"

#~ msgid "Finland"
#~ msgstr "Финляндия"

#~ msgid "Fiji"
#~ msgstr "Фиджи"

#~ msgid "Falkland Islands (Malvinas)"
#~ msgstr "Фолклендские (Мальвинские) острова"

#~ msgid "Micronesia"
#~ msgstr "Микронезия"

#~ msgid "Faroe Islands"
#~ msgstr "Фарерские острова"

#~ msgid "France"
#~ msgstr "Франция"

#~ msgid "Gabon"
#~ msgstr "Габон"

#~ msgid "United Kingdom"
#~ msgstr "Объединенное Королевство"

#~ msgid "Grenada"
#~ msgstr "Гренада"

#~ msgid "Georgia"
#~ msgstr "Грузия"

#~ msgid "French Guiana"
#~ msgstr "Французская Гвиана"

#~ msgid "Ghana"
#~ msgstr "Гана"

#~ msgid "Gibraltar"
#~ msgstr "Гибралтар"

#~ msgid "Greenland"
#~ msgstr "Гренландия"

#~ msgid "Gambia"
#~ msgstr "Гамбия"

#~ msgid "Guinea"
#~ msgstr "Гвинея"

#~ msgid "Guadeloupe"
#~ msgstr "Гваделупа"

#~ msgid "Equatorial Guinea"
#~ msgstr "Экваториальная Гвинея"

#~ msgid "Greece"
#~ msgstr "Греция"

#~ msgid "South Georgia and the South Sandwich Islands"
#~ msgstr "Южная Джорджия и Южные Сандвичевы острова "

#~ msgid "Guatemala"
#~ msgstr "Гватемала"

#~ msgid "Guam"
#~ msgstr "Гуам"

#~ msgid "Guinea-Bissau"
#~ msgstr "Гвинея-Бисау"

#~ msgid "Guyana"
#~ msgstr "Гайана"

#~ msgid "Hong Kong SAR (China)"
#~ msgstr "Китай (Гонконг)"

#~ msgid "Heard and McDonald Islands"
#~ msgstr "Острова Херда и МакДональда"

#~ msgid "Honduras"
#~ msgstr "Гондурас"

#~ msgid "Croatia"
#~ msgstr "Хорватия"

#~ msgid "Haiti"
#~ msgstr "Гаити"

#~ msgid "Hungary"
#~ msgstr "Венгрия"

#~ msgid "Indonesia"
#~ msgstr "Индонезия"

#~ msgid "Ireland"
#~ msgstr "Ирландия"

#~ msgid "Israel"
#~ msgstr "Израиль"

#~ msgid "India"
#~ msgstr "Индия"

#~ msgid "British Indian Ocean Territory"
#~ msgstr "Британская территория Индийского океана"

#~ msgid "Iraq"
#~ msgstr "Ирак"