summaryrefslogtreecommitdiffstats
path: root/perl-install/timezone.pm
blob: fdcdf1aa90fb9420d154e869a7a3632f163c7665 (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
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
package timezone; # $Id$

use diagnostics;
use strict;
use vars;

use common;
use log;


sub getTimeZones {
    my ($prefix) = @_;
    local *F;
    open F, "cd $prefix/usr/share/zoneinfo && find [A-Z]* -type f |";
    my @l = chomp_(<F>);
    close F or die "cannot list the available zoneinfos";
    sort @l;
}

sub read {
    my ($prefix) = @_;
    my $f = "$prefix/etc/sysconfig/clock";
    my %t = getVarsFromSh($f) or return;

    (timezone => $t{ZONE}, UTC => text2bool($t{UTC}));
}

sub ntp_server {
    my ($prefix, $server) = @_;

    my $f = "$prefix/etc/ntp.conf";
    -e $f or return;

    if (@_ > 1) {
	my $added = 0;
	substInFile {
	    if (/^#?\s*server\s+(\S*)/ && $1 ne '127.127.1.0') {
		$_ = $added ? "#server $1\n" : "server $server\n";
		$added = 1;
	    }
	} $f;
	output("$prefix/etc/ntp/step-tickers", "$server\n");
    } else {
	($server) = grep { $_ ne '127.127.1.0' } map { if_(/^\s*server\s+(\S*)/, $1) } cat_($f);
    }
    $server;
}

sub write {
    my ($prefix, $t) = @_;

    ntp_server($prefix, $t->{ntp});

    eval { cp_af("$prefix/usr/share/zoneinfo/$t->{timezone}", "$prefix/etc/localtime") };
    $@ and log::l("installing /etc/localtime failed");
    setVarsInSh("$prefix/etc/sysconfig/clock", {
	ZONE => $t->{timezone},
	UTC  => bool2text($t->{UTC}),
	ARC  => "false",
    });
}

my %l2t = (
'Afrikaans (South Africa)' => 'Africa/Johannesburg',
'Arabic' => 'Africa/Cairo',
'Armenian (Armenia)' => 'Asia/Yerevan',
'Azeri (Azerbaijan)' => 'Asia/Baku',
'Belarussian (Belarus)' => 'Europe/Minsk',
'Bosnian (Bosnia)' => 'Europe/Sarajevo',
'Brezhoneg (Brittany)' => 'Europe/Paris',
'Bulgarian (Bulgaria)' => 'Europe/Sofia',
'Catalan' => 'Europe/Madrid',
'Chinese Traditional (Taiwan)' => 'Asia/Taipei',
'Chinese Simplified (China)' => 'Asia/Beijing',
'Croatian (Bosnia)' => 'Europe/Sarajevo',
'Croatian (Croatia)' => 'Europe/Zagreb',
'Cymraeg (Welsh)' => 'Europe/London',
'Czech' => 'Europe/Prague',
'Danish (Denmark)' => 'Europe/Copenhagen',
'Dutch (Netherlands)' => 'Europe/Amsterdam',
'English (United States)' => 'America/New_York',
'English (United Kingdom)' => 'Europe/London',
'Esperanto' => 'Europe/Warsaw',
'Estonian (Estonia)' => 'Europe/Tallinn',
'Euskara (Basque)' => 'Europe/Madrid',
'Finnish (Finland)' => 'Europe/Helsinki',
'French (France)' => 'Europe/Paris',
'French (Belgium)' => 'Europe/Brussels',
'French (Canada)' => 'Canada/Atlantic', # or Newfoundland ? or Eastern ?
'Gaeilge (Ireland)' => 'Europe/Dublin',
'Galego' => 'Europe/Madrid',
'Georgian (Georgia)' => 'Asia/Yerevan',
'German (Austria)' => 'Europe/Vienna',
'German (Germany)' => 'Europe/Berlin',
'Greek (Greece)' => 'Europe/Athens',
'Greenlandic' => 'Arctic/Longyearbyen',
'Hebrew (Israel)' => 'Asia/Tel_Aviv',
'Hungarian (Hungary)' => 'Europe/Budapest',
'Icelandic (Iceland)' => 'Atlantic/Reykjavik',
'Indonesian (Indonesia)' => 'Asia/Jakarta',
'Iranian (Iran)' => 'Asia/Tehran',
'Italian (Italy)' => 'Europe/Rome',
#-'Italian (San Marino)' => 'Europe/San_Marino',
#-'Italian (Vatican)' => 'Europe/Vatican',
#-'Italian (Switzerland)' => 'Europe/Zurich',
'Japanese (Japon)' => 'Asia/Tokyo',
'Korean (Korea)' => 'Asia/Seoul',
'Latvian (Latvia)' => 'Europe/Riga',
'Lithuanian (Lithuania)' => 'Europe/Vilnius',
'Macedonian (Macedonia)' => 'Europe/Skopje',
'Maori (New Zealand)' => 'Australia/Sydney',
'Norwegian (Bokmaal)' => 'Europe/Oslo',
'Norwegian (Nynorsk)' => 'Europe/Oslo',
'Polish (Poland)' => 'Europe/Warsaw',
'Portuguese (Brazil)' => 'Brazil/East', # most people live on the east coast
'Portuguese (Portugal)' => 'Europe/Lisbon',
'Romanian (Rumania)' => 'Europe/Bucharest',
'Russian (Russia)' => 'Europe/Moscow',
'Serbian (Serbia)' => 'Europe/Belgrade',
'Slovak (Slovakia)' => 'Europe/Bratislava',
'Slovenian (Slovenia)' => 'Europe/Ljubljana',
'Spanish (Argentina)' => 'America/Buenos_Aires',
'Spanish (Mexico)' => 'America/Mexico_City',
'Spanish (Spain)' => 'Europe/Madrid',
'Swedish (Sweden)' => 'Europe/Stockholm',
'Tajik (Tajikistan)' => 'Asia/Dushanbe',
'Tamil (Sri Lanka)' => 'Asia/Colombo',
'Tatar' => 'Europe/Minsk',
'Thai (Thailand)' => 'Asia/Bangkok',
'Turkish (Turkey)' => 'Europe/Istanbul',
'Ukrainian (Ukraine)' => 'Europe/Kiev',
'Uzbek (Uzbekistan)' => 'Asia/Tashkent',
'Vietnamese (Vietnam)' => 'Asia/Saigon',
'Walon (Belgium)' => 'Europe/Brussels',
);

sub fuzzyChoice { 
    my ($b, $count) = common::bestMatchSentence($_[0], keys %l2t);
    $count ? $b : '';
}
sub bestTimezone { $l2t{fuzzyChoice($_[0])} || 'GMT' }

my %sex = (
fr_FR => { '[iln]a$' => 1, '[cdilnst]e$' => 1, 'e$' => .8, 'n$' => .1, 'd$' => .05, 't$' => 0 },
en => { 'a$' => 1, 'o$' => 0, '[ln]$' => .3, '[rs]$' => .2 },
);


sub sexProb($) {
    local ($_) = @_;
    my $l = $sex{$ENV{LC_ALL}} or return 0.5;

    my ($prob, $nb) = (0, 0);
    foreach my $k (keys %$l) {
	/$k/ and $prob += $l->{$k}, $nb++;
    }
    $nb ? $prob / $nb : 0.5;
}

sub ntp_servers { 
q(Australia (ntp.adelaide.edu.au)
Australia (ntp.saard.net)
Australia (time.esec.com.au)
Canada (ntp.cpsc.ucalgary.ca)
Canada (ntp1.cmc.ec.gc.ca)
Canada (ntp2.cmc.ec.gc.ca)
Canada (time.chu.nrc.ca)
Canada (time.nrc.ca)
Canada (timelord.uregina.ca)
Spain (slug.ctv.es)
France (ntp.univ-lyon1.fr)
Croatia (zg1.ntp.carnet.hr)
Croatia (zg2.ntp.carnet.hr)
Croatia (st.ntp.carnet.hr)
Croatia (ri.ntp.carnet.hr)
Croatia (os.ntp.carnet.hr)
Indonesia (ntp.incaf.net)
Italy (time.ien.it)
Korea, republic of (time.nuri.net)
Norway (fartein.ifi.uio.no)
Russia (ntp.landau.ac.ru)
Singapore (ntp.shim.org)
Slovenia (time.ijs.si)
United kingdom (ntp.cs.strath.ac.uk)
United kingdom (ntp2a.mcc.ac.uk)
United kingdom (ntp2b.mcc.ac.uk)
United kingdom (ntp2c.mcc.ac.uk)
United kingdom (ntp2d.mcc.ac.uk)
United states DE (louie.udel.edu)
United states IL (ntp-0.cso.uiuc.edu)
United states IL (ntp-1.cso.uiuc.edu)
United states IL (ntp-2.cso.uiuc.edu)
United states IN (gilbreth.ecn.purdue.edu)
United states IN (harbor.ecn.purdue.edu)
United states IN (molecule.ecn.purdue.edu)
);
}

1;
ef='#n1168'>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
#
# Latest versions of po files are at http://www.mandrakelinux.com/l10n/ga.php3
#
# Leagan Gaeilge de urpmi.po.
# Copyright (C) 2000 Free Software Foundation, Inc.
# Proinnsias Breathnach <breatpro@dublin.ml.com>, 2000.
#
msgid ""
msgstr ""
"Project-Id-Version: urpmi 1.5\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2004-03-17 19:03+0100\n"
"PO-Revision-Date: 2000-04-06 10:25+0100\n"
"Last-Translator: Proinnsias Breathnach <breatpro@dublin.ml.com>\n"
"Language-Team: Gaeilge <ga@li.org>\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 "TtYy"

#. 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 "Nn"

#: ../_irpm:23
#, c-format
msgid "installing %s\n"
msgstr "ag feistiú %s\n"

#: ../_irpm:33
#, c-format
msgid ""
"Automatic installation of packages...\n"
"You requested installation of package %s\n"
msgstr ""

#: ../_irpm:33 ../urpme:28 ../urpmi:571
#, c-format
msgid "Is this OK?"
msgstr "An bhfuil sin Ok ?"

#: ../_irpm:35 ../urpmi:143
#, c-format
msgid "Ok"
msgstr "Ceart go Leor"

#: ../_irpm:36 ../urpmi:144
#, c-format
msgid "Cancel"
msgstr "Cealaigh"

#: ../_irpm:44 ../urpmi:507 ../urpmi:579
#, c-format
msgid " (Y/n) "
msgstr " (T/n) "

#: ../_irpm:63
#, c-format
msgid "%s: command not found\n"
msgstr ""

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

#: ../rpm-find-leaves:12
#, c-format
msgid "   -h|--help      - print this help message.\n"
msgstr ""

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

#: ../rpm-find-leaves:14
#, c-format
msgid "                    defaults is %s.\n"
msgstr ""

#: ../urpm.pm:109
#, c-format
msgid "Unknown webfetch `%s' !!!\n"
msgstr ""

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

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

#: ../urpm.pm:168
#, c-format
msgid "unable to handle protocol: %s"
msgstr ""

#: ../urpm.pm:189
#, fuzzy, c-format
msgid "copy failed: %s"
msgstr "Theip ar feistiú"

#: ../urpm.pm:194
#, c-format
msgid "wget is missing\n"
msgstr ""

#: ../urpm.pm:240
#, c-format
msgid "wget failed: exited with %d or signal %d\n"
msgstr ""

#: ../urpm.pm:243
#, c-format
msgid "curl is missing\n"
msgstr ""

#: ../urpm.pm:342
#, c-format
msgid "curl failed: exited with %d or signal %d\n"
msgstr ""

#: ../urpm.pm:348 ../urpm.pm:395
#, c-format
msgid "rsync is missing\n"
msgstr ""

#: ../urpm.pm:392 ../urpm.pm:439
#, c-format
msgid "rsync failed: exited with %d or signal %d\n"
msgstr ""

#: ../urpm.pm:396
#, c-format
msgid "ssh is missing\n"
msgstr ""

#: ../urpm.pm:449 ../urpmi:657
#, c-format
msgid "        %s%% of %s completed, ETA = %s, speed = %s"
msgstr ""

#: ../urpm.pm:451 ../urpmi:660
#, c-format
msgid "        %s%% completed, speed = %s"
msgstr ""

#: ../urpm.pm:458 ../urpm.pm:1056 ../urpm.pm:1715 ../urpm.pm:1724
#: ../urpm.pm:2327 ../urpm.pm:3007 ../urpmi:668 ../urpmi.addmedia:161
#, fuzzy, c-format
msgid "...retrieving failed: %s"
msgstr "léamh depslist comhad [%s]"

#: ../urpm.pm:501 ../urpm.pm:514 ../urpm.pm:527
#, fuzzy, c-format
msgid "syntax error in config file at line %s"
msgstr "Tá droch ainmchomad rpm [%s]"

#: ../urpm.pm:538
#, c-format
msgid "medium \"%s\" trying to use an already used hdlist, medium ignored"
msgstr ""

#: ../urpm.pm:544
#, c-format
msgid "medium \"%s\" trying to use an already used list, medium ignored"
msgstr ""

#: ../urpm.pm:560
#, c-format
msgid ""
"unable to take care of medium \"%s\" as list file is already used by another "
"medium"
msgstr ""

#: ../urpm.pm:566
#, c-format
msgid "unable to use name \"%s\" for unnamed medium because it is already used"
msgstr ""

#: ../urpm.pm:573
#, fuzzy, c-format
msgid "unable to take medium \"%s\" into account as no list file [%s] exists"
msgstr "Tá droch ainmchomad rpm [%s]"

#: ../urpm.pm:577
#, fuzzy, c-format
msgid "unable to determine medium of this hdlist file [%s]"
msgstr "Tá droch ainmchomad rpm [%s]"

#: ../urpm.pm:586
#, c-format
msgid "unable to access hdlist file of \"%s\", medium ignored"
msgstr ""

#: ../urpm.pm:588 ../urpm.pm:2696
#, c-format
msgid "unable to access list file of \"%s\", medium ignored"
msgstr ""

#: ../urpm.pm:612
#, c-format
msgid "trying to bypass existing medium \"%s\", avoiding"
msgstr ""

#: ../urpm.pm:620
#, fuzzy, c-format
msgid ""
"virtual medium \"%s\" should not have defined hdlist or list file, medium "
"ignored"
msgstr "léamh depslist comhad [%s]"

#: ../urpm.pm:625
#, c-format
msgid "virtual medium \"%s\" should have a clear url, medium ignored"
msgstr ""

#: ../urpm.pm:634
#, fuzzy, c-format
msgid "unable to find hdlist file for \"%s\", medium ignored"
msgstr "léamh depslist comhad [%s]"

#: ../urpm.pm:641
#, fuzzy, c-format
msgid "unable to find list file for \"%s\", medium ignored"
msgstr "léamh depslist comhad [%s]"

#: ../urpm.pm:664
#, fuzzy, c-format
msgid "incoherent list file for \"%s\", medium ignored"
msgstr "léamh depslist comhad [%s]"

#: ../urpm.pm:672
#, c-format
msgid "unable to inspect list file for \"%s\", medium ignored"
msgstr ""

#: ../urpm.pm:705
#, c-format
msgid "too many mount points for removable medium \"%s\""
msgstr ""

#: ../urpm.pm:706
#, c-format
msgid "taking removable device as \"%s\""
msgstr ""

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

#: ../urpm.pm:715 ../urpm.pm:718
#, c-format
msgid "unable to retrieve pathname for removable medium \"%s\""
msgstr ""

#: ../urpm.pm:731
#, fuzzy, c-format
msgid "unable to write config file [%s]"
msgstr "Tá droch ainmchomad rpm [%s]"

#: ../urpm.pm:753
#, fuzzy, c-format
msgid "write config file [%s]"
msgstr "léamh depslist comhad [%s]"

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

#: ../urpm.pm:775
#, fuzzy, c-format
msgid "unable to parse \"%s\" in file [%s]"
msgstr "Tá droch ainmchomad rpm [%s]"

#: ../urpm.pm:786
#, fuzzy, c-format
msgid "examining parallel handler in file [%s]"
msgstr "léamh depslist comhad [%s]"

#: ../urpm.pm:796
#, fuzzy, c-format
msgid "found parallel handler for nodes: %s"
msgstr "léamh depslist comhad [%s]"

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

#: ../urpm.pm:804
#, c-format
msgid "unable to use parallel option \"%s\""
msgstr ""

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

#: ../urpm.pm:866 ../urpm.pm:888 ../urpm.pm:1240 ../urpm.pm:1251
#: ../urpm.pm:1312 ../urpm.pm:1329 ../urpm.pm:1412 ../urpm.pm:1469
#: ../urpm.pm:1641 ../urpm.pm:1741 ../urpm.pm:1839 ../urpm.pm:1845
#: ../urpm.pm:1944 ../urpm.pm:2023 ../urpm.pm:2027
#, fuzzy, c-format
msgid "examining synthesis file [%s]"
msgstr "léamh depslist comhad [%s]"

#: ../urpm.pm:870 ../urpm.pm:883 ../urpm.pm:892 ../urpm.pm:1243
#: ../urpm.pm:1254 ../urpm.pm:1318 ../urpm.pm:1324 ../urpm.pm:1417
#: ../urpm.pm:1473 ../urpm.pm:1645 ../urpm.pm:1745 ../urpm.pm:1833
#: ../urpm.pm:1851 ../urpm.pm:2033
#, fuzzy, c-format
msgid "examining hdlist file [%s]"
msgstr "léamh depslist comhad [%s]"

#: ../urpm.pm:878 ../urpm.pm:1247
#, c-format
msgid "virtual medium \"%s\" is not local, medium ignored"
msgstr ""

#: ../urpm.pm:901 ../urpm.pm:1261 ../urpm.pm:1337 ../urpm.pm:1421
#: ../urpm.pm:1749
#, fuzzy, c-format
msgid "problem reading hdlist or synthesis file of medium \"%s\""
msgstr "léamh depslist comhad [%s]"

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

#: ../urpm.pm:919
#, fuzzy, c-format
msgid "skipping package %s"
msgstr "pacáiste ar bith den ainm %s"

#: ../urpm.pm:928
#, c-format
msgid "would install instead of upgrade package %s"
msgstr ""

#: ../urpm.pm:939 ../urpm.pm:2496 ../urpm.pm:2557 ../urpm.pm:3129
#: ../urpm.pm:3227
#, c-format
msgid "unable to open rpmdb"
msgstr ""

#: ../urpm.pm:978
#, c-format
msgid "medium \"%s\" already exists"
msgstr ""

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

#: ../urpm.pm:1017
#, c-format
msgid "added medium %s"
msgstr ""

#: ../urpm.pm:1033
#, c-format
msgid "unable to access first installation medium"
msgstr ""

#: ../urpm.pm:1037
#, fuzzy, c-format
msgid "copying hdlists file..."
msgstr "léamh depslist comhad [%s]"

#: ../urpm.pm:1039 ../urpm.pm:1352 ../urpm.pm:1441
#, fuzzy, c-format
msgid "...copying failed"
msgstr "Theip ar feistiú"

#: ../urpm.pm:1039 ../urpm.pm:1352 ../urpm.pm:1445
#, c-format
msgid "...copying done"
msgstr ""

#: ../urpm.pm:1041 ../urpm.pm:1060 ../urpm.pm:1088
#, c-format
msgid ""
"unable to access first installation medium (no Mandrake/base/hdlists file "
"found)"
msgstr ""

#: ../urpm.pm:1047
#, fuzzy, c-format
msgid "retrieving hdlists file..."
msgstr "léamh depslist comhad [%s]"

#: ../urpm.pm:1054 ../urpm.pm:1731 ../urpm.pm:2324 ../urpm.pm:3005
#: ../urpmi.addmedia:159
#, c-format
msgid "...retrieving done"
msgstr ""

#: ../urpm.pm:1076
#, c-format
msgid "invalid hdlist description \"%s\" in hdlists file"
msgstr ""

#: ../urpm.pm:1121
#, fuzzy, c-format
msgid "trying to select nonexistent medium \"%s\""
msgstr "léamh depslist comhad [%s]"

#: ../urpm.pm:1123
#, c-format
msgid "selecting multiple media: %s"
msgstr ""

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

#: ../urpm.pm:1139
#, fuzzy, c-format
msgid "removing medium \"%s\""
msgstr "léamh depslist comhad [%s]"

#: ../urpm.pm:1288
#, 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:1341
#, c-format
msgid ""
"virtual medium \"%s\" should have valid source hdlist or synthesis, medium "
"ignored"
msgstr ""

#: ../urpm.pm:1349
#, fuzzy, c-format
msgid "copying description file of \"%s\"..."
msgstr "léamh depslist comhad [%s]"

#: ../urpm.pm:1372 ../urpm.pm:1601
#, fuzzy, c-format
msgid "computing md5sum of existing source hdlist (or synthesis)"
msgstr "léamh depslist comhad [%s]"

#: ../urpm.pm:1383 ../urpm.pm:1612
#, fuzzy, c-format
msgid "examining MD5SUM file"
msgstr "léamh depslist comhad [%s]"

#: ../urpm.pm:1437
#, fuzzy, c-format
msgid "copying source hdlist (or synthesis) of \"%s\"..."
msgstr "léamh depslist comhad [%s]"

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

#: ../urpm.pm:1454
#, fuzzy, c-format
msgid "computing md5sum of copied source hdlist (or synthesis)"
msgstr "léamh depslist comhad [%s]"

#: ../urpm.pm:1456
#, fuzzy, c-format
msgid "copy of [%s] failed (md5sum mismatch)"
msgstr "Téip cóip do [%s]"

#: ../urpm.pm:1477 ../urpm.pm:1649 ../urpm.pm:1947
#, fuzzy, c-format
msgid "problem reading synthesis file of medium \"%s\""
msgstr "léamh depslist comhad [%s]"

#: ../urpm.pm:1516
#, fuzzy, c-format
msgid "reading rpm files from [%s]"
msgstr "Tá droch ainmchomad rpm [%s]"

#: ../urpm.pm:1535
#, fuzzy, c-format
msgid "unable to read rpm files from [%s]: %s"
msgstr "Tá droch ainmchomad rpm [%s]"

#: ../urpm.pm:1540
#, fuzzy, c-format
msgid "no rpm files found from [%s]"
msgstr "Tá droch ainmchomad rpm [%s]"

#: ../urpm.pm:1667
#, fuzzy, c-format
msgid "retrieving source hdlist (or synthesis) of \"%s\"..."
msgstr "léamh depslist comhad [%s]"

#: ../urpm.pm:1686
#, fuzzy, c-format
msgid "found probed hdlist (or synthesis) as %s"
msgstr "léamh depslist comhad [%s]"

#: ../urpm.pm:1722
#, fuzzy, c-format
msgid "computing md5sum of retrieved source hdlist (or synthesis)"
msgstr "léamh depslist comhad [%s]"

#: ../urpm.pm:1724
#, c-format
msgid "md5sum mismatch"
msgstr ""

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

#: ../urpm.pm:1812
#, fuzzy, c-format
msgid "no hdlist file found for medium \"%s\""
msgstr "léamh depslist comhad [%s]"

#: ../urpm.pm:1823 ../urpm.pm:1875
#, c-format
msgid "file [%s] already used in the same medium \"%s\""
msgstr ""

#: ../urpm.pm:1861
#, fuzzy, c-format
msgid "unable to parse hdlist file of \"%s\""
msgstr "Tá droch ainmchomad rpm [%s]"

#: ../urpm.pm:1899
#, fuzzy, c-format
msgid "unable to write list file of \"%s\""
msgstr "Tá droch ainmchomad rpm [%s]"

#: ../urpm.pm:1906
#, fuzzy, c-format
msgid "writing list file for medium \"%s\""
msgstr "léamh depslist comhad [%s]"

#: ../urpm.pm:1908
#, fuzzy, c-format
msgid "nothing written in list file for \"%s\""
msgstr "léamh depslist comhad [%s]"

#: ../urpm.pm:1921
#, fuzzy, c-format
msgid "examining pubkey file of \"%s\"..."
msgstr "léamh depslist comhad [%s]"

#: ../urpm.pm:1928
#, fuzzy, c-format
msgid "...imported key %s from pubkey file of \"%s\""
msgstr "Tá droch ainmchomad rpm [%s]"

#: ../urpm.pm:1931
#, fuzzy, c-format
msgid "unable to import pubkey file of \"%s\""
msgstr "Tá droch ainmchomad rpm [%s]"

#: ../urpm.pm:1997
#, fuzzy, c-format
msgid "reading headers from medium \"%s\""
msgstr "léamh depslist comhad [%s]"

#: ../urpm.pm:2002
#, fuzzy, c-format
msgid "building hdlist [%s]"
msgstr "léamh depslist comhad [%s]"

#: ../urpm.pm:2014 ../urpm.pm:2043 ../urpmi:417
#, fuzzy, c-format
msgid "built hdlist synthesis file for medium \"%s\""
msgstr "léamh depslist comhad [%s]"

#: ../urpm.pm:2063
#, c-format
msgid "found %d headers in cache"
msgstr ""

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

#: ../urpm.pm:2267
#, c-format
msgid "mounting %s"
msgstr "ag feistiú %s"

#: ../urpm.pm:2280
#, fuzzy, c-format
msgid "unmounting %s"
msgstr "ag feistiú %s"

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

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

#: ../urpm.pm:2316
#, c-format
msgid "invalid rpm file name [%s]"
msgstr "Tá droch ainmchomad rpm [%s]"

#: ../urpm.pm:2322
#, fuzzy, c-format
msgid "retrieving rpm file [%s] ..."
msgstr "léamh depslist comhad [%s]"

#: ../urpm.pm:2329 ../urpm.pm:3171
#, c-format
msgid "unable to access rpm file [%s]"
msgstr ""

#: ../urpm.pm:2334
#, fuzzy, c-format
msgid "unable to register rpm file"
msgstr "Tá droch ainmchomad rpm [%s]"

#: ../urpm.pm:2337
#, c-format
msgid "error registering local packages"
msgstr ""

#: ../urpm.pm:2438
#, c-format
msgid "no package named %s"
msgstr "pacáiste ar bith den ainm %s"

#: ../urpm.pm:2441 ../urpme:96
#, c-format
msgid "The following packages contain %s: %s"
msgstr ""

#: ../urpm.pm:2633 ../urpm.pm:2677 ../urpm.pm:2703
#, c-format
msgid "there are multiple packages with the same rpm filename \"%s\""
msgstr ""

#: ../urpm.pm:2688
#, fuzzy, c-format
msgid "unable to correctly parse [%s] on value \"%s\""
msgstr "Tá droch ainmchomad rpm [%s]"

#: ../urpm.pm:2715
#, c-format
msgid ""
"medium \"%s\" uses an invalid list file:\n"
"  mirror is probably not up-to-date, trying to use alternate method"
msgstr ""

#: ../urpm.pm:2719
#, c-format
msgid "medium \"%s\" does not define any location for rpm files"
msgstr ""

#: ../urpm.pm:2731
#, c-format
msgid "package %s is not found."
msgstr ""

#: ../urpm.pm:2771 ../urpm.pm:2786 ../urpm.pm:2810 ../urpm.pm:2825
#, c-format
msgid "urpmi database locked"
msgstr ""

#: ../urpm.pm:2877 ../urpm.pm:2880 ../urpm.pm:2910
#, c-format
msgid "medium \"%s\" is not selected"
msgstr ""

#: ../urpm.pm:2906
#, fuzzy, c-format
msgid "unable to read rpm file [%s] from medium \"%s\""
msgstr "Tá droch ainmchomad rpm [%s]"

#: ../urpm.pm:2914
#, c-format
msgid "incoherent medium \"%s\" marked removable but not really"
msgstr ""

#: ../urpm.pm:2927
#, c-format
msgid "unable to access medium \"%s\""
msgstr ""

#: ../urpm.pm:2988
#, c-format
msgid "malformed input: [%s]"
msgstr ""

#: ../urpm.pm:2995
#, fuzzy, c-format
msgid "retrieving rpm files from medium \"%s\"..."
msgstr "léamh depslist comhad [%s]"

#: ../urpm.pm:3072 ../urpmi:746
#, c-format
msgid "Preparing..."
msgstr ""

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

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

#: ../urpm.pm:3136
#, fuzzy, c-format
msgid "unable to create transaction"
msgstr "Tá droch ainmchomad rpm [%s]"

#: ../urpm.pm:3144
#, fuzzy, c-format
msgid "removing package %s"
msgstr "léamh depslist comhad [%s]"

#: ../urpm.pm:3146
#, c-format
msgid "unable to remove package %s"
msgstr ""

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

#: ../urpm.pm:3159
#, c-format
msgid "unable to install package %s"
msgstr ""

#: ../urpm.pm:3358 ../urpm.pm:3389
#, c-format
msgid "due to missing %s"
msgstr ""

#: ../urpm.pm:3359 ../urpm.pm:3387
#, c-format
msgid "due to unsatisfied %s"
msgstr ""

#: ../urpm.pm:3360
#, c-format
msgid "trying to promote %s"
msgstr ""

#: ../urpm.pm:3361
#, c-format
msgid "in order to keep %s"
msgstr ""

#: ../urpm.pm:3382
#, c-format
msgid "in order to install %s"
msgstr ""

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

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

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

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

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

#: ../urpme:35
#, 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:40 ../urpmf:31 ../urpmi:78 ../urpmi.addmedia:53
#: ../urpmi.removemedia:36 ../urpmi.update:59 ../urpmq:40
#, c-format
msgid "  --help         - print this help message.\n"
msgstr ""

#: ../urpme:41 ../urpmi:84
#, c-format
msgid "  --auto         - automatically select a package in choices.\n"
msgstr ""

#: ../urpme:42 ../urpmi:125
#, c-format
msgid ""
"  --test         - verify if the installation can be achieved correctly.\n"
msgstr ""

#: ../urpme:43 ../urpmi:98 ../urpmq:60
#, c-format
msgid ""
"  --force        - force invocation even if some packages do not exist.\n"
msgstr ""

#: ../urpme:44 ../urpmi:103 ../urpmq:61
#, c-format
msgid "  --parallel     - distributed urpmi across machines of alias.\n"
msgstr ""

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

#: ../urpme:46
#, 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:48 ../urpmi:134 ../urpmq:73
#, c-format
msgid "  -v             - verbose mode.\n"
msgstr ""

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

#: ../urpme:68
#, c-format
msgid "urpme: unknown option \"-%s\", check usage with --help\n"
msgstr ""

#: ../urpme:91
#, fuzzy, c-format
msgid "unknown packages"
msgstr "pacáiste ar bith den ainm %s"

#: ../urpme:91
#, fuzzy, c-format
msgid "unknown package"
msgstr "pacáiste ar bith den ainm %s"

#: ../urpme:101
#, c-format
msgid "removing package %s will break your system"
msgstr ""

#: ../urpme:103
#, c-format
msgid "Nothing to remove"
msgstr ""

#: ../urpme:107
#, fuzzy, c-format
msgid "Checking to remove the following packages"
msgstr "Tá ceann de na pacáistí seo de dhíth:"

#: ../urpme:114
#, c-format
msgid "To satisfy dependencies, the following packages will be removed (%d MB)"
msgstr ""

#: ../urpme:116 ../urpmi:533 ../urpmi:692
#, fuzzy, c-format
msgid " (y/N) "
msgstr " (T/n) "

#: ../urpme:119 ../urpmi:735
#, fuzzy, c-format
msgid "removing %s"
msgstr "léamh depslist comhad [%s]"

#: ../urpme:123
#, c-format
msgid "Removing failed"
msgstr ""

#: ../urpme:152 ../urpmi:930
#, c-format
msgid "Sorry, bad choice, try again\n"
msgstr "Droch-rogha, athtrialaigh!\n"

#: ../urpmf:26
#, c-format
msgid ""
"urpmf version %s\n"
"Copyright (C) 2002 MandrakeSoft.\n"
"This is free software and may be redistributed under the terms of the GNU "
"GPL.\n"
"\n"
"usage:\n"
msgstr ""

#: ../urpmf:32 ../urpmi:79 ../urpmq:41
#, c-format
msgid "  --update       - use only update media.\n"
msgstr ""

#: ../urpmf:33 ../urpmi:80 ../urpmq:42
#, c-format
msgid "  --media        - use only the given media, separated by comma.\n"
msgstr ""

#: ../urpmf:34 ../urpmi:81 ../urpmq:43
#, c-format
msgid "  --excludemedia - do not use the given media, separated by comma.\n"
msgstr ""

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

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

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

#: ../urpmf:38
#, 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:40
#, c-format
msgid "  --uniq         - do not print identical lines.\n"
msgstr ""

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

#: ../urpmf:59 ../urpmq:85
#, c-format
msgid "  -f             - print version, release and arch with name.\n"
msgstr ""

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

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

#: ../urpmf:62
#, c-format
msgid ""
"  -o             - binary OR operator, true if one expression is true.\n"
msgstr ""

#: ../urpmf:63
#, c-format
msgid "  !              - unary NOT, true if expression is false.\n"
msgstr ""

#: ../urpmf:64
#, c-format
msgid "  (              - left parenthesis to open group expression.\n"
msgstr ""

#: ../urpmf:65
#, c-format
msgid "  )              - right parenthesis to close group expression.\n"
msgstr ""

#: ../urpmf:143
#, c-format
msgid ""
"callback is :\n"
"%s\n"
msgstr ""

#: ../urpmf:148 ../urpmi:314 ../urpmq:180
#, c-format
msgid "using specific environment on %s\n"
msgstr ""

#: ../urpmi:73
#, c-format
msgid ""
"urpmi 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 ""

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

#: ../urpmi:85 ../urpmq:46
#, c-format
msgid ""
"  --auto-select  - automatically select packages to upgrade the system.\n"
msgstr ""

#: ../urpmi:86
#, c-format
msgid ""
"  --no-uninstall - never ask to uninstall a package, abort the "
"installation.\n"
msgstr ""

#: ../urpmi:87 ../urpmq:48
#, c-format
msgid ""
"  --keep         - keep existing packages if possible, reject requested\n"
"                   packages that leads to remove.\n"
msgstr ""

#: ../urpmi:89
#, c-format
msgid ""
"  --split-level  - split in small transaction if more than given packages\n"
"                   are going to be installed or upgraded,\n"
"                   default is %d.\n"
msgstr ""

#: ../urpmi:92
#, c-format
msgid "  --split-length - small transaction length, default is %d.\n"
msgstr ""

#: ../urpmi:93 ../urpmq:47
#, c-format
msgid "  --fuzzy        - impose fuzzy search (same as -y).\n"
msgstr ""

#: ../urpmi:94 ../urpmq:56
#, c-format
msgid "  --src          - next package is a source package (same as -s).\n"
msgstr ""

#: ../urpmi:95
#, c-format
msgid "  --install-src  - install only source package (no binaries).\n"
msgstr ""

#: ../urpmi:96
#, c-format
msgid "  --clean        - remove rpm from cache before anything else.\n"
msgstr ""

#: ../urpmi:97
#, c-format
msgid "  --noclean      - keep rpm not used in cache.\n"
msgstr ""

#: ../urpmi:99
#, c-format
msgid ""
"  --allow-nodeps - allow asking user to install packages without\n"
"                   dependencies checking.\n"
msgstr ""

#: ../urpmi:101
#, c-format
msgid ""
"  --allow-force  - allow asking user to install packages without\n"
"                   dependencies checking and integrity.\n"
msgstr ""

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

#: ../urpmi:107 ../urpmi.addmedia:54 ../urpmi.update:60 ../urpmq:64
#, c-format
msgid "  --wget         - use wget to retrieve distant files.\n"
msgstr ""

#: ../urpmi:108 ../urpmi.addmedia:55 ../urpmi.update:61 ../urpmq:65
#, c-format
msgid "  --curl         - use curl to retrieve distant files.\n"
msgstr ""

#: ../urpmi:109 ../urpmi.addmedia:56 ../urpmi.update:62
#, c-format
msgid "  --limit-rate   - limit the download speed.\n"
msgstr ""

#: ../urpmi:110
#, c-format
msgid ""
"  --resume       - resume transfer of partially-downloaded files\n"
"                   (--no-resume disables it, default is disabled).\n"
msgstr ""

#: ../urpmi:112 ../urpmi.addmedia:57 ../urpmi.update:63 ../urpmq:66
#, c-format
msgid ""
"  --proxy        - use specified HTTP proxy, the port number is assumed\n"
"                   to be 1080 by default (format is <proxyhost[:port]>).\n"
msgstr ""

#: ../urpmi:114 ../urpmi.addmedia:59 ../urpmi.update:65 ../urpmq:68
#, c-format
msgid ""
"  --proxy-user   - specify user and password to use for proxy\n"
"                   authentication (format is <user:password>).\n"
msgstr ""

#: ../urpmi:116
#, c-format
msgid ""
"  --bug          - output a bug report in directory indicated by\n"
"                   next arg.\n"
msgstr ""

#: ../urpmi:120
#, c-format
msgid "  --X            - use X interface.\n"
msgstr ""

#: ../urpmi:121
#, c-format
msgid ""
"  --best-output  - choose best interface according to the environment:\n"
"                   X or text mode.\n"
msgstr ""

#: ../urpmi:123
#, c-format
msgid ""
"  --verify-rpm   - verify rpm signature before installation\n"
"                   (--no-verify-rpm disable it, default is enabled).\n"
msgstr ""

#: ../urpmi:126
#, c-format
msgid "  --excludepath  - exclude path separated by comma.\n"
msgstr ""

#: ../urpmi:127
#, c-format
msgid "  --excludedocs  - exclude docs files.\n"
msgstr ""

#: ../urpmi:128 ../urpmq:76
#, c-format
msgid "  -a             - select all matches on command line.\n"
msgstr ""

#: ../urpmi:129
#, c-format
msgid "  -p             - allow search in provides to find package.\n"
msgstr ""

#: ../urpmi:130 ../urpmq:78
#, c-format
msgid "  -P             - do not search in provides to find package.\n"
msgstr ""

#: ../urpmi:131 ../urpmq:80
#, c-format
msgid "  -y             - impose fuzzy search (same as --fuzzy).\n"
msgstr ""

#: ../urpmi:132 ../urpmq:81
#, c-format
msgid "  -s             - next package is a source package (same as --src).\n"
msgstr ""

#: ../urpmi:133
#, c-format
msgid "  -q             - quiet mode.\n"
msgstr ""

#: ../urpmi:135
#, c-format
msgid "  names or rpm files given on command line will be installed.\n"
msgstr ""

#: ../urpmi:156
#, c-format
msgid "Choose location to save file"
msgstr ""

#: ../urpmi:203 ../urpmi:210 ../urpmi.addmedia:98 ../urpmi.addmedia:105
#: ../urpmi.update:42 ../urpmi.update:49 ../urpmq:127 ../urpmq:134
#, c-format
msgid "bad proxy declaration on command line\n"
msgstr ""

#: ../urpmi:242
#, c-format
msgid "urpmi: unknown option \"-%s\", check usage with --help\n"
msgstr ""

#: ../urpmi:266
#, c-format
msgid "What can be done with binary rpm files when using --install-src"
msgstr ""

#: ../urpmi:273
#, c-format
msgid ""
"You have selected a source package:\n"
"\n"
"%s\n"
"\n"
"You probably didn't want to install it on your computer (installing it\n"
"would allow you to make modifications to its sourcecode then compile it).\n"
"\n"
"What would you like to do?"
msgstr ""

#: ../urpmi:281
#, c-format
msgid "Do nothing"
msgstr ""

#: ../urpmi:282
#, c-format
msgid "Yes, really install it"
msgstr ""

#: ../urpmi:283 ../urpmi:300
#, c-format
msgid "Save file"
msgstr ""

#: ../urpmi:294
#, c-format
msgid ""
"You are about to install the following software package on your computer:\n"
"\n"
"%s\n"
"\n"
"You may prefer to just save it. What is your choice?"
msgstr ""

#: ../urpmi:299
#, fuzzy, c-format
msgid "Install it"
msgstr "Theip ag feistiú"

#: ../urpmi:306
#, c-format
msgid ""
"Directory [%s] already exists, please use another directory for bug report "
"or delete it"
msgstr ""

#: ../urpmi:306
#, c-format
msgid "Unable to create directory [%s] for bug report"
msgstr ""

#: ../urpmi:325
#, c-format
msgid "Only superuser is allowed to install packages"
msgstr ""

#: ../urpmi:458
#, fuzzy, c-format
msgid "One of the following packages is needed to install %s:"
msgstr "Tá ceann de na pacáistí seo de dhíth:"

#: ../urpmi:459
#, c-format
msgid "One of the following packages is needed:"
msgstr "Tá ceann de na pacáistí seo de dhíth:"

#: ../urpmi:466
#, c-format
msgid "What is your choice? (1-%d) "
msgstr "Céard é do rogha? (1-%d) "

#: ../urpmi:476 ../urpmi:593
#, c-format
msgid "Package installation..."
msgstr ""

#: ../urpmi:476 ../urpmi:593
#, c-format
msgid "Initializing..."
msgstr ""

#: ../urpmi:497
#, c-format
msgid ""
"Some package requested cannot be installed:\n"
"%s"
msgstr ""

#: ../urpmi:502 ../urpmi:528
#, c-format
msgid "do you agree ?"
msgstr ""

#: ../urpmi:517
#, c-format
msgid ""
"The installation cannot continue because the following packages\n"
"have to be removed for others to be upgraded:\n"
"%s\n"
msgstr ""

#: ../urpmi:523
#, fuzzy, c-format
msgid ""
"The following packages have to be removed for others to be upgraded:\n"
"%s"
msgstr "Tá %s ins na pacáistí a leanas: %s \n"

#: ../urpmi:561 ../urpmi:570
#, c-format
msgid ""
"To satisfy dependencies, the following packages are going to be installed (%"
"d MB)"
msgstr ""

#: ../urpmi:567
#, c-format
msgid ""
"You need to be root to install the following dependencies:\n"
"%s\n"
msgstr ""

#: ../urpmi:588 ../urpmq:353
#, c-format
msgid "unable to get source packages, aborting"
msgstr ""

#: ../urpmi:603
#, c-format
msgid "Please insert the medium named \"%s\" on device [%s]"
msgstr ""

#: ../urpmi:604
#, fuzzy, c-format
msgid "Press Enter when ready..."
msgstr "Brú Enter nuair atá sin déanta agat..."

#: ../urpmi:645
#, fuzzy, c-format
msgid "Downloading package `%s'..."
msgstr "léamh depslist comhad [%s]"

#: ../urpmi:679
#, fuzzy, c-format
msgid "The following packages have bad signatures"
msgstr "Tá %s ins na pacáistí a leanas: %s \n"

#: ../urpmi:680
#, c-format
msgid "Do you want to continue installation ?"
msgstr ""

#: ../urpmi:700 ../urpmi:822
#, c-format
msgid ""
"Installation failed, some files are missing:\n"
"%s\n"
"You may want to update your urpmi database"
msgstr ""

#: ../urpmi:710 ../urpmi:763 ../urpmi:782 ../urpmi:800
#, c-format
msgid "Installation failed"
msgstr "Theip ag feistiú"

#: ../urpmi:725
#, fuzzy, c-format
msgid "distributing %s"
msgstr "ag feistiú %s\n"

#: ../urpmi:733
#, fuzzy, c-format
msgid "installing %s"
msgstr "ag feistiú %s\n"

#: ../urpmi:748
#, c-format
msgid "Installing package `%s' (%s/%s)..."
msgstr ""

#: ../urpmi:770
#, c-format
msgid "Try installation without checking dependencies? (y/N) "
msgstr ""

#: ../urpmi:787
#, c-format
msgid "Try installation even more strongly (--force)? (y/N) "
msgstr ""

#: ../urpmi:827
#, fuzzy, c-format
msgid "%d installation transactions failed"
msgstr "Theip ag feistiú"

#: ../urpmi:835
#, fuzzy, c-format
msgid "Installation is possible"
msgstr "Theip ar feistiú"

#: ../urpmi:838
#, c-format
msgid "Everything already installed"
msgstr "tá gach rud ann cheana féin"

#: ../urpmi:852
#, c-format
msgid "restarting urpmi"
msgstr ""

#: ../urpmi.addmedia:44
#, c-format
msgid ""
"usage: urpmi.addmedia [options] <name> <url> [with <relative_path>]\n"
"where <url> is one of\n"
"       file://<path>\n"
"       ftp://<login>:<password>@<host>/<path> with <relative filename of "
"hdlist>\n"
"       ftp://<host>/<path> with <relative filename of hdlist>\n"
"       http://<host>/<path> with <relative filename of hdlist>\n"
"       removable://<path>\n"
"\n"
"and [options] are from\n"
msgstr ""

#: ../urpmi.addmedia:61
#, c-format
msgid "  --update       - create an update medium.\n"
msgstr ""

#: ../urpmi.addmedia:62
#, c-format
msgid "  --probe-synthesis - try to find and use synthesis file.\n"
msgstr ""

#: ../urpmi.addmedia:63
#, c-format
msgid "  --probe-hdlist - try to find and use hdlist file.\n"
msgstr ""

#: ../urpmi.addmedia:64
#, c-format
msgid ""
"  --no-probe     - do not try to find any synthesis or\n"
"                   hdlist file.\n"
msgstr ""

#: ../urpmi.addmedia:66
#, c-format
msgid ""
"  --distrib      - automatically create all media from an installation\n"
"                   medium.\n"
msgstr ""

#: ../urpmi.addmedia:68
#, c-format
msgid ""
"  --distrib-XXX  - automatically create a medium for XXX part of a\n"
"                   distribution, XXX may be main, contrib, updates or\n"
"                   anything else that has been configured ;-)\n"
msgstr ""

#: ../urpmi.addmedia:71
#, c-format
msgid ""
"  --from         - use specified url for list of mirrors, the default is\n"
"                   %s\n"
msgstr ""

#: ../urpmi.addmedia:73
#, c-format
msgid ""
"  --version      - use specified distribution version, the default is taken\n"
"                   from the version of the distribution told by the\n"
"                   installed mandrake-release package.\n"
msgstr ""

#: ../urpmi.addmedia:76
#, c-format
msgid ""
"  --arch         - use specified architecture, the default is arch of\n"
"                   mandrake-release package installed.\n"
msgstr ""

#: ../urpmi.addmedia:78
#, c-format
msgid ""
"  --virtual      - create virtual media wich are always up-to-date,\n"
"                   only file:// protocol is allowed.\n"
msgstr ""

#: ../urpmi.addmedia:80 ../urpmi.update:68
#, c-format
msgid "  --no-md5sum    - disable MD5SUM file checking.\n"
msgstr ""

#: ../urpmi.addmedia:81 ../urpmi.removemedia:38 ../urpmi.update:71
#, c-format
msgid "  -c             - clean headers cache directory.\n"
msgstr ""

#: ../urpmi.addmedia:82 ../urpmi.update:72
#, c-format
msgid "  -f             - force generation of hdlist files.\n"
msgstr ""

#: ../urpmi.addmedia:121 ../urpmi.removemedia:39 ../urpmi.update:73
#, c-format
msgid ""
"\n"
"unknown options '%s'\n"
msgstr ""

#: ../urpmi.addmedia:152
#, c-format
msgid "cannot add updates of a cooker distribution\n"
msgstr ""

#: ../urpmi.addmedia:157
#, fuzzy, c-format
msgid "retrieving mirrors at %s ..."
msgstr "léamh depslist comhad [%s]"

#: ../urpmi.addmedia:193
#, c-format
msgid ""
"%s\n"
"no need to give <relative path of hdlist> with --distrib"
msgstr ""

#: ../urpmi.addmedia:200 ../urpmi.addmedia:223
#, c-format
msgid "unable to update medium \"%s\"\n"
msgstr ""

#: ../urpmi.addmedia:211
#, c-format
msgid ""
"%s\n"
"<relative path of hdlist> missing\n"
msgstr ""

#: ../urpmi.addmedia:213
#, c-format
msgid ""
"%s\n"
"`with' missing for network media\n"
msgstr ""

#: ../urpmi.addmedia:221
#, c-format
msgid "unable to create medium \"%s\"\n"
msgstr ""

#: ../urpmi.removemedia:34
#, fuzzy, c-format
msgid ""
"usage: urpmi.removemedia [-a] <name> ...\n"
"where <name> is a medium name to remove.\n"
msgstr "Úsáid: urpmi.removemedia [-a] <ainm>..."

#: ../urpmi.removemedia:37
#, c-format
msgid "  -a             - select all media.\n"
msgstr ""

#: ../urpmi.removemedia:48
#, c-format
msgid "nothing to remove (use urpmi.addmedia to add a media)\n"
msgstr ""

#: ../urpmi.removemedia:50
#, c-format
msgid ""
"the entry to remove is missing\n"
"(one of %s)\n"
msgstr ""

#: ../urpmi.update:57
#, c-format
msgid ""
"usage: urpmi.update [options] <name> ...\n"
"where <name> is a medium name to update.\n"
msgstr ""

#: ../urpmi.update:67
#, c-format
msgid "  --update       - update only update media.\n"
msgstr ""

#: ../urpmi.update:69
#, c-format
msgid "  --force-key    - force update of gpg key.\n"
msgstr ""

#: ../urpmi.update:70
#, c-format
msgid "  -a             - select all non-removable media.\n"
msgstr ""

#: ../urpmi.update:83
#, c-format
msgid "nothing to update (use urpmi.addmedia to add a media)\n"
msgstr ""

#: ../urpmi.update:95
#, c-format
msgid ""
"the entry to update is missing\n"
"(one of %s)\n"
msgstr ""

#: ../urpmq:35
#, c-format
msgid ""
"urpmq version %s\n"
"Copyright (C) 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 ""

#: ../urpmq:50
#, c-format
msgid "  --list         - list available packages.\n"
msgstr ""

#: ../urpmq:51
#, c-format
msgid "  --list-media   - list available media.\n"
msgstr ""

#: ../urpmq:52
#, c-format
msgid "  --list-url     - list available media and their url.\n"
msgstr ""

#: ../urpmq:53
#, c-format
msgid ""
"  --dump-config  - dump the config in form of urpmi.addmedia argument.\n"
msgstr ""

#: ../urpmq:54
#, c-format
msgid "  --list-nodes   - list available nodes when using --parallel.\n"
msgstr ""

#: ../urpmq:55
#, c-format
msgid "  --list-aliases - list available parallel aliases.\n"
msgstr ""

#: ../urpmq:57
#, c-format
msgid ""
"  --headers      - extract headers for package listed from urpmi db to\n"
"                   stdout (root only).\n"
msgstr ""

#: ../urpmq:59
#, c-format
msgid ""
"  --sources      - give all source packages before downloading (root only).\n"
msgstr ""

#: ../urpmq:62
#, c-format
msgid ""
"  --use-distrib  - configure urpmi on the fly from a distrib tree.\n"
"                   This permit to querying a distro.\n"
msgstr ""

#: ../urpmq:72
#, c-format
msgid "  --changelog    - print changelog.\n"
msgstr ""

#: ../urpmq:74
#, c-format
msgid "  -d             - extend query to package dependencies.\n"
msgstr ""

#: ../urpmq:75
#, c-format
msgid ""
"  -u             - remove package if a more recent version is already "
"installed.\n"
msgstr ""

#: ../urpmq:77
#, c-format
msgid "  -c             - complete output with package to be removed.\n"
msgstr ""

#: ../urpmq:79
#, c-format
msgid "  -R             - reverse search to what requires package.\n"
msgstr ""

#: ../urpmq:82
#, c-format
msgid "  -i             - print useful information in human readable form.\n"
msgstr ""

#: ../urpmq:83
#, c-format
msgid "  -g             - print groups with name also.\n"
msgstr ""

#: ../urpmq:84
#, c-format
msgid "  -r             - print version and release with name also.\n"
msgstr ""

#: ../urpmq:86
#, c-format
msgid "  -l             - list files in package.\n"
msgstr ""

#: ../urpmq:87
#, c-format
msgid "  names or rpm files given on command line are queried.\n"
msgstr ""

#: ../urpmq:160
#, c-format
msgid "urpmq: unknown option \"-%s\", check usage with --help\n"
msgstr ""

#: ../urpmq:163
#, c-format
msgid "urpmq: cannot read rpm file \"%s\"\n"
msgstr ""

#: ../urpmq:216
#, c-format
msgid "--list-nodes can only be used with --parallel"
msgstr ""

#~ msgid "urpmf version %s"
#~ msgstr "urpmg leagan %s"

#~ msgid "Copyright (C) 1999, 2000, 2001, 2002 MandrakeSoft."
#~ msgstr "Coípcheart (C) 1999,2000,2001,2002 Mandrakesoft."

#~ msgid "usage: urpmf [options] <file>"
#~ msgstr "Úsáid: urpmf [roghaí] <comhad>"

#, fuzzy
#~ msgid "copying source list of \"%s\"..."
#~ msgstr "léamh depslist comhad [%s]"

#, fuzzy
#~ msgid "Installation failed on node %s"
#~ msgstr "Theip ar feistiú"

#, fuzzy
#~ msgid "scp failed on host %s"
#~ msgstr "Theip ar feistiú"

#, fuzzy
#~ msgid "problem reading hdlist file of medium \"%s\""
#~ msgstr "léamh depslist comhad [%s]"

#~ msgid "Is it ok?"
#~ msgstr "An bhfuil sin Ok ?"

#~ msgid "Copyright (C) 1999,2000,2001 MandrakeSoft."
#~ msgstr "Coípcheart (C) 1999,2000,2001 Mandrakesoft."

#~ msgid "urpmi is not installed"
#~ msgstr "Níl feistiú urpmi ann."

#~ msgid "Press enter when it's done..."
#~ msgstr "Brú Enter nuair atá sin déanta agat..."

#~ msgid ""
#~ "%s\n"
#~ "device `%s' do not exist\n"
#~ msgstr ""
#~ "%s\n"
#~ "Níl aon gairead `%s'\n"

#~ msgid "urpmi version %s"
#~ msgstr "urpmi leagan %s"

#~ msgid "usage: urpmi.addmedia [--update] <name> <url>"
#~ msgstr "Úsáid: urpmi.addmedia [--update] <ainm> <url>"

#~ msgid ");"
#~ msgstr ");"

#~ msgid "usage: urpmi.update [-a] <name> ..."
#~ msgstr "Úsáid: urpmi.update [-a] <ainm> ..."

#~ msgid "usage: urpmi.removemedia [-a] <name> ..."
#~ msgstr "Úsáid: urpmi.removemedia [-a] <ainm>..."

#~ msgid ", $_);"
#~ msgstr ", $_);"

#~ msgid "urpmq version %s"
#~ msgstr "urpmq leagan %s"