summaryrefslogtreecommitdiffstats
path: root/mdkapplet-restricted-helper
blob: c1d8a43d804a7e8188c74a671a71f8480b721833 (plain)
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
#!/usr/bin/perl
################################################################################
# Mandriva Online                                                              # 
#                                                                              #
# Copyright (C) 2008 Mandriva                                             #
#                                                                              #
# Thierry Vignaud <tvignaud at mandriva dot com>                               #
#                                                                              #
# This program is free software; you can redistribute it and/or modify         #
# it under the terms of the GNU General Public License Version 2 as            #
# published by the Free Software Foundation.                                   #
#                                                                              #
# This program is distributed in the hope that it will be useful,              #
# but WITHOUT ANY WARRANTY; without even the implied warranty of               #
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the                #
# GNU General Public License for more details.                                 #
#                                                                              #
# You should have received a copy of the GNU General Public License            #
# along with this program; if not, write to the Free Software                  #
# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.   #
################################################################################

use strict;
use lib qw(/usr/lib/libDrakX /usr/lib/libDrakX/drakfirsttime);
use standalone; # for explanations
use common;
use run_program;
use feature 'state';

BEGIN { unshift @::textdomains, 'mdkonline' }

use mygtk2 qw(gtknew); #- do not import gtkadd which conflicts with ugtk2 version
use ugtk2 qw(:all);
use urpm::cfg;
use mdkonline;
use mdkapplet_gui;
use interactive;

use XML::Simple;
use URI::Escape;
use LWP::UserAgent;         
use HTTP::Request::Common;
use HTTP::Request;

foreach my $opt (@ARGV) {
    if ($opt =~ /--(rpm-root|urpmi-root)=(.*)/) {
        $::rpmdrake_options{$1}[0] = $2;
    }
}

get_restricted_authentication();

ugtk2::exit(0);


sub get_restricted_authentication() {
    my $w = ugtk2->new(N("Adding an additional package medium"), width => $width + 20);
    my ($password_w, $email_w, $password);

    $password_w = gtknew('Entry');
    $password_w->set_visibility(0);
    $w->{real_window}->signal_connect(destroy => sub { $password = $password_w->get_text });
    require interactive::gtk;

    my $res =
      fill_n_run_portable_dialog(
          $w,
          [
              get_banner(N("Adding an additional package medium")),
              gtknew('Label_Left', text => N("Please fill in your account ID to add an additional package medium"),
                     @common),
              gtknew('HButtonBox', layout => 'start', children_tight => [
                  interactive::gtk::add_padding(
                      new_link_button('https://my.mandriva.com/info', N("More information on your user account")))
              ]),
              gtknew('Table', col_spacings => 5, row_spacings => 5, children => [
                  [ N("Your email"), $email_w = gtknew('Entry') ],
                  [ N("Your password"), $password_w ],
              ]),
              gtknew('HButtonBox', layout => 'start', children_tight => [
                  interactive::gtk::add_padding(
                      new_link_button('https://my.mandriva.com/reset/password/', N("Forgotten password")))
              ]),
              create_okcancel($w, N("Next"), N("Cancel")),
          ]);

    my $email = $email_w->get_text;
    if ($res) {
        if ($email && $password) {
            add_restricted_medium($email, $password);
        } else {
            interactive->vnew->ask_warn(N("Error"), N("Password and email cannot be empty."));
            goto &get_restricted_authentication;
        }
    } else {
        0;
    }
}

sub get_from {
    my ($link, $header) = @_;
    
    my $ua = LWP::UserAgent->new;
    $ua->agent("mdkapplet (mdkonline-$mdkonlin::version)");
    $ua->env_proxy;

    my $response = $ua->request(POST $link, $header);
    $response;
}

my $error;
sub add_restricted_medium {
    my ($email, $password) = @_;

    my $res =  get_from("https://my.mandriva.com/rest/authenticate", [ 'username', $email, 'password', $password,
                                                                       'return', 'userdata' ]);
    my $ref = XML::Simple->new->XMLin($res->{_content});

    if ($ref->{code} != 0) {
        my $in = interactive->vnew;
        $in->ask_warn(N("Error"), N("An error occurred") . "\n" . $ref->{message});
        goto &get_restricted_authentication;
    } elsif ($ref->{data}{'can-access-restricted-repositories'} ne 'YES') {
        no_rigths_dialog();
    } else {
        $error = 0;
        my $arch = urpm::cfg::get_arch();
        actually_add_restricted_medium($ref, $password, $arch)
          or adding_media_failed();
        # FIXME: is not enough if we ever support sparc64, ppc64 and the like:
        if ($arch eq 'x86_64') {
            actually_add_restricted_medium($ref, $password, 'i586')
              or adding_media_failed();
        }
        if (!$error) {
            #interactive->vnew->ask_okcancel(N("Error"), N("An error occurred while adding medium"));
            my $w = ugtk2->new(N("Successfully added media %s.", 'Restricted'), grab => 1);
            $w->_ask_okcancel(N("Successfully added media %s.", 'Restricted'), N("Ok"), undef);
            ugtk2::main($w);
        }
    }
}

sub no_rigths_dialog {
    my $w = ugtk2->new(N("Adding an additional package medium"), width => $width + 20);

    fill_n_run_portable_dialog(
          $w,
          [
              get_banner(N("Adding an additional package medium")),
              gtknew('Label_Left', text => N("Your Mandriva account does not have Powerpack download subscription enabled."),
                     @common),
              gtknew('HButtonBox', layout => 'start', children_tight => [
                  interactive::gtk::add_padding(
                      new_link_button('https://my.mandriva.com/powerpack/', N("More Information")))
              ]),
              create_okcancel($w, N("Close"), undef),
          ]);
}

sub adding_media_failed {
    $error = 1;
    interactive->vnew->ask_warn(N("Error"), N("An error occurred while adding medium"));
    goto &get_restricted_authentication;
}

sub actually_add_restricted_medium {
    my ($ref, $password, $arch) = @_;
    my @options = ({ sensitive_arguments => 1 }, 'urpmi.addmedia', '--xml-info', 'always');
    my $uri = "https://" . uri_escape($ref->{data}{email}) . ":$password\@dl.mandriva.com/rpm/comm/2009.0/";
    run_program::raw(@options, "Restricted $arch " . int(rand(100000)), "$uri$arch") or return 0;
    run_program::raw(@options, '--update', "Restricted Updates $arch " . int(rand(100000)), "${uri}updates/$arch");
}
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
#
# Latest versions of po files are at http://www.mandrakelinux.com/l10n/ja.php3
#
# SOME DESCRIPTIVE TITLE.
# Copyright (C) 1999 Free Software Foundation, Inc.
# Copyright (c) 1999 Mandrakesoft
# Taisuke Yamada <tai@imasy.or.jp>, 1999.
# UTUMI Hirosi <utuhiro@mx12.freecom.ne.jp>, 2003
#
msgid ""
msgstr ""
"Project-Id-Version: urpmi 3.3\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2004-07-17 12:34+0200\n"
"PO-Revision-Date: 2003-11-19 14:43+0100\n"
"Last-Translator: UTUMI Hirosi <utuhiro@mx12.freecom.ne.jp>\n"
"Language-Team: Japanese\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"

#. This is a list of chars acceptable as a 'yes' answer to a Yes/No question;
#. you can put here the letters for 'yes' for your language, so people
#. can hit those keys in their keyboard to reply.
#. please keep the 'Yy' for compatibility reasons
#.
#: placeholder.h:11
msgid "Yy"
msgstr "YyYyはハ"

#. This is a list of chars acceptable as a 'no' answer to a Yes/No question;
#. you can put here the letters for 'no' for your language, so people
#. can hit those keys in their keyboard to reply.
#. please keep the 'Nn' for compatibility reasons
#.
#: placeholder.h:17
msgid "Nn"
msgstr "NnNnいイ"

#: ../_irpm:23
#, c-format
msgid "installing %s\n"
msgstr "%s をインストール\n"

#: ../_irpm:33
#, c-format
msgid ""
"Automatic installation of packages...\n"
"You requested installation of package %s\n"
msgstr "指定されたパッケージ(%s)をインストールしています..\n"

#: ../_irpm:33 ../urpme:29 ../urpmi:516
#, c-format
msgid "Is this OK?"
msgstr "よろしいですか?"

#: ../_irpm:35 ../urpm/msg.pm:40
#, c-format
msgid "Ok"
msgstr "OK"

#: ../_irpm:36 ../urpm/msg.pm:41
#, c-format
msgid "Cancel"
msgstr "キャンセル"

# y
#: ../_irpm:44 ../urpmi:444 ../urpmi:524
#, c-format
msgid " (Y/n) "
msgstr " (Y/n)[デフォルトはY] "

#: ../_irpm:63
#, c-format
msgid "%s: command not found\n"
msgstr "%s: コマンドが見つかりません\n"

#: ../rpm-find-leaves:11
#, c-format
msgid ""
"usage: %s [options]\n"
"where [options] are from\n"
msgstr ""

#: ../rpm-find-leaves:13
#, c-format
msgid "   -h|--help      - print this help message.\n"
msgstr "   -h|--help      - このヘルプを表示\n"

#: ../rpm-find-leaves:14
#, c-format
msgid "   -g [group]     - restrict results to given group.\n"
msgstr ""

#: ../rpm-find-leaves:15
#, fuzzy, c-format
msgid "                    defaults is %s.\n"
msgstr "  --list         - 利用できるパッケージを表示\n"

#: ../urpm.pm:59
#, c-format
msgid "unknown protocol defined for %s"
msgstr ""

#: ../urpm.pm:89
#, c-format
msgid "no webfetch found, supported webfetch are: %s\n"
msgstr ""

#: ../urpm.pm:105
#, c-format
msgid "unable to handle protocol: %s"
msgstr "プロトコルを操作できません: %s"

#: ../urpm.pm:177
#, c-format
msgid "medium \"%s\" trying to use an already used hdlist, medium ignored"
msgstr ""
"メディア %s はすでに使われたhdlistを使おうとしています。このメディアを無視し"
"ます"

#: ../urpm.pm:178
#, c-format
msgid "medium \"%s\" trying to use an already used list, medium ignored"
msgstr ""
"メディア %s はすでに使われたリストを使おうとしています。このメディアを無視し"
"ます"

#: ../urpm.pm:192
#, c-format
msgid "unable to access hdlist file of \"%s\", medium ignored"
msgstr "%s のhdlistにアクセスできません。メディアを無視します"

#: ../urpm.pm:195 ../urpm.pm:2262
#, c-format
msgid "unable to access list file of \"%s\", medium ignored"
msgstr "%s のリストにアクセスできません。メディアを無視します"

#: ../urpm.pm:223
#, fuzzy, c-format
msgid "trying to bypass existing medium \"%s\", avoiding"
msgstr "「%s」を作成することができませんでした\n"

#: ../urpm.pm:231
#, fuzzy, c-format
msgid ""
"virtual medium \"%s\" should not have defined hdlist or list file, medium "
"ignored"
msgstr ""
"メディア %s はすでに使われたhdlistを使おうとしています。このメディアを無視し"
"ます"

#: ../urpm.pm:236
#, fuzzy, c-format
msgid "virtual medium \"%s\" should have a clear url, medium ignored"
msgstr ""
"メディア %s はすでに使われたリストを使おうとしています。このメディアを無視し"
"ます"

#: ../urpm.pm:245
#, fuzzy, c-format
msgid "unable to find hdlist file for \"%s\", medium ignored"
msgstr "アップデートを「%s」について行なうことができませんでした\n"

#: ../urpm.pm:252
#, c-format
msgid "unable to find list file for \"%s\", medium ignored"
msgstr "%s のリストが見つかりません。メディアを無視します"

#: ../urpm.pm:275
#, fuzzy, c-format
msgid "incoherent list file for \"%s\", medium ignored"
msgstr "アップデートを「%s」について行なうことができませんでした\n"

#: ../urpm.pm:283
#, c-format
msgid "unable to inspect list file for \"%s\", medium ignored"
msgstr "\"%s\"のリストファイルを調べられません。無視します。"

#: ../urpm.pm:316
#, c-format
msgid "too many mount points for removable medium \"%s\""
msgstr "リムーバブルメディア %s にはマウントポイントが多すぎます"

#: ../urpm.pm:317
#, c-format
msgid "taking removable device as \"%s\""
msgstr "リムーバブルデバイスを %s と認識します"

#: ../urpm.pm:321
#, c-format
msgid "using different removable device [%s] for \"%s\""
msgstr ""

#: ../urpm.pm:326 ../urpm.pm:329
#, fuzzy, c-format
msgid "unable to retrieve pathname for removable medium \"%s\""
msgstr "「%s」を作成することができませんでした\n"

#: ../urpm.pm:354
#, c-format
msgid "unable to write config file [%s]"
msgstr "設定ファイル[%s]を作成できません"

#: ../urpm.pm:358
#, fuzzy, c-format
msgid "unable to write file [%s]"
msgstr "設定ファイル[%s]を作成できません"

#: ../urpm.pm:365
#, c-format
msgid "write config file [%s]"
msgstr "設定ファイル[%s]を作成"

#: ../urpm.pm:377
#, c-format
msgid "Can't use parallel mode with use-distrib mode"
msgstr ""

#: ../urpm.pm:387
#, fuzzy, c-format
msgid "unable to parse \"%s\" in file [%s]"
msgstr "「%s」を作成することができませんでした\n"

#: ../urpm.pm:398
#, fuzzy, c-format
msgid "examining parallel handler in file [%s]"
msgstr "「%s」を作成することができませんでした\n"

#: ../urpm.pm:408
#, fuzzy, c-format
msgid "found parallel handler for nodes: %s"
msgstr "「%s」を作成することができませんでした\n"

#: ../urpm.pm:412
#, c-format
msgid "using associated media for parallel mode: %s"
msgstr ""

#: ../urpm.pm:416
#, fuzzy, c-format
msgid "unable to use parallel option \"%s\""
msgstr "アップデートを「%s」について行なうことができませんでした\n"

#: ../urpm.pm:427
#, c-format
msgid ""
"--synthesis cannot be used with --media, --excludemedia, --sortmedia, --"
"update or --parallel"
msgstr ""

#: ../urpm.pm:478 ../urpm.pm:504 ../urpm.pm:889 ../urpm.pm:900 ../urpm.pm:961
#: ../urpm.pm:978 ../urpm.pm:1061 ../urpm.pm:1118 ../urpm.pm:1311
#: ../urpm.pm:1431 ../urpm.pm:1546 ../urpm.pm:1552 ../urpm.pm:1653
#: ../urpm.pm:1732 ../urpm.pm:1736
#, c-format
msgid "examining synthesis file [%s]"
msgstr "synthesisファイル[%s]を調査"

#: ../urpm.pm:482 ../urpm.pm:497 ../urpm.pm:510 ../urpm.pm:892 ../urpm.pm:903
#: ../urpm.pm:967 ../urpm.pm:973 ../urpm.pm:1066 ../urpm.pm:1122
#: ../urpm.pm:1315 ../urpm.pm:1435 ../urpm.pm:1540 ../urpm.pm:1558
#: ../urpm.pm:1742
#, c-format
msgid "examining hdlist file [%s]"
msgstr "hdlistファイル[%s]を調査"

#: ../urpm.pm:492 ../urpm.pm:896
#, fuzzy, c-format
msgid "virtual medium \"%s\" is not local, medium ignored"
msgstr ""
"メディア %s はすでに使われたリストを使おうとしています。このメディアを無視し"
"ます"

#: ../urpm.pm:520 ../urpm.pm:910 ../urpm.pm:986 ../urpm.pm:1070
#: ../urpm.pm:1439
#, c-format
msgid "problem reading hdlist or synthesis file of medium \"%s\""
msgstr "メディア\"%s\"のhdlist/synthesisファイルを読み込み中に問題が発生"

#: ../urpm.pm:526 ../urpm.pm:1692
#, c-format
msgid "performing second pass to compute dependencies\n"
msgstr ""

#: ../urpm.pm:541
#, c-format
msgid "skipping package %s"
msgstr "パッケージ %s をスキップ"

#: ../urpm.pm:554
#, fuzzy, c-format
msgid "would install instead of upgrade package %s"
msgstr "%s を削除できません"

#: ../urpm.pm:566 ../urpm.pm:2076 ../urpm.pm:2139 ../urpm.pm:2705
#: ../urpm.pm:2822
#, c-format
msgid "unable to open rpmdb"
msgstr "rpmdbを開けません"

#: ../urpm.pm:605
#, c-format
msgid "medium \"%s\" already exists"
msgstr "メディア %s は既に存在しています"

#: ../urpm.pm:612
#, c-format
msgid "virtual medium need to be local"
msgstr ""

#: ../urpm.pm:644
#, c-format
msgid "added medium %s"
msgstr "メディア %s を追加"

#: ../urpm.pm:660
#, c-format
msgid "unable to access first installation medium"
msgstr "最初のインストール用メディアにアクセスできません"

#: ../urpm.pm:664
#, c-format
msgid "copying hdlists file..."
msgstr "hdlistファイルをコピー中.."

#: ../urpm.pm:666 ../urpm.pm:1001 ../urpm.pm:1090 ../urpm.pm:1153
#: ../urpm.pm:1210 ../urpm.pm:1381 ../urpm.pm:1387
#, c-format
msgid "...copying failed"
msgstr "..コピー失敗"

#: ../urpm.pm:666 ../urpm.pm:1001 ../urpm.pm:1094
#, c-format
msgid "...copying done"
msgstr "..コピー完了"

#: ../urpm.pm:668 ../urpm.pm:691 ../urpm.pm:719
#, c-format
msgid ""
"unable to access first installation medium (no Mandrake/base/hdlists file "
"found)"
msgstr ""
"最初のインストール用メディアにアクセスできません(Mandrake/base/hdlists があり"
"ません)"

#: ../urpm.pm:674
#, fuzzy, c-format
msgid "retrieving hdlists file..."
msgstr "「%s」を作成することができませんでした\n"

#: ../urpm.pm:685 ../urpm.pm:1421 ../urpm.pm:1887 ../urpm.pm:2577
#: ../urpmi.addmedia:151
#, c-format
msgid "...retrieving done"
msgstr "..検索完了"

#: ../urpm.pm:687 ../urpm.pm:1405 ../urpm.pm:1414 ../urpm.pm:1890
#: ../urpm.pm:2579 ../urpmi:615 ../urpmi.addmedia:153
#, c-format
msgid "...retrieving failed: %s"
msgstr "検索に失敗: %s"

#: ../urpm.pm:707
#, c-format
msgid "invalid hdlist description \"%s\" in hdlists file"
msgstr "hdlistファイルの説明 %s は無効です"

#: ../urpm.pm:756
#, c-format
msgid "trying to select nonexistent medium \"%s\""
msgstr "\"%s\" というメディアは存在しません"

#: ../urpm.pm:758
#, c-format
msgid "selecting multiple media: %s"
msgstr "複数の種類のメディアを選択: %s"

#: ../urpm.pm:758
#, c-format
msgid "\"%s\""
msgstr "「%s」"

#: ../urpm.pm:774
#, c-format
msgid "removing medium \"%s\""
msgstr "メディア %s を削除"

#: ../urpm.pm:937
#, c-format
msgid ""
"unable to access medium \"%s\",\n"
"this could happen if you mounted manually the directory when creating the "
"medium."
msgstr ""

#: ../urpm.pm:990
#, fuzzy, c-format
msgid ""
"virtual medium \"%s\" should have valid source hdlist or synthesis, medium "
"ignored"
msgstr ""
"メディア %s はすでに使われたhdlistを使おうとしています。このメディアを無視し"
"ます"

#: ../urpm.pm:998
#, c-format
msgid "copying description file of \"%s\"..."
msgstr "%s の説明ファイルをコピー中.."

#: ../urpm.pm:1021 ../urpm.pm:1271
#, c-format
msgid "computing md5sum of existing source hdlist (or synthesis)"
msgstr "既存のhdlist/synthesisのmd5sumを計算"

#: ../urpm.pm:1032 ../urpm.pm:1282
#, c-format
msgid "examining MD5SUM file"
msgstr "MD5SUMファイルを検査"

#: ../urpm.pm:1086
#, c-format
msgid "copying source hdlist (or synthesis) of \"%s\"..."
msgstr "%s のhdlist(またはsynthesis)をコピー中.."

#: ../urpm.pm:1099
#, c-format
msgid "copy of [%s] failed (file is suspiciously small)"
msgstr ""

#: ../urpm.pm:1103
#, c-format
msgid "computing md5sum of copied source hdlist (or synthesis)"
msgstr "コピーしたhdlist/synthesisのmd5sumを計算"

#: ../urpm.pm:1105
#, fuzzy, c-format
msgid "copy of [%s] failed (md5sum mismatch)"
msgstr "[%s]のコピーに失敗"

#: ../urpm.pm:1126 ../urpm.pm:1319 ../urpm.pm:1656
#, c-format
msgid "problem reading synthesis file of medium \"%s\""
msgstr "メディア %s のsynthesisファイルを読み込み中に問題が発生"

#: ../urpm.pm:1168
#, c-format
msgid "reading rpm files from [%s]"
msgstr "[%s] からRPMファイルを読み込む"

#: ../urpm.pm:1193
#, c-format
msgid "unable to read rpm files from [%s]: %s"
msgstr "[%s] からRPMファイルを読み込むことができません: %s"

#: ../urpm.pm:1198
#, c-format
msgid "no rpm files found from [%s]"
msgstr "%s にはRPMファイルがありません"

#: ../urpm.pm:1337
#, fuzzy, c-format
msgid "retrieving source hdlist (or synthesis) of \"%s\"..."
msgstr "「%s」を作成することができませんでした\n"

#: ../urpm.pm:1366
#, fuzzy, c-format
msgid "found probed hdlist (or synthesis) as %s"
msgstr "「%s」を作成することができませんでした\n"

#: ../urpm.pm:1412
#, fuzzy, c-format
msgid "computing md5sum of retrieved source hdlist (or synthesis)"
msgstr "%s のhdlist(またはsynthesis)をコピー中.."

#: ../urpm.pm:1414
#, c-format
msgid "md5sum mismatch"
msgstr "md5sumが合いません"

#: ../urpm.pm:1510
#, c-format
msgid "retrieval of source hdlist (or synthesis) failed"
msgstr ""

#: ../urpm.pm:1517
#, c-format
msgid "no hdlist file found for medium \"%s\""
msgstr "メディア %s にはhdlistファイルがありません"

#: ../urpm.pm:1528 ../urpm.pm:1582
#, c-format
msgid "file [%s] already used in the same medium \"%s\""
msgstr "ファイル [%s] は同じメディア %s で既に使われています"

#: ../urpm.pm:1568
#, fuzzy, c-format
msgid "unable to parse hdlist file of \"%s\""
msgstr "アップデートを「%s」について行なうことができませんでした\n"

#: ../urpm.pm:1606
#, c-format
msgid "unable to write list file of \"%s\""
msgstr "%s のリストファイルを作成できません"

#: ../urpm.pm:1613
#, c-format
msgid "writing list file for medium \"%s\""
msgstr "メディア %s のリストファイルを作成"

#: ../urpm.pm:1615
#, fuzzy, c-format
msgid "nothing written in list file for \"%s\""
msgstr "「%s」を作成することができませんでした\n"

#: ../urpm.pm:1630
#, fuzzy, c-format
msgid "examining pubkey file of \"%s\"..."
msgstr "「%s」を作成することができませんでした\n"

#: ../urpm.pm:1637
#, fuzzy, c-format
msgid "...imported key %s from pubkey file of \"%s\""
msgstr "%s のリストファイルを作成できません"

#: ../urpm.pm:1640
#, fuzzy, c-format
msgid "unable to import pubkey file of \"%s\""
msgstr "%s のリストファイルを作成できません"

#: ../urpm.pm:1706
#, c-format
msgid "reading headers from medium \"%s\""
msgstr "メディア %s のヘッダを読み込み"

#: ../urpm.pm:1711
#, c-format
msgid "building hdlist [%s]"
msgstr "hdlist[%s]を作成"

#: ../urpm.pm:1723 ../urpm.pm:1752 ../urpmi:353
#, c-format
msgid "built hdlist synthesis file for medium \"%s\""
msgstr "メディア %s のhdlist synthesisファイルを作成"

#: ../urpm.pm:1772
#, c-format
msgid "found %d headers in cache"
msgstr "%d のヘッダをキャッシュから検出"

#: ../urpm.pm:1776
#, c-format
msgid "removing %d obsolete headers in cache"
msgstr ""

#: ../urpm.pm:1827
#, c-format
msgid "mounting %s"
msgstr "%s をマウント"

#: ../urpm.pm:1843
#, c-format
msgid "unmounting %s"
msgstr "%s をアンマウント"

#: ../urpm.pm:1865
#, c-format
msgid "relocated %s entries in depslist"
msgstr ""

#: ../urpm.pm:1866
#, c-format
msgid "no entries relocated in depslist"
msgstr ""

#: ../urpm.pm:1879
#, c-format
msgid "invalid rpm file name [%s]"
msgstr "[%s]は無効なRPMファイル名です"

#: ../urpm.pm:1885
#, c-format
msgid "retrieving rpm file [%s] ..."
msgstr "RPMファイル[%s]を検索中.."

#: ../urpm.pm:1892 ../urpm.pm:2747
#, c-format
msgid "unable to access rpm file [%s]"
msgstr "RPMファイル[%s]にアクセスできません"

#: ../urpm.pm:1897
#, c-format
msgid "unable to register rpm file"
msgstr "RPMファイルを登録できません"

#: ../urpm.pm:1900
#, c-format
msgid "error registering local packages"
msgstr "ローカルパッケージを登録中にエラーが発生"

#: ../urpm.pm:2013
#, c-format
msgid "no package named %s"
msgstr "%s というパッケージはありません"

#: ../urpm.pm:2016 ../urpme:88
#, c-format
msgid "The following packages contain %s: %s"
msgstr "%s には以下のようなものがあります: %s"

#: ../urpm.pm:2199 ../urpm.pm:2243 ../urpm.pm:2269
#, c-format
msgid "there are multiple packages with the same rpm filename \"%s\""
msgstr "%s という名のRPMファイルは複数あります"

#: ../urpm.pm:2254
#, fuzzy, c-format
msgid "unable to correctly parse [%s] on value \"%s\""
msgstr "「%s」を作成することができませんでした\n"

#: ../urpm.pm:2281
#, fuzzy, c-format
msgid ""
"medium \"%s\" uses an invalid list file:\n"
"  mirror is probably not up-to-date, trying to use alternate method"
msgstr ""
"メディア %s は無効なリストファイルを含んでいます(おそらく更新されていません。"
"別の方法を試してください)。"

#: ../urpm.pm:2285
#, c-format
msgid "medium \"%s\" does not define any location for rpm files"
msgstr "メディア %s にはRPMファイルの所在が定義されていません"

#: ../urpm.pm:2297
#, c-format
msgid "package %s is not found."
msgstr "パッケージ %s は見つかりません"

#: ../urpm.pm:2337 ../urpm.pm:2352 ../urpm.pm:2376 ../urpm.pm:2391
#, c-format
msgid "urpmi database locked"
msgstr "urpmiのデータベースがロックされています"

#: ../urpm.pm:2443 ../urpm.pm:2446 ../urpm.pm:2476
#, c-format
msgid "medium \"%s\" is not selected"
msgstr "メディア %s は選択されていません"

#: ../urpm.pm:2472
#, c-format
msgid "unable to read rpm file [%s] from medium \"%s\""
msgstr "RPMファイル[%s]をメディア[%s]から読むことができません"

#: ../urpm.pm:2480
#, c-format
msgid "incoherent medium \"%s\" marked removable but not really"
msgstr "メディア %s はリムーバブルだと判断しましたが、不確実です"

#: ../urpm.pm:2493
#, c-format
msgid "unable to access medium \"%s\""
msgstr "メディア %s にアクセスできません"

#: ../urpm.pm:2555
#, c-format
msgid "malformed input: [%s]"
msgstr "不正な入力: [%s]"

#: ../urpm.pm:2562
#, c-format
msgid "retrieving rpm files from medium \"%s\"..."
msgstr "メディア %s からRPMファイルを検索中.."

#: ../urpm.pm:2644 ../urpmi:693
#, c-format
msgid "Preparing..."
msgstr "準備.."

#: ../urpm.pm:2678
#, c-format
msgid "using process %d for executing transaction"
msgstr ""

#: ../urpm.pm:2709
#, c-format
msgid ""
"created transaction for installing on %s (remove=%d, install=%d, upgrade=%d)"
msgstr ""

#: ../urpm.pm:2712
#, fuzzy, c-format
msgid "unable to create transaction"
msgstr "「%s」を作成することができませんでした\n"

#: ../urpm.pm:2719
#, c-format
msgid "removing package %s"
msgstr "%s を削除"

#: ../urpm.pm:2721
#, c-format
msgid "unable to remove package %s"
msgstr "%s を削除できません"

#: ../urpm.pm:2731
#, c-format
msgid "adding package %s (id=%d, eid=%d, update=%d, file=%s)"
msgstr ""

#: ../urpm.pm:2734
#, c-format
msgid "unable to install package %s"
msgstr "%s をインストールできません"

#: ../urpm.pm:2796
#, fuzzy, c-format
msgid "More information on package %s"
msgstr "%s を削除"

#: ../urpm.pm:2954 ../urpm.pm:2987
#, c-format
msgid "due to missing %s"
msgstr "%s がない"

#: ../urpm.pm:2955 ../urpm.pm:2985
#, c-format
msgid "due to unsatisfied %s"
msgstr "依存を満たす %s がない"

#: ../urpm.pm:2956
#, fuzzy, c-format
msgid "trying to promote %s"
msgstr "削除するものはありません"

#: ../urpm.pm:2957
#, fuzzy, c-format
msgid "in order to keep %s"
msgstr ""
"ローカルパッケージのインストールはスーパーユーザーでなくてはできません。"

#: ../urpm.pm:2980
#, c-format
msgid "in order to install %s"
msgstr "%s をインストールするには"

#: ../urpm.pm:2992
#, c-format
msgid "due to conflicts with %s"
msgstr ""

#: ../urpm.pm:2994
#, c-format
msgid "unrequested"
msgstr ""

#: ../urpm.pm:3010
#, c-format
msgid "Invalid signature (%s)"
msgstr "無効な署名(%s)"

#: ../urpm.pm:3042
#, c-format
msgid "Invalid Key ID (%s)"
msgstr ""

#: ../urpm.pm:3044
#, c-format
msgid "Missing signature (%s)"
msgstr ""

#: ../urpm/args.pm:88 ../urpm/args.pm:95
#, c-format
msgid "bad proxy declaration on command line\n"
msgstr ""

#: ../urpm/args.pm:224
#, c-format
msgid "urpmq: cannot read rpm file \"%s\"\n"
msgstr "urpmq: RPMファイル(%s)を読むことが出来ませんでした\n"

#: ../urpm/msg.pm:80
#, c-format
msgid "Sorry, bad choice, try again\n"
msgstr "有効な選択ではありません。もう一度お願いします\n"

#: ../urpme:36
#, c-format
msgid ""
"urpme version %s\n"
"Copyright (C) 1999, 2000, 2001, 2002 Mandrakesoft.\n"
"This is free software and may be redistributed under the terms of the GNU "
"GPL.\n"
"\n"
"usage:\n"
msgstr ""
"urpme version %s\n"
"Copyright (C) 1999, 2000, 2001, 2002 Mandrakesoft.\n"
"これはフリーソフトウェアであり、GNU GPLの条件のもとで再配布できます。\n"
"\n"
"使いかた:\n"

#: ../urpme:41 ../urpmf:32 ../urpmi:74 ../urpmi.addmedia:47
#: ../urpmi.removemedia:38 ../urpmi.update:30 ../urpmq:43
#, c-format
msgid "  --help         - print this help message.\n"
msgstr "  --help         - このヘルプを表示\n"

#: ../urpme:42 ../urpmi:80
#, c-format
msgid "  --auto         - automatically select a package in choices.\n"
msgstr "  --auto         - 自動的にパッケージを選択\n"

#: ../urpme:43 ../urpmi:121
#, c-format
msgid ""
"  --test         - verify if the installation can be achieved correctly.\n"
msgstr "  --test         - インストールが正しく行われるか確かめる\n"

#: ../urpme:44 ../urpmi:94 ../urpmq:63
#, c-format
msgid ""
"  --force        - force invocation even if some packages do not exist.\n"
msgstr "  --force        - 依存を無視して強制する\n"

#: ../urpme:45 ../urpmi:99 ../urpmq:64
#, c-format
msgid "  --parallel     - distributed urpmi across machines of alias.\n"
msgstr ""

#: ../urpme:46 ../urpmi:100
#, c-format
msgid "  --root         - use another root for rpm installation.\n"
msgstr ""

#: ../urpme:47
#, c-format
msgid ""
"  --use-distrib  - configure urpmi on the fly from a distrib tree, useful\n"
"                   to (un)install a chroot with --root option.\n"
msgstr ""

#: ../urpme:49 ../urpmi:131 ../urpmq:76
#, c-format
msgid "  -v             - verbose mode.\n"
msgstr "  -v             - 詳細モード。\n"

#: ../urpme:50
#, c-format
msgid "  -a             - select all packages matching expression.\n"
msgstr ""

#: ../urpme:83
#, fuzzy, c-format
msgid "unknown packages"
msgstr "%s というパッケージはありません\n"

#: ../urpme:83
#, c-format
msgid "unknown package"
msgstr "不明なパッケージ"

#: ../urpme:93
#, c-format
msgid "removing package %s will break your system"
msgstr "%s を削除するとシステムが壊れます"

#: ../urpme:95
#, c-format
msgid "Nothing to remove"
msgstr "削除するものはありません"

#: ../urpme:99
#, fuzzy, c-format
msgid "Checking to remove the following packages"
msgstr "次のパッケージのいずれかが必要です:"

#: ../urpme:106
#, c-format
msgid "To satisfy dependencies, the following packages will be removed (%d MB)"
msgstr "依存を満たすために以下のパッケージを削除します(%d MB)"

# y
#: ../urpme:108 ../urpmi:474 ../urpmi:639
#, c-format
msgid " (y/N) "
msgstr " (y/N)[デフォルトはN] "

#: ../urpme:111 ../urpmi:682
#, c-format
msgid "removing %s"
msgstr "%s を削除"

#: ../urpme:115
#, c-format
msgid "Removing failed"
msgstr "削除失敗"

#: ../urpmf:27
#, fuzzy, c-format
msgid ""
"urpmf version %s\n"
"Copyright (C) 2002-2004 Mandrakesoft.\n"
"This is free software and may be redistributed under the terms of the GNU "
"GPL.\n"
"\n"
"usage:\n"
msgstr ""
"urpmf version %s\n"
"Copyright (C) 2002 Mandrakesoft.\n"
"これはフリーソフトウェアであり、GNU GPLの条件のもとで再配布できます。\n"
"\n"
"使いかた:\n"

#: ../urpmf:33 ../urpmi:75 ../urpmq:44
#, c-format
msgid "  --update       - use only update media.\n"
msgstr "  --update       - 更新したメディアのみを使う\n"

#: ../urpmf:34 ../urpmi:76 ../urpmq:45
#, c-format
msgid "  --media        - use only the given media, separated by comma.\n"
msgstr "  --media        - 指定したメディアのみを使う(コンマで区切る)\n"

#: ../urpmf:35 ../urpmi:77 ../urpmq:46
#, c-format
msgid "  --excludemedia - do not use the given media, separated by comma.\n"
msgstr "  --excludemedia - 指定したメディアは使わない(コンマで区切る)\n"

#: ../urpmf:36 ../urpmi:78 ../urpmq:47
#, c-format
msgid ""
"  --sortmedia    - sort media according to substrings separated by comma.\n"
msgstr ""

#: ../urpmf:37 ../urpmq:48
#, c-format
msgid "  --synthesis    - use the synthesis given instead of urpmi db.\n"
msgstr ""

#: ../urpmf:38
#, c-format
msgid "  --verbose      - verbose mode.\n"
msgstr ""

#: ../urpmf:39
#, c-format
msgid ""
"  --quiet        - do not print tag name (default if no tag given on "
"command\n"
"                   line, incompatible with interactive mode).\n"
msgstr ""

#: ../urpmf:41
#, c-format
msgid "  --uniq         - do not print identical lines.\n"
msgstr ""

#: ../urpmf:42
#, c-format
msgid "  --all          - print all tags.\n"
msgstr ""

#: ../urpmf:43
#, c-format
msgid "  --group        - print tag group: group.\n"
msgstr ""

#: ../urpmf:44
#, c-format
msgid "  --size         - print tag size: size.\n"
msgstr ""

#: ../urpmf:45
#, c-format
msgid "  --epoch        - print tag epoch: epoch.\n"
msgstr ""

#: ../urpmf:46
#, c-format
msgid "  --summary      - print tag summary: summary.\n"
msgstr ""

#: ../urpmf:47
#, c-format
msgid "  --description  - print tag description: description.\n"
msgstr ""

#: ../urpmf:48
#, c-format
msgid "  --sourcerpm    - print tag sourcerpm: source rpm.\n"
msgstr ""

#: ../urpmf:49
#, c-format
msgid "  --packager     - print tag packager: packager.\n"
msgstr ""

#: ../urpmf:50
#, c-format
msgid "  --buildhost    - print tag buildhost: build host.\n"
msgstr ""

#: ../urpmf:51
#, c-format
msgid "  --url          - print tag url: url.\n"
msgstr ""

#: ../urpmf:52
#, c-format
msgid "  --provides     - print tag provides: all provides.\n"
msgstr ""

#: ../urpmf:53
#, c-format
msgid "  --requires     - print tag requires: all requires.\n"
msgstr ""

#: ../urpmf:54
#, c-format
msgid "  --files        - print tag files: all files.\n"
msgstr ""

#: ../urpmf:55
#, c-format
msgid "  --conflicts    - print tag conflicts: all conflicts.\n"
msgstr ""

#: ../urpmf:56
#, c-format
msgid "  --obsoletes    - print tag obsoletes: all obsoletes.\n"
msgstr ""

#: ../urpmf:57 ../urpmi:114 ../urpmq:73
#, c-format
msgid ""
"  --env          - use specific environment (typically a bug\n"
"                   report).\n"
msgstr ""

#: ../urpmf:59
#, c-format
msgid "  -i             - ignore case distinctions in every pattern.\n"
msgstr ""

#: ../urpmf:60 ../urpmq:89
#, c-format
msgid "  -f             - print version, release and arch with name.\n"
msgstr ""
"  -f             - 名前, バージョン, リリース番号, アーキテクチャを表示\n"

#: ../urpmf:61
#, c-format
msgid "  -e             - include perl code directly as perl -e.\n"
msgstr ""

#: ../urpmf:62
#, c-format
msgid ""
"  -a             - binary AND operator, true if both expression are true.\n"
msgstr ""

#: ../urpmf:63
#, c-format
msgid ""