1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 1602 1603 1604 1605 1606 1607 1608 1609 1610 1611 1612 1613 1614 1615 1616 1617 1618 1619 1620 1621 1622 1623 1624 1625 1626 1627 1628 1629 1630 1631 1632 1633 1634 1635 1636 1637 1638 1639 1640 1641 1642 1643 1644 1645 1646 1647 1648 1649 1650 1651 1652 1653 1654 1655 1656 1657 1658 1659 1660 1661 1662 1663 1664 1665 1666 1667 1668 1669 1670 1671 1672 1673 1674 1675 1676 1677 1678 1679 1680 1681 1682 1683 1684 1685 1686 1687 1688 1689 1690 1691 1692 1693 1694 1695 1696 1697 1698 1699 1700 1701 1702 1703 1704 1705 1706 1707 1708 1709 1710 1711 1712 1713 1714 1715 1716 1717 1718 1719 1720 1721 1722 1723 1724 1725 1726 1727 1728 1729 1730 1731 1732 1733 1734 1735 1736 1737 1738 1739 1740 1741 1742 1743 1744 1745 1746 1747 1748 1749 1750 1751 1752 1753 1754 1755 1756 1757 1758 1759 1760 1761 1762 1763 1764 1765 1766 1767 1768 1769 1770 1771 1772 1773 1774 1775 1776 1777 1778 1779 1780 1781 1782 1783 1784 1785 1786 1787 1788 1789 1790 1791 1792 1793 1794 1795 1796 1797 1798 1799 1800 1801 1802 1803 1804 1805 1806 1807 1808 1809 1810 1811 1812 1813 1814 1815 1816 1817 1818 1819 1820 1821 1822 1823 1824 1825 1826 1827 1828 1829 1830 1831 1832 1833 1834 1835 1836 1837 1838 1839 1840 1841 1842 1843 1844 1845 1846 1847 1848 1849 1850 1851 1852 1853 1854 1855 1856 1857 1858 1859 1860 1861 1862 1863 1864 1865 1866 1867 1868 1869 1870 1871 1872 1873 1874 1875 1876 1877 1878 1879 1880 1881 1882 1883 1884 1885 1886 1887 1888 1889 1890 1891 1892 1893 1894 1895 1896 1897 1898 1899 1900 1901 1902 1903 1904 1905 1906 1907 1908 1909 1910 1911 1912 1913 1914 1915 1916 1917 1918 1919 1920 1921 1922 1923 1924 1925 1926 1927 1928 1929 1930 1931 1932 1933 1934 1935 1936 1937 1938 1939 1940 1941 1942 1943 1944 1945 1946 1947 1948 1949 1950 1951 1952 1953 1954 1955 1956 1957 1958 1959 1960 1961 1962 1963 1964 1965 1966 1967 1968 1969 1970 1971 1972 1973 1974 1975 1976 1977 1978 1979 1980 1981 1982 1983 1984 1985 1986 1987 1988 1989 1990 1991 1992 1993 1994 1995 1996 1997 1998 1999 2000 2001 2002 2003 2004 2005 2006 2007 2008 2009 2010 2011 2012 2013 2014 2015 2016 2017 2018 2019 2020 2021 2022 2023 2024 2025 2026 2027 2028 2029 2030 2031 2032 2033 2034 2035 2036 2037 2038 2039 2040 2041 2042 2043 2044 2045 2046 2047 2048 2049 2050 2051 2052 2053 2054 2055 2056 2057 2058 2059 2060 2061 2062 2063 2064 2065 2066 2067 2068 2069 2070 2071 2072 2073 2074 2075 2076 2077 2078 2079 2080 2081 2082 2083 2084 2085 2086 2087 2088 2089 2090 2091 2092 2093 2094 2095 2096 2097 2098 2099 2100 2101 2102 2103 2104 2105 2106 2107 2108 2109 2110 2111 2112 2113 2114 2115 2116 2117 2118 2119 2120 2121 2122 2123 2124 2125 2126 2127 2128 2129 2130 2131 2132 2133 2134 2135 2136 2137 2138 2139 2140 2141 2142 2143 2144 2145 2146 2147 2148 2149 2150 2151 2152 2153 2154 2155 2156 2157 2158 2159 2160 2161 2162 2163 2164 2165 2166 2167 2168 2169 2170 2171 2172 2173 2174 2175 2176 2177 2178 2179 2180 2181 2182 2183 2184 2185 2186 2187 2188 2189 2190 2191 2192 2193 2194 2195 2196 2197 2198 2199 2200 2201 2202 2203 2204 2205 2206 2207 2208 2209 2210 2211 2212 2213 2214 2215 2216 2217 2218 2219 2220 2221 2222 2223 2224 2225 2226 2227 2228 2229 2230 2231 2232 2233 2234 2235 2236 2237 2238 2239 2240 2241 2242 2243 2244 2245 2246 2247 2248 2249 2250 2251 2252 2253 2254 2255 2256 2257 2258 2259 2260 2261 2262 2263 2264 2265 2266 2267 2268 2269 2270 2271 2272 2273 2274 2275 2276 2277 2278 2279 2280 2281 2282 2283 2284 2285 2286 2287 2288 2289 2290 2291 2292 2293 2294 2295 2296 2297 2298 2299 2300 2301 2302 2303 2304 2305 2306 2307 2308 2309 2310 2311 2312 2313 2314 2315 2316 2317 2318 2319 2320 2321 2322 2323 2324 2325 2326 2327 2328 2329 2330 2331 2332 2333 2334 2335 2336 2337 2338 2339 2340 2341 2342 2343 2344 2345 2346 2347 2348 2349 2350 2351 2352 2353 2354 2355 2356 2357 2358 2359 2360 2361 2362 2363 2364 2365 2366 2367 2368
|
# SOME DESCRIPTIVE TITLE.
# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
# This file is distributed under the same license as the PACKAGE package.
# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
#
#, fuzzy
msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2006-10-03 17:05+0200\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=CHARSET\n"
"Content-Transfer-Encoding: 8bit\n"
#: bylabel.c:251
#, c-format
msgid "Found an invalid UUID: %s\n"
msgstr ""
#: bylabel.c:271
#, c-format
msgid "Error checking device name: %s\n"
msgstr ""
#: common.c:122
#, c-format
msgid "Quota utilities version %s.\n"
msgstr ""
#: common.c:124
#, c-format
msgid "Compiled with "
msgstr ""
#: common.c:126
msgid "RPC and EXT2_DIRECT"
msgstr ""
#: common.c:128
msgid "RPC"
msgstr ""
#: common.c:130
msgid "EXT2_DIRECT"
msgstr ""
#: common.c:133 convertquota.c:45 quotacheck.c:317 repquota.c:60
#: warnquota.c:933
#, c-format
msgid "Bugs to %s\n"
msgstr ""
#: convertquota.c:38
#, c-format
msgid ""
"Utility for converting quota files.\n"
"Usage:\n"
"\t%s [options] mountpoint\n"
"\n"
"-u, --user convert user quota file\n"
"-g, --group convert group quota file\n"
"-e, --convert-endian convert quota file to correct endianity\n"
"-f, --convert-format convert from old to VFSv0 quota format\n"
"-h, --help show this help text and exit\n"
"-V, --version output version information and exit\n"
"\n"
msgstr ""
#: convertquota.c:87
msgid "Bad number of arguments."
msgstr ""
#: convertquota.c:137 quotacheck_v2.c:219 quotaio_v2.c:276
#, c-format
msgid "Cannot read block %u: %s\n"
msgstr ""
#: convertquota.c:161 convertquota.c:253
#, c-format
msgid "Cannot commit dquot for id %u: %s\n"
msgstr ""
#: convertquota.c:209
msgid "Cannot read header of old quotafile.\n"
msgstr ""
#: convertquota.c:213
msgid ""
"Bad file magic or version (probably not quotafile with bad endianity).\n"
msgstr ""
#: convertquota.c:224
msgid "Cannot read information about old quotafile.\n"
msgstr ""
#: convertquota.c:266
msgid "Cannot get name of new quotafile.\n"
msgstr ""
#: convertquota.c:272 quotacheck.c:746
#, c-format
msgid "Cannot rename new quotafile %s to name %s: %s\n"
msgstr ""
#: convertquota.c:286
#, c-format
msgid "Cannot open old format file for %ss on %s\n"
msgstr ""
#: convertquota.c:291 convertquota.c:324
#, c-format
msgid "Cannot create file for %ss for new format on %s: %s\n"
msgstr ""
#: convertquota.c:314
#, c-format
msgid "Cannot open old quota file on %s: %s\n"
msgstr ""
#: convertquota.c:350
msgid "Unknown action should be performed.\n"
msgstr ""
#: edquota.c:82
#, c-format
msgid ""
"Usage:\n"
"\tedquota %1$s[-u] [-F formatname] [-p username] [-f filesystem] "
"username ...\n"
"\tedquota %1$s-g [-F formatname] [-p groupname] [-f filesystem] "
"groupname ...\n"
"\tedquota %1$s[-u|g] [-F formatname] [-f filesystem] -t\n"
"\tedquota %1$s[-u|g] [-F formatname] [-f filesystem] -T username|"
"groupname ...\n"
msgstr ""
#: edquota.c:86
msgid ""
"\n"
"-u, --user edit user data\n"
"-g, --group edit group data\n"
msgstr ""
#: edquota.c:90
msgid "-r, --remote edit remote quota (via RPC)\n"
msgstr ""
#: edquota.c:92
msgid ""
"-F, --format=formatname edit quotas of a specific format\n"
"-p, --prototype=name copy data from a prototype user/group\n"
" --always-resolve always try to resolve name, even if it is\n"
" composed only of digits\n"
"-f, --filesystem=filesystem edit data only on a specific filesystem\n"
"-t, --edit-period edit grace period\n"
"-T, --edit-times edit grace time of a user/group\n"
"-h, --help display this help text and exit\n"
"-V, --version display version information and exit\n"
"\n"
msgstr ""
#: edquota.c:101 quota.c:102 setquota.c:71
#, c-format
msgid "Bugs to: %s\n"
msgstr ""
#: edquota.c:178
msgid ""
"Prototype name does not make sence when editting grace period or times.\n"
msgstr ""
#: edquota.c:199
msgid "fsname mismatch\n"
msgstr ""
#: edquota.c:239
msgid "No filesystems with quota detected.\n"
msgstr ""
#: edquota.c:258
msgid "Cannot write grace times to file.\n"
msgstr ""
#: edquota.c:262
msgid "Error while editting grace times.\n"
msgstr ""
#: edquota.c:266
msgid "Failed to parse grace times file.\n"
msgstr ""
#: edquota.c:275
msgid "Cannot write individual grace times to file.\n"
msgstr ""
#: edquota.c:280
msgid "Error while editting individual grace times.\n"
msgstr ""
#: edquota.c:285
msgid "Cannot read individual grace times from file.\n"
msgstr ""
#: edquota.c:299
msgid "Cannot write quotas to file.\n"
msgstr ""
#: edquota.c:304
msgid "Error while editting quotas.\n"
msgstr ""
#: edquota.c:310
msgid "Cannot reopen!"
msgstr ""
#: edquota.c:312
msgid "Cannot read quotas from file.\n"
msgstr ""
#: quot.c:83
#, c-format
msgid "Usage: %s [-acfugvViTq] [filesystem...]\n"
msgstr ""
#: quot.c:180
#, c-format
msgid "%s (%s):\n"
msgstr ""
#: quot.c:184 quot.c:188
#, c-format
msgid "%d\t%llu\t%llu\n"
msgstr ""
#: quot.c:197
#, c-format
msgid "%s (%s) %s:\n"
msgstr ""
#: quot.c:205 quot.c:207
#, c-format
msgid "%8llu "
msgstr ""
#: quot.c:210
#, c-format
msgid "%s"
msgstr ""
#: quot.c:212
#, c-format
msgid "%-8.8s"
msgstr ""
#: quot.c:214
#, c-format
msgid "#%-7d"
msgstr ""
#: quot.c:216
#, c-format
msgid " %8llu %8llu %8llu"
msgstr ""
#: quot.c:364
#, c-format
msgid "cannot open %s: %s\n"
msgstr ""
#: quot.c:384
#, c-format
msgid "XFS_IOC_FSBULKSTAT ioctl failed: %s\n"
msgstr ""
#: quota.c:81
msgid "Usage: quota [-guqvsw] [-l | -Q] [-i] [-F quotaformat]\n"
msgstr ""
#: quota.c:82
msgid "\tquota [-qvsw] [-l | -Q] [-i] [-F quotaformat] -u username ...\n"
msgstr ""
#: quota.c:83
msgid "\tquota [-qvsw] [-l | -Q] [-i] [-F quotaformat] -g groupname ...\n"
msgstr ""
#: quota.c:84
msgid "\tquota [-qvswugQ] [-F quotaformat] -f filesystem ...\n"
msgstr ""
#: quota.c:85
msgid ""
"\n"
"-u, --user display quota for user\n"
"-g, --group display quota for group\n"
"-q, --quiet print more terse message\n"
"-v, --verbose print more verbose message\n"
"-s, --human-readable display numbers in human friendly units (MB, "
"GB...)\n"
" --always-resolve always try to translate name to id, even if it is\n"
"\t\t\t composed of only digits\n"
"-w, --no-wrap do not wrap long lines\n"
"-l, --local-only do not query NFS filesystems\n"
"-Q, --quiet-refuse do not print error message when NFS server does\n"
" not respond\n"
"-i, --no-autofs do not query autofs mountpoints\n"
"-F, --format=formatname display quota of a specific format\n"
"-f, --filesystem-list display quota information only for given "
"filesystems\n"
"-h, --help display this help message and exit\n"
"-V, --version display version information and exit\n"
"\n"
msgstr ""
#: quota.c:108
#, c-format
msgid "Disk quotas for %s %s (%cid %u): %s\n"
msgstr ""
#: quota.c:111
msgid "Filesystem"
msgstr ""
#: quota.c:112
msgid "blocks"
msgstr ""
#: quota.c:112 quota.c:113
msgid "quota"
msgstr ""
#: quota.c:112 quota.c:113
msgid "limit"
msgstr ""
#: quota.c:112 quota.c:113
msgid "grace"
msgstr ""
#: quota.c:113
msgid "files"
msgstr ""
#: quota.c:139
msgid "File limit reached on"
msgstr ""
#: quota.c:145
msgid "In file grace period on"
msgstr ""
#: quota.c:149
msgid "Over file quota on"
msgstr ""
#: quota.c:155
msgid "Block limit reached on"
msgstr ""
#: quota.c:161
msgid "In block grace period on"
msgstr ""
#: quota.c:165
msgid "Over block quota on"
msgstr ""
#: quota.c:206 quotasys.c:297
msgid "none"
msgstr ""
#: quota.c:290
#, c-format
msgid "Warning: Ignoring -%c when filesystem list specified.\n"
msgstr ""
#: quota.c:297
msgid "No filesystem specified.\n"
msgstr ""
#: quota.c:305
#, c-format
msgid "Gid set allocation (%d): %s\n"
msgstr ""
#: quota.c:311
#, c-format
msgid "getgroups(): %s\n"
msgstr ""
#: quotacheck.c:95
msgid "Not enough memory.\n"
msgstr ""
#: quotacheck.c:127
#, c-format
msgid "Adding hardlink for ino %llu\n"
msgstr ""
#: quotacheck.c:170
#, c-format
msgid "Adding dquot structure type %s for %d\n"
msgstr ""
#: quotacheck.c:256
#, c-format
msgid "Cannot open file %s: %s\n"
msgstr ""
#: quotacheck.c:261
msgid "Cannot get exact used space... Results might be inaccurate.\n"
msgstr ""
#: quotacheck.c:299
#, c-format
msgid ""
"Utility for checking and repairing quota files.\n"
"%s [-gucbfinvdmMR] [-F <quota-format>] filesystem|-a\n"
"\n"
"-u, --user check user files\n"
"-g, --group check group files\n"
"-c, --create-files create new quota files\n"
"-b, --backup create backups of old quota files\n"
"-f, --force force check even if quotas are enabled\n"
"-i, --interactive interactive mode\n"
"-n, --use-first-dquot use the first copy of duplicated structure\n"
"-v, --verbose print more information\n"
"-d, --debug print even more messages\n"
"-m, --no-remount do not remount filesystem read-only\n"
"-M, --try-remount try remounting filesystem read-only,\n"
" continue even if it fails\n"
"-R, --exclude-root exclude root when checking all filesystems\n"
"-F, --format=formatname check quota files of specific format\n"
"-a, --all check all filesystems\n"
"-h, --help display this message and exit\n"
"-V, --version display version information and exit\n"
"\n"
msgstr ""
#: quotacheck.c:403 quotaon.c:135 repquota.c:133 setquota.c:201
msgid "Bad number of arguments.\n"
msgstr ""
#: quotacheck.c:407
msgid "XFS quota format needs no checking.\n"
msgstr ""
#: quotacheck.c:433
#, c-format
msgid "error (%d) while opening %s\n"
msgstr ""
#: quotacheck.c:438
#, c-format
msgid "error (%d) while allocating inode file bitmap\n"
msgstr ""
#: quotacheck.c:443
#, c-format
msgid "errstr (%d) while allocating inode directory bitmap\n"
msgstr ""
#: quotacheck.c:448
#, c-format
msgid "error (%d) while opening inode scan\n"
msgstr ""
#: quotacheck.c:453
#, c-format
msgid "error (%d) while starting inode scan\n"
msgstr ""
#: quotacheck.c:459
#, c-format
msgid "Found i_num %ld, blocks %ld\n"
msgstr ""
#: quotacheck.c:465
msgid "High uid detected.\n"
msgstr ""
#: quotacheck.c:481
#, c-format
msgid "Something weird happened while scanning. Error %d\n"
msgstr ""
#: quotacheck.c:505
#, c-format
msgid "Cannot stat directory %s: %s\n"
msgstr ""
#: quotacheck.c:517
#, c-format
msgid ""
"\n"
"Can open directory %s: %s\n"
msgstr ""
#: quotacheck.c:529
#, c-format
msgid ""
"lstat Cannot stat `%s/%s': %s\n"
"Guess you'd better run fsck first !\n"
"exiting...\n"
msgstr ""
#: quotacheck.c:540
#, c-format
msgid "pushd %s/%s\n"
msgstr ""
#: quotacheck.c:556
#, c-format
msgid "\tAdding %s size %Ld ino %d links %d uid %u gid %u\n"
msgstr ""
#: quotacheck.c:566
msgid "Scanning stored directories from directory stack\n"
msgstr ""
#: quotacheck.c:570
#, c-format
msgid ""
"popd %s\n"
"Entering directory %s\n"
msgstr ""
#: quotacheck.c:582
#, c-format
msgid "Leaving %s\n"
msgstr ""
#: quotacheck.c:622
#, c-format
msgid "Going to check %s quota file of %s\n"
msgstr ""
#: quotacheck.c:628
#, c-format
msgid ""
"Quota for %ss is enabled on mountpoint %s so quotacheck might damage the "
"file.\n"
msgstr ""
#: quotacheck.c:629 quotacheck.c:903
msgid "Should I continue"
msgstr ""
#: quotacheck.c:630 quotacheck.c:904
#, c-format
msgid "As you wish... Canceling check of this file.\n"
msgstr ""
#: quotacheck.c:635
#, c-format
msgid ""
"Quota for %ss is enabled on mountpoint %s so quotacheck might damage the "
"file.\n"
"Please turn quotas off or use -f to force checking.\n"
msgstr ""
#: quotacheck.c:642
#, c-format
msgid "Error while syncing quotas on %s: %s\n"
msgstr ""
#: quotacheck.c:647
#, c-format
msgid "Cannot get quotafile name for %s\n"
msgstr ""
#: quotacheck.c:652 quotaio.c:105 quotasys.c:492
#, c-format
msgid "Cannot open quotafile %s: %s\n"
msgstr ""
#: quotacheck.c:668
#, c-format
msgid "Too new quotafile format on %s\n"
msgstr ""
#: quotacheck.c:696
msgid "Renaming new files to proper names.\n"
msgstr ""
#: quotacheck.c:698
#, c-format
msgid "Cannot get name of old quotafile on %s.\n"
msgstr ""
#: quotacheck.c:701
msgid "Old file not found.\n"
msgstr ""
#: quotacheck.c:704
#, c-format
msgid "Error while searching for old quota file %s: %s\n"
msgstr ""
#: quotacheck.c:713
msgid "Old file found removed during check!\n"
msgstr ""
#: quotacheck.c:716
#, c-format
msgid "Error while opening old quota file %s: %s\n"
msgstr ""
#: quotacheck.c:722
#, c-format
msgid "EXT2_IOC_GETFLAGS failed: %s\n"
msgstr ""
#: quotacheck.c:726
#, c-format
msgid "Renaming old quotafile to %s~\n"
msgstr ""
#: quotacheck.c:732
#, c-format
msgid "Name of quota file too long. Contact %s.\n"
msgstr ""
#: quotacheck.c:734
#, c-format
msgid "Cannot rename old quotafile %s to %s: %s\n"
msgstr ""
#: quotacheck.c:740
msgid "Renaming new quotafile\n"
msgstr ""
#: quotacheck.c:752
#, c-format
msgid "Cannot change permission of %s: %s\n"
msgstr ""
#: quotacheck.c:759
#, c-format
msgid "Cannot open new quota file %s: %s\n"
msgstr ""
#: quotacheck.c:764
#, c-format
msgid "Warning: Cannot set EXT2 flags on %s: %s\n"
msgstr ""
#: quotacheck.c:783
#, c-format
msgid "Dumping gathered data for %ss.\n"
msgstr ""
#: quotacheck.c:785
#, c-format
msgid "Cannot initialize IO on new quotafile: %s\n"
msgstr ""
#: quotacheck.c:803
#, c-format
msgid "Cannot finish IO on new quotafile: %s\n"
msgstr ""
#: quotacheck.c:806
msgid "Data dumped.\n"
msgstr ""
#: quotacheck.c:811
#, c-format
msgid "Cannot find checked quota file for %ss on %s!\n"
msgstr ""
#: quotacheck.c:815
#, c-format
msgid ""
"Cannot turn %s quotas off on %s: %s\n"
"Kernel won't know about changes quotacheck did.\n"
msgstr ""
#: quotacheck.c:828
#, c-format
msgid ""
"Cannot turn %s quotas on on %s: %s\n"
"Kernel won't know about changes quotacheck did.\n"
msgstr ""
#: quotacheck.c:849
#, c-format
msgid "Substracting space used by old %s quota file.\n"
msgstr ""
#: quotacheck.c:851
#, c-format
msgid "Old %s file not found. Usage will not be substracted.\n"
msgstr ""
#: quotacheck.c:856
#, c-format
msgid "Cannot stat old %s quota file: %s\n"
msgstr ""
#: quotacheck.c:868
#, c-format
msgid ""
"Quota structure for %s owning quota file not present! Something is really "
"wrong...\n"
msgstr ""
#: quotacheck.c:873
#, c-format
msgid "Substracted %lu bytes.\n"
msgstr ""
#: quotacheck.c:883
#, c-format
msgid "Cannot stat mountpoint %s: %s\n"
msgstr ""
#: quotacheck.c:885
#, c-format
msgid "Mountpoint %s is not a directory?!\n"
msgstr ""
#: quotacheck.c:902
#, c-format
msgid ""
"Cannot remount filesystem mounted on %s read-only. Counted values might not "
"be right.\n"
msgstr ""
#: quotacheck.c:909
#, c-format
msgid ""
"Cannot remount filesystem mounted on %s read-only so counted values might "
"not be right.\n"
"Please stop all programs writing to filesystem or use -m flag to force "
"checking.\n"
msgstr ""
#: quotacheck.c:916
msgid "Filesystem remounted read-only\n"
msgstr ""
#: quotacheck.c:918
#, c-format
msgid "Scanning %s [%s] "
msgstr ""
#: quotacheck.c:935
msgid "done\n"
msgstr ""
#: quotacheck.c:944
#, c-format
msgid "Checked %d directories and %d files\n"
msgstr ""
#: quotacheck.c:948
#, c-format
msgid ""
"Cannot remount filesystem %s read-write. cannot write new quota files.\n"
msgstr ""
#: quotacheck.c:949
msgid "Filesystem remounted RW.\n"
msgstr ""
#: quotacheck.c:986
#, c-format
msgid "Cannot find quota option on filesystem %s with quotas!\n"
msgstr ""
#: quotacheck.c:993
#, c-format
msgid "Cannot detect quota format for journalled quota on %s\n"
msgstr ""
#: quotacheck.c:1033 quotasys.c:578
msgid "Cannot initialize mountpoint scan.\n"
msgstr ""
#: quotacheck.c:1038
#, c-format
msgid "Skipping %s [%s]\n"
msgstr ""
#: quotacheck.c:1054
#, c-format
msgid ""
"Cannot guess format from filename on %s. Please specify format on "
"commandline.\n"
msgstr ""
#: quotacheck.c:1058
#, c-format
msgid "Detected quota format %s\n"
msgstr ""
#: quotacheck.c:1065
msgid ""
"Cannot find filesystem to check or filesystem not mounted with quota "
"option.\n"
msgstr ""
#: quotacheck.c:1078
#, c-format
msgid ""
"Allocated %d bytes memory\n"
"Free'd %d bytes\n"
"Lost %d bytes\n"
msgstr ""
#: quotacheck_v1.c:30
#, c-format
msgid "Cannot read entry for id %u from quotafile %s: %s\n"
msgstr ""
#: quotacheck_v1.c:33
#, c-format
msgid "Entry for id %u is truncated.\n"
msgstr ""
#: quotacheck_v1.c:62
msgid "Loading first quota entry with grace times.\n"
msgstr ""
#: quotacheck_v1.c:66
#, c-format
msgid "Cannot read first entry from quotafile %s: %s\n"
msgstr ""
#: quotacheck_v1.c:70
#, c-format
msgid ""
"WARNING - Quotafile %s was probably truncated. Cannot save quota "
"settings...\n"
msgstr ""
#: quotacheck_v1.c:76
msgid "First entry loaded.\n"
msgstr ""
#: quotacheck_v2.c:51
msgid "Checking quotafile info...\n"
msgstr ""
#: quotacheck_v2.c:56
#, c-format
msgid "Cannot read info from quota file %s: %s\n"
msgstr ""
#: quotacheck_v2.c:61
#, c-format
msgid ""
"WARNING - Quota file %s was probably truncated. Cannot save quota "
"settings...\n"
msgstr ""
#: quotacheck_v2.c:73
msgid "WARNING - Quota file info was corrupted.\n"
msgstr ""
#: quotacheck_v2.c:74
#, c-format
msgid ""
"Size of file: %lu\n"
"Blocks: %u Free block: %u Block with free entry: %u Flags: %x\n"
msgstr ""
#: quotacheck_v2.c:81
#, c-format
msgid ""
"Setting grace times and other flags to default values.\n"
"Assuming number of blocks is %u.\n"
msgstr ""
#: quotacheck_v2.c:91
msgid "File info done.\n"
msgstr ""
#: quotacheck_v2.c:102
msgid "Corrupted blocks: "
msgstr ""
#: quotacheck_v2.c:106
#, c-format
msgid "Block %u: "
msgstr ""
#: quotacheck_v2.c:157
msgid "Duplicated entries."
msgstr ""
#: quotacheck_v2.c:161
#, c-format
msgid ""
"Found more structures for ID %u. Using values: BHARD: %Ld BSOFT: %Ld IHARD: %"
"Ld ISOFT: %Ld\n"
msgstr ""
#: quotacheck_v2.c:169
#, c-format
msgid ""
"Found more structures for ID %u. Values: BHARD: %Ld/%Ld BSOFT: %Ld/%Ld "
"IHARD: %Ld/%Ld ISOFT: %Ld/%Ld\n"
msgstr ""
#: quotacheck_v2.c:174
msgid "Should I use new values"
msgstr ""
#: quotacheck_v2.c:184
#, c-format
msgid ""
"ID %u has more structures. User intervention needed (use -i for interactive "
"mode or -n for automatic answer).\n"
msgstr ""
#: quotacheck_v2.c:221
#, c-format
msgid "Block %u is truncated.\n"
msgstr ""
#: quotacheck_v2.c:230
#, c-format
msgid "Reference to illegal block %u"
msgstr ""
#: quotacheck_v2.c:237
#, c-format
msgid "Block %u in tree referenced twice"
msgstr ""
#: quotacheck_v2.c:252
#, c-format
msgid "Illegal free block reference to block %u"
msgstr ""
#: quotacheck_v2.c:255
#, c-format
msgid "Corrupted number of used entries (%u)"
msgstr ""
#: quotacheck_v2.c:301
msgid "Checking quotafile headers...\n"
msgstr ""
#: quotacheck_v2.c:305
#, c-format
msgid "Cannot read header from quotafile %s: %s\n"
msgstr ""
#: quotacheck_v2.c:307
#, c-format
msgid ""
"WARNING - Quotafile %s was probably truncated. Cannot save quota "
"settings...\n"
msgstr ""
#: quotacheck_v2.c:312
#, c-format
msgid "WARNING - Quota file %s has corrupted headers\n"
msgstr ""
#: quotacheck_v2.c:314
msgid "Headers checked.\n"
msgstr ""
#: quotacheck_v2.c:332
#, c-format
msgid "Headers of file %s checked. Going to load data...\n"
msgstr ""
#: quotacheck_v2.c:340
msgid "Cannot gather quota data. Tree root node corrupted.\n"
msgstr ""
#: quotacheck_v2.c:348
msgid "WARNING - Some data might be changed due to corruption.\n"
msgstr ""
#: quotacheck_v2.c:351
msgid "Not found any corrupted blocks. Congratulations.\n"
msgstr ""
#: quotaio.c:59
msgid "Only RPC quota format is allowed on NFS filesystem.\n"
msgstr ""
#: quotaio.c:68
msgid "RPC quota format not compiled.\n"
msgstr ""
#: quotaio.c:75
msgid "Only XFS quota format is allowed on XFS filesystem.\n"
msgstr ""
#: quotaio.c:86
msgid "XFS quota allowed only on XFS filesystem.\n"
msgstr ""
#: quotaio.c:99
msgid "Quota file not found or has wrong format.\n"
msgstr ""
#: quotaio.c:128
#, c-format
msgid "Cannot initialize quota on %s: %s\n"
msgstr ""
#: quotaio.c:156
#, c-format
msgid "Creation of %s quota format is not supported.\n"
msgstr ""
#: quotaio.c:166
#, c-format
msgid "Cannot create new quotafile %s: %s\n"
msgstr ""
#: quotaio_generic.c:49
#, c-format
msgid "Cannot get info for %s quota file from kernel on %s: %s\n"
msgstr ""
#: quotaio_generic.c:67
#, c-format
msgid "Cannot set info for %s quota file from kernel on %s: %s\n"
msgstr ""
#: quotaio_generic.c:79
#, c-format
msgid "Cannot get quota for %s %d from kernel on %s: %s\n"
msgstr ""
#: quotaio_generic.c:94
#, c-format
msgid "Cannot set quota for %s %d from kernel on %s: %s\n"
msgstr ""
#: quotaio_rpc.c:56 quotaio_v1.c:302 quotaio_v2.c:684
#, c-format
msgid "Trying to write quota to readonly quotafile on %s\n"
msgstr ""
#: quotaio_v1.c:208
#, c-format
msgid "Trying to write info to readonly quotafile on %s.\n"
msgstr ""
#: quotaio_v1.c:356 quotaio_v2.c:806
#, c-format
msgid "Cannot sync quotas on device %s: %s\n"
msgstr ""
#: quotaio_v2.c:152
msgid ""
"Your quota file is stored in wrong endianity. Please use convertquota(8) to "
"convert it.\n"
msgstr ""
#: quotaio_v2.c:234
#, c-format
msgid "Trying to write info to readonly quotafile on %s\n"
msgstr ""
#: quotaio_v2.c:289
#, c-format
msgid "Cannot write block (%u): %s\n"
msgstr ""
#: quotaio_v2.c:312
msgid "Cannot allocate new quota block (out of disk space).\n"
msgstr ""
#: quotaio_v2.c:418
msgid "find_free_dqentry(): Data block full but it shouldn't.\n"
msgstr ""
#: quotaio_v2.c:454
#, c-format
msgid "Inserting already present quota entry (block %u).\n"
msgstr ""
#: quotaio_v2.c:477
#, c-format
msgid "Cannot write quota (id %u): %s\n"
msgstr ""
#: quotaio_v2.c:495
#, c-format
msgid "Quota write failed (id %u): %s\n"
msgstr ""
#: quotaio_v2.c:506
#, c-format
msgid "Quota structure has offset to other block (%u) than it should (%u).\n"
msgstr ""
#: quotaio_v2.c:586
#, c-format
msgid "Quota for id %u referenced but not present.\n"
msgstr ""
#: quotaio_v2.c:662
#, c-format
msgid "Cannot read quota structure for id %u: %s\n"
msgstr ""
#: quotaio_v2.c:755
#, c-format
msgid ""
"Illegal reference in %s quota file on %s. Quota file is probably corrupted.\n"
"Please run quotacheck(8) and try again.\n"
msgstr ""
#: quotaio_v2.c:830
#, c-format
msgid ""
"Statistics:\n"
"Total blocks: %u\n"
"Data blocks: %u\n"
"Entries: %u\n"
"Used average: %f\n"
msgstr ""
#: quotaio_xfs.c:242
#, c-format
msgid "*** Status for %s quotas on device %s\n"
msgstr ""
#: quotaio_xfs.c:244 quotaio_xfs.c:259
msgid "ON"
msgstr ""
#: quotaio_xfs.c:244 quotaio_xfs.c:259
msgid "OFF"
msgstr ""
#: quotaio_xfs.c:246 quotaio_xfs.c:250
#, c-format
msgid "Accounting: %s; Enforcement: %s\n"
msgstr ""
#: quotaio_xfs.c:262 quotaio_xfs.c:266
#, c-format
msgid "Accounting [ondisk]: %s; Enforcement [ondisk]: %s\n"
msgstr ""
#: quotaio_xfs.c:275 quotaio_xfs.c:284
#, c-format
msgid "Inode: none\n"
msgstr ""
#: quotaio_xfs.c:277 quotaio_xfs.c:286
#, c-format
msgid "Inode: #%Lu (%Lu blocks, %u extents)\n"
msgstr ""
#: quotaon.c:67
#, c-format
msgid ""
"Usage:\n"
"\t%s [-guvp] [-F quotaformat] [-x state] -a\n"
"\t%s [-guvp] [-F quotaformat] [-x state] filesys ...\n"
"\n"
"-a, --all turn quotas on for all filesystems\n"
"-f, --off turn quotas off\n"
"-u, --user operate on user quotas\n"
"-g, --group operate on group quotas\n"
"-p, --print-state print whether quotas are on or off\n"
"-x, --xfs-command=cmd perform XFS quota command\n"
"-F, --format=formatname operate on specific quota format\n"
"-v, --verbose print more messages\n"
"-h, --help display this help text and exit\n"
"-V, --version display version information and exit\n"
msgstr ""
#: quotaon.c:139
msgid "Cannot turn on/off quotas via RPC.\n"
msgstr ""
#: quotaon.c:167
msgid "Cannot change state of XFS quota. It's not compiled in kernel.\n"
msgstr ""
#: quotaon.c:181
#, c-format
msgid "Cannot find quota file on %s [%s] to turn quotas on/off.\n"
msgstr ""
#: quotaon.c:208
#, c-format
msgid "%s quota on %s (%s) is %s\n"
msgstr ""
#: quotaon.c:209
msgid "on"
msgstr ""
#: quotaon.c:209
msgid "off"
msgstr ""
#: quotaon.c:227
#, c-format
msgid "quotactl on %s [%s]: %s\n"
msgstr ""
#: quotaon.c:231
#, c-format
msgid "%s [%s]: %s quotas turned off\n"
msgstr ""
#: quotaon.c:244
#, c-format
msgid "cannot find %s on %s [%s]\n"
msgstr ""
#: quotaon.c:246
#, c-format
msgid "using %s on %s [%s]: %s\n"
msgstr ""
#: quotaon.c:248
msgid "Maybe create new quota files with quotacheck(8)?\n"
msgstr ""
#: quotaon.c:250
msgid "Quota format not supported in kernel.\n"
msgstr ""
#: quotaon.c:254
#, c-format
msgid "%s [%s]: %s quotas turned on\n"
msgstr ""
#: quotaon.c:281
#, c-format
msgid "set root_squash on %s: %s\n"
msgstr ""
#: quotaon.c:285
#, c-format
msgid "%s: %s root_squash turned off\n"
msgstr ""
#: quotaon.c:287
#, c-format
msgid "%s: %s root_squash turned on\n"
msgstr ""
#: quotaon.c:339
#, c-format
msgid "Name must be quotaon or quotaoff not %s\n"
msgstr ""
#: quotaon.c:345
#, c-format
msgid "Required format %s not supported by kernel.\n"
msgstr ""
#: quotaon.c:347
msgid "Warning: No quota format detected in the kernel.\n"
msgstr ""
#: quotaon_xfs.c:34
#, c-format
msgid "quotactl() on %s: %s\n"
msgstr ""
#: quotaon_xfs.c:62 quotaon_xfs.c:84
#, c-format
msgid "Enabling %s quota on root filesystem (reboot to take effect)\n"
msgstr ""
#: quotaon_xfs.c:66
#, c-format
msgid "Enable XFS %s quota during mount\n"
msgstr ""
#: quotaon_xfs.c:76
#, c-format
msgid "Cannot delete %s quota on %s - switch quota accounting off first\n"
msgstr ""
#: quotaon_xfs.c:88
#, c-format
msgid "Enabling %s quota accounting on %s\n"
msgstr ""
#: quotaon_xfs.c:92
#, c-format
msgid "Disabling %s quota accounting on %s\n"
msgstr ""
#: quotaon_xfs.c:102
#, c-format
msgid "Cannot delete %s quota on %s - switch quota enforcement off first\n"
msgstr ""
#: quotaon_xfs.c:107
#, c-format
msgid "Enforcing %s quota already on %s\n"
msgstr ""
#: quotaon_xfs.c:111
#, c-format
msgid "Disabling %s quota enforcement on %s\n"
msgstr ""
#: quotaon_xfs.c:118
#, c-format
msgid "Unexpected XFS quota state sought on %s\n"
msgstr ""
#: quotaon_xfs.c:133
#, c-format
msgid "quotactl on %s: %s\n"
msgstr ""
#: quotaon_xfs.c:137
#, c-format
msgid "%s: %s quotas turned off\n"
msgstr ""
#: quotaon_xfs.c:139
#, c-format
msgid "%s: %s quotas turned on\n"
msgstr ""
#: quotaon_xfs.c:153
#, c-format
msgid "Failed to delete quota: %s\n"
msgstr ""
#: quotaon_xfs.c:159
#, c-format
msgid "%s: deleted %s quota blocks\n"
msgstr ""
#: quotaon_xfs.c:220
#, c-format
msgid "Invalid argument \"%s\"\n"
msgstr ""
#: quotaops.c:110
#, c-format
msgid "%s (uid %d): Permission denied\n"
msgstr ""
#: quotaops.c:122
#, c-format
msgid "%s (gid %d): gid set allocation (%d): %s\n"
msgstr ""
#: quotaops.c:133
#, c-format
msgid "%s (gid %d): error while trying getgroups(): %s\n"
msgstr ""
#: quotaops.c:144
#, c-format
msgid "%s (gid %d): Permission denied\n"
msgstr ""
#: quotaops.c:158
#, c-format
msgid "error while getting quota from %s for %s (id %u): %s\n"
msgstr ""
#: quotaops.c:183
#, c-format
msgid "Cannot write quota for %u on %s: %s\n"
msgstr ""
#: quotaops.c:232
msgid "Too many parameters to editor.\n"
msgstr ""
#: quotaops.c:240
#, c-format
msgid "Cannot exec %s\n"
msgstr ""
#: quotaops.c:259 quotaops.c:444
#, c-format
msgid "Cannot duplicate descriptor of file to write to: %s\n"
msgstr ""
#: quotaops.c:262
#, c-format
msgid "Disk quotas for %s %s (%cid %d):\n"
msgstr ""
#: quotaops.c:266
#, c-format
msgid ""
" Filesystem blocks soft hard inodes "
"soft hard\n"
msgstr ""
#: quotaops.c:278
#, c-format
msgid "Quotas for %s %s:\n"
msgstr ""
#: quotaops.c:280 quotaops.c:284
#, c-format
msgid "%s %d, limits (soft = %d, hard = %d)\n"
msgstr ""
#: quotaops.c:281
msgid "blocks in use:"
msgstr ""
#: quotaops.c:285
msgid "\tinodes in use:"
msgstr ""
#: quotaops.c:311
#, c-format
msgid "WARNING - %s: cannot change current block allocation\n"
msgstr ""
#: quotaops.c:314
#, c-format
msgid "WARNING - %s: cannot change current inode allocation\n"
msgstr ""
#: quotaops.c:337 quotaops.c:486
#, c-format
msgid "Cannot duplicate descriptor of temp file: %s\n"
msgstr ""
#: quotaops.c:351
#, c-format
msgid ""
"Bad format:\n"
"%s\n"
msgstr ""
#: quotaops.c:364 quotaops.c:628
#, c-format
msgid "%s - bad format\n"
msgstr ""
#: quotaops.c:368
#, c-format
msgid "%s - %s -- bad format\n"
msgstr ""
#: quotaops.c:373
#, c-format
msgid " blocks in use: %Lu, limits (soft = %Lu, hard = %Lu)"
msgstr ""
#: quotaops.c:376 quotaops.c:382 quotaops.c:390 quotaops.c:632 quotaops.c:639
#, c-format
msgid "%s - %s -- bad format\n"
msgstr ""
#: quotaops.c:387
#, c-format
msgid "\tinodes in use: %Lu, limits (soft = %Lu, hard = %Lu)"
msgstr ""
#: quotaops.c:446
#, c-format
msgid "Times to enforce softlimit for %s %s (%cid %d):\n"
msgstr ""
#: quotaops.c:448 quotaops.c:551 quotaops.c:560
#, c-format
msgid "Time units may be: days, hours, minutes, or seconds\n"
msgstr ""
#: quotaops.c:450
#, c-format
msgid ""
" Filesystem block grace inode grace\n"
msgstr ""
#: quotaops.c:455 quotaops.c:461 quotaops.c:503 quotaops.c:515 setquota.c:225
#: setquota.c:231
msgid "unset"
msgstr ""
#: quotaops.c:457 quotaops.c:463
msgid "0seconds"
msgstr ""
#: quotaops.c:465 quotasys.c:329
#, c-format
msgid "%useconds"
msgstr ""
#: quotaops.c:500 quotaops.c:616
#, c-format
msgid ""
"bad format:\n"
"%s\n"
msgstr ""
#: quotaops.c:510 quotaops.c:646
msgid "Bad time units. Units are 'second', 'minute', 'hour', and 'day'.\n"
msgstr ""
#: quotaops.c:546
#, c-format
msgid "Cannot duplicate descriptor of file to edit: %s\n"
msgstr ""
#: quotaops.c:549 quotaops.c:561
#, c-format
msgid "Grace period before enforcing soft limits for %ss:\n"
msgstr ""
#: quotaops.c:552
#, c-format
msgid " Filesystem Block grace period Inode grace period\n"
msgstr ""
#: quotaops.c:566
#, c-format
msgid "block grace period: %s, file grace period: %s\n"
msgstr ""
#: quotaops.c:594
#, c-format
msgid "Cannot reopen temp file: %s\n"
msgstr ""
#: quotaops.c:636
#, c-format
msgid " block grace period: %d %s file grace period: %d %s"
msgstr ""
#: quotastats.c:48
#, c-format
msgid "Cannot read stat file %s: %s\n"
msgstr ""
#: quotastats.c:83
#, c-format
msgid "Error while getting quota statistics from kernel: %s\n"
msgstr ""
#: quotastats.c:87
#, c-format
msgid "Error while getting old quota statistics from kernel: %s\n"
msgstr ""
#: quotastats.c:101
#, c-format
msgid "Kernel quota version: old\n"
msgstr ""
#: quotastats.c:103
#, c-format
msgid "Kernel quota version: %u.%u.%u\n"
msgstr ""
#: quotastats.c:104
#, c-format
msgid "Number of dquot lookups: %ld\n"
msgstr ""
#: quotastats.c:105
#, c-format
msgid "Number of dquot drops: %ld\n"
msgstr ""
#: quotastats.c:106
#, c-format
msgid "Number of dquot reads: %ld\n"
msgstr ""
#: quotastats.c:107
#, c-format
msgid "Number of dquot writes: %ld\n"
msgstr ""
#: quotastats.c:108
#, c-format
msgid "Number of quotafile syncs: %ld\n"
msgstr ""
#: quotastats.c:109
#, c-format
msgid "Number of dquot cache hits: %ld\n"
msgstr ""
#: quotastats.c:110
#, c-format
msgid "Number of allocated dquots: %ld\n"
msgstr ""
#: quotastats.c:111
#, c-format
msgid "Number of free dquots: %ld\n"
msgstr ""
#: quotastats.c:112
#, c-format
msgid "Number of in use dquot entries (user/group): %ld\n"
msgstr ""
#: quotasys.c:107
#, c-format
msgid "user %s does not exist.\n"
msgstr ""
#: quotasys.c:136
#, c-format
msgid "group %s does not exist.\n"
msgstr ""
#: quotasys.c:238
#, c-format
msgid ""
"Unknown quota format: %s\n"
"Supported formats are:\n"
" vfsold - original quota format\n"
" vfsv0 - new quota format\n"
" rpc - use RPC calls\n"
" xfs - XFS quota format\n"
msgstr ""
#: quotasys.c:253
msgid "Unknown format"
msgstr ""
#: quotasys.c:317
#, c-format
msgid "%ddays"
msgstr ""
#: quotasys.c:319
#, c-format
msgid "%02d:%02d"
msgstr ""
#: quotasys.c:331
#, c-format
msgid "%uminutes"
msgstr ""
#: quotasys.c:333
#, c-format
msgid "%uhours"
msgstr ""
#: quotasys.c:335
#, c-format
msgid "%udays"
msgstr ""
#: quotasys.c:476
#, c-format
msgid "Cannot stat quota file %s: %s\n"
msgstr ""
#: quotasys.c:599
msgid "Not all specified mountpoints are using quota.\n"
msgstr ""
#: quotasys.c:613
#, c-format
msgid "Error while releasing file on %s\n"
msgstr ""
#: quotasys.c:670
#, c-format
msgid "Cannot create set for sigaction(): %s\n"
msgstr ""
#: quotasys.c:673
#, c-format
msgid "Cannot set signal handler: %s\n"
msgstr ""
#: quotasys.c:720
#, c-format
msgid "Cannot reset signal handler: %s\n"
msgstr ""
#: quotasys.c:829 quotasys.c:834 warnquota.c:687
#, c-format
msgid "Cannot open %s: %s\n"
msgstr ""
#: quotasys.c:845
#, c-format
msgid "Cannot get device name for %s\n"
msgstr ""
#: quotasys.c:882
#, c-format
msgid "Cannot resolve mountpoint path %s: %s\n"
msgstr ""
#: quotasys.c:888
#, c-format
msgid "Cannot statfs() %s: %s\n"
msgstr ""
#: quotasys.c:900
#, c-format
msgid "Cannot stat() mounted device %s: %s\n"
msgstr ""
#: quotasys.c:906
#, c-format
msgid ""
"Device (%s) filesystem is mounted on unsupported device type. Skipping.\n"
msgstr ""
#: quotasys.c:921
#, c-format
msgid "Cannot find device of loopback mount in options for %s. Skipping.\n"
msgstr ""
#: quotasys.c:930
#, c-format
msgid "Cannot stat() loopback device %s: %s\n"
msgstr ""
#: quotasys.c:935
#, c-format
msgid "Loopback device %s is not block device!\n"
msgstr ""
#: quotasys.c:953
#, c-format
msgid "Cannot stat() mountpoint %s: %s\n"
msgstr ""
#: quotasys.c:1013
#, c-format
msgid ""
"Cannot find a device with %s.\n"
"Skipping...\n"
msgstr ""
#: quotasys.c:1017
#, c-format
msgid ""
"Cannot stat() a mountpoint with %s: %s\n"
"Skipping...\n"
msgstr ""
#: quotasys.c:1025
#, c-format
msgid ""
"Cannot stat() given mountpoint %s: %s\n"
"Skipping...\n"
msgstr ""
#: quotasys.c:1035
#, c-format
msgid "Cannot find a filesystem mountpoint for directory %s\n"
msgstr ""
#: quotasys.c:1041
#, c-format
msgid "Cannot resolve path %s: %s\n"
msgstr ""
#: quotasys.c:1052
#, c-format
msgid "Cannot find mountpoint for device %s\n"
msgstr ""
#: quotasys.c:1058
#, c-format
msgid "Specified path %s is not directory nor device.\n"
msgstr ""
#: quotasys.c:1066
msgid "No correct mountpoint specified.\n"
msgstr ""
#: quotasys.c:1127
#, c-format
msgid "Mountpoint (or device) %s not found.\n"
msgstr ""
#: repquota.c:47
#, c-format
msgid ""
"Utility for reporting quotas.\n"
"Usage:\n"
"%s [-vugsi] [-c|C] [-t|n] [-F quotaformat] (-a | mntpoint)\n"
"\n"
"-v, --verbose display also users/groups without any usage\n"
"-u, --user display information about users\n"
"-g, --group display information about groups\n"
"-s, --human-readable show numbers in human friendly units (MB, "
"GB, ...)\n"
"-t, --truncate-names truncate names to 8 characters\n"
"-n, --no-names do not translate uid/gid to name\n"
"-i, --no-autofs avoid autofs mountpoints\n"
"-c, --batch-translation translate big number of ids at once\n"
"-C, --no-batch-translation translate ids one by one\n"
"-F, --format=formatname report information for specific format\n"
"-h, --help display this help message and exit\n"
"-V, --version display version information and exit\n"
"\n"
msgstr ""
#: repquota.c:137
msgid "Repquota cannot report through RPC calls.\n"
msgstr ""
#: repquota.c:141
msgid "Specified both -n and -t but only one of them can be used.\n"
msgstr ""
#: repquota.c:270
#, c-format
msgid "*** Report for %s quotas on device %s\n"
msgstr ""
#: repquota.c:273
#, c-format
msgid "Block grace time: %s; Inode grace time: %s\n"
msgstr ""
#: repquota.c:274
#, c-format
msgid " Block limits File limits\n"
msgstr ""
#: repquota.c:275
#, c-format
msgid "%-9s used soft hard grace used soft hard grace\n"
msgstr ""
#: repquota.c:275
msgid "User"
msgstr ""
#: repquota.c:275
msgid "Group"
msgstr ""
#: rquota_svc.c:86
#, c-format
msgid ""
"Usage: %s [options]\n"
"Options are:\n"
" -h --help shows this text\n"
" -V --version shows version information\n"
" -F --foreground starts the quota service in foreground\n"
" -I --autofs do not ignore mountpoints mounted by automounter\n"
" -p --port <port> listen on given port\n"
" -s --no-setquota disables remote calls to setquota (default)\n"
" -S --setquota enables remote calls to setquota\n"
" -x --xtab <path> set an alternative file with NFSD export table\n"
msgstr ""
#: rquota_svc.c:97
#, c-format
msgid ""
"Usage: %s [options]\n"
"Options are:\n"
" -h --help shows this text\n"
" -V --version shows version information\n"
" -F --foreground starts the quota service in foreground\n"
" -I --autofs do not ignore mountpoints mounted by automounter\n"
" -p --port <port> listen on given port\n"
" -x --xtab <path> set an alternative file with NFSD export table\n"
msgstr ""
#: rquota_svc.c:144
#, c-format
msgid "Illegal port number: %s\n"
msgstr ""
#: rquota_svc.c:151
#, c-format
msgid "Cannot access the specified xtab file %s: %s\n"
msgstr ""
#: rquota_svc.c:158
#, c-format
msgid "Unknown option '%c'.\n"
msgstr ""
#: rquota_svc.c:182
#, c-format
msgid "host %s attempted to call setquota when disabled\n"
msgstr ""
#: rquota_svc.c:189
#, c-format
msgid "host %s attempted to call setquota from port >= 1024\n"
msgstr ""
#: rquota_svc.c:225
#, c-format
msgid "Denied access to host %s\n"
msgstr ""
#: rquota_svc.c:313 rquota_svc.c:399
msgid "unable to free arguments\n"
msgstr ""
#: rquota_svc.c:422
#, c-format
msgid ""
"Warning: Cannot open export table %s: %s\n"
"Using '/' as a pseudofilesystem root.\n"
msgstr ""
#: rquota_svc.c:474
msgid "cannot create udp service.\n"
msgstr ""
#: rquota_svc.c:478
msgid "unable to register (RQUOTAPROG, RQUOTAVERS, udp).\n"
msgstr ""
#: rquota_svc.c:482
msgid "unable to register (RQUOTAPROG, EXT_RQUOTAVERS, udp).\n"
msgstr ""
#: rquota_svc.c:489
msgid "cannot create tcp service.\n"
msgstr ""
#: rquota_svc.c:493
msgid "unable to register (RQUOTAPROG, RQUOTAVERS, tcp).\n"
msgstr ""
#: rquota_svc.c:497
msgid "unable to register (RQUOTAPROG, EXT_RQUOTAVERS, tcp).\n"
msgstr ""
#: rquota_svc.c:506
msgid "svc_run returned\n"
msgstr ""
#: set_limits_example.c:18
#, c-format
msgid "copy_user_quota_limits: Failed to set userquota for uid %ld : %s\n"
msgstr ""
#: set_limits_example.c:25
#, c-format
msgid "copy_user_quota_limits: Failed to get userquota for uid %ld : %s\n"
msgstr ""
#: set_limits_example.c:41
#, c-format
msgid "copy_group_quota_limits: Failed to set groupquota for uid %ld : %s\n"
msgstr ""
#: set_limits_example.c:48
#, c-format
msgid "copy_group_quota_limits: Failed to get groupquota for uid %ld : %s\n"
msgstr ""
#: setquota.c:49
#, c-format
msgid ""
"Usage:\n"
" setquota [-u|-g] %1$s[-F quotaformat] <user|group>\n"
"\t<block-softlimit> <block-hardlimit> <inode-softlimit> <inode-hardlimit> -a|"
"<filesystem>...\n"
" setquota [-u|-g] %1$s[-F quotaformat] <-p protouser|protogroup> <user|"
"group> -a|<filesystem>...\n"
" setquota [-u|-g] %1$s[-F quotaformat] -b -a|<filesystem>...\n"
" setquota [-u|-g] [-F quotaformat] -t <blockgrace> <inodegrace> -a|"
"<filesystem>...\n"
" setquota [-u|-g] [-F quotaformat] <user|group> -T <blockgrace> "
"<inodegrace> -a|<filesystem>...\n"
"\n"
"-u, --user set limits for user\n"
"-g, --group set limits for group\n"
"-a, --all set limits for all filesystems\n"
" --always-resolve always try to resolve name, even if is\n"
" composed only of digits\n"
"-F, --format=formatname operate on specific quota format\n"
"-p, --prototype=protoname copy limits from user/group\n"
"-b, --batch read limits from standard input\n"
msgstr ""
#: setquota.c:65
msgid "-r, --remote set remote quota (via RPC)\n"
msgstr ""
#: setquota.c:67
msgid ""
"-t, --edit-period edit grace period\n"
"-T, --edit-times edit grace times for user/group\n"
"-h, --help display this help text and exit\n"
"-V, --version display version information and exit\n"
"\n"
msgstr ""
#: setquota.c:82
#, c-format
msgid "Bad %s: %s\n"
msgstr ""
#: setquota.c:170
msgid "Group and user quotas cannot be used together.\n"
msgstr ""
#: setquota.c:174
msgid "Prototype user has no sense when editting grace times.\n"
msgstr ""
#: setquota.c:178
msgid "Cannot set both individual and global grace time.\n"
msgstr ""
#: setquota.c:182
msgid "Batch mode cannot be used for setting grace times.\n"
msgstr ""
#: setquota.c:186
msgid "Batch mode and prototype user cannot be used together.\n"
msgstr ""
#: setquota.c:209
msgid "block softlimit"
msgstr ""
#: setquota.c:210
msgid "block hardlimit"
msgstr ""
#: setquota.c:211
msgid "inode softlimit"
msgstr ""
#: setquota.c:212
msgid "inode hardlimit"
msgstr ""
#: setquota.c:218 setquota.c:230
msgid "block grace time"
msgstr ""
#: setquota.c:219 setquota.c:236
msgid "inode grace time"
msgstr ""
#: setquota.c:242
msgid "Mountpoint not specified.\n"
msgstr ""
#: setquota.c:297
#, c-format
msgid "Cannot parse input line %d.\n"
msgstr ""
#: setquota.c:301
#, c-format
msgid "Unable to get name '%s'.\n"
msgstr ""
#: setquota.c:359
#, c-format
msgid ""
"cannot write times for %s. Maybe kernel does not support such operation?\n"
msgstr ""
#: svc_socket.c:40
#, c-format
msgid "Cannot create socket: %s\n"
msgstr ""
#: svc_socket.c:47
#, c-format
msgid "Cannot set socket options: %s\n"
msgstr ""
#: svc_socket.c:82
#, c-format
msgid "Cannot bind to given address: %s\n"
msgstr ""
#: warnquota.c:54
msgid ""
"Hi,\n"
"\n"
"We noticed that you are in violation with the quotasystem\n"
"used on this system. We have found the following violations:\n"
"\n"
msgstr ""
#: warnquota.c:56
#, c-format
msgid ""
"\n"
"We hope that you will cleanup before your grace period expires.\n"
"\n"
"Basically, this means that the system thinks you are using more disk space\n"
"on the above partition(s) than you are allowed. If you do not delete files\n"
"and get below your quota before the grace period expires, the system will\n"
"prevent you from creating new files.\n"
"\n"
"For additional assistance, please contact us at %s\n"
"or via phone at %s.\n"
msgstr ""
#: warnquota.c:63
#, c-format
msgid ""
"Hi,\n"
"\n"
"We noticed that the group %s you are member of violates the quotasystem\n"
"used on this system. We have found the following violations:\n"
"\n"
msgstr ""
#: warnquota.c:65
#, c-format
msgid ""
"\n"
"Please cleanup the group data before the grace period expires.\n"
"\n"
"Basically, this means that the system thinks group is using more disk space\n"
"on the above partition(s) than it is allowed. If you do not delete files\n"
"and get below group quota before the grace period expires, the system will\n"
"prevent you and other members of the group from creating new files owned by\n"
"the group.\n"
"\n"
"For additional assistance, please contact us at %s\n"
"or via phone at %s.\n"
msgstr ""
#: warnquota.c:197
#, c-format
msgid "Cannot get name for uid/gid %u.\n"
msgstr ""
#: warnquota.c:281
#, c-format
msgid "Cannot create pipe: %s\n"
msgstr ""
#: warnquota.c:287
#, c-format
msgid "Cannot fork: %s\n"
msgstr ""
#: warnquota.c:292
#, c-format
msgid "Cannot duplicate descriptor: %s\n"
msgstr ""
#: warnquota.c:296
#, c-format
msgid "Cannot execute '%s': %s\n"
msgstr ""
#: warnquota.c:301
#, c-format
msgid "Cannot open pine: %s\n"
msgstr ""
#: warnquota.c:382
msgid "Could not setup ldap connection, returning.\n"
msgstr ""
#: warnquota.c:399
#, c-format
msgid "Error with %s.\n"
msgstr ""
#: warnquota.c:407
#, c-format
msgid "Multiple entries found for client %s, %d not sending mail.\n"
msgstr ""
#: warnquota.c:411
#, c-format
msgid "Entry not found for client %s, %d not sending mail.\n"
msgstr ""
#: warnquota.c:422
#, c-format
msgid "Could not get values for %s.\n"
msgstr ""
#: warnquota.c:454
#, c-format
msgid "Administrator for a group %s not found. Cancelling mail.\n"
msgstr ""
#: warnquota.c:494
#, c-format
msgid ""
"\n"
" Block limits File limits\n"
msgstr ""
#: warnquota.c:495
#, c-format
msgid ""
"Filesystem used soft hard grace used soft hard grace\n"
msgstr ""
#: warnquota.c:535
#, c-format
msgid "Cannot wait for mailer: %s\n"
msgstr ""
#: warnquota.c:537
msgid "Warning: Mailer exitted abnormally.\n"
msgstr ""
#: warnquota.c:594
#, c-format
msgid ""
"Cannot open %s: %s\n"
"Will use device names.\n"
msgstr ""
#: warnquota.c:617
#, c-format
msgid "Cannot parse line %d in quotatab (missing ':')\n"
msgstr ""
#: warnquota.c:631
#, c-format
msgid "Cannot stat device %s (maybe typo in quotatab)\n"
msgstr ""
#: warnquota.c:651
#, c-format
msgid ""
"Incorrect format string for variable %s.\n"
"Unrecognized expression %%%c.\n"
msgstr ""
#: warnquota.c:707
#, c-format
msgid "Line %d too long. Truncating.\n"
msgstr ""
#: warnquota.c:777
#, c-format
msgid "Cannot parse time at CC_BEFORE variable (line %d).\n"
msgstr ""
#: warnquota.c:799
#, c-format
msgid "Error in config file (line %d), ignoring\n"
msgstr ""
#: warnquota.c:802
#, c-format
msgid "Possible error in config file (line %d), ignoring\n"
msgstr ""
#: warnquota.c:805
msgid "Unterminated last line, ignoring\n"
msgstr ""
#: warnquota.c:824
#, c-format
msgid "Cannot open file with group administrators: %s\n"
msgstr ""
#: warnquota.c:839
#, c-format
msgid "Parse error at line %d. Cannot find end of group name.\n"
msgstr ""
#: warnquota.c:848
#, c-format
msgid "Parse error at line %d. Cannot find administrators name.\n"
msgstr ""
#: warnquota.c:858
#, c-format
msgid ""
"Parse error at line %d. Trailing characters after administrators name.\n"
msgstr ""
#: warnquota.c:921
msgid ""
"Usage:\n"
" warnquota [-ugsid] [-F quotaformat] [-c configfile] [-q quotatabfile] [-a "
"adminsfile]\n"
"\n"
"-u, --user warn users\n"
"-g, --group warn groups\n"
"-s, --human-readable send information in more human friendly "
"units\n"
"-i, --no-autofs avoid autofs mountpoints\n"
"-d, --no-details do not send quota information itself\n"
"-F, --format=formatname use quotafiles of specific format\n"
"-c, --config=config-file non-default config file\n"
"-q, --quota-tab=quotatab-file non-default quotatab\n"
"-a, --admins-file=admins-file non-default admins file\n"
"-h, --help display this help message and exit\n"
"-v, --version display version information and exit\n"
"\n"
msgstr ""
#: warnquota.c:1002
#, c-format
msgid "Cannot get host name: %s\n"
msgstr ""
#: xqmstats.c:31 xqmstats.c:36
msgid "The running kernel does not support XFS\n"
msgstr ""
#: xqmstats.c:48
#, c-format
msgid "XFS Quota Manager dquot statistics\n"
msgstr ""
#: xqmstats.c:49
#, c-format
msgid " reclaims: %u\n"
msgstr ""
#: xqmstats.c:50
#, c-format
msgid " missed reclaims: %u\n"
msgstr ""
#: xqmstats.c:51
#, c-format
msgid " dquot dups: %u\n"
msgstr ""
#: xqmstats.c:52
#, c-format
msgid " cache misses: %u\n"
msgstr ""
#: xqmstats.c:53
#, c-format
msgid " cache hits: %u\n"
msgstr ""
#: xqmstats.c:54
#, c-format
msgid " dquot wants: %u\n"
msgstr ""
#: xqmstats.c:55
#, c-format
msgid " shake reclaims: %u\n"
msgstr ""
#: xqmstats.c:56
#, c-format
msgid " inact reclaims: %u\n"
msgstr ""
#: xqmstats.c:61
#, c-format
msgid "Maximum %u dquots (currently %u incore, %u on freelist)\n"
msgstr ""
|