mirror of
https://gitlab.archlinux.org/pacman/pacman.git
synced 2025-11-05 18:14:44 +01:00
Compare commits
46 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
0cfb412220 | ||
|
|
5786c6e4a3 | ||
|
|
6a0059ddd5 | ||
|
|
2c74e0ad8a | ||
|
|
a01b2ad8e6 | ||
|
|
8be3f1f62f | ||
|
|
48c840fb76 | ||
|
|
337046ab75 | ||
|
|
53bc96106d | ||
|
|
afec5e46a4 | ||
|
|
4a6d963ae1 | ||
|
|
a7e80fba9e | ||
|
|
c60c1b5ccc | ||
|
|
75b20014c1 | ||
|
|
3e42d00c99 | ||
|
|
318d2b511b | ||
|
|
4f2ecfdee3 | ||
|
|
5299115020 | ||
|
|
c6a335501c | ||
|
|
38e3b7c4fa | ||
|
|
8af5c8d421 | ||
|
|
1a42b23187 | ||
|
|
eb448f222a | ||
|
|
756ec7e69f | ||
|
|
38ff2153c6 | ||
|
|
e0f5d4efbe | ||
|
|
ec83c93ea4 | ||
|
|
562887ba5c | ||
|
|
14d74623b0 | ||
|
|
d4f78116e0 | ||
|
|
ef578e77c8 | ||
|
|
cfbec7464f | ||
|
|
10ba636987 | ||
|
|
1cd7567ff8 | ||
|
|
8153e3851e | ||
|
|
c87745646c | ||
|
|
ec689b5978 | ||
|
|
d2c6bcdbbd | ||
|
|
60a588261c | ||
|
|
3382a1416f | ||
|
|
19cec12f73 | ||
|
|
a0f8f03056 | ||
|
|
1e859c647f | ||
|
|
ab8c825364 | ||
|
|
a2a781f416 | ||
|
|
d47b8cdf48 |
20
NEWS
20
NEWS
@@ -1,5 +1,23 @@
|
||||
VERSION DESCRIPTION
|
||||
-----------------------------------------------------------------------------
|
||||
3.0.5 - Add -mtune=generic to default CFLAGS in makepkg.conf
|
||||
- Small updates to translations
|
||||
- repo-add: fix conflicts issue for real this time
|
||||
- Fix issue with libarchive incorrectly setting permissions
|
||||
3.0.4 - Updated translations
|
||||
- repo-add: fix issue where conflicts were not put in database
|
||||
3.0.3 - Updated translations
|
||||
- repo-add: fixed a desc file clobbering issue
|
||||
3.0.2 - fix a bug where pre/post_remove scriptlets were not ran
|
||||
- ensure ldconfig is ran in all operations
|
||||
- added a few new translations, updated existing ones
|
||||
- updated mirror lists
|
||||
- makepkg: ensure CFLAGS are exported to build function
|
||||
3.0.1 - fix a locale issue with tr_TR upper/lower-case conversion
|
||||
- allow removal when listing the same package multiple times
|
||||
- fix a repo-add bug that left a .PKGINFO file in the current
|
||||
directory
|
||||
- proper error messages when we cannot read mtab for freespace
|
||||
3.0.0 - first release based on libalpm backend
|
||||
- added internationalization (gettext) support:
|
||||
- de, fr, hu, it, pt_BR, en_GB, ru_RU translations
|
||||
@@ -47,7 +65,7 @@ VERSION DESCRIPTION
|
||||
- repo-add - adds a package to a repo database file
|
||||
- repo-remove - removes a package from a repo database file
|
||||
- added pactest testing suite
|
||||
- MANY fixes and small inprovements everywhere
|
||||
- MANY fixes and small improvements everywhere
|
||||
2.9.8 - Changed behaviour with original=X,current=Y,new=Z scenario
|
||||
- keep old in place, install new as .pacnew
|
||||
- Search package provides when finding matching targets with -S
|
||||
|
||||
@@ -3,7 +3,7 @@ CFLAGS=""
|
||||
|
||||
AC_PREREQ(2.59)
|
||||
dnl Update it right before the release since $pkgver_foo are all _post_ release snapshots
|
||||
AC_INIT([Pacman package manager], 3.0.0, [pacman-dev@archlinux.org], [pacman])
|
||||
AC_INIT([Pacman package manager], 3.0.5, [pacman-dev@archlinux.org], [pacman])
|
||||
AC_LANG([C])
|
||||
AC_CONFIG_HEADERS(config.h)
|
||||
AC_CANONICAL_HOST
|
||||
|
||||
@@ -54,9 +54,6 @@ Instructs \fBpacman\fP to ignore any upgrades for this package when performing a
|
||||
Include another config file. This file can include repositories or general
|
||||
configuration options.
|
||||
.TP
|
||||
.B ProxyServer = <\fIhost\fP|\fIip\fP>[:\fIport\fP]
|
||||
If set, \fBpacman\fP will use this proxy server for all ftp/http transfers.
|
||||
.TP
|
||||
.B XferCommand = \fI/path/to/command %u\fP
|
||||
If set, an external program will be used to download all remote files. All
|
||||
instances of \fB%u\fP will be replaced with the download URL. If present,
|
||||
|
||||
@@ -21,8 +21,8 @@ CHOST="@CHOST@"
|
||||
#-- Exclusive: will only run on @CARCHFLAGS@
|
||||
# -mtune builds exclusively for an architecture
|
||||
# -mcpu optimizes for an architecture, but builds for the whole processor family
|
||||
CFLAGS="-@ARCHSWITCH@=@CARCHFLAGS@ -O2 -pipe"
|
||||
CXXFLAGS="-@ARCHSWITCH@=@CARCHFLAGS@ -O2 -pipe"
|
||||
CFLAGS="-@ARCHSWITCH@=@CARCHFLAGS@ -mtune=generic -O2 -pipe"
|
||||
CXXFLAGS="-@ARCHSWITCH@=@CARCHFLAGS@ -mtune=generic -O2 -pipe"
|
||||
#-- Make Flags: change this for DistCC/SMP systems
|
||||
#MAKEFLAGS="-j2"
|
||||
|
||||
|
||||
@@ -5,10 +5,16 @@
|
||||
# United States
|
||||
Server = ftp://ftp.archlinux.org/@@REPO@@/os/@CARCH@
|
||||
Server = ftp://ftp.nethat.com/pub/linux/archlinux/@@REPO@@/os/@CARCH@
|
||||
Server = ftp://locke.suu.edu/linux/dist/archlinux/@@REPO@@/os/@CARCH@
|
||||
Server = ftp://ftp-linux.cc.gatech.edu/pub/linux/distributions/archlinux/@@REPO@@/os/@CARCH@
|
||||
Server = ftp://mirror.cs.vt.edu/pub/ArchLinux/@@REPO@@/os/@CARCH@
|
||||
Server = http://mirrors.easynews.com/linux/archlinux/@@REPO@@/os/@CARCH@
|
||||
Server = ftp://ftp.ibiblio.org/pub/linux/distributions/archlinux/@@REPO@@/os/@CARCH@
|
||||
|
||||
# South America
|
||||
# - Brazil
|
||||
Server = http://archlinux.c3sl.ufpr.br/@@REPO@@/os/@CARCH@
|
||||
|
||||
# Europe
|
||||
# - Austria
|
||||
Server = ftp://gd.tuwien.ac.at/opsys/linux/archlinux/@@REPO@@/os/@CARCH@
|
||||
@@ -28,6 +34,7 @@ Server = ftp://distrib-coffee.ipsl.jussieu.fr/pub/linux/archlinux/@@REPO@@/os/@C
|
||||
# - Germany
|
||||
Server = ftp://ftp.tu-chemnitz.de/pub/linux/sunsite.unc-mirror/distributions/archlinux/@@REPO@@/os/@CARCH@
|
||||
Server = ftp://ftp.hosteurope.de/mirror/ftp.archlinux.org/@@REPO@@/os/@CARCH@
|
||||
Server = ftp://ftp.archlinuxppc.org/i686/@@REPO@@/os/@CARCH@
|
||||
# - Great Britain
|
||||
Server = http://ftp.parrswood.manchester.sch.uk/Mirrors/ftp.archlinux.org/@@REPO@@/os/@CARCH@
|
||||
# - Greece
|
||||
@@ -52,6 +59,8 @@ Server = ftp://cesium.di.uminho.pt/pub/archlinux/@@REPO@@/os/@CARCH@
|
||||
Server = ftp://darkstar.ist.utl.pt/pub/archlinux/@@REPO@@/os/@CARCH@
|
||||
# - Romania
|
||||
Server = ftp://ftp.iasi.roedu.net/mirrors/archlinux.org/@@REPO@@/os/@CARCH@
|
||||
# - Russia
|
||||
Server = http://archlinux.freeside.ru/@@REPO@@/os/@CARCH@
|
||||
# - Sweden
|
||||
Server = ftp://ftp.ds.hj.se/pub/os/linux/archlinux/@@REPO@@/os/@CARCH@
|
||||
Server = ftp://ftp.gigabit.nu/@@REPO@@/os/@CARCH@
|
||||
@@ -62,6 +71,10 @@ Server = ftp://ftp.linux.org.tr/pub/archlinux/@@REPO@@/os/@CARCH@
|
||||
# - Ukraine
|
||||
Server = ftp://ftp.linux.kiev.ua/pub/Linux/ArchLinux/@@REPO@@/os/@CARCH@
|
||||
|
||||
# Asia
|
||||
# - Israel
|
||||
Server = http://mirror.isoc.org.il/pub/archlinux/@@REPO@@/os/@CARCH@
|
||||
|
||||
# Australia
|
||||
Server = ftp://mirror.pacific.net.au/linux/archlinux/@@REPO@@/os/@CARCH@
|
||||
|
||||
|
||||
@@ -704,6 +704,8 @@ int _alpm_add_commit(pmtrans_t *trans, pmdb_t *db)
|
||||
_alpm_log(PM_LOG_ERROR, _("could not extract %s (%s)"), filename, strerror(errno));
|
||||
alpm_logaction(_("error: could not extract %s (%s)"), filename, strerror(errno));
|
||||
errors++;
|
||||
} else {
|
||||
chmod(filename, archive_entry_mode(entry));
|
||||
}
|
||||
|
||||
/* calculate an hash if this is in newpkg's backup */
|
||||
@@ -837,7 +839,7 @@ int _alpm_add_commit(pmtrans_t *trans, pmdb_t *db)
|
||||
}
|
||||
|
||||
/* run ldconfig if it exists */
|
||||
if((trans->type != PM_TRANS_TYPE_UPGRADE) && (handle->trans->state != STATE_INTERRUPTED)) {
|
||||
if(handle->trans->state != STATE_INTERRUPTED) {
|
||||
_alpm_log(PM_LOG_DEBUG, _("running \"ldconfig -r %s\""), handle->root);
|
||||
_alpm_ldconfig(handle->root);
|
||||
}
|
||||
|
||||
@@ -884,6 +884,7 @@ int SYMEXPORT alpm_parse_config(char *file, alpm_cb_db_register callback, const
|
||||
char *ptr = NULL;
|
||||
char *key = NULL;
|
||||
int linenum = 0;
|
||||
char origkey[256];
|
||||
char section[256] = "";
|
||||
pmdb_t *db = NULL;
|
||||
|
||||
@@ -938,21 +939,22 @@ int SYMEXPORT alpm_parse_config(char *file, alpm_cb_db_register callback, const
|
||||
RET_ERR(PM_ERR_CONF_BAD_SYNTAX, -1);
|
||||
}
|
||||
_alpm_strtrim(key);
|
||||
strncpy(origkey, key, min(255, strlen(key)));
|
||||
key = _alpm_strtoupper(key);
|
||||
if(!strlen(section) && strcmp(key, "INCLUDE")) {
|
||||
RET_ERR(PM_ERR_CONF_DIRECTIVE_OUTSIDE_SECTION, -1);
|
||||
}
|
||||
if(ptr == NULL) {
|
||||
if(!strcmp(key, "NOPASSIVEFTP")) {
|
||||
if(strcmp(origkey, "NoPassiveFTP") == 0 || strcmp(key, "NOPASSIVEFTP") == 0) {
|
||||
alpm_option_set_nopassiveftp(1);
|
||||
_alpm_log(PM_LOG_DEBUG, _("config: nopassiveftp"));
|
||||
} else if(!strcmp(key, "USESYSLOG")) {
|
||||
} else if(strcmp(origkey, "UseSyslog") == 0 || strcmp(key, "USESYSLOG") == 0) {
|
||||
alpm_option_set_usesyslog(1);
|
||||
_alpm_log(PM_LOG_DEBUG, _("config: usesyslog"));
|
||||
} else if(!strcmp(key, "ILOVECANDY")) {
|
||||
} else if(strcmp(origkey, "ILoveCandy") == 0 || strcmp(key, "ILOVECANDY") == 0) {
|
||||
alpm_option_set_chomp(1);
|
||||
_alpm_log(PM_LOG_DEBUG, _("config: chomp"));
|
||||
} else if(!strcmp(key, "USECOLOR")) {
|
||||
} else if(strcmp(origkey, "UseColor") == 0 || strcmp(key, "USECOLOR") == 0) {
|
||||
alpm_option_set_usecolor(1);
|
||||
_alpm_log(PM_LOG_DEBUG, _("config: usecolor"));
|
||||
} else {
|
||||
@@ -960,13 +962,13 @@ int SYMEXPORT alpm_parse_config(char *file, alpm_cb_db_register callback, const
|
||||
}
|
||||
} else {
|
||||
_alpm_strtrim(ptr);
|
||||
if(!strcmp(key, "INCLUDE")) {
|
||||
if(strcmp(origkey, "Include") == 0 || strcmp(key, "INCLUDE") == 0) {
|
||||
char conf[PATH_MAX];
|
||||
strncpy(conf, ptr, PATH_MAX);
|
||||
_alpm_log(PM_LOG_DEBUG, _("config: including %s"), conf);
|
||||
alpm_parse_config(conf, callback, section);
|
||||
} else if(!strcmp(section, "options")) {
|
||||
if(!strcmp(key, "NOUPGRADE")) {
|
||||
} else if(strcmp(section, "options") == 0) {
|
||||
if(strcmp(origkey, "NoUpgrade") == 0 || strcmp(key, "NOUPGRADE") == 0) {
|
||||
char *p = ptr;
|
||||
char *q;
|
||||
|
||||
@@ -979,7 +981,7 @@ int SYMEXPORT alpm_parse_config(char *file, alpm_cb_db_register callback, const
|
||||
}
|
||||
alpm_option_add_noupgrade(p);
|
||||
_alpm_log(PM_LOG_DEBUG, _("config: noupgrade: %s"), p);
|
||||
} else if(!strcmp(key, "NOEXTRACT")) {
|
||||
} else if(strcmp(origkey, "NoExtract") == 0 || strcmp(key, "NOEXTRACT") == 0) {
|
||||
char *p = ptr;
|
||||
char *q;
|
||||
|
||||
@@ -992,7 +994,7 @@ int SYMEXPORT alpm_parse_config(char *file, alpm_cb_db_register callback, const
|
||||
}
|
||||
alpm_option_add_noextract(p);
|
||||
_alpm_log(PM_LOG_DEBUG, _("config: noextract: %s"), p);
|
||||
} else if(!strcmp(key, "IGNOREPKG")) {
|
||||
} else if(strcmp(origkey, "IgnorePkg") == 0 || strcmp(key, "IGNOREPKG") == 0) {
|
||||
char *p = ptr;
|
||||
char *q;
|
||||
|
||||
@@ -1005,7 +1007,7 @@ int SYMEXPORT alpm_parse_config(char *file, alpm_cb_db_register callback, const
|
||||
}
|
||||
alpm_option_add_ignorepkg(p);
|
||||
_alpm_log(PM_LOG_DEBUG, _("config: ignorepkg: %s"), p);
|
||||
} else if(!strcmp(key, "HOLDPKG")) {
|
||||
} else if(strcmp(origkey, "HoldPkg") == 0 || strcmp(key, "HOLDPKG") == 0) {
|
||||
char *p = ptr;
|
||||
char *q;
|
||||
|
||||
@@ -1018,27 +1020,34 @@ int SYMEXPORT alpm_parse_config(char *file, alpm_cb_db_register callback, const
|
||||
}
|
||||
alpm_option_add_holdpkg(p);
|
||||
_alpm_log(PM_LOG_DEBUG, _("config: holdpkg: %s"), p);
|
||||
} else if(!strcmp(key, "DBPATH")) {
|
||||
} else if(strcmp(origkey, "DBPath") == 0 || strcmp(key, "DBPATH") == 0) {
|
||||
/* shave off the leading slash, if there is one */
|
||||
if(*ptr == '/') {
|
||||
ptr++;
|
||||
}
|
||||
alpm_option_set_dbpath(ptr);
|
||||
_alpm_log(PM_LOG_DEBUG, _("config: dbpath: %s"), ptr);
|
||||
} else if(!strcmp(key, "CACHEDIR")) {
|
||||
} else if(strcmp(origkey, "CacheDir") == 0 || strcmp(key, "CACHEDIR") == 0) {
|
||||
/* shave off the leading slash, if there is one */
|
||||
if(*ptr == '/') {
|
||||
ptr++;
|
||||
}
|
||||
alpm_option_set_cachedir(ptr);
|
||||
_alpm_log(PM_LOG_DEBUG, _("config: cachedir: %s"), ptr);
|
||||
} else if (!strcmp(key, "LOGFILE")) {
|
||||
} else if(strcmp(origkey, "RootDir") == 0 || strcmp(key, "ROOTDIR") == 0) {
|
||||
/* shave off the leading slash, if there is one */
|
||||
if(*ptr == '/') {
|
||||
ptr++;
|
||||
}
|
||||
alpm_option_set_root(ptr);
|
||||
_alpm_log(PM_LOG_DEBUG, _("config: rootdir: %s"), ptr);
|
||||
} else if (strcmp(origkey, "LogFile") == 0 || strcmp(key, "LOGFILE") == 0) {
|
||||
alpm_option_set_logfile(ptr);
|
||||
_alpm_log(PM_LOG_DEBUG, _("config: logfile: %s"), ptr);
|
||||
} else if (!strcmp(key, "XFERCOMMAND")) {
|
||||
} else if (strcmp(origkey, "XferCommand") == 0 || strcmp(key, "XFERCOMMAND") == 0) {
|
||||
alpm_option_set_xfercommand(ptr);
|
||||
_alpm_log(PM_LOG_DEBUG, _("config: xfercommand: %s"), ptr);
|
||||
} else if (!strcmp(key, "UPGRADEDELAY")) {
|
||||
} else if (strcmp(origkey, "UpgradeDelay") == 0 || strcmp(key, "UPGRADEDELAY") == 0) {
|
||||
/* The config value is in days, we use seconds */
|
||||
time_t ud = atol(ptr) * 60 * 60 *24;
|
||||
alpm_option_set_upgradedelay(ud);
|
||||
@@ -1047,7 +1056,7 @@ int SYMEXPORT alpm_parse_config(char *file, alpm_cb_db_register callback, const
|
||||
RET_ERR(PM_ERR_CONF_BAD_SYNTAX, -1);
|
||||
}
|
||||
} else {
|
||||
if(!strcmp(key, "SERVER")) {
|
||||
if(strcmp(origkey, "Server") == 0 || strcmp(key, "SERVER") == 0) {
|
||||
/* add to the list */
|
||||
if(alpm_db_setserver(db, ptr) != 0) {
|
||||
/* pm_errno is set by alpm_db_setserver */
|
||||
|
||||
@@ -163,7 +163,7 @@ alpm_list_t *_alpm_sortbydeps(alpm_list_t *targets, pmtranstype_t mode)
|
||||
for(l = alpm_pkg_get_provides(q); l; l = l->next) {
|
||||
const char *provname = l->data;
|
||||
if(!strcmp(depend->name, provname)) {
|
||||
if(!_alpm_pkg_find(provname, tmptargs)) {
|
||||
if(!_alpm_pkg_find(qname, tmptargs)) {
|
||||
change = 1;
|
||||
tmptargs = alpm_list_add(tmptargs, q);
|
||||
}
|
||||
|
||||
@@ -142,6 +142,14 @@ int alpm_pkg_compare_versions(pmpkg_t *local_pkg, pmpkg_t *pkg)
|
||||
_alpm_db_read(pkg->data, pkg, INFRQ_DESC);
|
||||
}
|
||||
|
||||
if(alpm_list_find_str(handle->ignorepkg, alpm_pkg_get_name(pkg))) {
|
||||
/* package should be ignored (IgnorePkg) */
|
||||
_alpm_log(PM_LOG_WARNING, _("%s-%s: ignoring package upgrade (%s)"),
|
||||
alpm_pkg_get_name(local_pkg), alpm_pkg_get_version(local_pkg),
|
||||
alpm_pkg_get_version(pkg));
|
||||
return(0);
|
||||
}
|
||||
|
||||
/* compare versions and see if we need to upgrade */
|
||||
cmp = _alpm_versioncmp(alpm_pkg_get_version(pkg), alpm_pkg_get_version(local_pkg));
|
||||
|
||||
@@ -158,13 +166,7 @@ int alpm_pkg_compare_versions(pmpkg_t *local_pkg, pmpkg_t *pkg)
|
||||
cmp = 0;
|
||||
} else if(cmp > 0) {
|
||||
/* we have an upgrade, make sure we should actually do it */
|
||||
if(alpm_list_find_str(handle->ignorepkg, alpm_pkg_get_name(pkg))) {
|
||||
/* package should be ignored (IgnorePkg) */
|
||||
_alpm_log(PM_LOG_WARNING, _("%s-%s: ignoring package upgrade (%s)"),
|
||||
alpm_pkg_get_name(local_pkg), alpm_pkg_get_version(local_pkg),
|
||||
alpm_pkg_get_version(pkg));
|
||||
cmp = 0;
|
||||
} else if(_alpm_pkg_istoonew(pkg)) {
|
||||
if(_alpm_pkg_istoonew(pkg)) {
|
||||
/* package too new (UpgradeDelay) */
|
||||
_alpm_log(PM_LOG_WARNING, _("%s-%s: delaying upgrade of package (%s)"),
|
||||
alpm_pkg_get_name(local_pkg), alpm_pkg_get_version(local_pkg),
|
||||
|
||||
@@ -1,8 +1,10 @@
|
||||
# Set of available languages.
|
||||
de
|
||||
en_GB
|
||||
es
|
||||
fr
|
||||
hu
|
||||
it
|
||||
pl_PL
|
||||
pt_BR
|
||||
en_GB
|
||||
ru_RU
|
||||
|
||||
File diff suppressed because it is too large
Load Diff
@@ -7,7 +7,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Pacman package manager 3.0.0\n"
|
||||
"Report-Msgid-Bugs-To: pacman-dev@archlinux.org\n"
|
||||
"POT-Creation-Date: 2007-03-23 20:46-0500\n"
|
||||
"POT-Creation-Date: 2007-06-17 20:11-0400\n"
|
||||
"PO-Revision-Date: 2007-03-07 21:05+1100\n"
|
||||
"Last-Translator: Jeff Bailes <thepizzaking@gmail.com>\n"
|
||||
"Language-Team: English <en_gb@li.org>\n"
|
||||
@@ -40,7 +40,7 @@ msgstr "reading '%s' metadata"
|
||||
msgid "looking for unsatisfied dependencies"
|
||||
msgstr "looking for unsatisfied dependencies"
|
||||
|
||||
#: lib/libalpm/add.c:203 lib/libalpm/sync.c:475
|
||||
#: lib/libalpm/add.c:203 lib/libalpm/sync.c:483
|
||||
msgid "looking for conflicts"
|
||||
msgstr "looking for conflicts"
|
||||
|
||||
@@ -222,59 +222,59 @@ msgstr "extracting %s"
|
||||
msgid "error: could not extract %s (%s)"
|
||||
msgstr "error: could not extract %s (%s)"
|
||||
|
||||
#: lib/libalpm/add.c:717
|
||||
#: lib/libalpm/add.c:719
|
||||
#, c-format
|
||||
msgid "appending backup entry for %s"
|
||||
msgstr "appending backup entry for %s"
|
||||
|
||||
#: lib/libalpm/add.c:749 lib/libalpm/add.c:751
|
||||
#: lib/libalpm/add.c:751 lib/libalpm/add.c:753
|
||||
#, c-format
|
||||
msgid "errors occurred while %s %s"
|
||||
msgstr "errors occurred while %s %s"
|
||||
|
||||
#: lib/libalpm/add.c:750 lib/libalpm/add.c:752
|
||||
#: lib/libalpm/add.c:752 lib/libalpm/add.c:754
|
||||
msgid "upgrading"
|
||||
msgstr "upgrading"
|
||||
|
||||
#: lib/libalpm/add.c:750 lib/libalpm/add.c:752
|
||||
#: lib/libalpm/add.c:752 lib/libalpm/add.c:754
|
||||
msgid "installing"
|
||||
msgstr "installing"
|
||||
|
||||
#: lib/libalpm/add.c:769
|
||||
#: lib/libalpm/add.c:771
|
||||
#, c-format
|
||||
msgid "provision '%s' has been removed from package %s (%s => %s)"
|
||||
msgstr "provision '%s' has been removed from package %s (%s => %s)"
|
||||
|
||||
#: lib/libalpm/add.c:781
|
||||
#: lib/libalpm/add.c:783
|
||||
#, c-format
|
||||
msgid "updating '%s' due to provision change (%s)"
|
||||
msgstr "updating '%s' due to provision change (%s)"
|
||||
|
||||
#: lib/libalpm/add.c:785 lib/libalpm/add.c:786
|
||||
#: lib/libalpm/add.c:787 lib/libalpm/add.c:788
|
||||
#, c-format
|
||||
msgid "could not update provision '%s' from '%s'"
|
||||
msgstr "could not update provision '%s' from '%s'"
|
||||
|
||||
#: lib/libalpm/add.c:799 lib/libalpm/remove.c:336
|
||||
#: lib/libalpm/add.c:801 lib/libalpm/remove.c:336
|
||||
msgid "updating database"
|
||||
msgstr "updating database"
|
||||
|
||||
#: lib/libalpm/add.c:800
|
||||
#: lib/libalpm/add.c:802
|
||||
#, c-format
|
||||
msgid "adding database entry '%s'"
|
||||
msgstr "adding database entry '%s'"
|
||||
|
||||
#: lib/libalpm/add.c:803 lib/libalpm/add.c:805
|
||||
#: lib/libalpm/add.c:805 lib/libalpm/add.c:807
|
||||
#, c-format
|
||||
msgid "could not update database entry %s-%s"
|
||||
msgstr "could not update database entry %s-%s"
|
||||
|
||||
#: lib/libalpm/add.c:811
|
||||
#: lib/libalpm/add.c:813
|
||||
#, c-format
|
||||
msgid "could not add entry '%s' in cache"
|
||||
msgstr "could not add entry '%s' in cache"
|
||||
|
||||
#: lib/libalpm/add.c:841 lib/libalpm/remove.c:363 lib/libalpm/sync.c:1047
|
||||
#: lib/libalpm/add.c:843 lib/libalpm/remove.c:363 lib/libalpm/sync.c:1055
|
||||
#, c-format
|
||||
msgid "running \"ldconfig -r %s\""
|
||||
msgstr "running \"ldconfig -r %s\""
|
||||
@@ -371,107 +371,112 @@ msgstr "could not remove lock file %s"
|
||||
msgid "warning: could not remove lock file %s"
|
||||
msgstr "warning: could not remove lock file %s"
|
||||
|
||||
#: lib/libalpm/alpm.c:919
|
||||
#: lib/libalpm/alpm.c:920
|
||||
#, c-format
|
||||
msgid "config: new section '%s'"
|
||||
msgstr "config: new section '%s'"
|
||||
|
||||
#: lib/libalpm/alpm.c:948
|
||||
#: lib/libalpm/alpm.c:950
|
||||
msgid "config: nopassiveftp"
|
||||
msgstr "config: nopassiveftp"
|
||||
|
||||
#: lib/libalpm/alpm.c:951
|
||||
#: lib/libalpm/alpm.c:953
|
||||
msgid "config: usesyslog"
|
||||
msgstr "config: usesyslog"
|
||||
|
||||
#: lib/libalpm/alpm.c:954
|
||||
#: lib/libalpm/alpm.c:956
|
||||
msgid "config: chomp"
|
||||
msgstr "config: chomp"
|
||||
|
||||
#: lib/libalpm/alpm.c:957
|
||||
#: lib/libalpm/alpm.c:959
|
||||
msgid "config: usecolor"
|
||||
msgstr "config: usecolor"
|
||||
|
||||
#: lib/libalpm/alpm.c:966
|
||||
#: lib/libalpm/alpm.c:968
|
||||
#, c-format
|
||||
msgid "config: including %s"
|
||||
msgstr "config: including %s"
|
||||
|
||||
#: lib/libalpm/alpm.c:976 lib/libalpm/alpm.c:981
|
||||
#: lib/libalpm/alpm.c:978 lib/libalpm/alpm.c:983
|
||||
#, c-format
|
||||
msgid "config: noupgrade: %s"
|
||||
msgstr "config: noupgrade: %s"
|
||||
|
||||
#: lib/libalpm/alpm.c:989 lib/libalpm/alpm.c:994
|
||||
#: lib/libalpm/alpm.c:991 lib/libalpm/alpm.c:996
|
||||
#, c-format
|
||||
msgid "config: noextract: %s"
|
||||
msgstr "config: noextract: %s"
|
||||
|
||||
#: lib/libalpm/alpm.c:1002 lib/libalpm/alpm.c:1007
|
||||
#: lib/libalpm/alpm.c:1004 lib/libalpm/alpm.c:1009
|
||||
#, c-format
|
||||
msgid "config: ignorepkg: %s"
|
||||
msgstr "config: ignorepkg: %s"
|
||||
|
||||
#: lib/libalpm/alpm.c:1015 lib/libalpm/alpm.c:1020
|
||||
#: lib/libalpm/alpm.c:1017 lib/libalpm/alpm.c:1022
|
||||
#, c-format
|
||||
msgid "config: holdpkg: %s"
|
||||
msgstr "config: holdpkg: %s"
|
||||
|
||||
#: lib/libalpm/alpm.c:1027
|
||||
#: lib/libalpm/alpm.c:1029
|
||||
#, c-format
|
||||
msgid "config: dbpath: %s"
|
||||
msgstr "config: dbpath: %s"
|
||||
|
||||
#: lib/libalpm/alpm.c:1034
|
||||
#: lib/libalpm/alpm.c:1036
|
||||
#, c-format
|
||||
msgid "config: cachedir: %s"
|
||||
msgstr "config: cachedir: %s"
|
||||
|
||||
#: lib/libalpm/alpm.c:1037
|
||||
#: lib/libalpm/alpm.c:1043
|
||||
#, fuzzy, c-format
|
||||
msgid "config: rootdir: %s"
|
||||
msgstr "config: cachedir: %s"
|
||||
|
||||
#: lib/libalpm/alpm.c:1046
|
||||
#, c-format
|
||||
msgid "config: logfile: %s"
|
||||
msgstr "config: logfile: %s"
|
||||
|
||||
#: lib/libalpm/alpm.c:1040
|
||||
#: lib/libalpm/alpm.c:1049
|
||||
#, c-format
|
||||
msgid "config: xfercommand: %s"
|
||||
msgstr "config: xfercommand: %s"
|
||||
|
||||
#: lib/libalpm/alpm.c:1045
|
||||
#: lib/libalpm/alpm.c:1054
|
||||
#, c-format
|
||||
msgid "config: upgradedelay: %d"
|
||||
msgstr "config: upgradedelay: %d"
|
||||
|
||||
#: lib/libalpm/alpm.c:1083 lib/libalpm/sync.c:107
|
||||
#: lib/libalpm/alpm.c:1092 lib/libalpm/sync.c:107
|
||||
msgid "checking for package replacements"
|
||||
msgstr "checking for package replacements"
|
||||
|
||||
#: lib/libalpm/alpm.c:1094 lib/libalpm/sync.c:123
|
||||
#: lib/libalpm/alpm.c:1103 lib/libalpm/sync.c:123
|
||||
#, c-format
|
||||
msgid "checking replacement '%s' for package '%s'"
|
||||
msgstr "checking replacement '%s' for package '%s'"
|
||||
|
||||
#: lib/libalpm/alpm.c:1097 lib/libalpm/sync.c:125
|
||||
#: lib/libalpm/alpm.c:1106 lib/libalpm/sync.c:125
|
||||
#, c-format
|
||||
msgid "%s-%s: ignoring package upgrade (to be replaced by %s-%s)"
|
||||
msgstr "%s-%s: ignoring package upgrade (to be replaced by %s-%s)"
|
||||
|
||||
#: lib/libalpm/alpm.c:1127 lib/libalpm/sync.c:160
|
||||
#: lib/libalpm/alpm.c:1136 lib/libalpm/sync.c:160
|
||||
#, c-format
|
||||
msgid "%s-%s elected for upgrade (to be replaced by %s-%s)"
|
||||
msgstr "%s-%s elected for upgrade (to be replaced by %s-%s)"
|
||||
|
||||
#: lib/libalpm/alpm.c:1149 lib/libalpm/sync.c:194
|
||||
#: lib/libalpm/alpm.c:1158 lib/libalpm/sync.c:194
|
||||
#, c-format
|
||||
msgid "'%s' not found in sync db -- skipping"
|
||||
msgstr "'%s' not found in sync db -- skipping"
|
||||
|
||||
#: lib/libalpm/alpm.c:1163 lib/libalpm/sync.c:208 lib/libalpm/sync.c:501
|
||||
#: lib/libalpm/alpm.c:1172 lib/libalpm/sync.c:208 lib/libalpm/sync.c:509
|
||||
#, c-format
|
||||
msgid "'%s' is already elected for removal -- skipping"
|
||||
msgstr "'%s' is already elected for removal -- skipping"
|
||||
|
||||
#: lib/libalpm/alpm.c:1169
|
||||
#: lib/libalpm/alpm.c:1178
|
||||
#, c-format
|
||||
msgid "%s elected for upgrade (%s => %s)"
|
||||
msgstr "%s elected for upgrade (%s => %s)"
|
||||
@@ -520,7 +525,7 @@ msgstr "cannot find '%s-%s' in db '%s'"
|
||||
#: lib/libalpm/be_files.c:255 lib/libalpm/be_files.c:401
|
||||
#: lib/libalpm/be_files.c:424 lib/libalpm/be_files.c:515
|
||||
#: lib/libalpm/be_files.c:605 lib/libalpm/be_files.c:632
|
||||
#: lib/libalpm/package.c:206
|
||||
#: lib/libalpm/package.c:208
|
||||
#, c-format
|
||||
msgid "could not open file %s: %s"
|
||||
msgstr "could not open file %s: %s"
|
||||
@@ -628,8 +633,8 @@ msgstr "\tCONFLICTS:: %s conflicts with %s"
|
||||
#: lib/libalpm/conflict.c:349 lib/libalpm/deps.c:60 lib/libalpm/deps.c:438
|
||||
#: lib/libalpm/deps.c:634 lib/libalpm/deps.c:674 lib/libalpm/group.c:45
|
||||
#: lib/libalpm/handle.c:51 lib/libalpm/package.c:82 lib/libalpm/sync.c:67
|
||||
#: lib/libalpm/sync.c:606 lib/libalpm/sync.c:622 lib/libalpm/sync.c:719
|
||||
#: lib/libalpm/trans.c:55 lib/libalpm/util.c:612 lib/libalpm/util.c:619
|
||||
#: lib/libalpm/sync.c:614 lib/libalpm/sync.c:630 lib/libalpm/sync.c:727
|
||||
#: lib/libalpm/trans.c:55 lib/libalpm/util.c:614 lib/libalpm/util.c:621
|
||||
#, c-format
|
||||
msgid "malloc failure: could not allocate %d bytes"
|
||||
msgstr "malloc failure: could not allocate %d bytes"
|
||||
@@ -856,7 +861,7 @@ msgstr "transaction aborted"
|
||||
msgid "operation not compatible with the transaction type"
|
||||
msgstr "operation not compatible with the transaction type"
|
||||
|
||||
#: lib/libalpm/error.c:97 lib/libalpm/sync.c:986
|
||||
#: lib/libalpm/error.c:97 lib/libalpm/sync.c:994
|
||||
msgid "could not commit transaction"
|
||||
msgstr "could not commit transaction"
|
||||
|
||||
@@ -998,70 +1003,70 @@ msgstr "%s can't be opened\n"
|
||||
msgid "md5(%s) = %s"
|
||||
msgstr "md5(%s) = %s"
|
||||
|
||||
#: lib/libalpm/package.c:150
|
||||
#, c-format
|
||||
msgid "%s: forcing upgrade to version %s"
|
||||
msgstr "%s: forcing upgrade to version %s"
|
||||
|
||||
#: lib/libalpm/package.c:155
|
||||
#, c-format
|
||||
msgid "%s: local (%s) is newer than %s (%s)"
|
||||
msgstr "%s: local (%s) is newer than %s (%s)"
|
||||
|
||||
#: lib/libalpm/package.c:163
|
||||
#: lib/libalpm/package.c:147
|
||||
#, c-format
|
||||
msgid "%s-%s: ignoring package upgrade (%s)"
|
||||
msgstr "%s-%s: ignoring package upgrade (%s)"
|
||||
|
||||
#: lib/libalpm/package.c:169
|
||||
#: lib/libalpm/package.c:158
|
||||
#, c-format
|
||||
msgid "%s: forcing upgrade to version %s"
|
||||
msgstr "%s: forcing upgrade to version %s"
|
||||
|
||||
#: lib/libalpm/package.c:163
|
||||
#, c-format
|
||||
msgid "%s: local (%s) is newer than %s (%s)"
|
||||
msgstr "%s: local (%s) is newer than %s (%s)"
|
||||
|
||||
#: lib/libalpm/package.c:171
|
||||
#, c-format
|
||||
msgid "%s-%s: delaying upgrade of package (%s)"
|
||||
msgstr "%s-%s: delaying upgrade of package (%s)"
|
||||
|
||||
#: lib/libalpm/package.c:220 lib/libalpm/package.c:279
|
||||
#: lib/libalpm/package.c:222 lib/libalpm/package.c:281
|
||||
#, c-format
|
||||
msgid "%s: syntax error in description file line %d"
|
||||
msgstr "%s: syntax error in description file line %d"
|
||||
|
||||
#: lib/libalpm/package.c:353
|
||||
#: lib/libalpm/package.c:355
|
||||
msgid "could not parse the package description file"
|
||||
msgstr "could not parse the package description file"
|
||||
|
||||
#: lib/libalpm/package.c:357
|
||||
#: lib/libalpm/package.c:359
|
||||
#, c-format
|
||||
msgid "missing package name in %s"
|
||||
msgstr "missing package name in %s"
|
||||
|
||||
#: lib/libalpm/package.c:361
|
||||
#: lib/libalpm/package.c:363
|
||||
#, c-format
|
||||
msgid "missing package version in %s"
|
||||
msgstr "missing package version in %s"
|
||||
|
||||
#: lib/libalpm/package.c:396
|
||||
#: lib/libalpm/package.c:398
|
||||
#, c-format
|
||||
msgid "could not remove tempfile %s"
|
||||
msgstr "could not remove tempfile %s"
|
||||
|
||||
#: lib/libalpm/package.c:409 lib/libalpm/package.c:416
|
||||
#: lib/libalpm/package.c:411 lib/libalpm/package.c:418
|
||||
#, c-format
|
||||
msgid "error while reading package: %s"
|
||||
msgstr "error while reading package: %s"
|
||||
|
||||
#: lib/libalpm/package.c:422
|
||||
#: lib/libalpm/package.c:424
|
||||
msgid "missing package metadata"
|
||||
msgstr "missing package metadata"
|
||||
|
||||
#: lib/libalpm/package.c:429
|
||||
#: lib/libalpm/package.c:431
|
||||
#, c-format
|
||||
msgid "missing package filelist in %s, generating one"
|
||||
msgstr "missing package filelist in %s, generating one"
|
||||
|
||||
#: lib/libalpm/package.c:568
|
||||
#: lib/libalpm/package.c:570
|
||||
#, c-format
|
||||
msgid "adding '%s' in requiredby field for '%s'"
|
||||
msgstr "adding '%s' in requiredby field for '%s'"
|
||||
|
||||
#: lib/libalpm/package.c:582
|
||||
#: lib/libalpm/package.c:584
|
||||
#, c-format
|
||||
msgid "adding '%s' in requiredby field for '%s' (provides: %s)"
|
||||
msgstr "adding '%s' in requiredby field for '%s' (provides: %s)"
|
||||
@@ -1184,224 +1189,224 @@ msgstr "checking for package upgrades"
|
||||
msgid "%s-%s elected for upgrade (%s => %s)"
|
||||
msgstr "%s-%s elected for upgrade (%s => %s)"
|
||||
|
||||
#: lib/libalpm/sync.c:262
|
||||
#: lib/libalpm/sync.c:270
|
||||
#, c-format
|
||||
msgid "searching for target in repo '%s'"
|
||||
msgstr "searching for target in repo '%s'"
|
||||
|
||||
#: lib/libalpm/sync.c:270 lib/libalpm/sync.c:293
|
||||
#: lib/libalpm/sync.c:278 lib/libalpm/sync.c:301
|
||||
#, c-format
|
||||
msgid "target '%s' not found -- looking for provisions"
|
||||
msgstr "target '%s' not found -- looking for provisions"
|
||||
|
||||
#: lib/libalpm/sync.c:275 lib/libalpm/sync.c:298
|
||||
#: lib/libalpm/sync.c:283 lib/libalpm/sync.c:306
|
||||
#, c-format
|
||||
msgid "found '%s' as a provision for '%s'"
|
||||
msgstr "found '%s' as a provision for '%s'"
|
||||
|
||||
#: lib/libalpm/sync.c:282
|
||||
#: lib/libalpm/sync.c:290
|
||||
#, c-format
|
||||
msgid "repository '%s' not found"
|
||||
msgstr "repository '%s' not found"
|
||||
|
||||
#: lib/libalpm/sync.c:323
|
||||
#: lib/libalpm/sync.c:331
|
||||
#, c-format
|
||||
msgid "%s-%s is up to date -- skipping"
|
||||
msgstr "%s-%s is up to date -- skipping"
|
||||
|
||||
#: lib/libalpm/sync.c:346
|
||||
#: lib/libalpm/sync.c:354
|
||||
#, c-format
|
||||
msgid "adding target '%s' to the transaction set"
|
||||
msgstr "adding target '%s' to the transaction set"
|
||||
|
||||
#: lib/libalpm/sync.c:394
|
||||
#: lib/libalpm/sync.c:402
|
||||
msgid "resolving target's dependencies"
|
||||
msgstr "resolving target's dependencies"
|
||||
|
||||
#: lib/libalpm/sync.c:414
|
||||
#: lib/libalpm/sync.c:422
|
||||
#, c-format
|
||||
msgid "adding package %s-%s to the transaction targets"
|
||||
msgstr "adding package %s-%s to the transaction targets"
|
||||
|
||||
#: lib/libalpm/sync.c:455
|
||||
#: lib/libalpm/sync.c:463
|
||||
msgid "looking for unresolvable dependencies"
|
||||
msgstr "looking for unresolvable dependencies"
|
||||
|
||||
#: lib/libalpm/sync.c:486
|
||||
#: lib/libalpm/sync.c:494
|
||||
#, c-format
|
||||
msgid "package '%s' conflicts with '%s'"
|
||||
msgstr "package '%s' conflicts with '%s'"
|
||||
|
||||
#: lib/libalpm/sync.c:508
|
||||
#: lib/libalpm/sync.c:516
|
||||
#, c-format
|
||||
msgid "'%s' not found in transaction set -- skipping"
|
||||
msgstr "'%s' not found in transaction set -- skipping"
|
||||
|
||||
#: lib/libalpm/sync.c:519
|
||||
#: lib/libalpm/sync.c:527
|
||||
#, c-format
|
||||
msgid "package '%s' provides its own conflict"
|
||||
msgstr "package '%s' provides its own conflict"
|
||||
|
||||
#: lib/libalpm/sync.c:542 lib/libalpm/sync.c:547
|
||||
#: lib/libalpm/sync.c:550 lib/libalpm/sync.c:555
|
||||
#, c-format
|
||||
msgid "'%s' is in the target list -- keeping it"
|
||||
msgstr "'%s' is in the target list -- keeping it"
|
||||
|
||||
#: lib/libalpm/sync.c:559 lib/libalpm/sync.c:596
|
||||
#: lib/libalpm/sync.c:567 lib/libalpm/sync.c:604
|
||||
#, c-format
|
||||
msgid "removing '%s' from target list"
|
||||
msgstr "removing '%s' from target list"
|
||||
|
||||
#: lib/libalpm/sync.c:568
|
||||
#: lib/libalpm/sync.c:576
|
||||
#, c-format
|
||||
msgid "resolving package '%s' conflict"
|
||||
msgstr "resolving package '%s' conflict"
|
||||
|
||||
#: lib/libalpm/sync.c:591
|
||||
#: lib/libalpm/sync.c:599
|
||||
#, c-format
|
||||
msgid "electing '%s' for removal"
|
||||
msgstr "electing '%s' for removal"
|
||||
|
||||
#: lib/libalpm/sync.c:602 lib/libalpm/sync.c:618
|
||||
#: lib/libalpm/sync.c:610 lib/libalpm/sync.c:626
|
||||
msgid "unresolvable package conflicts detected"
|
||||
msgstr "unresolvable package conflicts detected"
|
||||
|
||||
#: lib/libalpm/sync.c:670
|
||||
#: lib/libalpm/sync.c:678
|
||||
msgid "checking dependencies of packages designated for removal"
|
||||
msgstr "checking dependencies of packages designated for removal"
|
||||
|
||||
#: lib/libalpm/sync.c:684
|
||||
#: lib/libalpm/sync.c:692
|
||||
msgid "something has gone horribly wrong"
|
||||
msgstr "something has gone horribly wrong"
|
||||
|
||||
#: lib/libalpm/sync.c:704
|
||||
#: lib/libalpm/sync.c:712
|
||||
#, c-format
|
||||
msgid "found '%s' as a provision for '%s' -- conflict aborted"
|
||||
msgstr "found '%s' as a provision for '%s' -- conflict aborted"
|
||||
|
||||
#: lib/libalpm/sync.c:800
|
||||
#: lib/libalpm/sync.c:808
|
||||
#, c-format
|
||||
msgid "%s is already in the cache\n"
|
||||
msgstr "%s is already in the cache\n"
|
||||
|
||||
#: lib/libalpm/sync.c:811
|
||||
#: lib/libalpm/sync.c:819
|
||||
#, c-format
|
||||
msgid "no %s cache exists, creating...\n"
|
||||
msgstr "no %s cache exists, creating...\n"
|
||||
|
||||
#: lib/libalpm/sync.c:812
|
||||
#: lib/libalpm/sync.c:820
|
||||
#, c-format
|
||||
msgid "warning: no %s cache exists, creating..."
|
||||
msgstr "warning: no %s cache exists, creating..."
|
||||
|
||||
#: lib/libalpm/sync.c:817
|
||||
#: lib/libalpm/sync.c:825
|
||||
msgid "couldn't create package cache, using /tmp instead\n"
|
||||
msgstr "couldn't create package cache, using /tmp instead\n"
|
||||
|
||||
#: lib/libalpm/sync.c:818
|
||||
#: lib/libalpm/sync.c:826
|
||||
msgid "warning: couldn't create package cache, using /tmp instead"
|
||||
msgstr "warning: couldn't create package cache, using /tmp instead"
|
||||
|
||||
#: lib/libalpm/sync.c:825
|
||||
#: lib/libalpm/sync.c:833
|
||||
#, c-format
|
||||
msgid "failed to retrieve some files from %s\n"
|
||||
msgstr "failed to retrieve some files from %s\n"
|
||||
|
||||
#: lib/libalpm/sync.c:855 lib/libalpm/sync.c:867
|
||||
#: lib/libalpm/sync.c:863 lib/libalpm/sync.c:875
|
||||
#, c-format
|
||||
msgid "can't get md5 or sha1 checksum for package %s\n"
|
||||
msgstr "can't get md5 or sha1 checksum for package %s\n"
|
||||
|
||||
#: lib/libalpm/sync.c:886
|
||||
#: lib/libalpm/sync.c:894
|
||||
#, c-format
|
||||
msgid "archive %s was corrupted (bad MD5 or SHA1 checksum)\n"
|
||||
msgstr "archive %s was corrupted (bad MD5 or SHA1 checksum)\n"
|
||||
|
||||
#: lib/libalpm/sync.c:888
|
||||
#: lib/libalpm/sync.c:896
|
||||
#, c-format
|
||||
msgid "archive %s is corrupted (bad MD5 or SHA1 checksum)\n"
|
||||
msgstr "archive %s is corrupted (bad MD5 or SHA1 checksum)\n"
|
||||
|
||||
#: lib/libalpm/sync.c:909
|
||||
#: lib/libalpm/sync.c:917
|
||||
msgid "could not create removal transaction"
|
||||
msgstr "could not create removal transaction"
|
||||
|
||||
#: lib/libalpm/sync.c:915
|
||||
#: lib/libalpm/sync.c:923
|
||||
msgid "could not initialize the removal transaction"
|
||||
msgstr "could not initialise the removal transaction"
|
||||
|
||||
#: lib/libalpm/sync.c:935
|
||||
#: lib/libalpm/sync.c:943
|
||||
msgid "removing conflicting and to-be-replaced packages"
|
||||
msgstr "removing conflicting and to-be-replaced packages"
|
||||
|
||||
#: lib/libalpm/sync.c:937
|
||||
#: lib/libalpm/sync.c:945
|
||||
msgid "could not prepare removal transaction"
|
||||
msgstr "could not prepare removal transaction"
|
||||
|
||||
#: lib/libalpm/sync.c:943
|
||||
#: lib/libalpm/sync.c:951
|
||||
msgid "could not commit removal transaction"
|
||||
msgstr "could not commit removal transaction"
|
||||
|
||||
#: lib/libalpm/sync.c:950
|
||||
#: lib/libalpm/sync.c:958
|
||||
msgid "installing packages"
|
||||
msgstr "installing packages"
|
||||
|
||||
#: lib/libalpm/sync.c:953
|
||||
#: lib/libalpm/sync.c:961
|
||||
msgid "could not create transaction"
|
||||
msgstr "could not create transaction"
|
||||
|
||||
#: lib/libalpm/sync.c:958
|
||||
#: lib/libalpm/sync.c:966
|
||||
msgid "could not initialize transaction"
|
||||
msgstr "could not initialise transaction"
|
||||
|
||||
#: lib/libalpm/sync.c:981
|
||||
#: lib/libalpm/sync.c:989
|
||||
msgid "could not prepare transaction"
|
||||
msgstr "could not prepare transaction"
|
||||
|
||||
#: lib/libalpm/sync.c:993
|
||||
#: lib/libalpm/sync.c:1001
|
||||
msgid "updating database for replaced packages' dependencies"
|
||||
msgstr "updating database for replaced packages' dependencies"
|
||||
|
||||
#: lib/libalpm/sync.c:1022
|
||||
#: lib/libalpm/sync.c:1030
|
||||
#, c-format
|
||||
msgid "could not update requiredby for database entry %s-%s"
|
||||
msgstr "could not update requiredby for database entry %s-%s"
|
||||
|
||||
#: lib/libalpm/sync.c:1031
|
||||
#: lib/libalpm/sync.c:1039
|
||||
#, c-format
|
||||
msgid "could not update new database entry %s-%s"
|
||||
msgstr "could not update new database entry %s-%s"
|
||||
|
||||
#: lib/libalpm/sync.c:1071
|
||||
#: lib/libalpm/sync.c:1079
|
||||
#, c-format
|
||||
msgid "found package '%s-%s' in sync"
|
||||
msgstr "found package '%s-%s' in sync"
|
||||
|
||||
#: lib/libalpm/sync.c:1077
|
||||
#: lib/libalpm/sync.c:1085
|
||||
#, c-format
|
||||
msgid "package '%s' not found in sync"
|
||||
msgstr "package '%s' not found in sync"
|
||||
|
||||
#: lib/libalpm/trans.c:270
|
||||
#: lib/libalpm/trans.c:271
|
||||
#, c-format
|
||||
msgid "updating dependency packages 'requiredby' fields for %s-%s"
|
||||
msgstr "updating dependency packages 'requiredby' fields for %s-%s"
|
||||
|
||||
#: lib/libalpm/trans.c:273
|
||||
#: lib/libalpm/trans.c:274
|
||||
msgid "package has no dependencies, no other packages to update"
|
||||
msgstr "package has no dependencies, no other packages to update"
|
||||
|
||||
#: lib/libalpm/trans.c:310 lib/libalpm/trans.c:340
|
||||
#: lib/libalpm/trans.c:311 lib/libalpm/trans.c:341
|
||||
#, c-format
|
||||
msgid "updating 'requiredby' field for package '%s'"
|
||||
msgstr "updating 'requiredby' field for package '%s'"
|
||||
|
||||
#: lib/libalpm/trans.c:325 lib/libalpm/trans.c:355
|
||||
#: lib/libalpm/trans.c:326 lib/libalpm/trans.c:356
|
||||
#, c-format
|
||||
msgid "could not update 'requiredby' database entry %s-%s"
|
||||
msgstr "could not update 'requiredby' database entry %s-%s"
|
||||
|
||||
#: lib/libalpm/trans.c:332
|
||||
#: lib/libalpm/trans.c:333
|
||||
#, c-format
|
||||
msgid "could not find dependency '%s'"
|
||||
msgstr "could not find dependency '%s'"
|
||||
@@ -1480,7 +1485,12 @@ msgstr "call to waitpid failed (%s)"
|
||||
msgid "could not remove tmpdir %s"
|
||||
msgstr "could not remove tmpdir %s"
|
||||
|
||||
#: lib/libalpm/util.c:607
|
||||
#: lib/libalpm/util.c:568
|
||||
#, c-format
|
||||
msgid "cannot read disk space information from %s: %s"
|
||||
msgstr ""
|
||||
|
||||
#: lib/libalpm/util.c:609
|
||||
#, c-format
|
||||
msgid "check_freespace: total pkg size: %lld, disk space: %lld"
|
||||
msgstr "check_freespace: total pkg size: %lld, disk space: %lld"
|
||||
|
||||
1532
lib/libalpm/po/es.po
Normal file
1532
lib/libalpm/po/es.po
Normal file
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
@@ -7,7 +7,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: hu\n"
|
||||
"Report-Msgid-Bugs-To: pacman-dev@archlinux.org\n"
|
||||
"POT-Creation-Date: 2007-03-23 20:46-0500\n"
|
||||
"POT-Creation-Date: 2007-06-17 20:11-0400\n"
|
||||
"PO-Revision-Date: 2007-03-14 13:45+0100\n"
|
||||
"Last-Translator: Nagy Gabor <ngaba@petra.hos.u-szeged.hu>\n"
|
||||
"Language-Team: <hu@li.org>\n"
|
||||
@@ -41,7 +41,7 @@ msgstr "'%s' metaadat olvas
|
||||
msgid "looking for unsatisfied dependencies"
|
||||
msgstr "el<65>gtelen f<>gg<67>s<EFBFBD>gek keres<65>se"
|
||||
|
||||
#: lib/libalpm/add.c:203 lib/libalpm/sync.c:475
|
||||
#: lib/libalpm/add.c:203 lib/libalpm/sync.c:483
|
||||
msgid "looking for conflicts"
|
||||
msgstr "konfliktusok keres<65>se"
|
||||
|
||||
@@ -224,59 +224,59 @@ msgstr "a %s kit
|
||||
msgid "error: could not extract %s (%s)"
|
||||
msgstr "hiba: nem siker<65>lt kit<69>m<EFBFBD>r<EFBFBD>teni: %s (%s)"
|
||||
|
||||
#: lib/libalpm/add.c:717
|
||||
#: lib/libalpm/add.c:719
|
||||
#, c-format
|
||||
msgid "appending backup entry for %s"
|
||||
msgstr ""
|
||||
|
||||
#: lib/libalpm/add.c:749 lib/libalpm/add.c:751
|
||||
#: lib/libalpm/add.c:751 lib/libalpm/add.c:753
|
||||
#, c-format
|
||||
msgid "errors occurred while %s %s"
|
||||
msgstr "hiba %s k<>zben: %s"
|
||||
|
||||
#: lib/libalpm/add.c:750 lib/libalpm/add.c:752
|
||||
#: lib/libalpm/add.c:752 lib/libalpm/add.c:754
|
||||
msgid "upgrading"
|
||||
msgstr "friss<73>t<EFBFBD>s"
|
||||
|
||||
#: lib/libalpm/add.c:750 lib/libalpm/add.c:752
|
||||
#: lib/libalpm/add.c:752 lib/libalpm/add.c:754
|
||||
msgid "installing"
|
||||
msgstr "telep<65>t<EFBFBD>s"
|
||||
|
||||
#: lib/libalpm/add.c:769
|
||||
#: lib/libalpm/add.c:771
|
||||
#, c-format
|
||||
msgid "provision '%s' has been removed from package %s (%s => %s)"
|
||||
msgstr ""
|
||||
|
||||
#: lib/libalpm/add.c:781
|
||||
#: lib/libalpm/add.c:783
|
||||
#, c-format
|
||||
msgid "updating '%s' due to provision change (%s)"
|
||||
msgstr ""
|
||||
|
||||
#: lib/libalpm/add.c:785 lib/libalpm/add.c:786
|
||||
#: lib/libalpm/add.c:787 lib/libalpm/add.c:788
|
||||
#, c-format
|
||||
msgid "could not update provision '%s' from '%s'"
|
||||
msgstr ""
|
||||
|
||||
#: lib/libalpm/add.c:799 lib/libalpm/remove.c:336
|
||||
#: lib/libalpm/add.c:801 lib/libalpm/remove.c:336
|
||||
msgid "updating database"
|
||||
msgstr "az adatb<74>zis friss<73>t<EFBFBD>se"
|
||||
|
||||
#: lib/libalpm/add.c:800
|
||||
#: lib/libalpm/add.c:802
|
||||
#, c-format
|
||||
msgid "adding database entry '%s'"
|
||||
msgstr "adatb<74>zis mez<65> hozz<7A>ad<61>sa '%s'"
|
||||
|
||||
#: lib/libalpm/add.c:803 lib/libalpm/add.c:805
|
||||
#: lib/libalpm/add.c:805 lib/libalpm/add.c:807
|
||||
#, c-format
|
||||
msgid "could not update database entry %s-%s"
|
||||
msgstr "sikertelen a '%s-%s' adatb<74>zis-bejegyz<79>s friss<73>t<EFBFBD>se"
|
||||
|
||||
#: lib/libalpm/add.c:811
|
||||
#: lib/libalpm/add.c:813
|
||||
#, c-format
|
||||
msgid "could not add entry '%s' in cache"
|
||||
msgstr "sikertelen a '%s' bejegyz<79>s hozz<7A>ad<61>sa a gyors<72>t<EFBFBD>t<EFBFBD>rhoz"
|
||||
|
||||
#: lib/libalpm/add.c:841 lib/libalpm/remove.c:363 lib/libalpm/sync.c:1047
|
||||
#: lib/libalpm/add.c:843 lib/libalpm/remove.c:363 lib/libalpm/sync.c:1055
|
||||
#, c-format
|
||||
msgid "running \"ldconfig -r %s\""
|
||||
msgstr "az \"ldconfig -r %s\" futtat<61>sa"
|
||||
@@ -376,107 +376,112 @@ msgstr "nem siker
|
||||
msgid "warning: could not remove lock file %s"
|
||||
msgstr "figyelmeztet<65>s: nem siker<65>lt a z<>rol<6F> f<>jl (%s) elt<6C>vol<6F>t<EFBFBD>sa"
|
||||
|
||||
#: lib/libalpm/alpm.c:919
|
||||
#: lib/libalpm/alpm.c:920
|
||||
#, c-format
|
||||
msgid "config: new section '%s'"
|
||||
msgstr "be<62>ll<6C>t<EFBFBD>sok: <20>j szekci<63> '%s'"
|
||||
|
||||
#: lib/libalpm/alpm.c:948
|
||||
#: lib/libalpm/alpm.c:950
|
||||
msgid "config: nopassiveftp"
|
||||
msgstr "be<62>ll<6C>t<EFBFBD>sok: nopassiveftp"
|
||||
|
||||
#: lib/libalpm/alpm.c:951
|
||||
#: lib/libalpm/alpm.c:953
|
||||
msgid "config: usesyslog"
|
||||
msgstr "be<62>ll<6C>t<EFBFBD>sok: usesyslog"
|
||||
|
||||
#: lib/libalpm/alpm.c:954
|
||||
#: lib/libalpm/alpm.c:956
|
||||
msgid "config: chomp"
|
||||
msgstr "be<62>ll<6C>t<EFBFBD>sok: chomp"
|
||||
|
||||
#: lib/libalpm/alpm.c:957
|
||||
#: lib/libalpm/alpm.c:959
|
||||
msgid "config: usecolor"
|
||||
msgstr "be<62>ll<6C>t<EFBFBD>sok: usecolor"
|
||||
|
||||
#: lib/libalpm/alpm.c:966
|
||||
#: lib/libalpm/alpm.c:968
|
||||
#, c-format
|
||||
msgid "config: including %s"
|
||||
msgstr "be<62>ll<6C>t<EFBFBD>sok: a %s beolvas<61>sa"
|
||||
|
||||
#: lib/libalpm/alpm.c:976 lib/libalpm/alpm.c:981
|
||||
#: lib/libalpm/alpm.c:978 lib/libalpm/alpm.c:983
|
||||
#, c-format
|
||||
msgid "config: noupgrade: %s"
|
||||
msgstr "be<62>ll<6C>t<EFBFBD>sok: noupgrade: %s"
|
||||
|
||||
#: lib/libalpm/alpm.c:989 lib/libalpm/alpm.c:994
|
||||
#: lib/libalpm/alpm.c:991 lib/libalpm/alpm.c:996
|
||||
#, c-format
|
||||
msgid "config: noextract: %s"
|
||||
msgstr "be<62>ll<6C>t<EFBFBD>sok: noextract: %s"
|
||||
|
||||
#: lib/libalpm/alpm.c:1002 lib/libalpm/alpm.c:1007
|
||||
#: lib/libalpm/alpm.c:1004 lib/libalpm/alpm.c:1009
|
||||
#, c-format
|
||||
msgid "config: ignorepkg: %s"
|
||||
msgstr "be<62>ll<6C>t<EFBFBD>sok: ignorepkg: %s"
|
||||
|
||||
#: lib/libalpm/alpm.c:1015 lib/libalpm/alpm.c:1020
|
||||
#: lib/libalpm/alpm.c:1017 lib/libalpm/alpm.c:1022
|
||||
#, c-format
|
||||
msgid "config: holdpkg: %s"
|
||||
msgstr "be<62>ll<6C>t<EFBFBD>sok: holdpkg: %s"
|
||||
|
||||
#: lib/libalpm/alpm.c:1027
|
||||
#: lib/libalpm/alpm.c:1029
|
||||
#, c-format
|
||||
msgid "config: dbpath: %s"
|
||||
msgstr "be<62>ll<6C>t<EFBFBD>sok: adatb<74>zis<69>tvonal: %s"
|
||||
|
||||
#: lib/libalpm/alpm.c:1034
|
||||
#: lib/libalpm/alpm.c:1036
|
||||
#, c-format
|
||||
msgid "config: cachedir: %s"
|
||||
msgstr "be<62>ll<6C>t<EFBFBD>sok: gyors<72>t<EFBFBD>t<EFBFBD>rk<72>nyvt<76>r: %s"
|
||||
|
||||
#: lib/libalpm/alpm.c:1037
|
||||
#: lib/libalpm/alpm.c:1043
|
||||
#, fuzzy, c-format
|
||||
msgid "config: rootdir: %s"
|
||||
msgstr "be<62>ll<6C>t<EFBFBD>sok: gyors<72>t<EFBFBD>t<EFBFBD>rk<72>nyvt<76>r: %s"
|
||||
|
||||
#: lib/libalpm/alpm.c:1046
|
||||
#, c-format
|
||||
msgid "config: logfile: %s"
|
||||
msgstr "be<62>ll<6C>t<EFBFBD>sok: napl<70>f<EFBFBD>jl: %s"
|
||||
|
||||
#: lib/libalpm/alpm.c:1040
|
||||
#: lib/libalpm/alpm.c:1049
|
||||
#, c-format
|
||||
msgid "config: xfercommand: %s"
|
||||
msgstr "be<62>ll<6C>t<EFBFBD>sok: xfercommand: %s"
|
||||
|
||||
#: lib/libalpm/alpm.c:1045
|
||||
#: lib/libalpm/alpm.c:1054
|
||||
#, c-format
|
||||
msgid "config: upgradedelay: %d"
|
||||
msgstr "be<62>ll<6C>t<EFBFBD>sok: friss<73>t<EFBFBD>s k<>sleltet<65>se: %d"
|
||||
|
||||
#: lib/libalpm/alpm.c:1083 lib/libalpm/sync.c:107
|
||||
#: lib/libalpm/alpm.c:1092 lib/libalpm/sync.c:107
|
||||
msgid "checking for package replacements"
|
||||
msgstr "csomagcser<65>k ellen<65>rz<72>se"
|
||||
|
||||
#: lib/libalpm/alpm.c:1094 lib/libalpm/sync.c:123
|
||||
#: lib/libalpm/alpm.c:1103 lib/libalpm/sync.c:123
|
||||
#, c-format
|
||||
msgid "checking replacement '%s' for package '%s'"
|
||||
msgstr "csere vizsg<73>lata: '%s' -> '%s'"
|
||||
|
||||
#: lib/libalpm/alpm.c:1097 lib/libalpm/sync.c:125
|
||||
#: lib/libalpm/alpm.c:1106 lib/libalpm/sync.c:125
|
||||
#, c-format
|
||||
msgid "%s-%s: ignoring package upgrade (to be replaced by %s-%s)"
|
||||
msgstr "%s-%s: friss<73>t<EFBFBD>s figyelmen k<>v<EFBFBD>l hagy<67>sa (a %s-%s fogja lecser<65>lni)"
|
||||
|
||||
#: lib/libalpm/alpm.c:1127 lib/libalpm/sync.c:160
|
||||
#: lib/libalpm/alpm.c:1136 lib/libalpm/sync.c:160
|
||||
#, c-format
|
||||
msgid "%s-%s elected for upgrade (to be replaced by %s-%s)"
|
||||
msgstr "a %s-%s kiv<69>lasztva friss<73>t<EFBFBD>sre (a %s-%s fogja lecser<65>lni)"
|
||||
|
||||
#: lib/libalpm/alpm.c:1149 lib/libalpm/sync.c:194
|
||||
#: lib/libalpm/alpm.c:1158 lib/libalpm/sync.c:194
|
||||
#, c-format
|
||||
msgid "'%s' not found in sync db -- skipping"
|
||||
msgstr "a '%s' nem tal<61>lhat<61> a t<>voli adatb<74>zisban -- kihagy<67>s"
|
||||
|
||||
#: lib/libalpm/alpm.c:1163 lib/libalpm/sync.c:208 lib/libalpm/sync.c:501
|
||||
#: lib/libalpm/alpm.c:1172 lib/libalpm/sync.c:208 lib/libalpm/sync.c:509
|
||||
#, c-format
|
||||
msgid "'%s' is already elected for removal -- skipping"
|
||||
msgstr "a '%s' m<>r kijel<65>lve elt<6C>vol<6F>t<EFBFBD>sra -- kihagy<67>s"
|
||||
|
||||
#: lib/libalpm/alpm.c:1169
|
||||
#: lib/libalpm/alpm.c:1178
|
||||
#, c-format
|
||||
msgid "%s elected for upgrade (%s => %s)"
|
||||
msgstr "a(z) %s kiv<69>lasztva friss<73>t<EFBFBD>sre (%s => %s)"
|
||||
@@ -524,7 +529,7 @@ msgstr "nem tal
|
||||
#: lib/libalpm/be_files.c:255 lib/libalpm/be_files.c:401
|
||||
#: lib/libalpm/be_files.c:424 lib/libalpm/be_files.c:515
|
||||
#: lib/libalpm/be_files.c:605 lib/libalpm/be_files.c:632
|
||||
#: lib/libalpm/package.c:206
|
||||
#: lib/libalpm/package.c:208
|
||||
#, c-format
|
||||
msgid "could not open file %s: %s"
|
||||
msgstr "nem siker<65>lt megnyitni a %s f<>jlt: %s"
|
||||
@@ -634,8 +639,8 @@ msgstr ""
|
||||
#: lib/libalpm/conflict.c:349 lib/libalpm/deps.c:60 lib/libalpm/deps.c:438
|
||||
#: lib/libalpm/deps.c:634 lib/libalpm/deps.c:674 lib/libalpm/group.c:45
|
||||
#: lib/libalpm/handle.c:51 lib/libalpm/package.c:82 lib/libalpm/sync.c:67
|
||||
#: lib/libalpm/sync.c:606 lib/libalpm/sync.c:622 lib/libalpm/sync.c:719
|
||||
#: lib/libalpm/trans.c:55 lib/libalpm/util.c:612 lib/libalpm/util.c:619
|
||||
#: lib/libalpm/sync.c:614 lib/libalpm/sync.c:630 lib/libalpm/sync.c:727
|
||||
#: lib/libalpm/trans.c:55 lib/libalpm/util.c:614 lib/libalpm/util.c:621
|
||||
#, c-format
|
||||
msgid "malloc failure: could not allocate %d bytes"
|
||||
msgstr "malloc probl<62>ma: nem siker<65>lt allok<6F>lni %d byte-ot"
|
||||
@@ -864,7 +869,7 @@ msgstr "a tranzakci
|
||||
msgid "operation not compatible with the transaction type"
|
||||
msgstr "a m<>velet nem egyeztethet<65> <20>ssze a jelenlegi tranzakci<63>t<EFBFBD>pussal"
|
||||
|
||||
#: lib/libalpm/error.c:97 lib/libalpm/sync.c:986
|
||||
#: lib/libalpm/error.c:97 lib/libalpm/sync.c:994
|
||||
msgid "could not commit transaction"
|
||||
msgstr "nem siker<65>lt commitolni a tranzakci<63>t"
|
||||
|
||||
@@ -1006,70 +1011,70 @@ msgstr "nem siker
|
||||
msgid "md5(%s) = %s"
|
||||
msgstr ""
|
||||
|
||||
#: lib/libalpm/package.c:150
|
||||
#, c-format
|
||||
msgid "%s: forcing upgrade to version %s"
|
||||
msgstr "%s: er<65>ltetett friss<73>t<EFBFBD>s a %s verzi<7A>ra"
|
||||
|
||||
#: lib/libalpm/package.c:155
|
||||
#, c-format
|
||||
msgid "%s: local (%s) is newer than %s (%s)"
|
||||
msgstr "%s: a helyi (%s) <20>jabb, mint %s (%s)"
|
||||
|
||||
#: lib/libalpm/package.c:163
|
||||
#: lib/libalpm/package.c:147
|
||||
#, c-format
|
||||
msgid "%s-%s: ignoring package upgrade (%s)"
|
||||
msgstr "%s-%s: a csomagfriss<73>t<EFBFBD>s figyelmen k<>v<EFBFBD>l hagy<67>sa (%s)"
|
||||
|
||||
#: lib/libalpm/package.c:169
|
||||
#: lib/libalpm/package.c:158
|
||||
#, c-format
|
||||
msgid "%s: forcing upgrade to version %s"
|
||||
msgstr "%s: er<65>ltetett friss<73>t<EFBFBD>s a %s verzi<7A>ra"
|
||||
|
||||
#: lib/libalpm/package.c:163
|
||||
#, c-format
|
||||
msgid "%s: local (%s) is newer than %s (%s)"
|
||||
msgstr "%s: a helyi (%s) <20>jabb, mint %s (%s)"
|
||||
|
||||
#: lib/libalpm/package.c:171
|
||||
#, c-format
|
||||
msgid "%s-%s: delaying upgrade of package (%s)"
|
||||
msgstr "%s-%s: a csomag friss<73>t<EFBFBD>s<EFBFBD>nek k<>sleltet<65>se (%s)"
|
||||
|
||||
#: lib/libalpm/package.c:220 lib/libalpm/package.c:279
|
||||
#: lib/libalpm/package.c:222 lib/libalpm/package.c:281
|
||||
#, c-format
|
||||
msgid "%s: syntax error in description file line %d"
|
||||
msgstr "%s: szintaktikai hiba a le<6C>r<EFBFBD>f<EFBFBD>jl %d. sor<6F>ban"
|
||||
|
||||
#: lib/libalpm/package.c:353
|
||||
#: lib/libalpm/package.c:355
|
||||
msgid "could not parse the package description file"
|
||||
msgstr "nem siker<65>lt <20>rtelmezni a csomagle<6C>r<EFBFBD> f<>jlt"
|
||||
|
||||
#: lib/libalpm/package.c:357
|
||||
#: lib/libalpm/package.c:359
|
||||
#, c-format
|
||||
msgid "missing package name in %s"
|
||||
msgstr "hi<68>nyz<79> csomagn<67>v itt: %s"
|
||||
|
||||
#: lib/libalpm/package.c:361
|
||||
#: lib/libalpm/package.c:363
|
||||
#, c-format
|
||||
msgid "missing package version in %s"
|
||||
msgstr "hi<68>nyz<79> csomagverzi<7A> itt: %s"
|
||||
|
||||
#: lib/libalpm/package.c:396
|
||||
#: lib/libalpm/package.c:398
|
||||
#, c-format
|
||||
msgid "could not remove tempfile %s"
|
||||
msgstr "nem siker<65>lt elt<6C>vol<6F>tani a %s ideiglenes f<>jlt"
|
||||
|
||||
#: lib/libalpm/package.c:409 lib/libalpm/package.c:416
|
||||
#: lib/libalpm/package.c:411 lib/libalpm/package.c:418
|
||||
#, c-format
|
||||
msgid "error while reading package: %s"
|
||||
msgstr "hiba a csomag olvas<61>sa k<>zben: %s"
|
||||
|
||||
#: lib/libalpm/package.c:422
|
||||
#: lib/libalpm/package.c:424
|
||||
msgid "missing package metadata"
|
||||
msgstr ""
|
||||
|
||||
#: lib/libalpm/package.c:429
|
||||
#: lib/libalpm/package.c:431
|
||||
#, c-format
|
||||
msgid "missing package filelist in %s, generating one"
|
||||
msgstr ""
|
||||
|
||||
#: lib/libalpm/package.c:568
|
||||
#: lib/libalpm/package.c:570
|
||||
#, c-format
|
||||
msgid "adding '%s' in requiredby field for '%s'"
|
||||
msgstr ""
|
||||
|
||||
#: lib/libalpm/package.c:582
|
||||
#: lib/libalpm/package.c:584
|
||||
#, c-format
|
||||
msgid "adding '%s' in requiredby field for '%s' (provides: %s)"
|
||||
msgstr ""
|
||||
@@ -1193,227 +1198,227 @@ msgstr "csomagfriss
|
||||
msgid "%s-%s elected for upgrade (%s => %s)"
|
||||
msgstr "a(z) %s-%s kiv<69>lasztva friss<73>t<EFBFBD>sre (%s => %s)"
|
||||
|
||||
#: lib/libalpm/sync.c:262
|
||||
#: lib/libalpm/sync.c:270
|
||||
#, c-format
|
||||
msgid "searching for target in repo '%s'"
|
||||
msgstr "c<>l keres<65>se a '%s' rep<65>ban"
|
||||
|
||||
#: lib/libalpm/sync.c:270 lib/libalpm/sync.c:293
|
||||
#: lib/libalpm/sync.c:278 lib/libalpm/sync.c:301
|
||||
#, c-format
|
||||
msgid "target '%s' not found -- looking for provisions"
|
||||
msgstr "a(z) '%s' c<>l nem tal<61>lhat<61> - szolg<6C>lat<61>k keres<65>se"
|
||||
|
||||
#: lib/libalpm/sync.c:275 lib/libalpm/sync.c:298
|
||||
#: lib/libalpm/sync.c:283 lib/libalpm/sync.c:306
|
||||
#, c-format
|
||||
msgid "found '%s' as a provision for '%s'"
|
||||
msgstr "a(z) '%s' szolg<6C>ltatja a(z) '%s' csomagot"
|
||||
|
||||
#: lib/libalpm/sync.c:282
|
||||
#: lib/libalpm/sync.c:290
|
||||
#, c-format
|
||||
msgid "repository '%s' not found"
|
||||
msgstr "a(z) '%s' rep<65> nem tal<61>lhat<61>"
|
||||
|
||||
#: lib/libalpm/sync.c:323
|
||||
#: lib/libalpm/sync.c:331
|
||||
#, c-format
|
||||
msgid "%s-%s is up to date -- skipping"
|
||||
msgstr "a(z) %s-%s naprak<61>sz -- kihagy<67>s"
|
||||
|
||||
#: lib/libalpm/sync.c:346
|
||||
#: lib/libalpm/sync.c:354
|
||||
#, c-format
|
||||
msgid "adding target '%s' to the transaction set"
|
||||
msgstr "a '%s' hozz<7A>ad<61>sa a tranzakci<63>hoz"
|
||||
|
||||
#: lib/libalpm/sync.c:394
|
||||
#: lib/libalpm/sync.c:402
|
||||
msgid "resolving target's dependencies"
|
||||
msgstr "a c<>lok f<>gg<67>s<EFBFBD>geinek felold<6C>sa"
|
||||
|
||||
#: lib/libalpm/sync.c:414
|
||||
#: lib/libalpm/sync.c:422
|
||||
#, c-format
|
||||
msgid "adding package %s-%s to the transaction targets"
|
||||
msgstr "a '%s-%s' hozz<7A>ad<61>sa a c<>lcsomagokhoz"
|
||||
|
||||
#: lib/libalpm/sync.c:455
|
||||
#: lib/libalpm/sync.c:463
|
||||
msgid "looking for unresolvable dependencies"
|
||||
msgstr "el<65>gtelen f<>gg<67>s<EFBFBD>gek keres<65>se"
|
||||
|
||||
#: lib/libalpm/sync.c:486
|
||||
#: lib/libalpm/sync.c:494
|
||||
#, c-format
|
||||
msgid "package '%s' conflicts with '%s'"
|
||||
msgstr "a(z) '%s' csomag <20>tk<74>zik a(z) '%s' csomaggal"
|
||||
|
||||
#: lib/libalpm/sync.c:508
|
||||
#: lib/libalpm/sync.c:516
|
||||
#, c-format
|
||||
msgid "'%s' not found in transaction set -- skipping"
|
||||
msgstr "a '%s' nem tal<61>lhat<61> a tranzakci<63>ban -- kihagy<67>s"
|
||||
|
||||
#: lib/libalpm/sync.c:519
|
||||
#: lib/libalpm/sync.c:527
|
||||
#, c-format
|
||||
msgid "package '%s' provides its own conflict"
|
||||
msgstr "a(z) '%s' csomag saj<61>t mag<61>val <20>tk<74>zik"
|
||||
|
||||
#: lib/libalpm/sync.c:542 lib/libalpm/sync.c:547
|
||||
#: lib/libalpm/sync.c:550 lib/libalpm/sync.c:555
|
||||
#, c-format
|
||||
msgid "'%s' is in the target list -- keeping it"
|
||||
msgstr "a(z) '%s' m<>r a c<>l list<73>ban -- megtart<72>s"
|
||||
|
||||
#: lib/libalpm/sync.c:559 lib/libalpm/sync.c:596
|
||||
#: lib/libalpm/sync.c:567 lib/libalpm/sync.c:604
|
||||
#, c-format
|
||||
msgid "removing '%s' from target list"
|
||||
msgstr "a(z) '%s' bejegyz<79>s elt<6C>vol<6F>t<EFBFBD>sa a c<>llist<73>b<EFBFBD>l"
|
||||
|
||||
#: lib/libalpm/sync.c:568
|
||||
#: lib/libalpm/sync.c:576
|
||||
#, c-format
|
||||
msgid "resolving package '%s' conflict"
|
||||
msgstr "konfliktus felold<6C>sa a(z) '%s' csomag sz<73>m<EFBFBD>ra"
|
||||
|
||||
#: lib/libalpm/sync.c:591
|
||||
#: lib/libalpm/sync.c:599
|
||||
#, c-format
|
||||
msgid "electing '%s' for removal"
|
||||
msgstr "a(z) '%s' kiv<69>laszt<7A>sa elt<6C>vol<6F>t<EFBFBD>sra"
|
||||
|
||||
#: lib/libalpm/sync.c:602 lib/libalpm/sync.c:618
|
||||
#: lib/libalpm/sync.c:610 lib/libalpm/sync.c:626
|
||||
msgid "unresolvable package conflicts detected"
|
||||
msgstr "feloldhatatlan csomag<61>tk<74>z<EFBFBD>sek"
|
||||
|
||||
#: lib/libalpm/sync.c:670
|
||||
#: lib/libalpm/sync.c:678
|
||||
msgid "checking dependencies of packages designated for removal"
|
||||
msgstr "az elt<6C>vol<6F>tand<6E> csomagok f<>gg<67>s<EFBFBD>geinek ellen<65>rz<72>se"
|
||||
|
||||
#: lib/libalpm/sync.c:684
|
||||
#: lib/libalpm/sync.c:692
|
||||
msgid "something has gone horribly wrong"
|
||||
msgstr "valami nagyon rosszul ment"
|
||||
|
||||
#: lib/libalpm/sync.c:704
|
||||
#: lib/libalpm/sync.c:712
|
||||
#, c-format
|
||||
msgid "found '%s' as a provision for '%s' -- conflict aborted"
|
||||
msgstr "a(z) '%s' szolg<6C>ltatja a(z) '%s' csomagot - konfliktus f<>lbeszak<61>tva"
|
||||
|
||||
#: lib/libalpm/sync.c:800
|
||||
#: lib/libalpm/sync.c:808
|
||||
#, c-format
|
||||
msgid "%s is already in the cache\n"
|
||||
msgstr "%s m<>r a gyors<72>t<EFBFBD>t<EFBFBD>rban\n"
|
||||
|
||||
#: lib/libalpm/sync.c:811
|
||||
#: lib/libalpm/sync.c:819
|
||||
#, c-format
|
||||
msgid "no %s cache exists, creating...\n"
|
||||
msgstr "nem l<>tezik a(z) %s gyors<72>t<EFBFBD>t<EFBFBD>r. l<>trehoz<6F>s...\n"
|
||||
|
||||
#: lib/libalpm/sync.c:812
|
||||
#: lib/libalpm/sync.c:820
|
||||
#, c-format
|
||||
msgid "warning: no %s cache exists, creating..."
|
||||
msgstr "figyelmeztet<65>s: a(z) %s gyors<72>t<EFBFBD>t<EFBFBD>r nem l<>tezik. l<>trehoz<6F>s..."
|
||||
|
||||
#: lib/libalpm/sync.c:817
|
||||
#: lib/libalpm/sync.c:825
|
||||
msgid "couldn't create package cache, using /tmp instead\n"
|
||||
msgstr "nem siker<65>lt l<>trehozni a csomag gyors<72>t<EFBFBD>t<EFBFBD>rat, a /tmp haszn<7A>lata\n"
|
||||
|
||||
#: lib/libalpm/sync.c:818
|
||||
#: lib/libalpm/sync.c:826
|
||||
msgid "warning: couldn't create package cache, using /tmp instead"
|
||||
msgstr ""
|
||||
"figyelmeztet<65>s: nem siker<65>lt l<>trehozni a csomag gyors<72>t<EFBFBD>t<EFBFBD>rat, a /tmp "
|
||||
"haszn<7A>lata"
|
||||
|
||||
#: lib/libalpm/sync.c:825
|
||||
#: lib/libalpm/sync.c:833
|
||||
#, c-format
|
||||
msgid "failed to retrieve some files from %s\n"
|
||||
msgstr "nem siker<65>lt n<>h<EFBFBD>ny f<>jlt let<65>lteni innen: %s\n"
|
||||
|
||||
#: lib/libalpm/sync.c:855 lib/libalpm/sync.c:867
|
||||
#: lib/libalpm/sync.c:863 lib/libalpm/sync.c:875
|
||||
#, c-format
|
||||
msgid "can't get md5 or sha1 checksum for package %s\n"
|
||||
msgstr ""
|
||||
"sikertelen az md5 vagy sha1 ellen<65>rz<72> <20>sszeg el<65>r<EFBFBD>se a %s csomag sz<73>m<EFBFBD>ra\n"
|
||||
|
||||
#: lib/libalpm/sync.c:886
|
||||
#: lib/libalpm/sync.c:894
|
||||
#, c-format
|
||||
msgid "archive %s was corrupted (bad MD5 or SHA1 checksum)\n"
|
||||
msgstr "a(z) %s arch<63>vum s<>r<EFBFBD>lt volt (rossz MD5 vagy SHA1 szumma)\n"
|
||||
|
||||
#: lib/libalpm/sync.c:888
|
||||
#: lib/libalpm/sync.c:896
|
||||
#, c-format
|
||||
msgid "archive %s is corrupted (bad MD5 or SHA1 checksum)\n"
|
||||
msgstr "a(z) %s arch<63>vum s<>r<EFBFBD>lt (rossz MD5 vagy SHA1 szumma)\n"
|
||||
|
||||
#: lib/libalpm/sync.c:909
|
||||
#: lib/libalpm/sync.c:917
|
||||
msgid "could not create removal transaction"
|
||||
msgstr "nem siker<65>lt l<>trehozni az elt<6C>vol<6F>t<EFBFBD>si tranzakci<63>t"
|
||||
|
||||
#: lib/libalpm/sync.c:915
|
||||
#: lib/libalpm/sync.c:923
|
||||
msgid "could not initialize the removal transaction"
|
||||
msgstr "nem siker<65>lt inicializ<69>lni az elt<6C>vol<6F>t<EFBFBD>si tranzakci<63>t"
|
||||
|
||||
#: lib/libalpm/sync.c:935
|
||||
#: lib/libalpm/sync.c:943
|
||||
msgid "removing conflicting and to-be-replaced packages"
|
||||
msgstr "az <20>tk<74>z<EFBFBD> <20>s lecser<65>lend<6E> csomagok elt<6C>vol<6F>t<EFBFBD>sa"
|
||||
|
||||
#: lib/libalpm/sync.c:937
|
||||
#: lib/libalpm/sync.c:945
|
||||
msgid "could not prepare removal transaction"
|
||||
msgstr "nem siker<65>lt l<>trehozni az elt<6C>vol<6F>t<EFBFBD>si tranzakci<63>t"
|
||||
|
||||
#: lib/libalpm/sync.c:943
|
||||
#: lib/libalpm/sync.c:951
|
||||
msgid "could not commit removal transaction"
|
||||
msgstr "nem siker<65>lt commitolni az elt<6C>vol<6F>t<EFBFBD> tranzakci<63>t"
|
||||
|
||||
#: lib/libalpm/sync.c:950
|
||||
#: lib/libalpm/sync.c:958
|
||||
msgid "installing packages"
|
||||
msgstr "csomagok telep<65>t<EFBFBD>se"
|
||||
|
||||
#: lib/libalpm/sync.c:953
|
||||
#: lib/libalpm/sync.c:961
|
||||
msgid "could not create transaction"
|
||||
msgstr "nem siker<65>lt l<>trehozni a tranzakci<63>t"
|
||||
|
||||
#: lib/libalpm/sync.c:958
|
||||
#: lib/libalpm/sync.c:966
|
||||
msgid "could not initialize transaction"
|
||||
msgstr "nem siker<65>lt inicializ<69>lni a tranzakci<63>t"
|
||||
|
||||
#: lib/libalpm/sync.c:981
|
||||
#: lib/libalpm/sync.c:989
|
||||
msgid "could not prepare transaction"
|
||||
msgstr "nem siker<65>lt el<65>k<EFBFBD>sz<73>teni a tranzakci<63>t"
|
||||
|
||||
#: lib/libalpm/sync.c:993
|
||||
#: lib/libalpm/sync.c:1001
|
||||
msgid "updating database for replaced packages' dependencies"
|
||||
msgstr "a lecser<65>lt csomagok f<>gg<67>s<EFBFBD>geinek friss<73>t<EFBFBD>se az adatb<74>zisban"
|
||||
|
||||
#: lib/libalpm/sync.c:1022
|
||||
#: lib/libalpm/sync.c:1030
|
||||
#, c-format
|
||||
msgid "could not update requiredby for database entry %s-%s"
|
||||
msgstr "sikertelen a %s-%s 'f<>gg t<>le' adatb<74>zis-bejegyz<79>s<EFBFBD>nek friss<73>t<EFBFBD>se"
|
||||
|
||||
#: lib/libalpm/sync.c:1031
|
||||
#: lib/libalpm/sync.c:1039
|
||||
#, c-format
|
||||
msgid "could not update new database entry %s-%s"
|
||||
msgstr "sikertelen a '%s-%s' adatb<74>zis-bejegyz<79>s friss<73>t<EFBFBD>se"
|
||||
|
||||
#: lib/libalpm/sync.c:1071
|
||||
#: lib/libalpm/sync.c:1079
|
||||
#, c-format
|
||||
msgid "found package '%s-%s' in sync"
|
||||
msgstr ""
|
||||
|
||||
#: lib/libalpm/sync.c:1077
|
||||
#: lib/libalpm/sync.c:1085
|
||||
#, c-format
|
||||
msgid "package '%s' not found in sync"
|
||||
msgstr "a '%s' csomag nem tal<61>lhat<61> a t<>voli adatb<74>zisban"
|
||||
|
||||
#: lib/libalpm/trans.c:270
|
||||
#: lib/libalpm/trans.c:271
|
||||
#, c-format
|
||||
msgid "updating dependency packages 'requiredby' fields for %s-%s"
|
||||
msgstr ""
|
||||
|
||||
#: lib/libalpm/trans.c:273
|
||||
#: lib/libalpm/trans.c:274
|
||||
msgid "package has no dependencies, no other packages to update"
|
||||
msgstr "a csomagnak nincsenek f<>gg<67>s<EFBFBD>gei, nincs t<>bb friss<73>tend<6E> csomag"
|
||||
|
||||
#: lib/libalpm/trans.c:310 lib/libalpm/trans.c:340
|
||||
#: lib/libalpm/trans.c:311 lib/libalpm/trans.c:341
|
||||
#, c-format
|
||||
msgid "updating 'requiredby' field for package '%s'"
|
||||
msgstr "a '%s' csomag 'f<>gg t<>le' mez<65>j<EFBFBD>nek friss<73>t<EFBFBD>se"
|
||||
|
||||
#: lib/libalpm/trans.c:325 lib/libalpm/trans.c:355
|
||||
#: lib/libalpm/trans.c:326 lib/libalpm/trans.c:356
|
||||
#, c-format
|
||||
msgid "could not update 'requiredby' database entry %s-%s"
|
||||
msgstr "sikertelen a %s-%s 'f<>gg t<>le' adatb<74>zis-bejegyz<79>s<EFBFBD>nek friss<73>t<EFBFBD>se"
|
||||
|
||||
#: lib/libalpm/trans.c:332
|
||||
#: lib/libalpm/trans.c:333
|
||||
#, c-format
|
||||
msgid "could not find dependency '%s'"
|
||||
msgstr "nem tal<61>lhat<61> a '%s' f<>gg<67>s<EFBFBD>g"
|
||||
@@ -1492,7 +1497,12 @@ msgstr "a waitpid h
|
||||
msgid "could not remove tmpdir %s"
|
||||
msgstr "nem siker<65>lt elt<6C>vol<6F>tani a %s ideiglenes k<>nyvt<76>rat"
|
||||
|
||||
#: lib/libalpm/util.c:607
|
||||
#: lib/libalpm/util.c:568
|
||||
#, c-format
|
||||
msgid "cannot read disk space information from %s: %s"
|
||||
msgstr ""
|
||||
|
||||
#: lib/libalpm/util.c:609
|
||||
#, c-format
|
||||
msgid "check_freespace: total pkg size: %lld, disk space: %lld"
|
||||
msgstr "check_freespace: teljes csomagm<67>ret: %lld, lemezter<65>let: %lld"
|
||||
|
||||
@@ -9,8 +9,8 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: libalpm VERSION\n"
|
||||
"Report-Msgid-Bugs-To: pacman-dev@archlinux.org\n"
|
||||
"POT-Creation-Date: 2007-03-23 20:46-0500\n"
|
||||
"PO-Revision-Date: 2007-03-22 12:30+0100\n"
|
||||
"POT-Creation-Date: 2007-06-17 20:11-0400\n"
|
||||
"PO-Revision-Date: 2007-04-17 22:00+0100\n"
|
||||
"Last-Translator: Giovanni Scafora <linuxmania@gmail.com>\n"
|
||||
"Language-Team: Arch Linux Italian Team <linuxmania@gmail.com>\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
@@ -41,7 +41,7 @@ msgstr "lettura dei metadata di '%s' in corso"
|
||||
msgid "looking for unsatisfied dependencies"
|
||||
msgstr "ricerca delle dipendenze non soddisfatte"
|
||||
|
||||
#: lib/libalpm/add.c:203 lib/libalpm/sync.c:475
|
||||
#: lib/libalpm/add.c:203 lib/libalpm/sync.c:483
|
||||
msgid "looking for conflicts"
|
||||
msgstr "ricerca dei conflitti in corso"
|
||||
|
||||
@@ -224,59 +224,59 @@ msgstr "estrazione di %s in corso"
|
||||
msgid "error: could not extract %s (%s)"
|
||||
msgstr "errore: impossibile estrarre %s (%s)"
|
||||
|
||||
#: lib/libalpm/add.c:717
|
||||
#: lib/libalpm/add.c:719
|
||||
#, c-format
|
||||
msgid "appending backup entry for %s"
|
||||
msgstr "aggiunta in corso della voce di backup per %s"
|
||||
|
||||
#: lib/libalpm/add.c:749 lib/libalpm/add.c:751
|
||||
#: lib/libalpm/add.c:751 lib/libalpm/add.c:753
|
||||
#, c-format
|
||||
msgid "errors occurred while %s %s"
|
||||
msgstr "si sono verificati degli errori durante %s %s"
|
||||
|
||||
#: lib/libalpm/add.c:750 lib/libalpm/add.c:752
|
||||
#: lib/libalpm/add.c:752 lib/libalpm/add.c:754
|
||||
msgid "upgrading"
|
||||
msgstr "l'aggiornamento"
|
||||
|
||||
#: lib/libalpm/add.c:750 lib/libalpm/add.c:752
|
||||
#: lib/libalpm/add.c:752 lib/libalpm/add.c:754
|
||||
msgid "installing"
|
||||
msgstr "l'installazione"
|
||||
|
||||
#: lib/libalpm/add.c:769
|
||||
#: lib/libalpm/add.c:771
|
||||
#, c-format
|
||||
msgid "provision '%s' has been removed from package %s (%s => %s)"
|
||||
msgstr "'%s' è stato rimosso dal pacchetto %s (%s => %s)"
|
||||
|
||||
#: lib/libalpm/add.c:781
|
||||
#: lib/libalpm/add.c:783
|
||||
#, c-format
|
||||
msgid "updating '%s' due to provision change (%s)"
|
||||
msgstr "aggiornamento in corso di '%s' dovuto ad un cambiamento (%s)"
|
||||
|
||||
#: lib/libalpm/add.c:785 lib/libalpm/add.c:786
|
||||
#: lib/libalpm/add.c:787 lib/libalpm/add.c:788
|
||||
#, c-format
|
||||
msgid "could not update provision '%s' from '%s'"
|
||||
msgstr "impossibile aggiornare '%s' da '%s'"
|
||||
|
||||
#: lib/libalpm/add.c:799 lib/libalpm/remove.c:336
|
||||
#: lib/libalpm/add.c:801 lib/libalpm/remove.c:336
|
||||
msgid "updating database"
|
||||
msgstr "aggiornamento del database in corso"
|
||||
|
||||
#: lib/libalpm/add.c:800
|
||||
#: lib/libalpm/add.c:802
|
||||
#, c-format
|
||||
msgid "adding database entry '%s'"
|
||||
msgstr "inclusione della voce '%s' nel database"
|
||||
|
||||
#: lib/libalpm/add.c:803 lib/libalpm/add.c:805
|
||||
#: lib/libalpm/add.c:805 lib/libalpm/add.c:807
|
||||
#, c-format
|
||||
msgid "could not update database entry %s-%s"
|
||||
msgstr "impossibile aggiornare la voce %s-%s nel database"
|
||||
|
||||
#: lib/libalpm/add.c:811
|
||||
#: lib/libalpm/add.c:813
|
||||
#, c-format
|
||||
msgid "could not add entry '%s' in cache"
|
||||
msgstr "impossible includere la voce '%s' nella cache"
|
||||
|
||||
#: lib/libalpm/add.c:841 lib/libalpm/remove.c:363 lib/libalpm/sync.c:1047
|
||||
#: lib/libalpm/add.c:843 lib/libalpm/remove.c:363 lib/libalpm/sync.c:1055
|
||||
#, c-format
|
||||
msgid "running \"ldconfig -r %s\""
|
||||
msgstr "esecuzione in corso di \"ldconfig -r %s\""
|
||||
@@ -376,109 +376,114 @@ msgstr "impossibile rimuovere il file di lock %s"
|
||||
msgid "warning: could not remove lock file %s"
|
||||
msgstr "attenzione: impossibile rimuovere il file di lock %s"
|
||||
|
||||
#: lib/libalpm/alpm.c:919
|
||||
#: lib/libalpm/alpm.c:920
|
||||
#, c-format
|
||||
msgid "config: new section '%s'"
|
||||
msgstr "config: nuova sezione '%s'"
|
||||
|
||||
#: lib/libalpm/alpm.c:948
|
||||
#: lib/libalpm/alpm.c:950
|
||||
msgid "config: nopassiveftp"
|
||||
msgstr "config: nopassiveftp"
|
||||
|
||||
#: lib/libalpm/alpm.c:951
|
||||
#: lib/libalpm/alpm.c:953
|
||||
msgid "config: usesyslog"
|
||||
msgstr "config: usesyslog"
|
||||
|
||||
#: lib/libalpm/alpm.c:954
|
||||
#: lib/libalpm/alpm.c:956
|
||||
msgid "config: chomp"
|
||||
msgstr "config: chomp"
|
||||
|
||||
#: lib/libalpm/alpm.c:957
|
||||
#: lib/libalpm/alpm.c:959
|
||||
msgid "config: usecolor"
|
||||
msgstr "config: usecolor"
|
||||
|
||||
#: lib/libalpm/alpm.c:966
|
||||
#: lib/libalpm/alpm.c:968
|
||||
#, c-format
|
||||
msgid "config: including %s"
|
||||
msgstr "config: including %s"
|
||||
|
||||
#: lib/libalpm/alpm.c:976 lib/libalpm/alpm.c:981
|
||||
#: lib/libalpm/alpm.c:978 lib/libalpm/alpm.c:983
|
||||
#, c-format
|
||||
msgid "config: noupgrade: %s"
|
||||
msgstr "config: noupgrade: %s"
|
||||
|
||||
#: lib/libalpm/alpm.c:989 lib/libalpm/alpm.c:994
|
||||
#: lib/libalpm/alpm.c:991 lib/libalpm/alpm.c:996
|
||||
#, c-format
|
||||
msgid "config: noextract: %s"
|
||||
msgstr "config: noextract:·%s"
|
||||
|
||||
#: lib/libalpm/alpm.c:1002 lib/libalpm/alpm.c:1007
|
||||
#: lib/libalpm/alpm.c:1004 lib/libalpm/alpm.c:1009
|
||||
#, c-format
|
||||
msgid "config: ignorepkg: %s"
|
||||
msgstr "config: ignorepkg: %s"
|
||||
|
||||
#: lib/libalpm/alpm.c:1015 lib/libalpm/alpm.c:1020
|
||||
#: lib/libalpm/alpm.c:1017 lib/libalpm/alpm.c:1022
|
||||
#, c-format
|
||||
msgid "config: holdpkg: %s"
|
||||
msgstr "config: holdpkg: %s"
|
||||
|
||||
#: lib/libalpm/alpm.c:1027
|
||||
#: lib/libalpm/alpm.c:1029
|
||||
#, c-format
|
||||
msgid "config: dbpath: %s"
|
||||
msgstr "config: dbpath: %s"
|
||||
|
||||
#: lib/libalpm/alpm.c:1034
|
||||
#: lib/libalpm/alpm.c:1036
|
||||
#, c-format
|
||||
msgid "config: cachedir: %s"
|
||||
msgstr "config: cachedir: %s"
|
||||
|
||||
#: lib/libalpm/alpm.c:1037
|
||||
#: lib/libalpm/alpm.c:1043
|
||||
#, c-format
|
||||
msgid "config: rootdir: %s"
|
||||
msgstr "config: rootdir: %s"
|
||||
|
||||
#: lib/libalpm/alpm.c:1046
|
||||
#, c-format
|
||||
msgid "config: logfile: %s"
|
||||
msgstr "config: logfile: %s"
|
||||
|
||||
#: lib/libalpm/alpm.c:1040
|
||||
#: lib/libalpm/alpm.c:1049
|
||||
#, c-format
|
||||
msgid "config: xfercommand: %s"
|
||||
msgstr "config: xfercommand: %s"
|
||||
|
||||
#: lib/libalpm/alpm.c:1045
|
||||
#: lib/libalpm/alpm.c:1054
|
||||
#, c-format
|
||||
msgid "config: upgradedelay: %d"
|
||||
msgstr "config: upgradedelay: %d"
|
||||
|
||||
#: lib/libalpm/alpm.c:1083 lib/libalpm/sync.c:107
|
||||
#: lib/libalpm/alpm.c:1092 lib/libalpm/sync.c:107
|
||||
msgid "checking for package replacements"
|
||||
msgstr "controllo della sostituzione dei pacchetti in corso"
|
||||
|
||||
#: lib/libalpm/alpm.c:1094 lib/libalpm/sync.c:123
|
||||
#: lib/libalpm/alpm.c:1103 lib/libalpm/sync.c:123
|
||||
#, c-format
|
||||
msgid "checking replacement '%s' for package '%s'"
|
||||
msgstr "controllo in corso della sostituzione di '%s' con il pacchetto '%s'"
|
||||
|
||||
#: lib/libalpm/alpm.c:1097 lib/libalpm/sync.c:125
|
||||
#: lib/libalpm/alpm.c:1106 lib/libalpm/sync.c:125
|
||||
#, c-format
|
||||
msgid "%s-%s: ignoring package upgrade (to be replaced by %s-%s)"
|
||||
msgstr ""
|
||||
"%s-%s: aggiornamento del pacchetto ignorato (per essere sostituito con %s-%s)"
|
||||
|
||||
#: lib/libalpm/alpm.c:1127 lib/libalpm/sync.c:160
|
||||
#: lib/libalpm/alpm.c:1136 lib/libalpm/sync.c:160
|
||||
#, c-format
|
||||
msgid "%s-%s elected for upgrade (to be replaced by %s-%s)"
|
||||
msgstr ""
|
||||
"%s-%s selezionato per l'aggiornamento (per essere sostituito con %s-%s)"
|
||||
|
||||
#: lib/libalpm/alpm.c:1149 lib/libalpm/sync.c:194
|
||||
#: lib/libalpm/alpm.c:1158 lib/libalpm/sync.c:194
|
||||
#, c-format
|
||||
msgid "'%s' not found in sync db -- skipping"
|
||||
msgstr "impossibile trovare '%s' nel database, sarà ignorato"
|
||||
|
||||
#: lib/libalpm/alpm.c:1163 lib/libalpm/sync.c:208 lib/libalpm/sync.c:501
|
||||
#: lib/libalpm/alpm.c:1172 lib/libalpm/sync.c:208 lib/libalpm/sync.c:509
|
||||
#, c-format
|
||||
msgid "'%s' is already elected for removal -- skipping"
|
||||
msgstr "'%s' è già selezionato per la rimozione, sarà ignorato"
|
||||
|
||||
#: lib/libalpm/alpm.c:1169
|
||||
#: lib/libalpm/alpm.c:1178
|
||||
#, c-format
|
||||
msgid "%s elected for upgrade (%s => %s)"
|
||||
msgstr "%s selezionato per l'aggiornamento (%s => %s)"
|
||||
@@ -529,7 +534,7 @@ msgstr "impossibile trovare '%s-%s' nel database '%s'"
|
||||
#: lib/libalpm/be_files.c:255 lib/libalpm/be_files.c:401
|
||||
#: lib/libalpm/be_files.c:424 lib/libalpm/be_files.c:515
|
||||
#: lib/libalpm/be_files.c:605 lib/libalpm/be_files.c:632
|
||||
#: lib/libalpm/package.c:206
|
||||
#: lib/libalpm/package.c:208
|
||||
#, c-format
|
||||
msgid "could not open file %s: %s"
|
||||
msgstr "impossibile aprire il file %s: %s"
|
||||
@@ -638,8 +643,8 @@ msgstr "\tCONFLITTI:: %s va in conflitto con %s"
|
||||
#: lib/libalpm/conflict.c:349 lib/libalpm/deps.c:60 lib/libalpm/deps.c:438
|
||||
#: lib/libalpm/deps.c:634 lib/libalpm/deps.c:674 lib/libalpm/group.c:45
|
||||
#: lib/libalpm/handle.c:51 lib/libalpm/package.c:82 lib/libalpm/sync.c:67
|
||||
#: lib/libalpm/sync.c:606 lib/libalpm/sync.c:622 lib/libalpm/sync.c:719
|
||||
#: lib/libalpm/trans.c:55 lib/libalpm/util.c:612 lib/libalpm/util.c:619
|
||||
#: lib/libalpm/sync.c:614 lib/libalpm/sync.c:630 lib/libalpm/sync.c:727
|
||||
#: lib/libalpm/trans.c:55 lib/libalpm/util.c:614 lib/libalpm/util.c:621
|
||||
#, c-format
|
||||
msgid "malloc failure: could not allocate %d bytes"
|
||||
msgstr "malloc failure: impossibile allocare %d byte"
|
||||
@@ -872,7 +877,7 @@ msgstr "operazione annullata"
|
||||
msgid "operation not compatible with the transaction type"
|
||||
msgstr "operazione incompatibile con il tipo di transazione"
|
||||
|
||||
#: lib/libalpm/error.c:97 lib/libalpm/sync.c:986
|
||||
#: lib/libalpm/error.c:97 lib/libalpm/sync.c:994
|
||||
msgid "could not commit transaction"
|
||||
msgstr "impossibile eseguire l'operazione"
|
||||
|
||||
@@ -1014,70 +1019,70 @@ msgstr "impossibile aprire %s\n"
|
||||
msgid "md5(%s) = %s"
|
||||
msgstr "md5(%s) = %s"
|
||||
|
||||
#: lib/libalpm/package.c:150
|
||||
#, c-format
|
||||
msgid "%s: forcing upgrade to version %s"
|
||||
msgstr "%s: aggiornamento forzato alla versione %s"
|
||||
|
||||
#: lib/libalpm/package.c:155
|
||||
#, c-format
|
||||
msgid "%s: local (%s) is newer than %s (%s)"
|
||||
msgstr "%s: la versione installata (%s) è più recente di %s (%s)"
|
||||
|
||||
#: lib/libalpm/package.c:163
|
||||
#: lib/libalpm/package.c:147
|
||||
#, c-format
|
||||
msgid "%s-%s: ignoring package upgrade (%s)"
|
||||
msgstr "%s-%s: aggiornamento del pacchetto (%s) ignorato"
|
||||
|
||||
#: lib/libalpm/package.c:169
|
||||
#: lib/libalpm/package.c:158
|
||||
#, c-format
|
||||
msgid "%s: forcing upgrade to version %s"
|
||||
msgstr "%s: aggiornamento forzato alla versione %s"
|
||||
|
||||
#: lib/libalpm/package.c:163
|
||||
#, c-format
|
||||
msgid "%s: local (%s) is newer than %s (%s)"
|
||||
msgstr "%s: la versione installata (%s) è più recente di %s (%s)"
|
||||
|
||||
#: lib/libalpm/package.c:171
|
||||
#, c-format
|
||||
msgid "%s-%s: delaying upgrade of package (%s)"
|
||||
msgstr "%s-%s: ritardo durante l'aggiornamento del pacchetto (%s)"
|
||||
|
||||
#: lib/libalpm/package.c:220 lib/libalpm/package.c:279
|
||||
#: lib/libalpm/package.c:222 lib/libalpm/package.c:281
|
||||
#, c-format
|
||||
msgid "%s: syntax error in description file line %d"
|
||||
msgstr "%s: errore di sintassi nel file di descrizione alla linea %d"
|
||||
|
||||
#: lib/libalpm/package.c:353
|
||||
#: lib/libalpm/package.c:355
|
||||
msgid "could not parse the package description file"
|
||||
msgstr "impossibile analizzare il file di descrizione del pacchetto"
|
||||
|
||||
#: lib/libalpm/package.c:357
|
||||
#: lib/libalpm/package.c:359
|
||||
#, c-format
|
||||
msgid "missing package name in %s"
|
||||
msgstr "manca il nome del pacchetto in %s"
|
||||
|
||||
#: lib/libalpm/package.c:361
|
||||
#: lib/libalpm/package.c:363
|
||||
#, c-format
|
||||
msgid "missing package version in %s"
|
||||
msgstr "manca la versione del pacchetto in %s"
|
||||
|
||||
#: lib/libalpm/package.c:396
|
||||
#: lib/libalpm/package.c:398
|
||||
#, c-format
|
||||
msgid "could not remove tempfile %s"
|
||||
msgstr "impossibile rimuovere il file temporaneo %s"
|
||||
|
||||
#: lib/libalpm/package.c:409 lib/libalpm/package.c:416
|
||||
#: lib/libalpm/package.c:411 lib/libalpm/package.c:418
|
||||
#, c-format
|
||||
msgid "error while reading package: %s"
|
||||
msgstr "si è verificato un errore durante la lettura del pacchetto: %s"
|
||||
|
||||
#: lib/libalpm/package.c:422
|
||||
#: lib/libalpm/package.c:424
|
||||
msgid "missing package metadata"
|
||||
msgstr "manca il metadata del pacchetto"
|
||||
|
||||
#: lib/libalpm/package.c:429
|
||||
#: lib/libalpm/package.c:431
|
||||
#, c-format
|
||||
msgid "missing package filelist in %s, generating one"
|
||||
msgstr "manca il filelist nel pacchetto %s, creazione in corso"
|
||||
|
||||
#: lib/libalpm/package.c:568
|
||||
#: lib/libalpm/package.c:570
|
||||
#, c-format
|
||||
msgid "adding '%s' in requiredby field for '%s'"
|
||||
msgstr "inclusione di '%s' nel campo 'richiesto da' di '%s'"
|
||||
|
||||
#: lib/libalpm/package.c:582
|
||||
#: lib/libalpm/package.c:584
|
||||
#, c-format
|
||||
msgid "adding '%s' in requiredby field for '%s' (provides: %s)"
|
||||
msgstr "inclusione di '%s' nel campo 'richiesto da' di '%s' (fornisce: %s)"
|
||||
@@ -1200,231 +1205,231 @@ msgstr "ricerca dei pacchetti da aggiornare in corso"
|
||||
msgid "%s-%s elected for upgrade (%s => %s)"
|
||||
msgstr "%s-%s selezionato per l'aggiornamento (%s => %s)"
|
||||
|
||||
#: lib/libalpm/sync.c:262
|
||||
#: lib/libalpm/sync.c:270
|
||||
#, c-format
|
||||
msgid "searching for target in repo '%s'"
|
||||
msgstr "ricerca in corso del pacchetto nel repository '%s'"
|
||||
|
||||
#: lib/libalpm/sync.c:270 lib/libalpm/sync.c:293
|
||||
#: lib/libalpm/sync.c:278 lib/libalpm/sync.c:301
|
||||
#, c-format
|
||||
msgid "target '%s' not found -- looking for provisions"
|
||||
msgstr "pacchetto '%s' non trovato, ricerca delle alternative in corso"
|
||||
|
||||
#: lib/libalpm/sync.c:275 lib/libalpm/sync.c:298
|
||||
#: lib/libalpm/sync.c:283 lib/libalpm/sync.c:306
|
||||
#, c-format
|
||||
msgid "found '%s' as a provision for '%s'"
|
||||
msgstr "trovato '%s' come alternativa a '%s'"
|
||||
|
||||
#: lib/libalpm/sync.c:282
|
||||
#: lib/libalpm/sync.c:290
|
||||
#, c-format
|
||||
msgid "repository '%s' not found"
|
||||
msgstr "impossibile trovare il repository '%s'"
|
||||
|
||||
#: lib/libalpm/sync.c:323
|
||||
#: lib/libalpm/sync.c:331
|
||||
#, c-format
|
||||
msgid "%s-%s is up to date -- skipping"
|
||||
msgstr "%s-%s è aggiornato, sarà ignorato"
|
||||
|
||||
#: lib/libalpm/sync.c:346
|
||||
#: lib/libalpm/sync.c:354
|
||||
#, c-format
|
||||
msgid "adding target '%s' to the transaction set"
|
||||
msgstr "aggiunta in corso del pacchetto '%s'"
|
||||
|
||||
#: lib/libalpm/sync.c:394
|
||||
#: lib/libalpm/sync.c:402
|
||||
msgid "resolving target's dependencies"
|
||||
msgstr "risoluzione in corso delle dipendenze dei pacchetti"
|
||||
|
||||
#: lib/libalpm/sync.c:414
|
||||
#: lib/libalpm/sync.c:422
|
||||
#, c-format
|
||||
msgid "adding package %s-%s to the transaction targets"
|
||||
msgstr "aggiunta in corso del pacchetto %s-%s"
|
||||
|
||||
#: lib/libalpm/sync.c:455
|
||||
#: lib/libalpm/sync.c:463
|
||||
msgid "looking for unresolvable dependencies"
|
||||
msgstr "ricerca in corso delle dipendenze irrisolvibili"
|
||||
|
||||
#: lib/libalpm/sync.c:486
|
||||
#: lib/libalpm/sync.c:494
|
||||
#, c-format
|
||||
msgid "package '%s' conflicts with '%s'"
|
||||
msgstr "il pacchetto '%s' va in conflitto con '%s'"
|
||||
|
||||
#: lib/libalpm/sync.c:508
|
||||
#: lib/libalpm/sync.c:516
|
||||
#, c-format
|
||||
msgid "'%s' not found in transaction set -- skipping"
|
||||
msgstr "impossibile trovare '%s', sarà ignorato"
|
||||
|
||||
#: lib/libalpm/sync.c:519
|
||||
#: lib/libalpm/sync.c:527
|
||||
#, c-format
|
||||
msgid "package '%s' provides its own conflict"
|
||||
msgstr "il pacchetto '%s' fornisce il suo stesso conflitto"
|
||||
|
||||
#: lib/libalpm/sync.c:542 lib/libalpm/sync.c:547
|
||||
#: lib/libalpm/sync.c:550 lib/libalpm/sync.c:555
|
||||
#, c-format
|
||||
msgid "'%s' is in the target list -- keeping it"
|
||||
msgstr "'%s' è nella lista dei pacchetti e sarà conservato"
|
||||
|
||||
#: lib/libalpm/sync.c:559 lib/libalpm/sync.c:596
|
||||
#: lib/libalpm/sync.c:567 lib/libalpm/sync.c:604
|
||||
#, c-format
|
||||
msgid "removing '%s' from target list"
|
||||
msgstr "rimozione in corso di '%s' dalla lista dei pacchetti"
|
||||
|
||||
#: lib/libalpm/sync.c:568
|
||||
#: lib/libalpm/sync.c:576
|
||||
#, c-format
|
||||
msgid "resolving package '%s' conflict"
|
||||
msgstr "risoluzione in corso del conflitto del pacchetto '%s'"
|
||||
|
||||
#: lib/libalpm/sync.c:591
|
||||
#: lib/libalpm/sync.c:599
|
||||
#, c-format
|
||||
msgid "electing '%s' for removal"
|
||||
msgstr "selezionato '%s' per la rimozione"
|
||||
|
||||
#: lib/libalpm/sync.c:602 lib/libalpm/sync.c:618
|
||||
#: lib/libalpm/sync.c:610 lib/libalpm/sync.c:626
|
||||
msgid "unresolvable package conflicts detected"
|
||||
msgstr "sono stati rilevati dei conflitti irrisolvibili"
|
||||
|
||||
#: lib/libalpm/sync.c:670
|
||||
#: lib/libalpm/sync.c:678
|
||||
msgid "checking dependencies of packages designated for removal"
|
||||
msgstr ""
|
||||
"controllo in corso delle dipendenze dei pacchetti designati per la rimozione"
|
||||
|
||||
#: lib/libalpm/sync.c:684
|
||||
#: lib/libalpm/sync.c:692
|
||||
msgid "something has gone horribly wrong"
|
||||
msgstr "qualcosa è andato orribilmente storto"
|
||||
|
||||
#: lib/libalpm/sync.c:704
|
||||
#: lib/libalpm/sync.c:712
|
||||
#, c-format
|
||||
msgid "found '%s' as a provision for '%s' -- conflict aborted"
|
||||
msgstr "trovato '%s' come alternativa a '%s', conflitto annullato"
|
||||
|
||||
#: lib/libalpm/sync.c:800
|
||||
#: lib/libalpm/sync.c:808
|
||||
#, c-format
|
||||
msgid "%s is already in the cache\n"
|
||||
msgstr "%s è già presente nella cache\n"
|
||||
|
||||
#: lib/libalpm/sync.c:811
|
||||
#: lib/libalpm/sync.c:819
|
||||
#, c-format
|
||||
msgid "no %s cache exists, creating...\n"
|
||||
msgstr "la cache di %s non esiste, creazione in corso...\n"
|
||||
|
||||
#: lib/libalpm/sync.c:812
|
||||
#: lib/libalpm/sync.c:820
|
||||
#, c-format
|
||||
msgid "warning: no %s cache exists, creating..."
|
||||
msgstr "attenzione: la cache di %s non esiste, creazione in corso..."
|
||||
|
||||
#: lib/libalpm/sync.c:817
|
||||
#: lib/libalpm/sync.c:825
|
||||
msgid "couldn't create package cache, using /tmp instead\n"
|
||||
msgstr ""
|
||||
"impossibile creare la cache del pacchetto, al suo posto sarà usata /tmp\n"
|
||||
|
||||
#: lib/libalpm/sync.c:818
|
||||
#: lib/libalpm/sync.c:826
|
||||
msgid "warning: couldn't create package cache, using /tmp instead"
|
||||
msgstr ""
|
||||
"attenzione: impossibile creare la cache del pacchetto, al suo posto sarà "
|
||||
"usata /tmp"
|
||||
|
||||
#: lib/libalpm/sync.c:825
|
||||
#: lib/libalpm/sync.c:833
|
||||
#, c-format
|
||||
msgid "failed to retrieve some files from %s\n"
|
||||
msgstr "impossibile recuperare alcuni file da %s\n"
|
||||
|
||||
#: lib/libalpm/sync.c:855 lib/libalpm/sync.c:867
|
||||
#: lib/libalpm/sync.c:863 lib/libalpm/sync.c:875
|
||||
#, c-format
|
||||
msgid "can't get md5 or sha1 checksum for package %s\n"
|
||||
msgstr "impossibile recuperare il checksum md5 o sha1 del pacchetto %s\n"
|
||||
|
||||
#: lib/libalpm/sync.c:886
|
||||
#: lib/libalpm/sync.c:894
|
||||
#, c-format
|
||||
msgid "archive %s was corrupted (bad MD5 or SHA1 checksum)\n"
|
||||
msgstr "archivio %s era corrotto (MD5 o SHA1 checksum errato)\n"
|
||||
|
||||
#: lib/libalpm/sync.c:888
|
||||
#: lib/libalpm/sync.c:896
|
||||
#, c-format
|
||||
msgid "archive %s is corrupted (bad MD5 or SHA1 checksum)\n"
|
||||
msgstr "archivio %s è corrotto (MD5 o SHA1 checksum errato)\n"
|
||||
|
||||
#: lib/libalpm/sync.c:909
|
||||
#: lib/libalpm/sync.c:917
|
||||
msgid "could not create removal transaction"
|
||||
msgstr "impossibile avviare l'operazione di rimozione"
|
||||
|
||||
#: lib/libalpm/sync.c:915
|
||||
#: lib/libalpm/sync.c:923
|
||||
msgid "could not initialize the removal transaction"
|
||||
msgstr "impossibile inizializzare l'operazione di rimozione"
|
||||
|
||||
#: lib/libalpm/sync.c:935
|
||||
#: lib/libalpm/sync.c:943
|
||||
msgid "removing conflicting and to-be-replaced packages"
|
||||
msgstr "rimozione in corso dei pacchetti in conflitto e da sostituire"
|
||||
|
||||
#: lib/libalpm/sync.c:937
|
||||
#: lib/libalpm/sync.c:945
|
||||
msgid "could not prepare removal transaction"
|
||||
msgstr "impossibile preparare l'operazione di rimozione"
|
||||
|
||||
#: lib/libalpm/sync.c:943
|
||||
#: lib/libalpm/sync.c:951
|
||||
msgid "could not commit removal transaction"
|
||||
msgstr "impossibile eseguire l'operazione di rimozione"
|
||||
|
||||
#: lib/libalpm/sync.c:950
|
||||
#: lib/libalpm/sync.c:958
|
||||
msgid "installing packages"
|
||||
msgstr "installazione dei pacchetti in corso"
|
||||
|
||||
#: lib/libalpm/sync.c:953
|
||||
#: lib/libalpm/sync.c:961
|
||||
msgid "could not create transaction"
|
||||
msgstr "impossibile avviare l'operazione"
|
||||
|
||||
#: lib/libalpm/sync.c:958
|
||||
#: lib/libalpm/sync.c:966
|
||||
msgid "could not initialize transaction"
|
||||
msgstr "impossibile inizializzare l'operazione"
|
||||
|
||||
#: lib/libalpm/sync.c:981
|
||||
#: lib/libalpm/sync.c:989
|
||||
msgid "could not prepare transaction"
|
||||
msgstr "impossibile preparare l'operazione"
|
||||
|
||||
#: lib/libalpm/sync.c:993
|
||||
#: lib/libalpm/sync.c:1001
|
||||
msgid "updating database for replaced packages' dependencies"
|
||||
msgstr ""
|
||||
"aggiornamento in corso del database per le dipendenze dei pacchetti "
|
||||
"sostituiti"
|
||||
|
||||
#: lib/libalpm/sync.c:1022
|
||||
#: lib/libalpm/sync.c:1030
|
||||
#, c-format
|
||||
msgid "could not update requiredby for database entry %s-%s"
|
||||
msgstr ""
|
||||
"impossibile aggiornare il campo 'richiesto da' per la voce del database %s-%s"
|
||||
|
||||
#: lib/libalpm/sync.c:1031
|
||||
#: lib/libalpm/sync.c:1039
|
||||
#, c-format
|
||||
msgid "could not update new database entry %s-%s"
|
||||
msgstr "impossibile aggiornare la nuova voce del database %s-%s"
|
||||
|
||||
#: lib/libalpm/sync.c:1071
|
||||
#: lib/libalpm/sync.c:1079
|
||||
#, c-format
|
||||
msgid "found package '%s-%s' in sync"
|
||||
msgstr "trovato il pacchetto '%s-%s' nel database"
|
||||
|
||||
#: lib/libalpm/sync.c:1077
|
||||
#: lib/libalpm/sync.c:1085
|
||||
#, c-format
|
||||
msgid "package '%s' not found in sync"
|
||||
msgstr "impossibile trovare il pacchetto '%s'"
|
||||
|
||||
#: lib/libalpm/trans.c:270
|
||||
#: lib/libalpm/trans.c:271
|
||||
#, c-format
|
||||
msgid "updating dependency packages 'requiredby' fields for %s-%s"
|
||||
msgstr "aggiornamento delle dipendenze nei campi 'richiesto da' di %s-%s"
|
||||
|
||||
#: lib/libalpm/trans.c:273
|
||||
#: lib/libalpm/trans.c:274
|
||||
msgid "package has no dependencies, no other packages to update"
|
||||
msgstr "il pacchetto non ha dipendenze, nessun altro pacchetto da aggiornare"
|
||||
|
||||
#: lib/libalpm/trans.c:310 lib/libalpm/trans.c:340
|
||||
#: lib/libalpm/trans.c:311 lib/libalpm/trans.c:341
|
||||
#, c-format
|
||||
msgid "updating 'requiredby' field for package '%s'"
|
||||
msgstr "aggiornamento in corso del campo 'richiesto da' del pacchetto '%s'"
|
||||
|
||||
#: lib/libalpm/trans.c:325 lib/libalpm/trans.c:355
|
||||
#: lib/libalpm/trans.c:326 lib/libalpm/trans.c:356
|
||||
#, c-format
|
||||
msgid "could not update 'requiredby' database entry %s-%s"
|
||||
msgstr "impossibile aggiornare la voce 'richiesto da' del database %s-%s"
|
||||
|
||||
#: lib/libalpm/trans.c:332
|
||||
#: lib/libalpm/trans.c:333
|
||||
#, c-format
|
||||
msgid "could not find dependency '%s'"
|
||||
msgstr "impossibile trovare la dipendenza '%s'"
|
||||
@@ -1503,7 +1508,12 @@ msgstr "chiamata a waitpid non riuscita (%s)"
|
||||
msgid "could not remove tmpdir %s"
|
||||
msgstr "impossibile rimuovere la directory temporanea %s"
|
||||
|
||||
#: lib/libalpm/util.c:607
|
||||
#: lib/libalpm/util.c:568
|
||||
#, c-format
|
||||
msgid "cannot read disk space information from %s: %s"
|
||||
msgstr "impossibile leggere le informazioni dello spazio del disco da %s: %s"
|
||||
|
||||
#: lib/libalpm/util.c:609
|
||||
#, c-format
|
||||
msgid "check_freespace: total pkg size: %lld, disk space: %lld"
|
||||
msgstr ""
|
||||
|
||||
@@ -8,7 +8,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: PACKAGE VERSION\n"
|
||||
"Report-Msgid-Bugs-To: pacman-dev@archlinux.org\n"
|
||||
"POT-Creation-Date: 2007-03-23 20:46-0500\n"
|
||||
"POT-Creation-Date: 2007-06-17 20:11-0400\n"
|
||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||
@@ -40,7 +40,7 @@ msgstr ""
|
||||
msgid "looking for unsatisfied dependencies"
|
||||
msgstr ""
|
||||
|
||||
#: lib/libalpm/add.c:203 lib/libalpm/sync.c:475
|
||||
#: lib/libalpm/add.c:203 lib/libalpm/sync.c:483
|
||||
msgid "looking for conflicts"
|
||||
msgstr ""
|
||||
|
||||
@@ -221,59 +221,59 @@ msgstr ""
|
||||
msgid "error: could not extract %s (%s)"
|
||||
msgstr ""
|
||||
|
||||
#: lib/libalpm/add.c:717
|
||||
#: lib/libalpm/add.c:719
|
||||
#, c-format
|
||||
msgid "appending backup entry for %s"
|
||||
msgstr ""
|
||||
|
||||
#: lib/libalpm/add.c:749 lib/libalpm/add.c:751
|
||||
#: lib/libalpm/add.c:751 lib/libalpm/add.c:753
|
||||
#, c-format
|
||||
msgid "errors occurred while %s %s"
|
||||
msgstr ""
|
||||
|
||||
#: lib/libalpm/add.c:750 lib/libalpm/add.c:752
|
||||
#: lib/libalpm/add.c:752 lib/libalpm/add.c:754
|
||||
msgid "upgrading"
|
||||
msgstr ""
|
||||
|
||||
#: lib/libalpm/add.c:750 lib/libalpm/add.c:752
|
||||
#: lib/libalpm/add.c:752 lib/libalpm/add.c:754
|
||||
msgid "installing"
|
||||
msgstr ""
|
||||
|
||||
#: lib/libalpm/add.c:769
|
||||
#: lib/libalpm/add.c:771
|
||||
#, c-format
|
||||
msgid "provision '%s' has been removed from package %s (%s => %s)"
|
||||
msgstr ""
|
||||
|
||||
#: lib/libalpm/add.c:781
|
||||
#: lib/libalpm/add.c:783
|
||||
#, c-format
|
||||
msgid "updating '%s' due to provision change (%s)"
|
||||
msgstr ""
|
||||
|
||||
#: lib/libalpm/add.c:785 lib/libalpm/add.c:786
|
||||
#: lib/libalpm/add.c:787 lib/libalpm/add.c:788
|
||||
#, c-format
|
||||
msgid "could not update provision '%s' from '%s'"
|
||||
msgstr ""
|
||||
|
||||
#: lib/libalpm/add.c:799 lib/libalpm/remove.c:336
|
||||
#: lib/libalpm/add.c:801 lib/libalpm/remove.c:336
|
||||
msgid "updating database"
|
||||
msgstr ""
|
||||
|
||||
#: lib/libalpm/add.c:800
|
||||
#: lib/libalpm/add.c:802
|
||||
#, c-format
|
||||
msgid "adding database entry '%s'"
|
||||
msgstr ""
|
||||
|
||||
#: lib/libalpm/add.c:803 lib/libalpm/add.c:805
|
||||
#: lib/libalpm/add.c:805 lib/libalpm/add.c:807
|
||||
#, c-format
|
||||
msgid "could not update database entry %s-%s"
|
||||
msgstr ""
|
||||
|
||||
#: lib/libalpm/add.c:811
|
||||
#: lib/libalpm/add.c:813
|
||||
#, c-format
|
||||
msgid "could not add entry '%s' in cache"
|
||||
msgstr ""
|
||||
|
||||
#: lib/libalpm/add.c:841 lib/libalpm/remove.c:363 lib/libalpm/sync.c:1047
|
||||
#: lib/libalpm/add.c:843 lib/libalpm/remove.c:363 lib/libalpm/sync.c:1055
|
||||
#, c-format
|
||||
msgid "running \"ldconfig -r %s\""
|
||||
msgstr ""
|
||||
@@ -369,107 +369,112 @@ msgstr ""
|
||||
msgid "warning: could not remove lock file %s"
|
||||
msgstr ""
|
||||
|
||||
#: lib/libalpm/alpm.c:919
|
||||
#: lib/libalpm/alpm.c:920
|
||||
#, c-format
|
||||
msgid "config: new section '%s'"
|
||||
msgstr ""
|
||||
|
||||
#: lib/libalpm/alpm.c:948
|
||||
#: lib/libalpm/alpm.c:950
|
||||
msgid "config: nopassiveftp"
|
||||
msgstr ""
|
||||
|
||||
#: lib/libalpm/alpm.c:951
|
||||
#: lib/libalpm/alpm.c:953
|
||||
msgid "config: usesyslog"
|
||||
msgstr ""
|
||||
|
||||
#: lib/libalpm/alpm.c:954
|
||||
#: lib/libalpm/alpm.c:956
|
||||
msgid "config: chomp"
|
||||
msgstr ""
|
||||
|
||||
#: lib/libalpm/alpm.c:957
|
||||
#: lib/libalpm/alpm.c:959
|
||||
msgid "config: usecolor"
|
||||
msgstr ""
|
||||
|
||||
#: lib/libalpm/alpm.c:966
|
||||
#: lib/libalpm/alpm.c:968
|
||||
#, c-format
|
||||
msgid "config: including %s"
|
||||
msgstr ""
|
||||
|
||||
#: lib/libalpm/alpm.c:976 lib/libalpm/alpm.c:981
|
||||
#: lib/libalpm/alpm.c:978 lib/libalpm/alpm.c:983
|
||||
#, c-format
|
||||
msgid "config: noupgrade: %s"
|
||||
msgstr ""
|
||||
|
||||
#: lib/libalpm/alpm.c:989 lib/libalpm/alpm.c:994
|
||||
#: lib/libalpm/alpm.c:991 lib/libalpm/alpm.c:996
|
||||
#, c-format
|
||||
msgid "config: noextract: %s"
|
||||
msgstr ""
|
||||
|
||||
#: lib/libalpm/alpm.c:1002 lib/libalpm/alpm.c:1007
|
||||
#: lib/libalpm/alpm.c:1004 lib/libalpm/alpm.c:1009
|
||||
#, c-format
|
||||
msgid "config: ignorepkg: %s"
|
||||
msgstr ""
|
||||
|
||||
#: lib/libalpm/alpm.c:1015 lib/libalpm/alpm.c:1020
|
||||
#: lib/libalpm/alpm.c:1017 lib/libalpm/alpm.c:1022
|
||||
#, c-format
|
||||
msgid "config: holdpkg: %s"
|
||||
msgstr ""
|
||||
|
||||
#: lib/libalpm/alpm.c:1027
|
||||
#: lib/libalpm/alpm.c:1029
|
||||
#, c-format
|
||||
msgid "config: dbpath: %s"
|
||||
msgstr ""
|
||||
|
||||
#: lib/libalpm/alpm.c:1034
|
||||
#: lib/libalpm/alpm.c:1036
|
||||
#, c-format
|
||||
msgid "config: cachedir: %s"
|
||||
msgstr ""
|
||||
|
||||
#: lib/libalpm/alpm.c:1037
|
||||
#: lib/libalpm/alpm.c:1043
|
||||
#, c-format
|
||||
msgid "config: rootdir: %s"
|
||||
msgstr ""
|
||||
|
||||
#: lib/libalpm/alpm.c:1046
|
||||
#, c-format
|
||||
msgid "config: logfile: %s"
|
||||
msgstr ""
|
||||
|
||||
#: lib/libalpm/alpm.c:1040
|
||||
#: lib/libalpm/alpm.c:1049
|
||||
#, c-format
|
||||
msgid "config: xfercommand: %s"
|
||||
msgstr ""
|
||||
|
||||
#: lib/libalpm/alpm.c:1045
|
||||
#: lib/libalpm/alpm.c:1054
|
||||
#, c-format
|
||||
msgid "config: upgradedelay: %d"
|
||||
msgstr ""
|
||||
|
||||
#: lib/libalpm/alpm.c:1083 lib/libalpm/sync.c:107
|
||||
#: lib/libalpm/alpm.c:1092 lib/libalpm/sync.c:107
|
||||
msgid "checking for package replacements"
|
||||
msgstr ""
|
||||
|
||||
#: lib/libalpm/alpm.c:1094 lib/libalpm/sync.c:123
|
||||
#: lib/libalpm/alpm.c:1103 lib/libalpm/sync.c:123
|
||||
#, c-format
|
||||
msgid "checking replacement '%s' for package '%s'"
|
||||
msgstr ""
|
||||
|
||||
#: lib/libalpm/alpm.c:1097 lib/libalpm/sync.c:125
|
||||
#: lib/libalpm/alpm.c:1106 lib/libalpm/sync.c:125
|
||||
#, c-format
|
||||
msgid "%s-%s: ignoring package upgrade (to be replaced by %s-%s)"
|
||||
msgstr ""
|
||||
|
||||
#: lib/libalpm/alpm.c:1127 lib/libalpm/sync.c:160
|
||||
#: lib/libalpm/alpm.c:1136 lib/libalpm/sync.c:160
|
||||
#, c-format
|
||||
msgid "%s-%s elected for upgrade (to be replaced by %s-%s)"
|
||||
msgstr ""
|
||||
|
||||
#: lib/libalpm/alpm.c:1149 lib/libalpm/sync.c:194
|
||||
#: lib/libalpm/alpm.c:1158 lib/libalpm/sync.c:194
|
||||
#, c-format
|
||||
msgid "'%s' not found in sync db -- skipping"
|
||||
msgstr ""
|
||||
|
||||
#: lib/libalpm/alpm.c:1163 lib/libalpm/sync.c:208 lib/libalpm/sync.c:501
|
||||
#: lib/libalpm/alpm.c:1172 lib/libalpm/sync.c:208 lib/libalpm/sync.c:509
|
||||
#, c-format
|
||||
msgid "'%s' is already elected for removal -- skipping"
|
||||
msgstr ""
|
||||
|
||||
#: lib/libalpm/alpm.c:1169
|
||||
#: lib/libalpm/alpm.c:1178
|
||||
#, c-format
|
||||
msgid "%s elected for upgrade (%s => %s)"
|
||||
msgstr ""
|
||||
@@ -517,7 +522,7 @@ msgstr ""
|
||||
#: lib/libalpm/be_files.c:255 lib/libalpm/be_files.c:401
|
||||
#: lib/libalpm/be_files.c:424 lib/libalpm/be_files.c:515
|
||||
#: lib/libalpm/be_files.c:605 lib/libalpm/be_files.c:632
|
||||
#: lib/libalpm/package.c:206
|
||||
#: lib/libalpm/package.c:208
|
||||
#, c-format
|
||||
msgid "could not open file %s: %s"
|
||||
msgstr ""
|
||||
@@ -625,8 +630,8 @@ msgstr ""
|
||||
#: lib/libalpm/conflict.c:349 lib/libalpm/deps.c:60 lib/libalpm/deps.c:438
|
||||
#: lib/libalpm/deps.c:634 lib/libalpm/deps.c:674 lib/libalpm/group.c:45
|
||||
#: lib/libalpm/handle.c:51 lib/libalpm/package.c:82 lib/libalpm/sync.c:67
|
||||
#: lib/libalpm/sync.c:606 lib/libalpm/sync.c:622 lib/libalpm/sync.c:719
|
||||
#: lib/libalpm/trans.c:55 lib/libalpm/util.c:612 lib/libalpm/util.c:619
|
||||
#: lib/libalpm/sync.c:614 lib/libalpm/sync.c:630 lib/libalpm/sync.c:727
|
||||
#: lib/libalpm/trans.c:55 lib/libalpm/util.c:614 lib/libalpm/util.c:621
|
||||
#, c-format
|
||||
msgid "malloc failure: could not allocate %d bytes"
|
||||
msgstr ""
|
||||
@@ -852,7 +857,7 @@ msgstr ""
|
||||
msgid "operation not compatible with the transaction type"
|
||||
msgstr ""
|
||||
|
||||
#: lib/libalpm/error.c:97 lib/libalpm/sync.c:986
|
||||
#: lib/libalpm/error.c:97 lib/libalpm/sync.c:994
|
||||
msgid "could not commit transaction"
|
||||
msgstr ""
|
||||
|
||||
@@ -994,70 +999,70 @@ msgstr ""
|
||||
msgid "md5(%s) = %s"
|
||||
msgstr ""
|
||||
|
||||
#: lib/libalpm/package.c:150
|
||||
#, c-format
|
||||
msgid "%s: forcing upgrade to version %s"
|
||||
msgstr ""
|
||||
|
||||
#: lib/libalpm/package.c:155
|
||||
#, c-format
|
||||
msgid "%s: local (%s) is newer than %s (%s)"
|
||||
msgstr ""
|
||||
|
||||
#: lib/libalpm/package.c:163
|
||||
#: lib/libalpm/package.c:147
|
||||
#, c-format
|
||||
msgid "%s-%s: ignoring package upgrade (%s)"
|
||||
msgstr ""
|
||||
|
||||
#: lib/libalpm/package.c:169
|
||||
#: lib/libalpm/package.c:158
|
||||
#, c-format
|
||||
msgid "%s: forcing upgrade to version %s"
|
||||
msgstr ""
|
||||
|
||||
#: lib/libalpm/package.c:163
|
||||
#, c-format
|
||||
msgid "%s: local (%s) is newer than %s (%s)"
|
||||
msgstr ""
|
||||
|
||||
#: lib/libalpm/package.c:171
|
||||
#, c-format
|
||||
msgid "%s-%s: delaying upgrade of package (%s)"
|
||||
msgstr ""
|
||||
|
||||
#: lib/libalpm/package.c:220 lib/libalpm/package.c:279
|
||||
#: lib/libalpm/package.c:222 lib/libalpm/package.c:281
|
||||
#, c-format
|
||||
msgid "%s: syntax error in description file line %d"
|
||||
msgstr ""
|
||||
|
||||
#: lib/libalpm/package.c:353
|
||||
#: lib/libalpm/package.c:355
|
||||
msgid "could not parse the package description file"
|
||||
msgstr ""
|
||||
|
||||
#: lib/libalpm/package.c:357
|
||||
#: lib/libalpm/package.c:359
|
||||
#, c-format
|
||||
msgid "missing package name in %s"
|
||||
msgstr ""
|
||||
|
||||
#: lib/libalpm/package.c:361
|
||||
#: lib/libalpm/package.c:363
|
||||
#, c-format
|
||||
msgid "missing package version in %s"
|
||||
msgstr ""
|
||||
|
||||
#: lib/libalpm/package.c:396
|
||||
#: lib/libalpm/package.c:398
|
||||
#, c-format
|
||||
msgid "could not remove tempfile %s"
|
||||
msgstr ""
|
||||
|
||||
#: lib/libalpm/package.c:409 lib/libalpm/package.c:416
|
||||
#: lib/libalpm/package.c:411 lib/libalpm/package.c:418
|
||||
#, c-format
|
||||
msgid "error while reading package: %s"
|
||||
msgstr ""
|
||||
|
||||
#: lib/libalpm/package.c:422
|
||||
#: lib/libalpm/package.c:424
|
||||
msgid "missing package metadata"
|
||||
msgstr ""
|
||||
|
||||
#: lib/libalpm/package.c:429
|
||||
#: lib/libalpm/package.c:431
|
||||
#, c-format
|
||||
msgid "missing package filelist in %s, generating one"
|
||||
msgstr ""
|
||||
|
||||
#: lib/libalpm/package.c:568
|
||||
#: lib/libalpm/package.c:570
|
||||
#, c-format
|
||||
msgid "adding '%s' in requiredby field for '%s'"
|
||||
msgstr ""
|
||||
|
||||
#: lib/libalpm/package.c:582
|
||||
#: lib/libalpm/package.c:584
|
||||
#, c-format
|
||||
msgid "adding '%s' in requiredby field for '%s' (provides: %s)"
|
||||
msgstr ""
|
||||
@@ -1180,224 +1185,224 @@ msgstr ""
|
||||
msgid "%s-%s elected for upgrade (%s => %s)"
|
||||
msgstr ""
|
||||
|
||||
#: lib/libalpm/sync.c:262
|
||||
#: lib/libalpm/sync.c:270
|
||||
#, c-format
|
||||
msgid "searching for target in repo '%s'"
|
||||
msgstr ""
|
||||
|
||||
#: lib/libalpm/sync.c:270 lib/libalpm/sync.c:293
|
||||
#: lib/libalpm/sync.c:278 lib/libalpm/sync.c:301
|
||||
#, c-format
|
||||
msgid "target '%s' not found -- looking for provisions"
|
||||
msgstr ""
|
||||
|
||||
#: lib/libalpm/sync.c:275 lib/libalpm/sync.c:298
|
||||
#: lib/libalpm/sync.c:283 lib/libalpm/sync.c:306
|
||||
#, c-format
|
||||
msgid "found '%s' as a provision for '%s'"
|
||||
msgstr ""
|
||||
|
||||
#: lib/libalpm/sync.c:282
|
||||
#: lib/libalpm/sync.c:290
|
||||
#, c-format
|
||||
msgid "repository '%s' not found"
|
||||
msgstr ""
|
||||
|
||||
#: lib/libalpm/sync.c:323
|
||||
#: lib/libalpm/sync.c:331
|
||||
#, c-format
|
||||
msgid "%s-%s is up to date -- skipping"
|
||||
msgstr ""
|
||||
|
||||
#: lib/libalpm/sync.c:346
|
||||
#: lib/libalpm/sync.c:354
|
||||
#, c-format
|
||||
msgid "adding target '%s' to the transaction set"
|
||||
msgstr ""
|
||||
|
||||
#: lib/libalpm/sync.c:394
|
||||
#: lib/libalpm/sync.c:402
|
||||
msgid "resolving target's dependencies"
|
||||
msgstr ""
|
||||
|
||||
#: lib/libalpm/sync.c:414
|
||||
#: lib/libalpm/sync.c:422
|
||||
#, c-format
|
||||
msgid "adding package %s-%s to the transaction targets"
|
||||
msgstr ""
|
||||
|
||||
#: lib/libalpm/sync.c:455
|
||||
#: lib/libalpm/sync.c:463
|
||||
msgid "looking for unresolvable dependencies"
|
||||
msgstr ""
|
||||
|
||||
#: lib/libalpm/sync.c:486
|
||||
#: lib/libalpm/sync.c:494
|
||||
#, c-format
|
||||
msgid "package '%s' conflicts with '%s'"
|
||||
msgstr ""
|
||||
|
||||
#: lib/libalpm/sync.c:508
|
||||
#: lib/libalpm/sync.c:516
|
||||
#, c-format
|
||||
msgid "'%s' not found in transaction set -- skipping"
|
||||
msgstr ""
|
||||
|
||||
#: lib/libalpm/sync.c:519
|
||||
#: lib/libalpm/sync.c:527
|
||||
#, c-format
|
||||
msgid "package '%s' provides its own conflict"
|
||||
msgstr ""
|
||||
|
||||
#: lib/libalpm/sync.c:542 lib/libalpm/sync.c:547
|
||||
#: lib/libalpm/sync.c:550 lib/libalpm/sync.c:555
|
||||
#, c-format
|
||||
msgid "'%s' is in the target list -- keeping it"
|
||||
msgstr ""
|
||||
|
||||
#: lib/libalpm/sync.c:559 lib/libalpm/sync.c:596
|
||||
#: lib/libalpm/sync.c:567 lib/libalpm/sync.c:604
|
||||
#, c-format
|
||||
msgid "removing '%s' from target list"
|
||||
msgstr ""
|
||||
|
||||
#: lib/libalpm/sync.c:568
|
||||
#: lib/libalpm/sync.c:576
|
||||
#, c-format
|
||||
msgid "resolving package '%s' conflict"
|
||||
msgstr ""
|
||||
|
||||
#: lib/libalpm/sync.c:591
|
||||
#: lib/libalpm/sync.c:599
|
||||
#, c-format
|
||||
msgid "electing '%s' for removal"
|
||||
msgstr ""
|
||||
|
||||
#: lib/libalpm/sync.c:602 lib/libalpm/sync.c:618
|
||||
#: lib/libalpm/sync.c:610 lib/libalpm/sync.c:626
|
||||
msgid "unresolvable package conflicts detected"
|
||||
msgstr ""
|
||||
|
||||
#: lib/libalpm/sync.c:670
|
||||
#: lib/libalpm/sync.c:678
|
||||
msgid "checking dependencies of packages designated for removal"
|
||||
msgstr ""
|
||||
|
||||
#: lib/libalpm/sync.c:684
|
||||
#: lib/libalpm/sync.c:692
|
||||
msgid "something has gone horribly wrong"
|
||||
msgstr ""
|
||||
|
||||
#: lib/libalpm/sync.c:704
|
||||
#: lib/libalpm/sync.c:712
|
||||
#, c-format
|
||||
msgid "found '%s' as a provision for '%s' -- conflict aborted"
|
||||
msgstr ""
|
||||
|
||||
#: lib/libalpm/sync.c:800
|
||||
#: lib/libalpm/sync.c:808
|
||||
#, c-format
|
||||
msgid "%s is already in the cache\n"
|
||||
msgstr ""
|
||||
|
||||
#: lib/libalpm/sync.c:811
|
||||
#: lib/libalpm/sync.c:819
|
||||
#, c-format
|
||||
msgid "no %s cache exists, creating...\n"
|
||||
msgstr ""
|
||||
|
||||
#: lib/libalpm/sync.c:812
|
||||
#: lib/libalpm/sync.c:820
|
||||
#, c-format
|
||||
msgid "warning: no %s cache exists, creating..."
|
||||
msgstr ""
|
||||
|
||||
#: lib/libalpm/sync.c:817
|
||||
#: lib/libalpm/sync.c:825
|
||||
msgid "couldn't create package cache, using /tmp instead\n"
|
||||
msgstr ""
|
||||
|
||||
#: lib/libalpm/sync.c:818
|
||||
#: lib/libalpm/sync.c:826
|
||||
msgid "warning: couldn't create package cache, using /tmp instead"
|
||||
msgstr ""
|
||||
|
||||
#: lib/libalpm/sync.c:825
|
||||
#: lib/libalpm/sync.c:833
|
||||
#, c-format
|
||||
msgid "failed to retrieve some files from %s\n"
|
||||
msgstr ""
|
||||
|
||||
#: lib/libalpm/sync.c:855 lib/libalpm/sync.c:867
|
||||
#: lib/libalpm/sync.c:863 lib/libalpm/sync.c:875
|
||||
#, c-format
|
||||
msgid "can't get md5 or sha1 checksum for package %s\n"
|
||||
msgstr ""
|
||||
|
||||
#: lib/libalpm/sync.c:886
|
||||
#: lib/libalpm/sync.c:894
|
||||
#, c-format
|
||||
msgid "archive %s was corrupted (bad MD5 or SHA1 checksum)\n"
|
||||
msgstr ""
|
||||
|
||||
#: lib/libalpm/sync.c:888
|
||||
#: lib/libalpm/sync.c:896
|
||||
#, c-format
|
||||
msgid "archive %s is corrupted (bad MD5 or SHA1 checksum)\n"
|
||||
msgstr ""
|
||||
|
||||
#: lib/libalpm/sync.c:909
|
||||
#: lib/libalpm/sync.c:917
|
||||
msgid "could not create removal transaction"
|
||||
msgstr ""
|
||||
|
||||
#: lib/libalpm/sync.c:915
|
||||
#: lib/libalpm/sync.c:923
|
||||
msgid "could not initialize the removal transaction"
|
||||
msgstr ""
|
||||
|
||||
#: lib/libalpm/sync.c:935
|
||||
#: lib/libalpm/sync.c:943
|
||||
msgid "removing conflicting and to-be-replaced packages"
|
||||
msgstr ""
|
||||
|
||||
#: lib/libalpm/sync.c:937
|
||||
#: lib/libalpm/sync.c:945
|
||||
msgid "could not prepare removal transaction"
|
||||
msgstr ""
|
||||
|
||||
#: lib/libalpm/sync.c:943
|
||||
#: lib/libalpm/sync.c:951
|
||||
msgid "could not commit removal transaction"
|
||||
msgstr ""
|
||||
|
||||
#: lib/libalpm/sync.c:950
|
||||
#: lib/libalpm/sync.c:958
|
||||
msgid "installing packages"
|
||||
msgstr ""
|
||||
|
||||
#: lib/libalpm/sync.c:953
|
||||
#: lib/libalpm/sync.c:961
|
||||
msgid "could not create transaction"
|
||||
msgstr ""
|
||||
|
||||
#: lib/libalpm/sync.c:958
|
||||
#: lib/libalpm/sync.c:966
|
||||
msgid "could not initialize transaction"
|
||||
msgstr ""
|
||||
|
||||
#: lib/libalpm/sync.c:981
|
||||
#: lib/libalpm/sync.c:989
|
||||
msgid "could not prepare transaction"
|
||||
msgstr ""
|
||||
|
||||
#: lib/libalpm/sync.c:993
|
||||
#: lib/libalpm/sync.c:1001
|
||||
msgid "updating database for replaced packages' dependencies"
|
||||
msgstr ""
|
||||
|
||||
#: lib/libalpm/sync.c:1022
|
||||
#: lib/libalpm/sync.c:1030
|
||||
#, c-format
|
||||
msgid "could not update requiredby for database entry %s-%s"
|
||||
msgstr ""
|
||||
|
||||
#: lib/libalpm/sync.c:1031
|
||||
#: lib/libalpm/sync.c:1039
|
||||
#, c-format
|
||||
msgid "could not update new database entry %s-%s"
|
||||
msgstr ""
|
||||
|
||||
#: lib/libalpm/sync.c:1071
|
||||
#: lib/libalpm/sync.c:1079
|
||||
#, c-format
|
||||
msgid "found package '%s-%s' in sync"
|
||||
msgstr ""
|
||||
|
||||
#: lib/libalpm/sync.c:1077
|
||||
#: lib/libalpm/sync.c:1085
|
||||
#, c-format
|
||||
msgid "package '%s' not found in sync"
|
||||
msgstr ""
|
||||
|
||||
#: lib/libalpm/trans.c:270
|
||||
#: lib/libalpm/trans.c:271
|
||||
#, c-format
|
||||
msgid "updating dependency packages 'requiredby' fields for %s-%s"
|
||||
msgstr ""
|
||||
|
||||
#: lib/libalpm/trans.c:273
|
||||
#: lib/libalpm/trans.c:274
|
||||
msgid "package has no dependencies, no other packages to update"
|
||||
msgstr ""
|
||||
|
||||
#: lib/libalpm/trans.c:310 lib/libalpm/trans.c:340
|
||||
#: lib/libalpm/trans.c:311 lib/libalpm/trans.c:341
|
||||
#, c-format
|
||||
msgid "updating 'requiredby' field for package '%s'"
|
||||
msgstr ""
|
||||
|
||||
#: lib/libalpm/trans.c:325 lib/libalpm/trans.c:355
|
||||
#: lib/libalpm/trans.c:326 lib/libalpm/trans.c:356
|
||||
#, c-format
|
||||
msgid "could not update 'requiredby' database entry %s-%s"
|
||||
msgstr ""
|
||||
|
||||
#: lib/libalpm/trans.c:332
|
||||
#: lib/libalpm/trans.c:333
|
||||
#, c-format
|
||||
msgid "could not find dependency '%s'"
|
||||
msgstr ""
|
||||
@@ -1476,7 +1481,12 @@ msgstr ""
|
||||
msgid "could not remove tmpdir %s"
|
||||
msgstr ""
|
||||
|
||||
#: lib/libalpm/util.c:607
|
||||
#: lib/libalpm/util.c:568
|
||||
#, c-format
|
||||
msgid "cannot read disk space information from %s: %s"
|
||||
msgstr ""
|
||||
|
||||
#: lib/libalpm/util.c:609
|
||||
#, c-format
|
||||
msgid "check_freespace: total pkg size: %lld, disk space: %lld"
|
||||
msgstr ""
|
||||
|
||||
1524
lib/libalpm/po/pl_PL.po
Normal file
1524
lib/libalpm/po/pl_PL.po
Normal file
File diff suppressed because it is too large
Load Diff
@@ -12,7 +12,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: pt_BR\n"
|
||||
"Report-Msgid-Bugs-To: pacman-dev@archlinux.org\n"
|
||||
"POT-Creation-Date: 2007-03-23 20:46-0500\n"
|
||||
"POT-Creation-Date: 2007-06-17 20:11-0400\n"
|
||||
"PO-Revision-Date: 2007-03-07 01:18-0300\n"
|
||||
"Last-Translator: Douglas Soares de Andrade <dsandrade@gmail.com>\n"
|
||||
"Language-Team: Português do Brasil <pt@li.org>\n"
|
||||
@@ -46,7 +46,7 @@ msgstr "lendo os metadados de '%s'"
|
||||
msgid "looking for unsatisfied dependencies"
|
||||
msgstr "procurando por dependências não satisfeitas"
|
||||
|
||||
#: lib/libalpm/add.c:203 lib/libalpm/sync.c:475
|
||||
#: lib/libalpm/add.c:203 lib/libalpm/sync.c:483
|
||||
msgid "looking for conflicts"
|
||||
msgstr "procurando por conflitos"
|
||||
|
||||
@@ -229,59 +229,59 @@ msgstr "extraindo %s"
|
||||
msgid "error: could not extract %s (%s)"
|
||||
msgstr "erro: não foi possível descompactar %s (%s)"
|
||||
|
||||
#: lib/libalpm/add.c:717
|
||||
#: lib/libalpm/add.c:719
|
||||
#, c-format
|
||||
msgid "appending backup entry for %s"
|
||||
msgstr "adicionando entrada de backup para %s"
|
||||
|
||||
#: lib/libalpm/add.c:749 lib/libalpm/add.c:751
|
||||
#: lib/libalpm/add.c:751 lib/libalpm/add.c:753
|
||||
#, c-format
|
||||
msgid "errors occurred while %s %s"
|
||||
msgstr "erros ocorreram durante %s %s"
|
||||
|
||||
#: lib/libalpm/add.c:750 lib/libalpm/add.c:752
|
||||
#: lib/libalpm/add.c:752 lib/libalpm/add.c:754
|
||||
msgid "upgrading"
|
||||
msgstr "atualizando"
|
||||
|
||||
#: lib/libalpm/add.c:750 lib/libalpm/add.c:752
|
||||
#: lib/libalpm/add.c:752 lib/libalpm/add.c:754
|
||||
msgid "installing"
|
||||
msgstr "instalando"
|
||||
|
||||
#: lib/libalpm/add.c:769
|
||||
#: lib/libalpm/add.c:771
|
||||
#, c-format
|
||||
msgid "provision '%s' has been removed from package %s (%s => %s)"
|
||||
msgstr "a provisão '%s' foi removida do pacote %s (%s => %s)"
|
||||
|
||||
#: lib/libalpm/add.c:781
|
||||
#: lib/libalpm/add.c:783
|
||||
#, c-format
|
||||
msgid "updating '%s' due to provision change (%s)"
|
||||
msgstr "atualizando '%s' devido a uma mudança de provisão (%s)"
|
||||
|
||||
#: lib/libalpm/add.c:785 lib/libalpm/add.c:786
|
||||
#: lib/libalpm/add.c:787 lib/libalpm/add.c:788
|
||||
#, c-format
|
||||
msgid "could not update provision '%s' from '%s'"
|
||||
msgstr "não foi possível atualizar a provisão '%s' para '%s'"
|
||||
|
||||
#: lib/libalpm/add.c:799 lib/libalpm/remove.c:336
|
||||
#: lib/libalpm/add.c:801 lib/libalpm/remove.c:336
|
||||
msgid "updating database"
|
||||
msgstr "atualizando base de dados"
|
||||
|
||||
#: lib/libalpm/add.c:800
|
||||
#: lib/libalpm/add.c:802
|
||||
#, c-format
|
||||
msgid "adding database entry '%s'"
|
||||
msgstr "adicionando a entrada de base de dados '%s'"
|
||||
|
||||
#: lib/libalpm/add.c:803 lib/libalpm/add.c:805
|
||||
#: lib/libalpm/add.c:805 lib/libalpm/add.c:807
|
||||
#, c-format
|
||||
msgid "could not update database entry %s-%s"
|
||||
msgstr "não foi possível atualizar a entrada na base de dados %s-%s"
|
||||
|
||||
#: lib/libalpm/add.c:811
|
||||
#: lib/libalpm/add.c:813
|
||||
#, c-format
|
||||
msgid "could not add entry '%s' in cache"
|
||||
msgstr "não foi possível adicionar a entrada '%s' ao cache"
|
||||
|
||||
#: lib/libalpm/add.c:841 lib/libalpm/remove.c:363 lib/libalpm/sync.c:1047
|
||||
#: lib/libalpm/add.c:843 lib/libalpm/remove.c:363 lib/libalpm/sync.c:1055
|
||||
#, c-format
|
||||
msgid "running \"ldconfig -r %s\""
|
||||
msgstr "executando \"ldconfig -r %s\""
|
||||
@@ -380,107 +380,112 @@ msgstr "não foi possível remover o arquivo de lock %s"
|
||||
msgid "warning: could not remove lock file %s"
|
||||
msgstr "aviso: não foi possível remover o arquivo de lock %s"
|
||||
|
||||
#: lib/libalpm/alpm.c:919
|
||||
#: lib/libalpm/alpm.c:920
|
||||
#, c-format
|
||||
msgid "config: new section '%s'"
|
||||
msgstr "configuração: nova seção '%s'"
|
||||
|
||||
#: lib/libalpm/alpm.c:948
|
||||
#: lib/libalpm/alpm.c:950
|
||||
msgid "config: nopassiveftp"
|
||||
msgstr "configuração: nopassiveftp"
|
||||
|
||||
#: lib/libalpm/alpm.c:951
|
||||
#: lib/libalpm/alpm.c:953
|
||||
msgid "config: usesyslog"
|
||||
msgstr "configuração: usesyslog"
|
||||
|
||||
#: lib/libalpm/alpm.c:954
|
||||
#: lib/libalpm/alpm.c:956
|
||||
msgid "config: chomp"
|
||||
msgstr "configuração: chomp"
|
||||
|
||||
#: lib/libalpm/alpm.c:957
|
||||
#: lib/libalpm/alpm.c:959
|
||||
msgid "config: usecolor"
|
||||
msgstr "configuração: usecolor"
|
||||
|
||||
#: lib/libalpm/alpm.c:966
|
||||
#: lib/libalpm/alpm.c:968
|
||||
#, c-format
|
||||
msgid "config: including %s"
|
||||
msgstr "configuração: including %s"
|
||||
|
||||
#: lib/libalpm/alpm.c:976 lib/libalpm/alpm.c:981
|
||||
#: lib/libalpm/alpm.c:978 lib/libalpm/alpm.c:983
|
||||
#, c-format
|
||||
msgid "config: noupgrade: %s"
|
||||
msgstr "configuração: noupgrade: %s"
|
||||
|
||||
#: lib/libalpm/alpm.c:989 lib/libalpm/alpm.c:994
|
||||
#: lib/libalpm/alpm.c:991 lib/libalpm/alpm.c:996
|
||||
#, c-format
|
||||
msgid "config: noextract: %s"
|
||||
msgstr "configuração: noextract: %s"
|
||||
|
||||
#: lib/libalpm/alpm.c:1002 lib/libalpm/alpm.c:1007
|
||||
#: lib/libalpm/alpm.c:1004 lib/libalpm/alpm.c:1009
|
||||
#, c-format
|
||||
msgid "config: ignorepkg: %s"
|
||||
msgstr "configuração: ignorepkg: %s"
|
||||
|
||||
#: lib/libalpm/alpm.c:1015 lib/libalpm/alpm.c:1020
|
||||
#: lib/libalpm/alpm.c:1017 lib/libalpm/alpm.c:1022
|
||||
#, c-format
|
||||
msgid "config: holdpkg: %s"
|
||||
msgstr "configuração: holdpkg: %s"
|
||||
|
||||
#: lib/libalpm/alpm.c:1027
|
||||
#: lib/libalpm/alpm.c:1029
|
||||
#, c-format
|
||||
msgid "config: dbpath: %s"
|
||||
msgstr "configuração: dbpath: %s"
|
||||
|
||||
#: lib/libalpm/alpm.c:1034
|
||||
#: lib/libalpm/alpm.c:1036
|
||||
#, c-format
|
||||
msgid "config: cachedir: %s"
|
||||
msgstr "configuração: cachedir: %s"
|
||||
|
||||
#: lib/libalpm/alpm.c:1037
|
||||
#: lib/libalpm/alpm.c:1043
|
||||
#, fuzzy, c-format
|
||||
msgid "config: rootdir: %s"
|
||||
msgstr "configuração: cachedir: %s"
|
||||
|
||||
#: lib/libalpm/alpm.c:1046
|
||||
#, c-format
|
||||
msgid "config: logfile: %s"
|
||||
msgstr "configuração: logfile: %s"
|
||||
|
||||
#: lib/libalpm/alpm.c:1040
|
||||
#: lib/libalpm/alpm.c:1049
|
||||
#, c-format
|
||||
msgid "config: xfercommand: %s"
|
||||
msgstr "configuração: xfercommand: %s"
|
||||
|
||||
#: lib/libalpm/alpm.c:1045
|
||||
#: lib/libalpm/alpm.c:1054
|
||||
#, c-format
|
||||
msgid "config: upgradedelay: %d"
|
||||
msgstr "configuração: upgradedelay: %d"
|
||||
|
||||
#: lib/libalpm/alpm.c:1083 lib/libalpm/sync.c:107
|
||||
#: lib/libalpm/alpm.c:1092 lib/libalpm/sync.c:107
|
||||
msgid "checking for package replacements"
|
||||
msgstr "verificando por substitutos do pacote"
|
||||
|
||||
#: lib/libalpm/alpm.c:1094 lib/libalpm/sync.c:123
|
||||
#: lib/libalpm/alpm.c:1103 lib/libalpm/sync.c:123
|
||||
#, c-format
|
||||
msgid "checking replacement '%s' for package '%s'"
|
||||
msgstr "verificando substituto '%s' para o pacote '%s'"
|
||||
|
||||
#: lib/libalpm/alpm.c:1097 lib/libalpm/sync.c:125
|
||||
#: lib/libalpm/alpm.c:1106 lib/libalpm/sync.c:125
|
||||
#, c-format
|
||||
msgid "%s-%s: ignoring package upgrade (to be replaced by %s-%s)"
|
||||
msgstr ""
|
||||
|
||||
#: lib/libalpm/alpm.c:1127 lib/libalpm/sync.c:160
|
||||
#: lib/libalpm/alpm.c:1136 lib/libalpm/sync.c:160
|
||||
#, c-format
|
||||
msgid "%s-%s elected for upgrade (to be replaced by %s-%s)"
|
||||
msgstr ""
|
||||
|
||||
#: lib/libalpm/alpm.c:1149 lib/libalpm/sync.c:194
|
||||
#: lib/libalpm/alpm.c:1158 lib/libalpm/sync.c:194
|
||||
#, c-format
|
||||
msgid "'%s' not found in sync db -- skipping"
|
||||
msgstr ""
|
||||
|
||||
#: lib/libalpm/alpm.c:1163 lib/libalpm/sync.c:208 lib/libalpm/sync.c:501
|
||||
#: lib/libalpm/alpm.c:1172 lib/libalpm/sync.c:208 lib/libalpm/sync.c:509
|
||||
#, c-format
|
||||
msgid "'%s' is already elected for removal -- skipping"
|
||||
msgstr ""
|
||||
|
||||
#: lib/libalpm/alpm.c:1169
|
||||
#: lib/libalpm/alpm.c:1178
|
||||
#, c-format
|
||||
msgid "%s elected for upgrade (%s => %s)"
|
||||
msgstr ""
|
||||
@@ -528,7 +533,7 @@ msgstr ""
|
||||
#: lib/libalpm/be_files.c:255 lib/libalpm/be_files.c:401
|
||||
#: lib/libalpm/be_files.c:424 lib/libalpm/be_files.c:515
|
||||
#: lib/libalpm/be_files.c:605 lib/libalpm/be_files.c:632
|
||||
#: lib/libalpm/package.c:206
|
||||
#: lib/libalpm/package.c:208
|
||||
#, c-format
|
||||
msgid "could not open file %s: %s"
|
||||
msgstr "não foi possível abrir o arquivo %s: %s"
|
||||
@@ -636,8 +641,8 @@ msgstr ""
|
||||
#: lib/libalpm/conflict.c:349 lib/libalpm/deps.c:60 lib/libalpm/deps.c:438
|
||||
#: lib/libalpm/deps.c:634 lib/libalpm/deps.c:674 lib/libalpm/group.c:45
|
||||
#: lib/libalpm/handle.c:51 lib/libalpm/package.c:82 lib/libalpm/sync.c:67
|
||||
#: lib/libalpm/sync.c:606 lib/libalpm/sync.c:622 lib/libalpm/sync.c:719
|
||||
#: lib/libalpm/trans.c:55 lib/libalpm/util.c:612 lib/libalpm/util.c:619
|
||||
#: lib/libalpm/sync.c:614 lib/libalpm/sync.c:630 lib/libalpm/sync.c:727
|
||||
#: lib/libalpm/trans.c:55 lib/libalpm/util.c:614 lib/libalpm/util.c:621
|
||||
#, c-format
|
||||
msgid "malloc failure: could not allocate %d bytes"
|
||||
msgstr ""
|
||||
@@ -863,7 +868,7 @@ msgstr ""
|
||||
msgid "operation not compatible with the transaction type"
|
||||
msgstr ""
|
||||
|
||||
#: lib/libalpm/error.c:97 lib/libalpm/sync.c:986
|
||||
#: lib/libalpm/error.c:97 lib/libalpm/sync.c:994
|
||||
msgid "could not commit transaction"
|
||||
msgstr ""
|
||||
|
||||
@@ -1005,70 +1010,70 @@ msgstr ""
|
||||
msgid "md5(%s) = %s"
|
||||
msgstr ""
|
||||
|
||||
#: lib/libalpm/package.c:150
|
||||
#, c-format
|
||||
msgid "%s: forcing upgrade to version %s"
|
||||
msgstr ""
|
||||
|
||||
#: lib/libalpm/package.c:155
|
||||
#, c-format
|
||||
msgid "%s: local (%s) is newer than %s (%s)"
|
||||
msgstr ""
|
||||
|
||||
#: lib/libalpm/package.c:163
|
||||
#: lib/libalpm/package.c:147
|
||||
#, c-format
|
||||
msgid "%s-%s: ignoring package upgrade (%s)"
|
||||
msgstr ""
|
||||
|
||||
#: lib/libalpm/package.c:169
|
||||
#: lib/libalpm/package.c:158
|
||||
#, c-format
|
||||
msgid "%s: forcing upgrade to version %s"
|
||||
msgstr ""
|
||||
|
||||
#: lib/libalpm/package.c:163
|
||||
#, c-format
|
||||
msgid "%s: local (%s) is newer than %s (%s)"
|
||||
msgstr ""
|
||||
|
||||
#: lib/libalpm/package.c:171
|
||||
#, c-format
|
||||
msgid "%s-%s: delaying upgrade of package (%s)"
|
||||
msgstr ""
|
||||
|
||||
#: lib/libalpm/package.c:220 lib/libalpm/package.c:279
|
||||
#: lib/libalpm/package.c:222 lib/libalpm/package.c:281
|
||||
#, c-format
|
||||
msgid "%s: syntax error in description file line %d"
|
||||
msgstr ""
|
||||
|
||||
#: lib/libalpm/package.c:353
|
||||
#: lib/libalpm/package.c:355
|
||||
msgid "could not parse the package description file"
|
||||
msgstr ""
|
||||
|
||||
#: lib/libalpm/package.c:357
|
||||
#: lib/libalpm/package.c:359
|
||||
#, c-format
|
||||
msgid "missing package name in %s"
|
||||
msgstr ""
|
||||
|
||||
#: lib/libalpm/package.c:361
|
||||
#: lib/libalpm/package.c:363
|
||||
#, c-format
|
||||
msgid "missing package version in %s"
|
||||
msgstr ""
|
||||
|
||||
#: lib/libalpm/package.c:396
|
||||
#: lib/libalpm/package.c:398
|
||||
#, c-format
|
||||
msgid "could not remove tempfile %s"
|
||||
msgstr ""
|
||||
|
||||
#: lib/libalpm/package.c:409 lib/libalpm/package.c:416
|
||||
#: lib/libalpm/package.c:411 lib/libalpm/package.c:418
|
||||
#, c-format
|
||||
msgid "error while reading package: %s"
|
||||
msgstr ""
|
||||
|
||||
#: lib/libalpm/package.c:422
|
||||
#: lib/libalpm/package.c:424
|
||||
msgid "missing package metadata"
|
||||
msgstr ""
|
||||
|
||||
#: lib/libalpm/package.c:429
|
||||
#: lib/libalpm/package.c:431
|
||||
#, c-format
|
||||
msgid "missing package filelist in %s, generating one"
|
||||
msgstr ""
|
||||
|
||||
#: lib/libalpm/package.c:568
|
||||
#: lib/libalpm/package.c:570
|
||||
#, c-format
|
||||
msgid "adding '%s' in requiredby field for '%s'"
|
||||
msgstr ""
|
||||
|
||||
#: lib/libalpm/package.c:582
|
||||
#: lib/libalpm/package.c:584
|
||||
#, c-format
|
||||
msgid "adding '%s' in requiredby field for '%s' (provides: %s)"
|
||||
msgstr ""
|
||||
@@ -1191,224 +1196,224 @@ msgstr ""
|
||||
msgid "%s-%s elected for upgrade (%s => %s)"
|
||||
msgstr ""
|
||||
|
||||
#: lib/libalpm/sync.c:262
|
||||
#: lib/libalpm/sync.c:270
|
||||
#, c-format
|
||||
msgid "searching for target in repo '%s'"
|
||||
msgstr ""
|
||||
|
||||
#: lib/libalpm/sync.c:270 lib/libalpm/sync.c:293
|
||||
#: lib/libalpm/sync.c:278 lib/libalpm/sync.c:301
|
||||
#, c-format
|
||||
msgid "target '%s' not found -- looking for provisions"
|
||||
msgstr ""
|
||||
|
||||
#: lib/libalpm/sync.c:275 lib/libalpm/sync.c:298
|
||||
#: lib/libalpm/sync.c:283 lib/libalpm/sync.c:306
|
||||
#, c-format
|
||||
msgid "found '%s' as a provision for '%s'"
|
||||
msgstr ""
|
||||
|
||||
#: lib/libalpm/sync.c:282
|
||||
#: lib/libalpm/sync.c:290
|
||||
#, c-format
|
||||
msgid "repository '%s' not found"
|
||||
msgstr ""
|
||||
|
||||
#: lib/libalpm/sync.c:323
|
||||
#: lib/libalpm/sync.c:331
|
||||
#, c-format
|
||||
msgid "%s-%s is up to date -- skipping"
|
||||
msgstr ""
|
||||
|
||||
#: lib/libalpm/sync.c:346
|
||||
#: lib/libalpm/sync.c:354
|
||||
#, c-format
|
||||
msgid "adding target '%s' to the transaction set"
|
||||
msgstr ""
|
||||
|
||||
#: lib/libalpm/sync.c:394
|
||||
#: lib/libalpm/sync.c:402
|
||||
msgid "resolving target's dependencies"
|
||||
msgstr ""
|
||||
|
||||
#: lib/libalpm/sync.c:414
|
||||
#: lib/libalpm/sync.c:422
|
||||
#, c-format
|
||||
msgid "adding package %s-%s to the transaction targets"
|
||||
msgstr ""
|
||||
|
||||
#: lib/libalpm/sync.c:455
|
||||
#: lib/libalpm/sync.c:463
|
||||
msgid "looking for unresolvable dependencies"
|
||||
msgstr ""
|
||||
|
||||
#: lib/libalpm/sync.c:486
|
||||
#: lib/libalpm/sync.c:494
|
||||
#, c-format
|
||||
msgid "package '%s' conflicts with '%s'"
|
||||
msgstr "pacote '%s' conflita com '%s'"
|
||||
|
||||
#: lib/libalpm/sync.c:508
|
||||
#: lib/libalpm/sync.c:516
|
||||
#, c-format
|
||||
msgid "'%s' not found in transaction set -- skipping"
|
||||
msgstr ""
|
||||
|
||||
#: lib/libalpm/sync.c:519
|
||||
#: lib/libalpm/sync.c:527
|
||||
#, c-format
|
||||
msgid "package '%s' provides its own conflict"
|
||||
msgstr ""
|
||||
|
||||
#: lib/libalpm/sync.c:542 lib/libalpm/sync.c:547
|
||||
#: lib/libalpm/sync.c:550 lib/libalpm/sync.c:555
|
||||
#, c-format
|
||||
msgid "'%s' is in the target list -- keeping it"
|
||||
msgstr ""
|
||||
|
||||
#: lib/libalpm/sync.c:559 lib/libalpm/sync.c:596
|
||||
#: lib/libalpm/sync.c:567 lib/libalpm/sync.c:604
|
||||
#, c-format
|
||||
msgid "removing '%s' from target list"
|
||||
msgstr "removendo '%s' da lista de alvos"
|
||||
|
||||
#: lib/libalpm/sync.c:568
|
||||
#: lib/libalpm/sync.c:576
|
||||
#, c-format
|
||||
msgid "resolving package '%s' conflict"
|
||||
msgstr ""
|
||||
|
||||
#: lib/libalpm/sync.c:591
|
||||
#: lib/libalpm/sync.c:599
|
||||
#, c-format
|
||||
msgid "electing '%s' for removal"
|
||||
msgstr ""
|
||||
|
||||
#: lib/libalpm/sync.c:602 lib/libalpm/sync.c:618
|
||||
#: lib/libalpm/sync.c:610 lib/libalpm/sync.c:626
|
||||
msgid "unresolvable package conflicts detected"
|
||||
msgstr ""
|
||||
|
||||
#: lib/libalpm/sync.c:670
|
||||
#: lib/libalpm/sync.c:678
|
||||
msgid "checking dependencies of packages designated for removal"
|
||||
msgstr ""
|
||||
|
||||
#: lib/libalpm/sync.c:684
|
||||
#: lib/libalpm/sync.c:692
|
||||
msgid "something has gone horribly wrong"
|
||||
msgstr ""
|
||||
|
||||
#: lib/libalpm/sync.c:704
|
||||
#: lib/libalpm/sync.c:712
|
||||
#, c-format
|
||||
msgid "found '%s' as a provision for '%s' -- conflict aborted"
|
||||
msgstr ""
|
||||
|
||||
#: lib/libalpm/sync.c:800
|
||||
#: lib/libalpm/sync.c:808
|
||||
#, c-format
|
||||
msgid "%s is already in the cache\n"
|
||||
msgstr ""
|
||||
|
||||
#: lib/libalpm/sync.c:811
|
||||
#: lib/libalpm/sync.c:819
|
||||
#, c-format
|
||||
msgid "no %s cache exists, creating...\n"
|
||||
msgstr ""
|
||||
|
||||
#: lib/libalpm/sync.c:812
|
||||
#: lib/libalpm/sync.c:820
|
||||
#, c-format
|
||||
msgid "warning: no %s cache exists, creating..."
|
||||
msgstr ""
|
||||
|
||||
#: lib/libalpm/sync.c:817
|
||||
#: lib/libalpm/sync.c:825
|
||||
msgid "couldn't create package cache, using /tmp instead\n"
|
||||
msgstr ""
|
||||
|
||||
#: lib/libalpm/sync.c:818
|
||||
#: lib/libalpm/sync.c:826
|
||||
msgid "warning: couldn't create package cache, using /tmp instead"
|
||||
msgstr ""
|
||||
|
||||
#: lib/libalpm/sync.c:825
|
||||
#: lib/libalpm/sync.c:833
|
||||
#, c-format
|
||||
msgid "failed to retrieve some files from %s\n"
|
||||
msgstr ""
|
||||
|
||||
#: lib/libalpm/sync.c:855 lib/libalpm/sync.c:867
|
||||
#: lib/libalpm/sync.c:863 lib/libalpm/sync.c:875
|
||||
#, c-format
|
||||
msgid "can't get md5 or sha1 checksum for package %s\n"
|
||||
msgstr ""
|
||||
|
||||
#: lib/libalpm/sync.c:886
|
||||
#: lib/libalpm/sync.c:894
|
||||
#, c-format
|
||||
msgid "archive %s was corrupted (bad MD5 or SHA1 checksum)\n"
|
||||
msgstr ""
|
||||
|
||||
#: lib/libalpm/sync.c:888
|
||||
#: lib/libalpm/sync.c:896
|
||||
#, c-format
|
||||
msgid "archive %s is corrupted (bad MD5 or SHA1 checksum)\n"
|
||||
msgstr ""
|
||||
|
||||
#: lib/libalpm/sync.c:909
|
||||
#: lib/libalpm/sync.c:917
|
||||
msgid "could not create removal transaction"
|
||||
msgstr ""
|
||||
|
||||
#: lib/libalpm/sync.c:915
|
||||
#: lib/libalpm/sync.c:923
|
||||
msgid "could not initialize the removal transaction"
|
||||
msgstr ""
|
||||
|
||||
#: lib/libalpm/sync.c:935
|
||||
#: lib/libalpm/sync.c:943
|
||||
msgid "removing conflicting and to-be-replaced packages"
|
||||
msgstr ""
|
||||
|
||||
#: lib/libalpm/sync.c:937
|
||||
#: lib/libalpm/sync.c:945
|
||||
msgid "could not prepare removal transaction"
|
||||
msgstr ""
|
||||
|
||||
#: lib/libalpm/sync.c:943
|
||||
#: lib/libalpm/sync.c:951
|
||||
msgid "could not commit removal transaction"
|
||||
msgstr ""
|
||||
|
||||
#: lib/libalpm/sync.c:950
|
||||
#: lib/libalpm/sync.c:958
|
||||
msgid "installing packages"
|
||||
msgstr ""
|
||||
|
||||
#: lib/libalpm/sync.c:953
|
||||
#: lib/libalpm/sync.c:961
|
||||
msgid "could not create transaction"
|
||||
msgstr ""
|
||||
|
||||
#: lib/libalpm/sync.c:958
|
||||
#: lib/libalpm/sync.c:966
|
||||
msgid "could not initialize transaction"
|
||||
msgstr ""
|
||||
|
||||
#: lib/libalpm/sync.c:981
|
||||
#: lib/libalpm/sync.c:989
|
||||
msgid "could not prepare transaction"
|
||||
msgstr ""
|
||||
|
||||
#: lib/libalpm/sync.c:993
|
||||
#: lib/libalpm/sync.c:1001
|
||||
msgid "updating database for replaced packages' dependencies"
|
||||
msgstr ""
|
||||
|
||||
#: lib/libalpm/sync.c:1022
|
||||
#: lib/libalpm/sync.c:1030
|
||||
#, c-format
|
||||
msgid "could not update requiredby for database entry %s-%s"
|
||||
msgstr ""
|
||||
|
||||
#: lib/libalpm/sync.c:1031
|
||||
#: lib/libalpm/sync.c:1039
|
||||
#, c-format
|
||||
msgid "could not update new database entry %s-%s"
|
||||
msgstr ""
|
||||
|
||||
#: lib/libalpm/sync.c:1071
|
||||
#: lib/libalpm/sync.c:1079
|
||||
#, fuzzy, c-format
|
||||
msgid "found package '%s-%s' in sync"
|
||||
msgstr "atualizando pacote %s-%s"
|
||||
|
||||
#: lib/libalpm/sync.c:1077
|
||||
#: lib/libalpm/sync.c:1085
|
||||
#, c-format
|
||||
msgid "package '%s' not found in sync"
|
||||
msgstr ""
|
||||
|
||||
#: lib/libalpm/trans.c:270
|
||||
#: lib/libalpm/trans.c:271
|
||||
#, c-format
|
||||
msgid "updating dependency packages 'requiredby' fields for %s-%s"
|
||||
msgstr ""
|
||||
|
||||
#: lib/libalpm/trans.c:273
|
||||
#: lib/libalpm/trans.c:274
|
||||
msgid "package has no dependencies, no other packages to update"
|
||||
msgstr ""
|
||||
|
||||
#: lib/libalpm/trans.c:310 lib/libalpm/trans.c:340
|
||||
#: lib/libalpm/trans.c:311 lib/libalpm/trans.c:341
|
||||
#, c-format
|
||||
msgid "updating 'requiredby' field for package '%s'"
|
||||
msgstr ""
|
||||
|
||||
#: lib/libalpm/trans.c:325 lib/libalpm/trans.c:355
|
||||
#: lib/libalpm/trans.c:326 lib/libalpm/trans.c:356
|
||||
#, c-format
|
||||
msgid "could not update 'requiredby' database entry %s-%s"
|
||||
msgstr ""
|
||||
|
||||
#: lib/libalpm/trans.c:332
|
||||
#: lib/libalpm/trans.c:333
|
||||
#, c-format
|
||||
msgid "could not find dependency '%s'"
|
||||
msgstr "não foi possível encontrar a dependência '%s'"
|
||||
@@ -1487,7 +1492,12 @@ msgstr ""
|
||||
msgid "could not remove tmpdir %s"
|
||||
msgstr ""
|
||||
|
||||
#: lib/libalpm/util.c:607
|
||||
#: lib/libalpm/util.c:568
|
||||
#, c-format
|
||||
msgid "cannot read disk space information from %s: %s"
|
||||
msgstr ""
|
||||
|
||||
#: lib/libalpm/util.c:609
|
||||
#, c-format
|
||||
msgid "check_freespace: total pkg size: %lld, disk space: %lld"
|
||||
msgstr ""
|
||||
|
||||
@@ -7,7 +7,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Pacman package manager 3.0.0\n"
|
||||
"Report-Msgid-Bugs-To: pacman-dev@archlinux.org\n"
|
||||
"POT-Creation-Date: 2007-03-23 20:46-0500\n"
|
||||
"POT-Creation-Date: 2007-06-17 20:11-0400\n"
|
||||
"PO-Revision-Date: 2007-03-16 02:52+1000\n"
|
||||
"Last-Translator: Vladimir Bayrakovskiy <4rayven@gmail.com>\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
@@ -40,7 +40,7 @@ msgstr "читаю метаданные из '%s'"
|
||||
msgid "looking for unsatisfied dependencies"
|
||||
msgstr "поиск неразрешенных зависимостей"
|
||||
|
||||
#: lib/libalpm/add.c:203 lib/libalpm/sync.c:475
|
||||
#: lib/libalpm/add.c:203 lib/libalpm/sync.c:483
|
||||
msgid "looking for conflicts"
|
||||
msgstr "поиск конфликтов"
|
||||
|
||||
@@ -223,59 +223,59 @@ msgstr "извлекаю %s"
|
||||
msgid "error: could not extract %s (%s)"
|
||||
msgstr "ошибка: не могу извлечь %s (%s)"
|
||||
|
||||
#: lib/libalpm/add.c:717
|
||||
#: lib/libalpm/add.c:719
|
||||
#, c-format
|
||||
msgid "appending backup entry for %s"
|
||||
msgstr "добавляю запись для отката для %s"
|
||||
|
||||
#: lib/libalpm/add.c:749 lib/libalpm/add.c:751
|
||||
#: lib/libalpm/add.c:751 lib/libalpm/add.c:753
|
||||
#, c-format
|
||||
msgid "errors occurred while %s %s"
|
||||
msgstr "во время %s %s произошли ошибки"
|
||||
|
||||
#: lib/libalpm/add.c:750 lib/libalpm/add.c:752
|
||||
#: lib/libalpm/add.c:752 lib/libalpm/add.c:754
|
||||
msgid "upgrading"
|
||||
msgstr "обновляю"
|
||||
|
||||
#: lib/libalpm/add.c:750 lib/libalpm/add.c:752
|
||||
#: lib/libalpm/add.c:752 lib/libalpm/add.c:754
|
||||
msgid "installing"
|
||||
msgstr "устанавливаю"
|
||||
|
||||
#: lib/libalpm/add.c:769
|
||||
#: lib/libalpm/add.c:771
|
||||
#, fuzzy, c-format
|
||||
msgid "provision '%s' has been removed from package %s (%s => %s)"
|
||||
msgstr "'%s' был удален из пакета %s (%s => %s)"
|
||||
|
||||
#: lib/libalpm/add.c:781
|
||||
#: lib/libalpm/add.c:783
|
||||
#, c-format
|
||||
msgid "updating '%s' due to provision change (%s)"
|
||||
msgstr "обновляю '%s' в связи с изменениями в (%s)"
|
||||
|
||||
#: lib/libalpm/add.c:785 lib/libalpm/add.c:786
|
||||
#: lib/libalpm/add.c:787 lib/libalpm/add.c:788
|
||||
#, c-format
|
||||
msgid "could not update provision '%s' from '%s'"
|
||||
msgstr "не могу обновить '%s' из '%s'"
|
||||
|
||||
#: lib/libalpm/add.c:799 lib/libalpm/remove.c:336
|
||||
#: lib/libalpm/add.c:801 lib/libalpm/remove.c:336
|
||||
msgid "updating database"
|
||||
msgstr "обновляю базу данных"
|
||||
|
||||
#: lib/libalpm/add.c:800
|
||||
#: lib/libalpm/add.c:802
|
||||
#, c-format
|
||||
msgid "adding database entry '%s'"
|
||||
msgstr "добавляю в базу данных запись '%s'"
|
||||
|
||||
#: lib/libalpm/add.c:803 lib/libalpm/add.c:805
|
||||
#: lib/libalpm/add.c:805 lib/libalpm/add.c:807
|
||||
#, c-format
|
||||
msgid "could not update database entry %s-%s"
|
||||
msgstr "не могу обновить в базе данных запись %s-%s"
|
||||
|
||||
#: lib/libalpm/add.c:811
|
||||
#: lib/libalpm/add.c:813
|
||||
#, c-format
|
||||
msgid "could not add entry '%s' in cache"
|
||||
msgstr "не могу добавить запись '%s' в кэш"
|
||||
|
||||
#: lib/libalpm/add.c:841 lib/libalpm/remove.c:363 lib/libalpm/sync.c:1047
|
||||
#: lib/libalpm/add.c:843 lib/libalpm/remove.c:363 lib/libalpm/sync.c:1055
|
||||
#, c-format
|
||||
msgid "running \"ldconfig -r %s\""
|
||||
msgstr "запускаю \"ldconfig -r %s\""
|
||||
@@ -374,107 +374,112 @@ msgstr "не могу удалить lock-файл %s"
|
||||
msgid "warning: could not remove lock file %s"
|
||||
msgstr "предупреждение: не могу удалить lock-файл %s"
|
||||
|
||||
#: lib/libalpm/alpm.c:919
|
||||
#: lib/libalpm/alpm.c:920
|
||||
#, c-format
|
||||
msgid "config: new section '%s'"
|
||||
msgstr "config: новая секция '%s'"
|
||||
|
||||
#: lib/libalpm/alpm.c:948
|
||||
#: lib/libalpm/alpm.c:950
|
||||
msgid "config: nopassiveftp"
|
||||
msgstr ""
|
||||
|
||||
#: lib/libalpm/alpm.c:951
|
||||
#: lib/libalpm/alpm.c:953
|
||||
msgid "config: usesyslog"
|
||||
msgstr ""
|
||||
|
||||
#: lib/libalpm/alpm.c:954
|
||||
#: lib/libalpm/alpm.c:956
|
||||
msgid "config: chomp"
|
||||
msgstr ""
|
||||
|
||||
#: lib/libalpm/alpm.c:957
|
||||
#: lib/libalpm/alpm.c:959
|
||||
msgid "config: usecolor"
|
||||
msgstr ""
|
||||
|
||||
#: lib/libalpm/alpm.c:966
|
||||
#: lib/libalpm/alpm.c:968
|
||||
#, c-format
|
||||
msgid "config: including %s"
|
||||
msgstr ""
|
||||
|
||||
#: lib/libalpm/alpm.c:976 lib/libalpm/alpm.c:981
|
||||
#: lib/libalpm/alpm.c:978 lib/libalpm/alpm.c:983
|
||||
#, c-format
|
||||
msgid "config: noupgrade: %s"
|
||||
msgstr ""
|
||||
|
||||
#: lib/libalpm/alpm.c:989 lib/libalpm/alpm.c:994
|
||||
#: lib/libalpm/alpm.c:991 lib/libalpm/alpm.c:996
|
||||
#, c-format
|
||||
msgid "config: noextract: %s"
|
||||
msgstr ""
|
||||
|
||||
#: lib/libalpm/alpm.c:1002 lib/libalpm/alpm.c:1007
|
||||
#: lib/libalpm/alpm.c:1004 lib/libalpm/alpm.c:1009
|
||||
#, c-format
|
||||
msgid "config: ignorepkg: %s"
|
||||
msgstr ""
|
||||
|
||||
#: lib/libalpm/alpm.c:1015 lib/libalpm/alpm.c:1020
|
||||
#: lib/libalpm/alpm.c:1017 lib/libalpm/alpm.c:1022
|
||||
#, c-format
|
||||
msgid "config: holdpkg: %s"
|
||||
msgstr ""
|
||||
|
||||
#: lib/libalpm/alpm.c:1027
|
||||
#: lib/libalpm/alpm.c:1029
|
||||
#, c-format
|
||||
msgid "config: dbpath: %s"
|
||||
msgstr ""
|
||||
|
||||
#: lib/libalpm/alpm.c:1034
|
||||
#: lib/libalpm/alpm.c:1036
|
||||
#, c-format
|
||||
msgid "config: cachedir: %s"
|
||||
msgstr ""
|
||||
|
||||
#: lib/libalpm/alpm.c:1037
|
||||
#: lib/libalpm/alpm.c:1043
|
||||
#, fuzzy, c-format
|
||||
msgid "config: rootdir: %s"
|
||||
msgstr "config: новая секция '%s'"
|
||||
|
||||
#: lib/libalpm/alpm.c:1046
|
||||
#, c-format
|
||||
msgid "config: logfile: %s"
|
||||
msgstr ""
|
||||
|
||||
#: lib/libalpm/alpm.c:1040
|
||||
#: lib/libalpm/alpm.c:1049
|
||||
#, c-format
|
||||
msgid "config: xfercommand: %s"
|
||||
msgstr ""
|
||||
|
||||
#: lib/libalpm/alpm.c:1045
|
||||
#: lib/libalpm/alpm.c:1054
|
||||
#, c-format
|
||||
msgid "config: upgradedelay: %d"
|
||||
msgstr ""
|
||||
|
||||
#: lib/libalpm/alpm.c:1083 lib/libalpm/sync.c:107
|
||||
#: lib/libalpm/alpm.c:1092 lib/libalpm/sync.c:107
|
||||
msgid "checking for package replacements"
|
||||
msgstr "проверяю замены для пакетов"
|
||||
|
||||
#: lib/libalpm/alpm.c:1094 lib/libalpm/sync.c:123
|
||||
#: lib/libalpm/alpm.c:1103 lib/libalpm/sync.c:123
|
||||
#, c-format
|
||||
msgid "checking replacement '%s' for package '%s'"
|
||||
msgstr "проверяю замену '%s' для пакета '%s'"
|
||||
|
||||
#: lib/libalpm/alpm.c:1097 lib/libalpm/sync.c:125
|
||||
#: lib/libalpm/alpm.c:1106 lib/libalpm/sync.c:125
|
||||
#, c-format
|
||||
msgid "%s-%s: ignoring package upgrade (to be replaced by %s-%s)"
|
||||
msgstr "%s-%s: игнорирую обновление этого пакета (он будет заменен на %s-%s)"
|
||||
|
||||
#: lib/libalpm/alpm.c:1127 lib/libalpm/sync.c:160
|
||||
#: lib/libalpm/alpm.c:1136 lib/libalpm/sync.c:160
|
||||
#, c-format
|
||||
msgid "%s-%s elected for upgrade (to be replaced by %s-%s)"
|
||||
msgstr "%s-%s выбран для обновления (будет заменен на %s-%s)"
|
||||
|
||||
#: lib/libalpm/alpm.c:1149 lib/libalpm/sync.c:194
|
||||
#: lib/libalpm/alpm.c:1158 lib/libalpm/sync.c:194
|
||||
#, c-format
|
||||
msgid "'%s' not found in sync db -- skipping"
|
||||
msgstr "'%s' не найден в базе данных -- пропускаю"
|
||||
|
||||
#: lib/libalpm/alpm.c:1163 lib/libalpm/sync.c:208 lib/libalpm/sync.c:501
|
||||
#: lib/libalpm/alpm.c:1172 lib/libalpm/sync.c:208 lib/libalpm/sync.c:509
|
||||
#, c-format
|
||||
msgid "'%s' is already elected for removal -- skipping"
|
||||
msgstr "'%s' уже выбран для удаления -- пропускаю"
|
||||
|
||||
#: lib/libalpm/alpm.c:1169
|
||||
#: lib/libalpm/alpm.c:1178
|
||||
#, c-format
|
||||
msgid "%s elected for upgrade (%s => %s)"
|
||||
msgstr "%s выбран для обновления (%s => %s)"
|
||||
@@ -522,7 +527,7 @@ msgstr ""
|
||||
#: lib/libalpm/be_files.c:255 lib/libalpm/be_files.c:401
|
||||
#: lib/libalpm/be_files.c:424 lib/libalpm/be_files.c:515
|
||||
#: lib/libalpm/be_files.c:605 lib/libalpm/be_files.c:632
|
||||
#: lib/libalpm/package.c:206
|
||||
#: lib/libalpm/package.c:208
|
||||
#, c-format
|
||||
msgid "could not open file %s: %s"
|
||||
msgstr ""
|
||||
@@ -630,8 +635,8 @@ msgstr ""
|
||||
#: lib/libalpm/conflict.c:349 lib/libalpm/deps.c:60 lib/libalpm/deps.c:438
|
||||
#: lib/libalpm/deps.c:634 lib/libalpm/deps.c:674 lib/libalpm/group.c:45
|
||||
#: lib/libalpm/handle.c:51 lib/libalpm/package.c:82 lib/libalpm/sync.c:67
|
||||
#: lib/libalpm/sync.c:606 lib/libalpm/sync.c:622 lib/libalpm/sync.c:719
|
||||
#: lib/libalpm/trans.c:55 lib/libalpm/util.c:612 lib/libalpm/util.c:619
|
||||
#: lib/libalpm/sync.c:614 lib/libalpm/sync.c:630 lib/libalpm/sync.c:727
|
||||
#: lib/libalpm/trans.c:55 lib/libalpm/util.c:614 lib/libalpm/util.c:621
|
||||
#, c-format
|
||||
msgid "malloc failure: could not allocate %d bytes"
|
||||
msgstr ""
|
||||
@@ -857,7 +862,7 @@ msgstr ""
|
||||
msgid "operation not compatible with the transaction type"
|
||||
msgstr ""
|
||||
|
||||
#: lib/libalpm/error.c:97 lib/libalpm/sync.c:986
|
||||
#: lib/libalpm/error.c:97 lib/libalpm/sync.c:994
|
||||
msgid "could not commit transaction"
|
||||
msgstr ""
|
||||
|
||||
@@ -1001,70 +1006,70 @@ msgstr ""
|
||||
msgid "md5(%s) = %s"
|
||||
msgstr ""
|
||||
|
||||
#: lib/libalpm/package.c:150
|
||||
#, c-format
|
||||
msgid "%s: forcing upgrade to version %s"
|
||||
msgstr "%s: принудительно обновляю до версии %s"
|
||||
|
||||
#: lib/libalpm/package.c:155
|
||||
#, c-format
|
||||
msgid "%s: local (%s) is newer than %s (%s)"
|
||||
msgstr "%s: установленная версия (%s) новее, чем в %s (%s)"
|
||||
|
||||
#: lib/libalpm/package.c:163
|
||||
#: lib/libalpm/package.c:147
|
||||
#, c-format
|
||||
msgid "%s-%s: ignoring package upgrade (%s)"
|
||||
msgstr ""
|
||||
|
||||
#: lib/libalpm/package.c:169
|
||||
#: lib/libalpm/package.c:158
|
||||
#, c-format
|
||||
msgid "%s: forcing upgrade to version %s"
|
||||
msgstr "%s: принудительно обновляю до версии %s"
|
||||
|
||||
#: lib/libalpm/package.c:163
|
||||
#, c-format
|
||||
msgid "%s: local (%s) is newer than %s (%s)"
|
||||
msgstr "%s: установленная версия (%s) новее, чем в %s (%s)"
|
||||
|
||||
#: lib/libalpm/package.c:171
|
||||
#, c-format
|
||||
msgid "%s-%s: delaying upgrade of package (%s)"
|
||||
msgstr ""
|
||||
|
||||
#: lib/libalpm/package.c:220 lib/libalpm/package.c:279
|
||||
#: lib/libalpm/package.c:222 lib/libalpm/package.c:281
|
||||
#, c-format
|
||||
msgid "%s: syntax error in description file line %d"
|
||||
msgstr ""
|
||||
|
||||
#: lib/libalpm/package.c:353
|
||||
#: lib/libalpm/package.c:355
|
||||
msgid "could not parse the package description file"
|
||||
msgstr ""
|
||||
|
||||
#: lib/libalpm/package.c:357
|
||||
#: lib/libalpm/package.c:359
|
||||
#, c-format
|
||||
msgid "missing package name in %s"
|
||||
msgstr ""
|
||||
|
||||
#: lib/libalpm/package.c:361
|
||||
#: lib/libalpm/package.c:363
|
||||
#, c-format
|
||||
msgid "missing package version in %s"
|
||||
msgstr ""
|
||||
|
||||
#: lib/libalpm/package.c:396
|
||||
#: lib/libalpm/package.c:398
|
||||
#, c-format
|
||||
msgid "could not remove tempfile %s"
|
||||
msgstr "не могу удалить временный файл %s"
|
||||
|
||||
#: lib/libalpm/package.c:409 lib/libalpm/package.c:416
|
||||
#: lib/libalpm/package.c:411 lib/libalpm/package.c:418
|
||||
#, c-format
|
||||
msgid "error while reading package: %s"
|
||||
msgstr "ошибка при чтении пакета: %s"
|
||||
|
||||
#: lib/libalpm/package.c:422
|
||||
#: lib/libalpm/package.c:424
|
||||
msgid "missing package metadata"
|
||||
msgstr ""
|
||||
|
||||
#: lib/libalpm/package.c:429
|
||||
#: lib/libalpm/package.c:431
|
||||
#, c-format
|
||||
msgid "missing package filelist in %s, generating one"
|
||||
msgstr "отсутствует список файлов пакета в %s, генерирую его"
|
||||
|
||||
#: lib/libalpm/package.c:568
|
||||
#: lib/libalpm/package.c:570
|
||||
#, c-format
|
||||
msgid "adding '%s' in requiredby field for '%s'"
|
||||
msgstr "добавляю '%s' в поле requiredby для '%s'"
|
||||
|
||||
#: lib/libalpm/package.c:582
|
||||
#: lib/libalpm/package.c:584
|
||||
#, c-format
|
||||
msgid "adding '%s' in requiredby field for '%s' (provides: %s)"
|
||||
msgstr "добавляю '%s' в поле requiredby для '%s' (обеспечивает :%s)"
|
||||
@@ -1187,224 +1192,224 @@ msgstr "проверяю наличие обновлений"
|
||||
msgid "%s-%s elected for upgrade (%s => %s)"
|
||||
msgstr "%s-%s выбран для обновления (%s => %s)"
|
||||
|
||||
#: lib/libalpm/sync.c:262
|
||||
#: lib/libalpm/sync.c:270
|
||||
#, c-format
|
||||
msgid "searching for target in repo '%s'"
|
||||
msgstr ""
|
||||
|
||||
#: lib/libalpm/sync.c:270 lib/libalpm/sync.c:293
|
||||
#: lib/libalpm/sync.c:278 lib/libalpm/sync.c:301
|
||||
#, c-format
|
||||
msgid "target '%s' not found -- looking for provisions"
|
||||
msgstr ""
|
||||
|
||||
#: lib/libalpm/sync.c:275 lib/libalpm/sync.c:298
|
||||
#: lib/libalpm/sync.c:283 lib/libalpm/sync.c:306
|
||||
#, c-format
|
||||
msgid "found '%s' as a provision for '%s'"
|
||||
msgstr ""
|
||||
|
||||
#: lib/libalpm/sync.c:282
|
||||
#: lib/libalpm/sync.c:290
|
||||
#, c-format
|
||||
msgid "repository '%s' not found"
|
||||
msgstr "репозиторий '%s' не найден"
|
||||
|
||||
#: lib/libalpm/sync.c:323
|
||||
#: lib/libalpm/sync.c:331
|
||||
#, c-format
|
||||
msgid "%s-%s is up to date -- skipping"
|
||||
msgstr "%s-%s не устарел -- пропускаю"
|
||||
|
||||
#: lib/libalpm/sync.c:346
|
||||
#: lib/libalpm/sync.c:354
|
||||
#, c-format
|
||||
msgid "adding target '%s' to the transaction set"
|
||||
msgstr ""
|
||||
|
||||
#: lib/libalpm/sync.c:394
|
||||
#: lib/libalpm/sync.c:402
|
||||
msgid "resolving target's dependencies"
|
||||
msgstr "разрешаю зависимости пакетов"
|
||||
|
||||
#: lib/libalpm/sync.c:414
|
||||
#: lib/libalpm/sync.c:422
|
||||
#, c-format
|
||||
msgid "adding package %s-%s to the transaction targets"
|
||||
msgstr ""
|
||||
|
||||
#: lib/libalpm/sync.c:455
|
||||
#: lib/libalpm/sync.c:463
|
||||
msgid "looking for unresolvable dependencies"
|
||||
msgstr "ищу неразрешимые зависимости"
|
||||
|
||||
#: lib/libalpm/sync.c:486
|
||||
#: lib/libalpm/sync.c:494
|
||||
#, c-format
|
||||
msgid "package '%s' conflicts with '%s'"
|
||||
msgstr "пакет '%s' конфликтует с '%s'"
|
||||
|
||||
#: lib/libalpm/sync.c:508
|
||||
#: lib/libalpm/sync.c:516
|
||||
#, c-format
|
||||
msgid "'%s' not found in transaction set -- skipping"
|
||||
msgstr ""
|
||||
|
||||
#: lib/libalpm/sync.c:519
|
||||
#: lib/libalpm/sync.c:527
|
||||
#, c-format
|
||||
msgid "package '%s' provides its own conflict"
|
||||
msgstr ""
|
||||
|
||||
#: lib/libalpm/sync.c:542 lib/libalpm/sync.c:547
|
||||
#: lib/libalpm/sync.c:550 lib/libalpm/sync.c:555
|
||||
#, c-format
|
||||
msgid "'%s' is in the target list -- keeping it"
|
||||
msgstr ""
|
||||
|
||||
#: lib/libalpm/sync.c:559 lib/libalpm/sync.c:596
|
||||
#: lib/libalpm/sync.c:567 lib/libalpm/sync.c:604
|
||||
#, c-format
|
||||
msgid "removing '%s' from target list"
|
||||
msgstr ""
|
||||
|
||||
#: lib/libalpm/sync.c:568
|
||||
#: lib/libalpm/sync.c:576
|
||||
#, c-format
|
||||
msgid "resolving package '%s' conflict"
|
||||
msgstr "разрешаю конфликт пакета '%s'"
|
||||
|
||||
#: lib/libalpm/sync.c:591
|
||||
#: lib/libalpm/sync.c:599
|
||||
#, c-format
|
||||
msgid "electing '%s' for removal"
|
||||
msgstr "помечаю '%s' для удаления"
|
||||
|
||||
#: lib/libalpm/sync.c:602 lib/libalpm/sync.c:618
|
||||
#: lib/libalpm/sync.c:610 lib/libalpm/sync.c:626
|
||||
msgid "unresolvable package conflicts detected"
|
||||
msgstr "обнаружен неразрешимый конфликт пакетов"
|
||||
|
||||
#: lib/libalpm/sync.c:670
|
||||
#: lib/libalpm/sync.c:678
|
||||
msgid "checking dependencies of packages designated for removal"
|
||||
msgstr "проверяю зависимости пакетов отмеченных для удаления"
|
||||
|
||||
#: lib/libalpm/sync.c:684
|
||||
#: lib/libalpm/sync.c:692
|
||||
msgid "something has gone horribly wrong"
|
||||
msgstr "произошло что-то ужасное и непонятное"
|
||||
|
||||
#: lib/libalpm/sync.c:704
|
||||
#: lib/libalpm/sync.c:712
|
||||
#, c-format
|
||||
msgid "found '%s' as a provision for '%s' -- conflict aborted"
|
||||
msgstr ""
|
||||
|
||||
#: lib/libalpm/sync.c:800
|
||||
#: lib/libalpm/sync.c:808
|
||||
#, c-format
|
||||
msgid "%s is already in the cache\n"
|
||||
msgstr "%s уже есть в кэше\n"
|
||||
|
||||
#: lib/libalpm/sync.c:811
|
||||
#: lib/libalpm/sync.c:819
|
||||
#, c-format
|
||||
msgid "no %s cache exists, creating...\n"
|
||||
msgstr "кэш %s не существует, создаю...\n"
|
||||
|
||||
#: lib/libalpm/sync.c:812
|
||||
#: lib/libalpm/sync.c:820
|
||||
#, c-format
|
||||
msgid "warning: no %s cache exists, creating..."
|
||||
msgstr "предупреждение: кэш %s не существует, создаю..."
|
||||
|
||||
#: lib/libalpm/sync.c:817
|
||||
#: lib/libalpm/sync.c:825
|
||||
msgid "couldn't create package cache, using /tmp instead\n"
|
||||
msgstr "не могу создать кэш пакета, будет использован /tmp\n"
|
||||
|
||||
#: lib/libalpm/sync.c:818
|
||||
#: lib/libalpm/sync.c:826
|
||||
msgid "warning: couldn't create package cache, using /tmp instead"
|
||||
msgstr "предупреждение: не могу создать кэш пакета, будет использован /tmp"
|
||||
|
||||
#: lib/libalpm/sync.c:825
|
||||
#: lib/libalpm/sync.c:833
|
||||
#, c-format
|
||||
msgid "failed to retrieve some files from %s\n"
|
||||
msgstr "не удалось получить некоторые файлы с %s\n"
|
||||
|
||||
#: lib/libalpm/sync.c:855 lib/libalpm/sync.c:867
|
||||
#: lib/libalpm/sync.c:863 lib/libalpm/sync.c:875
|
||||
#, c-format
|
||||
msgid "can't get md5 or sha1 checksum for package %s\n"
|
||||
msgstr "не удалось получить md5 или sha1 контрольную сумму для пакета %s\n"
|
||||
|
||||
#: lib/libalpm/sync.c:886
|
||||
#: lib/libalpm/sync.c:894
|
||||
#, c-format
|
||||
msgid "archive %s was corrupted (bad MD5 or SHA1 checksum)\n"
|
||||
msgstr "архив %s был поврежден (не сходится MD5 или SHA1 контрольная сумма)\n"
|
||||
|
||||
#: lib/libalpm/sync.c:888
|
||||
#: lib/libalpm/sync.c:896
|
||||
#, c-format
|
||||
msgid "archive %s is corrupted (bad MD5 or SHA1 checksum)\n"
|
||||
msgstr "архив %s поврежден (не сходится MD5 или SHA1 контрольная сумма)\n"
|
||||
|
||||
#: lib/libalpm/sync.c:909
|
||||
#: lib/libalpm/sync.c:917
|
||||
msgid "could not create removal transaction"
|
||||
msgstr ""
|
||||
|
||||
#: lib/libalpm/sync.c:915
|
||||
#: lib/libalpm/sync.c:923
|
||||
msgid "could not initialize the removal transaction"
|
||||
msgstr ""
|
||||
|
||||
#: lib/libalpm/sync.c:935
|
||||
#: lib/libalpm/sync.c:943
|
||||
msgid "removing conflicting and to-be-replaced packages"
|
||||
msgstr ""
|
||||
|
||||
#: lib/libalpm/sync.c:937
|
||||
#: lib/libalpm/sync.c:945
|
||||
msgid "could not prepare removal transaction"
|
||||
msgstr ""
|
||||
|
||||
#: lib/libalpm/sync.c:943
|
||||
#: lib/libalpm/sync.c:951
|
||||
msgid "could not commit removal transaction"
|
||||
msgstr ""
|
||||
|
||||
#: lib/libalpm/sync.c:950
|
||||
#: lib/libalpm/sync.c:958
|
||||
msgid "installing packages"
|
||||
msgstr "устанавливаю пакеты"
|
||||
|
||||
#: lib/libalpm/sync.c:953
|
||||
#: lib/libalpm/sync.c:961
|
||||
msgid "could not create transaction"
|
||||
msgstr ""
|
||||
|
||||
#: lib/libalpm/sync.c:958
|
||||
#: lib/libalpm/sync.c:966
|
||||
msgid "could not initialize transaction"
|
||||
msgstr ""
|
||||
|
||||
#: lib/libalpm/sync.c:981
|
||||
#: lib/libalpm/sync.c:989
|
||||
msgid "could not prepare transaction"
|
||||
msgstr ""
|
||||
|
||||
#: lib/libalpm/sync.c:993
|
||||
#: lib/libalpm/sync.c:1001
|
||||
msgid "updating database for replaced packages' dependencies"
|
||||
msgstr ""
|
||||
|
||||
#: lib/libalpm/sync.c:1022
|
||||
#: lib/libalpm/sync.c:1030
|
||||
#, c-format
|
||||
msgid "could not update requiredby for database entry %s-%s"
|
||||
msgstr ""
|
||||
|
||||
#: lib/libalpm/sync.c:1031
|
||||
#: lib/libalpm/sync.c:1039
|
||||
#, c-format
|
||||
msgid "could not update new database entry %s-%s"
|
||||
msgstr ""
|
||||
|
||||
#: lib/libalpm/sync.c:1071
|
||||
#: lib/libalpm/sync.c:1079
|
||||
#, c-format
|
||||
msgid "found package '%s-%s' in sync"
|
||||
msgstr ""
|
||||
|
||||
#: lib/libalpm/sync.c:1077
|
||||
#: lib/libalpm/sync.c:1085
|
||||
#, c-format
|
||||
msgid "package '%s' not found in sync"
|
||||
msgstr "пакет '%s' не найден в базе данных"
|
||||
|
||||
#: lib/libalpm/trans.c:270
|
||||
#: lib/libalpm/trans.c:271
|
||||
#, c-format
|
||||
msgid "updating dependency packages 'requiredby' fields for %s-%s"
|
||||
msgstr ""
|
||||
|
||||
#: lib/libalpm/trans.c:273
|
||||
#: lib/libalpm/trans.c:274
|
||||
msgid "package has no dependencies, no other packages to update"
|
||||
msgstr ""
|
||||
|
||||
#: lib/libalpm/trans.c:310 lib/libalpm/trans.c:340
|
||||
#: lib/libalpm/trans.c:311 lib/libalpm/trans.c:341
|
||||
#, c-format
|
||||
msgid "updating 'requiredby' field for package '%s'"
|
||||
msgstr ""
|
||||
|
||||
#: lib/libalpm/trans.c:325 lib/libalpm/trans.c:355
|
||||
#: lib/libalpm/trans.c:326 lib/libalpm/trans.c:356
|
||||
#, c-format
|
||||
msgid "could not update 'requiredby' database entry %s-%s"
|
||||
msgstr ""
|
||||
|
||||
#: lib/libalpm/trans.c:332
|
||||
#: lib/libalpm/trans.c:333
|
||||
#, c-format
|
||||
msgid "could not find dependency '%s'"
|
||||
msgstr ""
|
||||
@@ -1483,7 +1488,12 @@ msgstr ""
|
||||
msgid "could not remove tmpdir %s"
|
||||
msgstr ""
|
||||
|
||||
#: lib/libalpm/util.c:607
|
||||
#: lib/libalpm/util.c:568
|
||||
#, c-format
|
||||
msgid "cannot read disk space information from %s: %s"
|
||||
msgstr ""
|
||||
|
||||
#: lib/libalpm/util.c:609
|
||||
#, c-format
|
||||
msgid "check_freespace: total pkg size: %lld, disk space: %lld"
|
||||
msgstr ""
|
||||
|
||||
@@ -284,10 +284,10 @@ int _alpm_remove_commit(pmtrans_t *trans, pmdb_t *db)
|
||||
break;
|
||||
}
|
||||
|
||||
snprintf(scriptlet, PATH_MAX, "%s%s-%s/install", db->path,
|
||||
pkgname, alpm_pkg_get_version(info));
|
||||
/* get the name now so we can use it after package is removed */
|
||||
pkgname = alpm_pkg_get_name(info);
|
||||
snprintf(scriptlet, PATH_MAX, "%s%s-%s/install", db->path,
|
||||
pkgname, alpm_pkg_get_version(info));
|
||||
|
||||
if(trans->type != PM_TRANS_TYPE_UPGRADE) {
|
||||
EVENT(trans, PM_TRANS_EVT_REMOVE_START, info, NULL);
|
||||
|
||||
@@ -72,6 +72,10 @@ pmserver_t *_alpm_server_new(const char *url)
|
||||
strcpy(u->pwd, "libalpm@guest");
|
||||
}
|
||||
|
||||
/* remove trailing slashes, just to clean up the rest of the code */
|
||||
for(int i = strlen(u->doc) - 1; u->doc[i] == '/'; --i)
|
||||
u->doc[i] = '\0';
|
||||
|
||||
server->s_url = u;
|
||||
|
||||
return server;
|
||||
@@ -126,6 +130,7 @@ static struct url *url_for_file(pmserver_t *server, const char *filename)
|
||||
}
|
||||
|
||||
snprintf(doc, doclen, "%s/%s", server->s_url->doc, filename);
|
||||
_alpm_log(PM_LOG_DEBUG, "file path: '%s'", doc);
|
||||
ret = downloadMakeURL(server->s_url->scheme,
|
||||
server->s_url->host,
|
||||
server->s_url->port,
|
||||
|
||||
@@ -216,14 +216,22 @@ int _alpm_sync_sysupgrade(pmtrans_t *trans, pmdb_t *db_local, alpm_list_t *dbs_s
|
||||
alpm_pkg_get_name(local), alpm_pkg_get_version(local),
|
||||
alpm_pkg_get_name(spkg), alpm_pkg_get_version(spkg));
|
||||
if(!_alpm_sync_find(trans->packages, alpm_pkg_get_name(spkg))) {
|
||||
pmpkg_t *dummy = _alpm_pkg_new(alpm_pkg_get_name(local),
|
||||
alpm_pkg_get_version(local));
|
||||
if(dummy == NULL) {
|
||||
/* If package is in the ignorepkg list, ask before we add it to
|
||||
* the transaction */
|
||||
if(alpm_list_find_str(handle->ignorepkg, alpm_pkg_get_name(local))) {
|
||||
int resp = 0;
|
||||
QUESTION(trans, PM_TRANS_CONV_INSTALL_IGNOREPKG, local, NULL, NULL, &resp);
|
||||
if(!resp) {
|
||||
continue;
|
||||
}
|
||||
}
|
||||
pmpkg_t *tmp = _alpm_pkg_dup(local);
|
||||
if(tmp == NULL) {
|
||||
goto error;
|
||||
}
|
||||
sync = _alpm_sync_new(PM_SYNC_TYPE_UPGRADE, spkg, dummy);
|
||||
sync = _alpm_sync_new(PM_SYNC_TYPE_UPGRADE, spkg, tmp);
|
||||
if(sync == NULL) {
|
||||
FREEPKG(dummy);
|
||||
FREEPKG(tmp);
|
||||
goto error;
|
||||
}
|
||||
trans->packages = alpm_list_add(trans->packages, sync);
|
||||
|
||||
@@ -135,7 +135,8 @@ int _alpm_trans_addtarget(pmtrans_t *trans, char *target)
|
||||
ASSERT(target != NULL, RET_ERR(PM_ERR_WRONG_ARGS, -1));
|
||||
|
||||
if(alpm_list_find_str(trans->targets, target)) {
|
||||
RET_ERR(PM_ERR_TRANS_DUP_TARGET, -1);
|
||||
return(0);
|
||||
//RET_ERR(PM_ERR_TRANS_DUP_TARGET, -1);
|
||||
}
|
||||
|
||||
switch(trans->type) {
|
||||
|
||||
@@ -560,11 +560,13 @@ cleanup:
|
||||
static long long get_freespace()
|
||||
{
|
||||
struct mntent *mnt;
|
||||
char *table = MOUNTED;
|
||||
const char *table = MOUNTED;
|
||||
FILE *fp;
|
||||
long long ret=0;
|
||||
|
||||
if((fp = setmntent(table, "r")) == NULL) {
|
||||
_alpm_log(PM_LOG_ERROR, _("cannot read disk space information from %s: %s"),
|
||||
table, strerror(errno));
|
||||
return(-1);
|
||||
}
|
||||
|
||||
|
||||
12
pactest/tests/ldconfig001.py
Normal file
12
pactest/tests/ldconfig001.py
Normal file
@@ -0,0 +1,12 @@
|
||||
# quick note here - chroot() is expected to fail. We're not checking the
|
||||
# validity of the scripts, only that they fire (or try to)
|
||||
self.description = "Make sure ldconfig runs on an add operation"
|
||||
|
||||
p = pmpkg("dummy")
|
||||
self.addpkg(p)
|
||||
|
||||
# --debug is necessary to check PACMAN_OUTPUT
|
||||
self.args = "--debug -A %s" % p.filename()
|
||||
|
||||
self.addrule("PACMAN_RETCODE=0")
|
||||
self.addrule("PACMAN_OUTPUT=ldconfig")
|
||||
16
pactest/tests/ldconfig002.py
Normal file
16
pactest/tests/ldconfig002.py
Normal file
@@ -0,0 +1,16 @@
|
||||
# quick note here - chroot() is expected to fail. We're not checking the
|
||||
# validity of the scripts, only that they fire (or try to)
|
||||
self.description = "Make sure ldconfig runs on an upgrade operation"
|
||||
|
||||
lp = pmpkg("dummy")
|
||||
self.addpkg2db("local", lp)
|
||||
|
||||
p = pmpkg("dummy", "1.0-2")
|
||||
self.addpkg(p)
|
||||
|
||||
# --debug is necessary to check PACMAN_OUTPUT
|
||||
self.args = "--debug -U %s" % p.filename()
|
||||
|
||||
self.addrule("PACMAN_RETCODE=0")
|
||||
self.addrule("PKG_VERSION=dummy|1.0-2")
|
||||
self.addrule("PACMAN_OUTPUT=ldconfig")
|
||||
14
pactest/tests/ldconfig003.py
Normal file
14
pactest/tests/ldconfig003.py
Normal file
@@ -0,0 +1,14 @@
|
||||
# quick note here - chroot() is expected to fail. We're not checking the
|
||||
# validity of the scripts, only that they fire (or try to)
|
||||
self.description = "Make sure ldconfig runs on a sync operation"
|
||||
|
||||
sp = pmpkg("dummy")
|
||||
self.addpkg2db("sync", sp)
|
||||
|
||||
self.args = "-S %s" % sp.name
|
||||
|
||||
# --debug is necessary to check PACMAN_OUTPUT
|
||||
self.args = "--debug -S %s" % sp.name
|
||||
|
||||
self.addrule("PACMAN_RETCODE=0")
|
||||
self.addrule("PACMAN_OUTPUT=ldconfig")
|
||||
10
pactest/tests/remove001.py
Normal file
10
pactest/tests/remove001.py
Normal file
@@ -0,0 +1,10 @@
|
||||
# If someone else can come up with a better name, please do so
|
||||
self.description = "Remove a package listed 5 times"
|
||||
|
||||
p = pmpkg("foo")
|
||||
self.addpkg2db("local", p)
|
||||
|
||||
self.args = "-R " + "foo "*5
|
||||
|
||||
self.addrule("PACMAN_RETCODE=0")
|
||||
self.addrule("!PKG_EXISTS=foo")
|
||||
15
pactest/tests/sync136.py
Normal file
15
pactest/tests/sync136.py
Normal file
@@ -0,0 +1,15 @@
|
||||
self.description = "Sysupgrade with a sync package forcing a downgrade"
|
||||
|
||||
sp = pmpkg("dummy", "1.0-1")
|
||||
sp.force = 1
|
||||
|
||||
self.addpkg2db("sync", sp)
|
||||
|
||||
lp = pmpkg("dummy", "1.0-2")
|
||||
|
||||
self.addpkg2db("local", lp)
|
||||
|
||||
self.args = "-Su"
|
||||
|
||||
self.addrule("PACMAN_RETCODE=0")
|
||||
self.addrule("PKG_VERSION=dummy|1.0-1")
|
||||
14
pactest/tests/sync137.py
Normal file
14
pactest/tests/sync137.py
Normal file
@@ -0,0 +1,14 @@
|
||||
self.description = "Sysupgrade with a force and ignore on same package"
|
||||
|
||||
lp = pmpkg("dummy", "1.0-1")
|
||||
|
||||
self.addpkg2db("local", lp)
|
||||
|
||||
sp = pmpkg("dummy", "1.0-2")
|
||||
sp.force = 1
|
||||
self.addpkg2db("sync", sp)
|
||||
|
||||
self.args = "-Su --ignore %s" % lp.name
|
||||
|
||||
self.addrule("PACMAN_RETCODE=0")
|
||||
self.addrule("PKG_VERSION=dummy|1.0-1")
|
||||
@@ -25,7 +25,7 @@
|
||||
# USA.
|
||||
#
|
||||
|
||||
myver='3.0.0'
|
||||
myver='3.0.3'
|
||||
startdir=$(pwd)
|
||||
|
||||
BUILDSCRIPT="PKGBUILD"
|
||||
@@ -182,8 +182,7 @@ checkdeps() {
|
||||
pmout=$(pacman $PACMAN_OPTS -T $*)
|
||||
ret=$?
|
||||
if [ $ret -eq 1 ]; then #unresolved deps
|
||||
#strip out the pacman prefix from "requires: xyz"
|
||||
echo $pmout | sed 's|requires:||g'
|
||||
echo $pmout
|
||||
elif [ $ret -ne 0 ]; then
|
||||
error "pacman returned a fatal error ($ret): $pmout"
|
||||
exit 1
|
||||
@@ -746,7 +745,11 @@ else
|
||||
if [ $ct -eq 0 ]; then
|
||||
echo -n "${integrity_name}s=("
|
||||
else
|
||||
echo -ne "\t "
|
||||
indent=0
|
||||
while [ $indent -lt $((${#integrity_name}+3)) ]; do
|
||||
echo -n " "
|
||||
indent=$(($indent+1))
|
||||
done
|
||||
fi
|
||||
echo -n "'$sum'"
|
||||
ct=$(($ct+1))
|
||||
@@ -809,6 +812,8 @@ else
|
||||
file_type=$(file -biz "$file")
|
||||
unset cmd
|
||||
case "$file_type" in
|
||||
*application/x-tar*application/x-compress*)
|
||||
cmd="tar -xzf $file" ;;
|
||||
*application/x-tar*)
|
||||
cmd="tar -xf $file" ;;
|
||||
*application/x-zip*)
|
||||
@@ -817,7 +822,7 @@ else
|
||||
*application/x-cpio*)
|
||||
cmd="bsdtar -x -f $file" ;;
|
||||
*application/x-gzip*)
|
||||
cmd="gunzip -f $file" ;;
|
||||
cmd="gunzip -d -f $file" ;;
|
||||
*application/x-bzip*)
|
||||
cmd="bunzip2 -f $file" ;;
|
||||
esac
|
||||
@@ -857,9 +862,10 @@ else
|
||||
# use distcc if it is requested (check buildenv and PKGBUILD opts)
|
||||
if [ "$(check_buildenv distcc)" = "y" -a "$(check_option distcc)" != "n" ]; then
|
||||
[ -d /usr/lib/distcc/bin ] && export PATH=/usr/lib/distcc/bin:$PATH
|
||||
export DISTCC_HOSTS
|
||||
elif [ "$(check_option distcc)" = "n" ]; then
|
||||
# if it is not wanted, clear the makeflags too
|
||||
export MAKEFLAGS=""
|
||||
MAKEFLAGS=""
|
||||
fi
|
||||
|
||||
# use ccache if it is requested (check buildenv and PKGBUILD opts)
|
||||
@@ -869,16 +875,19 @@ else
|
||||
|
||||
# clear user-specified makeflags if requested
|
||||
if [ "$(check_option makeflags)" = "n" ]; then
|
||||
export MAKEFLAGS=""
|
||||
MAKEFLAGS=""
|
||||
fi
|
||||
|
||||
# build
|
||||
msg "Starting build()..."
|
||||
|
||||
# some applications (eg, blackbox) will not build with some languages
|
||||
unset LC_ALL LANG
|
||||
unset LC_ALL LC_MESSAGES LANG
|
||||
umask 0022
|
||||
|
||||
# ensure all necessary build variables are exported
|
||||
export CFLAGS CXXFLAGS MAKEFLAGS
|
||||
|
||||
#check for "exit on syntax error" shell option
|
||||
echo $SHELLOPTS | grep errexit 2>&1 >/dev/null
|
||||
set_e=$?
|
||||
|
||||
@@ -55,7 +55,8 @@ def timeCmd(cmd):
|
||||
|
||||
def talkToServer(serverUrl):
|
||||
opener = urllib2.build_opener()
|
||||
tmp = opener.open(serverUrl).read()
|
||||
# retrieve first 50,000 bytes only
|
||||
tmp = opener.open(serverUrl).read(50000)
|
||||
|
||||
def getFuncToTime(serverUrl):
|
||||
return lambda : talkToServer(serverUrl)
|
||||
@@ -139,8 +140,23 @@ if __name__ == "__main__":
|
||||
elif options.times:
|
||||
print ' * ',
|
||||
sys.stdout.flush()
|
||||
|
||||
# add *.db.tar.gz to server name. the repo name is parsed
|
||||
# from the mirror url; it is the third (or fourth) dir
|
||||
# from the end, where the url is http://foo/bar/REPO/os/arch
|
||||
try:
|
||||
serverToTime[serverUrl] = timeCmd(getFuncToTime(serverUrl))
|
||||
splitted2 = serverUrl.split('/')
|
||||
if serverUrl[-1] != '/':
|
||||
repoName = splitted2[-3]
|
||||
dbFileName = '/' + repoName + '.db.tar.gz'
|
||||
else:
|
||||
repoName = splitted2[-4]
|
||||
dbFileName = repoName + '.db.tar.gz'
|
||||
except:
|
||||
dbFileName = ''
|
||||
|
||||
try:
|
||||
serverToTime[serverUrl] = timeCmd(getFuncToTime(serverUrl + dbFileName))
|
||||
if options.verbose:
|
||||
try:
|
||||
print "%.2f" % serverToTime[serverUrl]
|
||||
|
||||
@@ -19,7 +19,7 @@
|
||||
# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307,
|
||||
# USA.
|
||||
|
||||
myver='3.0.0'
|
||||
myver='3.0.3'
|
||||
|
||||
FORCE=0
|
||||
REPO_DB_FILE=""
|
||||
@@ -117,7 +117,7 @@ db_write_entry()
|
||||
license=*) _licenses="$_licenses $license" ;;
|
||||
replaces=*) _replaces="$_replaces $replaces" ;;
|
||||
provides=*) _provides="$_provides $provides" ;;
|
||||
conflicts=*) _conflicts="$_conflicts $conflicts" ;;
|
||||
conflict=*) _conflicts="$_conflicts $conflict" ;;
|
||||
esac
|
||||
done
|
||||
|
||||
@@ -148,7 +148,7 @@ db_write_entry()
|
||||
|
||||
# create desc entry
|
||||
echo ":: creating 'desc' db entry"
|
||||
echo -e "%FILENAME%\n$(basename $1)\n" >> desc
|
||||
echo -e "%FILENAME%\n$(basename $1)\n" >>desc
|
||||
echo -e "%NAME%\n$pkgname\n" >>desc
|
||||
echo -e "%VERSION%\n$pkgver\n" >>desc
|
||||
if [ -n "$pkgdesc" ]; then
|
||||
@@ -157,7 +157,7 @@ db_write_entry()
|
||||
if [ -n "$_groups" ]; then
|
||||
echo "%GROUPS%" >>desc
|
||||
echo $_groups | tr -s ' ' '\n' >>desc
|
||||
echo "" >desc
|
||||
echo "" >>desc
|
||||
fi
|
||||
[ -n $csize ] && echo -e "%CSIZE%\n$csize\n" >>desc
|
||||
[ -n $size ] && echo -e "%ISIZE%\n$size\n" >>desc
|
||||
@@ -246,7 +246,7 @@ if [ $# -gt 1 ]; then
|
||||
fi
|
||||
else
|
||||
if [ -f "$arg" ]; then
|
||||
if ! tar xf "$arg" .PKGINFO 2>&1 >/dev/null; then
|
||||
if ! tar tf "$arg" .PKGINFO 2>&1 >/dev/null; then
|
||||
echo "error: '$arg' is not a package file, skipping"
|
||||
else
|
||||
echo ":: adding package '$arg'"
|
||||
|
||||
@@ -81,7 +81,7 @@ int pacman_deptest(alpm_list_t *targets)
|
||||
}
|
||||
|
||||
if(!found) {
|
||||
MSG(NL, _("requires: %s"), saved_target);
|
||||
MSG(NL, "%s", saved_target);
|
||||
retval = 1;
|
||||
}
|
||||
free(saved_target);
|
||||
|
||||
@@ -1,8 +1,10 @@
|
||||
# Set of available languages.
|
||||
de
|
||||
en_GB
|
||||
es
|
||||
fr
|
||||
hu
|
||||
it
|
||||
pl_PL
|
||||
pt_BR
|
||||
en_GB
|
||||
ru_RU
|
||||
|
||||
@@ -9,8 +9,8 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: de\n"
|
||||
"Report-Msgid-Bugs-To: pacman-dev@archlinux.org\n"
|
||||
"POT-Creation-Date: 2007-03-23 20:46-0500\n"
|
||||
"PO-Revision-Date: 2007-03-23 18:08+0100\n"
|
||||
"POT-Creation-Date: 2007-04-28 04:02-0400\n"
|
||||
"PO-Revision-Date: 2007-05-09 17:38+0200\n"
|
||||
"Last-Translator: Pierre Schmitz <pierre@archlinux.de>\n"
|
||||
"Language-Team: German <archlinux.de>\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
@@ -42,12 +42,12 @@ msgstr "Konnte Paket '%s' nicht hinzufügen (%s)"
|
||||
#: src/pacman/trans.c:80 src/pacman/trans.c:91 src/pacman/trans.c:105
|
||||
#: src/pacman/trans.c:119 src/pacman/trans.c:131 src/pacman/trans.c:142
|
||||
msgid "done.\n"
|
||||
msgstr "fertig.\n"
|
||||
msgstr "Fertig.\n"
|
||||
|
||||
#: src/pacman/add.c:95 src/pacman/remove.c:101 src/pacman/sync.c:616
|
||||
#, c-format
|
||||
msgid "failed to prepare transaction (%s)\n"
|
||||
msgstr "Konnte Aktion nicht vorbereiten (%s)\n"
|
||||
msgstr "Konnte Vorgang nicht vorbereiten (%s)\n"
|
||||
|
||||
#: src/pacman/add.c:104
|
||||
#, c-format
|
||||
@@ -93,11 +93,6 @@ msgstr "Konnte den Vorgang (%s) nicht durchführen\n"
|
||||
msgid "failed to release transaction (%s)\n"
|
||||
msgstr "Konnte den Vorgang (%s) nicht freigeben\n"
|
||||
|
||||
#: src/pacman/deptest.c:84
|
||||
#, c-format
|
||||
msgid "requires: %s"
|
||||
msgstr "Erfordert: %s"
|
||||
|
||||
#: src/pacman/log.c:63
|
||||
#, c-format
|
||||
msgid "debug"
|
||||
@@ -293,7 +288,7 @@ msgstr "FEHLEND\t\t%s\n"
|
||||
#: src/pacman/package.c:206
|
||||
#, c-format
|
||||
msgid "(none)\n"
|
||||
msgstr "(nichts)\n"
|
||||
msgstr "(Nichts)\n"
|
||||
|
||||
#: src/pacman/package.c:246
|
||||
#, c-format
|
||||
@@ -352,7 +347,7 @@ msgstr ""
|
||||
#: src/pacman/pacman.c:101
|
||||
#, c-format
|
||||
msgid "usage: %s {-A --add} [options] <file>\n"
|
||||
msgstr "Benutzung: %s {-A -add} [Optionen] <Datei>\n"
|
||||
msgstr "Verwendung: %s {-A -add} [Optionen] <Datei>\n"
|
||||
|
||||
#: src/pacman/pacman.c:102 src/pacman/pacman.c:107 src/pacman/pacman.c:119
|
||||
#: src/pacman/pacman.c:124 src/pacman/pacman.c:138
|
||||
@@ -375,7 +370,7 @@ msgstr ""
|
||||
#: src/pacman/pacman.c:106
|
||||
#, c-format
|
||||
msgid "usage: %s {-R --remove} [options] <package>\n"
|
||||
msgstr "Benutzung: %s {-R --remove} [Optionen] <Paket>\n"
|
||||
msgstr "Verwendung: %s {-R --remove} [Optionen] <Paket>\n"
|
||||
|
||||
#: src/pacman/pacman.c:108
|
||||
#, c-format
|
||||
@@ -388,7 +383,9 @@ msgstr ""
|
||||
#, c-format
|
||||
msgid ""
|
||||
" -k, --dbonly only remove database entry, do not remove files\n"
|
||||
msgstr " -k, --dbonly Nur Datenbankeintrag entfernen, keine Dateien\n"
|
||||
msgstr ""
|
||||
" -k, --dbonly Nur Datenbankeintrag entfernen, keine Dateien "
|
||||
"entfernen\n"
|
||||
|
||||
#: src/pacman/pacman.c:111
|
||||
#, c-format
|
||||
@@ -406,17 +403,17 @@ msgstr ""
|
||||
#: src/pacman/pacman.c:115
|
||||
#, c-format
|
||||
msgid "usage: %s {-F --freshen} [options] <file>\n"
|
||||
msgstr "Benutzung: %s {-F --freshen} [Optionen] <Datei>\n"
|
||||
msgstr "Verwendung: %s {-F --freshen} [Optionen] <Datei>\n"
|
||||
|
||||
#: src/pacman/pacman.c:117
|
||||
#, c-format
|
||||
msgid "usage: %s {-U --upgrade} [options] <file>\n"
|
||||
msgstr "Benutzung: %s {-U --upgrade} [Optionen] <Datei>\n"
|
||||
msgstr "Verwendung: %s {-U --upgrade} [Optionen] <Datei>\n"
|
||||
|
||||
#: src/pacman/pacman.c:123
|
||||
#, c-format
|
||||
msgid "usage: %s {-Q --query} [options] [package]\n"
|
||||
msgstr "Benutzung: %s {-Q --query} [Optionen] [Pakete]\n"
|
||||
msgstr "Verwendung: %s {-Q --query} [Optionen] [Pakete]\n"
|
||||
|
||||
#: src/pacman/pacman.c:125
|
||||
#, c-format
|
||||
@@ -440,12 +437,12 @@ msgstr " wurden, aber nicht mehr benötigt werden\n"
|
||||
#: src/pacman/pacman.c:128 src/pacman/pacman.c:143
|
||||
#, c-format
|
||||
msgid " -g, --groups view all members of a package group\n"
|
||||
msgstr " -g, --groups Zeige alle Mitglieder einer Paket-Gruppe an\n"
|
||||
msgstr " -g, --groups Zeigt alle Mitglieder einer Paket-Gruppe an\n"
|
||||
|
||||
#: src/pacman/pacman.c:129 src/pacman/pacman.c:144
|
||||
#, c-format
|
||||
msgid " -i, --info view package information\n"
|
||||
msgstr " -i, --info Zeige Paketinformationen an\n"
|
||||
msgstr " -i, --info Zeigt Paketinformationen an\n"
|
||||
|
||||
#: src/pacman/pacman.c:130
|
||||
#, c-format
|
||||
@@ -457,7 +454,7 @@ msgstr " -l, --list Zeigt den Inhalt des abgefragten Paketes an\n"
|
||||
msgid ""
|
||||
" -m, --foreign list installed packages not found in sync db(s)\n"
|
||||
msgstr ""
|
||||
" -m, --foreign Zeigt alle Pakete an, die nicht in den Sync db(s)\n"
|
||||
" -m, --foreign Zeigt alle Pakete an, die nicht in den Sync-db(s)\n"
|
||||
" gefunden wurden\n"
|
||||
|
||||
#: src/pacman/pacman.c:132
|
||||
@@ -478,12 +475,12 @@ msgid ""
|
||||
" -s, --search <regex> search locally-installed packages for matching "
|
||||
"strings\n"
|
||||
msgstr ""
|
||||
" -s, --search <regex> Durchsuche lokal installierte Pakete nach einem Wort\n"
|
||||
" -s, --search <regex> Durchsucht lokal installierte Pakete nach einem Wort\n"
|
||||
|
||||
#: src/pacman/pacman.c:135
|
||||
#, c-format
|
||||
msgid " -u, --upgrades list all packages that can be upgraded\n"
|
||||
msgstr " -u, --upgrades Zeige alle aktualisierbaren Pakete an\n"
|
||||
msgstr " -u, --upgrades Zeigt alle aktualisierbaren Pakete an\n"
|
||||
|
||||
#: src/pacman/pacman.c:137
|
||||
#, c-format
|
||||
@@ -507,7 +504,8 @@ msgstr " -e, --dependsonly Nur Abhängigkeiten installieren\n"
|
||||
#: src/pacman/pacman.c:145
|
||||
#, c-format
|
||||
msgid " -l, --list <repo> view a list of packages in a repo\n"
|
||||
msgstr " -l, --list <repo> Liste aller Pakete eines Repositoriums\n"
|
||||
msgstr ""
|
||||
" -l, --list <repo> Zeigt eine Liste aller Pakete eines Repositoriums an\n"
|
||||
|
||||
#: src/pacman/pacman.c:146
|
||||
#, c-format
|
||||
@@ -523,12 +521,12 @@ msgstr ""
|
||||
msgid ""
|
||||
" -s, --search <regex> search remote repositories for matching strings\n"
|
||||
msgstr ""
|
||||
" -s, --search <regex> Durchsuche entfernte Repositorien nach einem Wort\n"
|
||||
" -s, --search <regex> Durchsucht entfernte Repositorien nach einem Wort\n"
|
||||
|
||||
#: src/pacman/pacman.c:148
|
||||
#, c-format
|
||||
msgid " -u, --sysupgrade upgrade all packages that are out of date\n"
|
||||
msgstr " -u, --sysupgrade Alle veralteten Pakete aktualisieren\n"
|
||||
msgstr " -u, --sysupgrade Aktualisiert alle veralteten Pakete\n"
|
||||
|
||||
#: src/pacman/pacman.c:149
|
||||
#, c-format
|
||||
@@ -536,14 +534,15 @@ msgid ""
|
||||
" -w, --downloadonly download packages but do not install/upgrade "
|
||||
"anything\n"
|
||||
msgstr ""
|
||||
" -w, --downloadonly Lade Pakete herunter, aber nichts installieren oder\n"
|
||||
" -w, --downloadonly Lädt Pakete herunter, ohne etwas zu installieren "
|
||||
"oder\n"
|
||||
" aktualisieren\n"
|
||||
|
||||
#: src/pacman/pacman.c:150
|
||||
#, c-format
|
||||
msgid ""
|
||||
" -y, --refresh download fresh package databases from the server\n"
|
||||
msgstr " -y, --refresh Lade frische Paketdatenbank vom Server\n"
|
||||
msgstr " -y, --refresh Lädt frische Paketdatenbank vom Server\n"
|
||||
|
||||
#: src/pacman/pacman.c:151
|
||||
#, c-format
|
||||
@@ -551,7 +550,7 @@ msgid ""
|
||||
" --ignore <pkg> ignore a package upgrade (can be used more than "
|
||||
"once)\n"
|
||||
msgstr ""
|
||||
" --ignore <pkg> Ignoriere ein neues Paket (kann mehrfach genutzt\n"
|
||||
" --ignore <pkg> Ignoriert ein neues Paket (kann mehrfach genutzt\n"
|
||||
" werden)\n"
|
||||
|
||||
#: src/pacman/pacman.c:153
|
||||
@@ -595,7 +594,7 @@ msgstr " -v, --verbose Sei gesprächig\n"
|
||||
#, c-format
|
||||
msgid " -r, --root <path> set an alternate installation root\n"
|
||||
msgstr ""
|
||||
" -r, --root <Pfad> Benutze ein alternatives Wurzelverzeichnis zur\n"
|
||||
" -r, --root <Pfad> Setzt ein alternatives Wurzelverzeichnis zur\n"
|
||||
" Installation\n"
|
||||
|
||||
#: src/pacman/pacman.c:160
|
||||
@@ -616,7 +615,7 @@ msgstr " Dieses Programm ist frei verfügbar unter\n"
|
||||
#: src/pacman/pacman.c:175
|
||||
#, c-format
|
||||
msgid " the terms of the GNU General Public License\n"
|
||||
msgstr " der GNU General Public License\n"
|
||||
msgstr " den Bedingungen der GNU General Public License\n"
|
||||
|
||||
#: src/pacman/pacman.c:300
|
||||
#, c-format
|
||||
@@ -631,7 +630,7 @@ msgstr "'%s' ist kein gültiges Paketpuffer-Verzeichnis\n"
|
||||
#: src/pacman/pacman.c:333
|
||||
#, c-format
|
||||
msgid "'%s' is not a valid db path\n"
|
||||
msgstr "'%s' ist kein gültiger Db-Pfad\n"
|
||||
msgstr "'%s' ist kein gültiger db-Pfad\n"
|
||||
|
||||
#: src/pacman/pacman.c:363
|
||||
#, c-format
|
||||
@@ -660,7 +659,7 @@ msgstr "Sie benötigen root-Rechte, um diese Operation ausführen zu können\n"
|
||||
#: src/pacman/pacman.c:505
|
||||
#, c-format
|
||||
msgid "failed to parse config (%s)\n"
|
||||
msgstr "Konnte Konfiguration nicht lesen (%s)\n"
|
||||
msgstr "Konnte Konfiguration (%s) nicht lesen\n"
|
||||
|
||||
#: src/pacman/pacman.c:516
|
||||
msgid "Targets :"
|
||||
@@ -669,7 +668,7 @@ msgstr "Pakete :"
|
||||
#: src/pacman/pacman.c:522
|
||||
#, c-format
|
||||
msgid "could not register 'local' database (%s)\n"
|
||||
msgstr "Kein auf die lokale Datenbank (%s)\n"
|
||||
msgstr "Kein Zugriff auf die lokale Datenbank (%s)\n"
|
||||
|
||||
#: src/pacman/pacman.c:529
|
||||
msgid "no targets specified (use -h for help)\n"
|
||||
@@ -690,12 +689,12 @@ msgstr "Fehler beim Lesen der Datei '%s': %s"
|
||||
|
||||
#: src/pacman/query.c:100
|
||||
msgid "cannot determine ownership of a directory"
|
||||
msgstr "konnte den Besitzer eines Verzeichnisses nicht ermitteln"
|
||||
msgstr "Konnte den Besitzer eines Verzeichnisses nicht ermitteln"
|
||||
|
||||
#: src/pacman/query.c:105
|
||||
#, c-format
|
||||
msgid "cannot determine real path for '%s': %s"
|
||||
msgstr "konnte den wahren Pfad für '%s' nicht ermitteln: %s"
|
||||
msgstr "Konnte den wahren Pfad für '%s' nicht ermitteln: %s"
|
||||
|
||||
#: src/pacman/query.c:119
|
||||
#, c-format
|
||||
@@ -745,7 +744,7 @@ msgstr ":: Gruppe %s:\n"
|
||||
|
||||
#: src/pacman/remove.c:63
|
||||
msgid " Remove whole content? [Y/n] "
|
||||
msgstr " Den gesamten Inhalt entfernen? [J/n] "
|
||||
msgstr " Gesamten Inhalt entfernen? [J/n] "
|
||||
|
||||
#: src/pacman/remove.c:67
|
||||
#, c-format
|
||||
@@ -781,31 +780,31 @@ msgstr ""
|
||||
|
||||
#: src/pacman/sync.c:115
|
||||
msgid "Do you want to remove old packages from cache? [Y/n] "
|
||||
msgstr "Möchten Sie alte Pakete aus dem Cache entfernen? [J/n] "
|
||||
msgstr "Möchten Sie alte Pakete aus dem Puffer entfernen? [J/n] "
|
||||
|
||||
#: src/pacman/sync.c:117
|
||||
msgid "removing old packages from cache... "
|
||||
msgstr "Entferne alte Pakete aus dem Cache... "
|
||||
msgstr "Entferne alte Pakete aus dem Puffer... "
|
||||
|
||||
#: src/pacman/sync.c:120
|
||||
msgid "could not access cache directory\n"
|
||||
msgstr "Konnte nicht auf Cache-Verzeichnis zugreifen\n"
|
||||
msgstr "Konnte nicht auf Puffer-Verzeichnis zugreifen\n"
|
||||
|
||||
#: src/pacman/sync.c:181
|
||||
msgid "Do you want to remove all packages from cache? [Y/n] "
|
||||
msgstr "Wollen Sie alle Pakete aus dem Cache entfernen? [J/n] "
|
||||
msgstr "Wollen Sie alle Pakete aus dem Puffer entfernen? [J/n] "
|
||||
|
||||
#: src/pacman/sync.c:183
|
||||
msgid "removing all packages from cache... "
|
||||
msgstr "Entferne alle Pakete aus dem Cache... "
|
||||
msgstr "Entferne alle Pakete aus dem Puffer... "
|
||||
|
||||
#: src/pacman/sync.c:186
|
||||
msgid "could not remove cache directory\n"
|
||||
msgstr "Konnte Cache-Verzeichnis nicht entfernen\n"
|
||||
msgstr "Konnte Puffer-Verzeichnis nicht entfernen\n"
|
||||
|
||||
#: src/pacman/sync.c:191
|
||||
msgid "could not create new cache directory\n"
|
||||
msgstr "Konnte neues Cache-Verzeichnis nicht erstellen\n"
|
||||
msgstr "Konnte neues Puffer-Verzeichnis nicht erstellen\n"
|
||||
|
||||
#: src/pacman/sync.c:218
|
||||
#, c-format
|
||||
@@ -887,11 +886,6 @@ msgstr ":: Zuerst pacman aktualisieren? [J/n] "
|
||||
msgid "pacman: %s\n"
|
||||
msgstr "pacman: %s\n"
|
||||
|
||||
#: src/pacman/sync.c:557
|
||||
#, c-format
|
||||
msgid "'%s': %s\n"
|
||||
msgstr "'%s':%s\n"
|
||||
|
||||
#: src/pacman/sync.c:572
|
||||
msgid ":: Install whole content? [Y/n] "
|
||||
msgstr ":: Gesamten Inhalt installieren? [J/n] "
|
||||
@@ -908,11 +902,11 @@ msgstr "'%s': nicht in Synchronisations-Datenbank gefunden\n"
|
||||
|
||||
#: src/pacman/sync.c:621
|
||||
msgid "requires"
|
||||
msgstr "benötigt"
|
||||
msgstr "Benötigt"
|
||||
|
||||
#: src/pacman/sync.c:663
|
||||
msgid " local database is up to date\n"
|
||||
msgstr " lokale Datenbank ist aktuell\n"
|
||||
msgstr " Lokale Datenbank ist aktuell\n"
|
||||
|
||||
#: src/pacman/sync.c:672
|
||||
msgid ""
|
||||
@@ -1019,7 +1013,7 @@ msgstr ":: %s ist als ein HoldPkg gekennzeichnet. Trotzdem entfernen? [J/n] "
|
||||
#: src/pacman/trans.c:203
|
||||
#, c-format
|
||||
msgid ":: Replace %s with %s/%s? [Y/n] "
|
||||
msgstr ":: %s mit %s/%s ersetzen? [J/n] "
|
||||
msgstr ":: %s durch %s/%s ersetzen? [J/n] "
|
||||
|
||||
#: src/pacman/trans.c:218
|
||||
#, c-format
|
||||
@@ -1051,7 +1045,7 @@ msgstr "Aktualisiere"
|
||||
|
||||
#: src/pacman/trans.c:332
|
||||
msgid "removing"
|
||||
msgstr "entferne"
|
||||
msgstr "Entferne"
|
||||
|
||||
#: src/pacman/trans.c:335
|
||||
msgid "checking for file conflicts"
|
||||
@@ -1082,7 +1076,7 @@ msgid ""
|
||||
"Total Package Size: %.2f MB\n"
|
||||
msgstr ""
|
||||
"\n"
|
||||
"Gesamte Paketgröße : %.2f MB\n"
|
||||
"Gesamte Paketgröße: %.2f MB\n"
|
||||
|
||||
#: src/pacman/util.c:337
|
||||
#, c-format
|
||||
|
||||
@@ -7,7 +7,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Pacman package manager 3.0.0\n"
|
||||
"Report-Msgid-Bugs-To: pacman-dev@archlinux.org\n"
|
||||
"POT-Creation-Date: 2007-03-23 20:46-0500\n"
|
||||
"POT-Creation-Date: 2007-04-28 04:02-0400\n"
|
||||
"PO-Revision-Date: 2007-03-07 21:16+1100\n"
|
||||
"Last-Translator: Jeff Bailes <thepizzaking@gmail.com>\n"
|
||||
"Language-Team: English <en_gb@li.org>\n"
|
||||
@@ -90,11 +90,6 @@ msgstr "failed to commit transaction (%s)\n"
|
||||
msgid "failed to release transaction (%s)\n"
|
||||
msgstr "failed to release transaction (%s)\n"
|
||||
|
||||
#: src/pacman/deptest.c:84
|
||||
#, c-format
|
||||
msgid "requires: %s"
|
||||
msgstr "requires: %s"
|
||||
|
||||
#: src/pacman/log.c:63
|
||||
#, c-format
|
||||
msgid "debug"
|
||||
@@ -879,11 +874,6 @@ msgstr ":: Upgrade pacman first? [Y/n] "
|
||||
msgid "pacman: %s\n"
|
||||
msgstr "pacman: %s\n"
|
||||
|
||||
#: src/pacman/sync.c:557
|
||||
#, c-format
|
||||
msgid "'%s': %s\n"
|
||||
msgstr "'%s': %s\n"
|
||||
|
||||
#: src/pacman/sync.c:572
|
||||
msgid ":: Install whole content? [Y/n] "
|
||||
msgstr ":: Install whole content? [Y/n] "
|
||||
@@ -1081,6 +1071,12 @@ msgstr ""
|
||||
msgid "Total Installed Size: %.2f MB\n"
|
||||
msgstr "Total Installed Size: %.2f MB\n"
|
||||
|
||||
#~ msgid "requires: %s"
|
||||
#~ msgstr "requires: %s"
|
||||
|
||||
#~ msgid "'%s': %s\n"
|
||||
#~ msgstr "'%s': %s\n"
|
||||
|
||||
#~ msgid "Installed Size : %ld K\n"
|
||||
#~ msgstr "Installed Size : %ld K\n"
|
||||
|
||||
|
||||
1124
src/pacman/po/es.po
Normal file
1124
src/pacman/po/es.po
Normal file
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
@@ -7,7 +7,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: hu\n"
|
||||
"Report-Msgid-Bugs-To: pacman-dev@archlinux.org\n"
|
||||
"POT-Creation-Date: 2007-03-23 20:46-0500\n"
|
||||
"POT-Creation-Date: 2007-04-28 04:02-0400\n"
|
||||
"PO-Revision-Date: 2006-09-03 13:52+0200\n"
|
||||
"Last-Translator: Nagy Gabor <ngaba@petra.hos.u-szeged.hu>\n"
|
||||
"Language-Team: Hungarian <translation-team-hu@lists.sourceforge.net>\n"
|
||||
@@ -90,11 +90,6 @@ msgstr "nem siker
|
||||
msgid "failed to release transaction (%s)\n"
|
||||
msgstr "nem siker<65>lt lez<65>rni a tranzakci<63>t (%s)\n"
|
||||
|
||||
#: src/pacman/deptest.c:84
|
||||
#, c-format
|
||||
msgid "requires: %s"
|
||||
msgstr "ig<69>nyli a k<>vetkez<65>t: %s"
|
||||
|
||||
#: src/pacman/log.c:63
|
||||
#, c-format
|
||||
msgid "debug"
|
||||
@@ -129,7 +124,7 @@ msgstr "hiba: "
|
||||
|
||||
#: src/pacman/log.h:34
|
||||
msgid "warning: "
|
||||
msgstr "figyelmeztet<65>s"
|
||||
msgstr "figyelmeztet<65>s: "
|
||||
|
||||
#: src/pacman/package.c:60
|
||||
msgid "Explicitly installed"
|
||||
@@ -270,7 +265,7 @@ msgstr "Backup f
|
||||
#: src/pacman/package.c:180
|
||||
#, c-format
|
||||
msgid "error calculating checksums for %s\n"
|
||||
msgstr "hiba a %s ellen<65>rz<72> <20>sszeg<65>nek sz<73>m<EFBFBD>t<EFBFBD>sa k<>zben\n"
|
||||
msgstr "hiba a(z) %s ellen<65>rz<72> <20>sszeg<65>nek sz<73>m<EFBFBD>t<EFBFBD>sa k<>zben\n"
|
||||
|
||||
#: src/pacman/package.c:193
|
||||
#, c-format
|
||||
@@ -615,7 +610,7 @@ msgstr " foglaltak alapj
|
||||
#: src/pacman/pacman.c:300
|
||||
#, c-format
|
||||
msgid "'%s' is not a valid debug level"
|
||||
msgstr "a '%s' nem <20>rv<72>nyes hibakeres<65>si szint"
|
||||
msgstr "a(z) '%s' nem <20>rv<72>nyes hibakeres<65>si szint"
|
||||
|
||||
#: src/pacman/pacman.c:315
|
||||
#, c-format
|
||||
@@ -687,7 +682,7 @@ msgstr "nem siker
|
||||
#: src/pacman/query.c:105
|
||||
#, c-format
|
||||
msgid "cannot determine real path for '%s': %s"
|
||||
msgstr "nem <20>llap<61>that<61> meg a val<61>di <20>tvonal a '%s' sz<73>m<EFBFBD>ra: %s"
|
||||
msgstr "nem <20>llap<61>that<61> meg a val<61>di <20>tvonal a(z) '%s' sz<73>m<EFBFBD>ra: %s"
|
||||
|
||||
#: src/pacman/query.c:119
|
||||
#, c-format
|
||||
@@ -714,7 +709,7 @@ msgstr "nem tal
|
||||
#: src/pacman/query.c:221
|
||||
#, c-format
|
||||
msgid "group \"%s\" was not found\n"
|
||||
msgstr "a \"%s\" csoport nem tal<61>lhat<61>\n"
|
||||
msgstr "a(z) \"%s\" csoport nem tal<61>lhat<61>\n"
|
||||
|
||||
#: src/pacman/query.c:232
|
||||
msgid "no package file was specified for --file\n"
|
||||
@@ -752,7 +747,7 @@ msgstr "nem siker
|
||||
#: src/pacman/remove.c:92
|
||||
#, c-format
|
||||
msgid "failed to add target '%s' (%s)\n"
|
||||
msgstr "nem siker<65>lt a '%s' c<>lt hozz<7A>adni a tranzakci<63>hoz (%s)\n"
|
||||
msgstr "nem siker<65>lt a(z) '%s' c<>lt hozz<7A>adni a tranzakci<63>hoz (%s)\n"
|
||||
|
||||
#: src/pacman/remove.c:106
|
||||
#, c-format
|
||||
@@ -812,7 +807,7 @@ msgstr "nem siker
|
||||
#: src/pacman/sync.c:223
|
||||
#, c-format
|
||||
msgid " %s is up to date\n"
|
||||
msgstr " a %s naprak<61>sz\n"
|
||||
msgstr " a(z) %s naprak<61>sz\n"
|
||||
|
||||
#: src/pacman/sync.c:345
|
||||
#, c-format
|
||||
@@ -879,11 +874,6 @@ msgstr ":: El
|
||||
msgid "pacman: %s\n"
|
||||
msgstr "pacman: %s\n"
|
||||
|
||||
#: src/pacman/sync.c:557
|
||||
#, c-format
|
||||
msgid "'%s': %s\n"
|
||||
msgstr "'%s': %s\n"
|
||||
|
||||
#: src/pacman/sync.c:572
|
||||
msgid ":: Install whole content? [Y/n] "
|
||||
msgstr ":: A teljes tartalom telep<65>t<EFBFBD>se? [I/n] "
|
||||
@@ -1080,3 +1070,9 @@ msgstr ""
|
||||
#, c-format
|
||||
msgid "Total Installed Size: %.2f MB\n"
|
||||
msgstr "Teljes telep<65>tett m<>ret: %.2f MB\n"
|
||||
|
||||
#~ msgid "requires: %s"
|
||||
#~ msgstr "ig<69>nyli a k<>vetkez<65>t: %s"
|
||||
|
||||
#~ msgid "'%s': %s\n"
|
||||
#~ msgstr "'%s': %s\n"
|
||||
|
||||
@@ -9,8 +9,8 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Pacman package manager 3.0.0\n"
|
||||
"Report-Msgid-Bugs-To: pacman-dev@archlinux.org\n"
|
||||
"POT-Creation-Date: 2007-03-23 20:46-0500\n"
|
||||
"PO-Revision-Date: 2007-03-22 12:40+0100\n"
|
||||
"POT-Creation-Date: 2007-04-28 04:02-0400\n"
|
||||
"PO-Revision-Date: 2007-03-31 04:00+0100\n"
|
||||
"Last-Translator: Giovanni Scafora <linuxmania@gmail.com>\n"
|
||||
"Language-Team: Arch Linux Italian Team <linuxmania@gmail.com>\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
@@ -92,11 +92,6 @@ msgstr "impossibile eseguire l'operazione richiesta (%s)\n"
|
||||
msgid "failed to release transaction (%s)\n"
|
||||
msgstr "impossibile annullare l'operazione richiesta (%s)\n"
|
||||
|
||||
#: src/pacman/deptest.c:84
|
||||
#, c-format
|
||||
msgid "requires: %s"
|
||||
msgstr "richiede: %s"
|
||||
|
||||
#: src/pacman/log.c:63
|
||||
#, c-format
|
||||
msgid "debug"
|
||||
@@ -434,7 +429,7 @@ msgstr ""
|
||||
#: src/pacman/pacman.c:127
|
||||
#, c-format
|
||||
msgid " required by any package\n"
|
||||
msgstr " più richiesti da nessun pacchetto\n"
|
||||
msgstr " ma non più richiesti da alcun pacchetto\n"
|
||||
|
||||
#: src/pacman/pacman.c:128 src/pacman/pacman.c:143
|
||||
#, c-format
|
||||
@@ -887,11 +882,6 @@ msgstr ":: Aggiornare pacman adesso? [Y/n] "
|
||||
msgid "pacman: %s\n"
|
||||
msgstr "pacman: %s\n"
|
||||
|
||||
#: src/pacman/sync.c:557
|
||||
#, c-format
|
||||
msgid "'%s': %s\n"
|
||||
msgstr "'%s': %s\n"
|
||||
|
||||
#: src/pacman/sync.c:572
|
||||
msgid ":: Install whole content? [Y/n] "
|
||||
msgstr ":: Installare l'intero contenuto? [Y/n] "
|
||||
@@ -1091,6 +1081,12 @@ msgstr ""
|
||||
msgid "Total Installed Size: %.2f MB\n"
|
||||
msgstr "Dimensione totale dei pacchetti installati: %.2f MB\n"
|
||||
|
||||
#~ msgid "requires: %s"
|
||||
#~ msgstr "richiede: %s"
|
||||
|
||||
#~ msgid "'%s': %s\n"
|
||||
#~ msgstr "'%s': %s\n"
|
||||
|
||||
#~ msgid "is required by"
|
||||
#~ msgstr "è richiesto da"
|
||||
|
||||
|
||||
@@ -8,7 +8,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: PACKAGE VERSION\n"
|
||||
"Report-Msgid-Bugs-To: pacman-dev@archlinux.org\n"
|
||||
"POT-Creation-Date: 2007-03-23 20:46-0500\n"
|
||||
"POT-Creation-Date: 2007-04-28 04:02-0400\n"
|
||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||
@@ -86,11 +86,6 @@ msgstr ""
|
||||
msgid "failed to release transaction (%s)\n"
|
||||
msgstr ""
|
||||
|
||||
#: src/pacman/deptest.c:84
|
||||
#, c-format
|
||||
msgid "requires: %s"
|
||||
msgstr ""
|
||||
|
||||
#: src/pacman/log.c:63
|
||||
#, c-format
|
||||
msgid "debug"
|
||||
@@ -846,11 +841,6 @@ msgstr ""
|
||||
msgid "pacman: %s\n"
|
||||
msgstr ""
|
||||
|
||||
#: src/pacman/sync.c:557
|
||||
#, c-format
|
||||
msgid "'%s': %s\n"
|
||||
msgstr ""
|
||||
|
||||
#: src/pacman/sync.c:572
|
||||
msgid ":: Install whole content? [Y/n] "
|
||||
msgstr ""
|
||||
|
||||
1093
src/pacman/po/pl_PL.po
Normal file
1093
src/pacman/po/pl_PL.po
Normal file
File diff suppressed because it is too large
Load Diff
@@ -11,7 +11,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: pt_BR\n"
|
||||
"Report-Msgid-Bugs-To: pacman-dev@archlinux.org\n"
|
||||
"POT-Creation-Date: 2007-03-23 20:46-0500\n"
|
||||
"POT-Creation-Date: 2007-04-28 04:02-0400\n"
|
||||
"PO-Revision-Date: 2007-03-22 13:52-0300\n"
|
||||
"Last-Translator: Douglas Soares de Andrade <douglas@archlinux-br.org>\n"
|
||||
"Language-Team: Archlinux-br <contato@archlinux-br.org>\n"
|
||||
@@ -95,11 +95,6 @@ msgstr "falha ao terminar a transação (%s)\n"
|
||||
msgid "failed to release transaction (%s)\n"
|
||||
msgstr "falha ao liberar a transação (%s)\n"
|
||||
|
||||
#: src/pacman/deptest.c:84
|
||||
#, c-format
|
||||
msgid "requires: %s"
|
||||
msgstr "requer: %s"
|
||||
|
||||
#: src/pacman/log.c:63
|
||||
#, c-format
|
||||
msgid "debug"
|
||||
@@ -903,11 +898,6 @@ msgstr ":: Atualizar o pacman primeiro? [S/n] "
|
||||
msgid "pacman: %s\n"
|
||||
msgstr "pacman: %s\n"
|
||||
|
||||
#: src/pacman/sync.c:557
|
||||
#, c-format
|
||||
msgid "'%s': %s\n"
|
||||
msgstr "'%s': %s\n"
|
||||
|
||||
#: src/pacman/sync.c:572
|
||||
msgid ":: Install whole content? [Y/n] "
|
||||
msgstr ":: Instalar todo o conteúdo? [S/n] "
|
||||
@@ -1111,3 +1101,9 @@ msgstr ""
|
||||
#, c-format
|
||||
msgid "Total Installed Size: %.2f MB\n"
|
||||
msgstr "Tamanho total da instalação: %.2f MB\n"
|
||||
|
||||
#~ msgid "requires: %s"
|
||||
#~ msgstr "requer: %s"
|
||||
|
||||
#~ msgid "'%s': %s\n"
|
||||
#~ msgstr "'%s': %s\n"
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
# Pacman Russian Translation
|
||||
# Copyright (C) YEAR Judd Vinet <jvinet@zeroflux.org>
|
||||
# Copyright (C) 2007 Judd Vinet <jvinet@zeroflux.org>
|
||||
# This file is distributed under the same license as the Pacman package.
|
||||
# Vladimir Bayrakovskiy <4rayven@gmail.com>, 2007
|
||||
#
|
||||
@@ -7,12 +7,15 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Pacman package manager 3.0.0\n"
|
||||
"Report-Msgid-Bugs-To: pacman-dev@archlinux.org\n"
|
||||
"POT-Creation-Date: 2007-03-23 20:46-0500\n"
|
||||
"POT-Creation-Date: 2007-04-28 04:02-0400\n"
|
||||
"PO-Revision-Date: 2007-03-07 11:45-0500\n"
|
||||
"Last-Translator: Vladimir Bayrakovskiy <4rayven@gmail.com>\n"
|
||||
"Language-Team: Russian\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%"
|
||||
"10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
|
||||
|
||||
#: src/pacman/add.c:72 src/pacman/remove.c:82 src/pacman/sync.c:482
|
||||
#: src/pacman/sync.c:531
|
||||
@@ -31,7 +34,7 @@ msgstr "чтение информации о пакете... "
|
||||
#: src/pacman/add.c:83
|
||||
#, c-format
|
||||
msgid "failed to add target '%s' (%s)"
|
||||
msgstr ""
|
||||
msgstr "не удалось добавить цель '%s' (%s)"
|
||||
|
||||
#: src/pacman/add.c:88 src/pacman/sync.c:196 src/pacman/trans.c:73
|
||||
#: src/pacman/trans.c:80 src/pacman/trans.c:91 src/pacman/trans.c:105
|
||||
@@ -88,11 +91,6 @@ msgstr "не удалось завершить операцию (%s)\n"
|
||||
msgid "failed to release transaction (%s)\n"
|
||||
msgstr "не удалось продолжить операцию (%s)\n"
|
||||
|
||||
#: src/pacman/deptest.c:84
|
||||
#, c-format
|
||||
msgid "requires: %s"
|
||||
msgstr "требуется: %s"
|
||||
|
||||
#: src/pacman/log.c:63
|
||||
#, c-format
|
||||
msgid "debug"
|
||||
@@ -115,11 +113,11 @@ msgstr "функция"
|
||||
|
||||
#: src/pacman/log.c:194
|
||||
msgid "Y"
|
||||
msgstr ""
|
||||
msgstr "Y"
|
||||
|
||||
#: src/pacman/log.c:194
|
||||
msgid "YES"
|
||||
msgstr ""
|
||||
msgstr "YES"
|
||||
|
||||
#: src/pacman/log.h:30
|
||||
msgid "error: "
|
||||
@@ -131,7 +129,7 @@ msgstr "предупреждение: "
|
||||
|
||||
#: src/pacman/package.c:60
|
||||
msgid "Explicitly installed"
|
||||
msgstr "Неявно установлен"
|
||||
msgstr "Явно установлен"
|
||||
|
||||
#: src/pacman/package.c:63
|
||||
msgid "Installed as a dependency for another package"
|
||||
@@ -170,7 +168,7 @@ msgstr "Группы :"
|
||||
|
||||
#: src/pacman/package.c:78 src/pacman/package.c:130
|
||||
msgid "Provides :"
|
||||
msgstr "Обеспечивает :"
|
||||
msgstr "Предоставляет :"
|
||||
|
||||
#: src/pacman/package.c:79 src/pacman/package.c:131
|
||||
msgid "Depends On :"
|
||||
@@ -230,11 +228,11 @@ msgstr "Скрипт при установке : %s\n"
|
||||
|
||||
#: src/pacman/package.c:96
|
||||
msgid "Yes"
|
||||
msgstr ""
|
||||
msgstr "Yes"
|
||||
|
||||
#: src/pacman/package.c:96
|
||||
msgid "No"
|
||||
msgstr ""
|
||||
msgstr "No"
|
||||
|
||||
#: src/pacman/package.c:126
|
||||
#, c-format
|
||||
@@ -303,37 +301,37 @@ msgstr "использование: %s {-h --help}\n"
|
||||
#: src/pacman/pacman.c:91
|
||||
#, c-format
|
||||
msgid " %s {-V --version}\n"
|
||||
msgstr ""
|
||||
msgstr " %s {-V --version}\n"
|
||||
|
||||
#: src/pacman/pacman.c:92
|
||||
#, c-format
|
||||
msgid " %s {-A --add} [options] <file>\n"
|
||||
msgstr " %s {-A --add} [опции] <файл>\n"
|
||||
msgstr " %s {-A --add} [параметры] <файл>\n"
|
||||
|
||||
#: src/pacman/pacman.c:93
|
||||
#, c-format
|
||||
msgid " %s {-F --freshen} [options] <file>\n"
|
||||
msgstr " %s {-F --freshen} [опции] <файл>\n"
|
||||
msgstr " %s {-F --freshen} [параметры] <файл>\n"
|
||||
|
||||
#: src/pacman/pacman.c:94
|
||||
#, c-format
|
||||
msgid " %s {-Q --query} [options] [package]\n"
|
||||
msgstr " %s {-Q --query} [опции] [пакет]\n"
|
||||
msgstr " %s {-Q --query} [параметры] [пакет]\n"
|
||||
|
||||
#: src/pacman/pacman.c:95
|
||||
#, c-format
|
||||
msgid " %s {-R --remove} [options] <package>\n"
|
||||
msgstr " %s {-R --remove} [опции] <пакет>\n"
|
||||
msgstr " %s {-R --remove} [параметры] <пакет>\n"
|
||||
|
||||
#: src/pacman/pacman.c:96
|
||||
#, c-format
|
||||
msgid " %s {-S --sync} [options] [package]\n"
|
||||
msgstr " %s {-S --sync} [опции] [пакет]\n"
|
||||
msgstr " %s {-S --sync} [параметры] [пакет]\n"
|
||||
|
||||
#: src/pacman/pacman.c:97
|
||||
#, c-format
|
||||
msgid " %s {-U --upgrade} [options] <file>\n"
|
||||
msgstr " %s {-U --upgrade} [опции] <файл>\n"
|
||||
msgstr " %s {-U --upgrade} [параметры] <файл>\n"
|
||||
|
||||
#: src/pacman/pacman.c:98
|
||||
#, c-format
|
||||
@@ -348,13 +346,13 @@ msgstr ""
|
||||
#: src/pacman/pacman.c:101
|
||||
#, c-format
|
||||
msgid "usage: %s {-A --add} [options] <file>\n"
|
||||
msgstr "использование: %s {-A --add} [опции] <файл>\n"
|
||||
msgstr "использование: %s {-A --add} [параметры] <файл>\n"
|
||||
|
||||
#: src/pacman/pacman.c:102 src/pacman/pacman.c:107 src/pacman/pacman.c:119
|
||||
#: src/pacman/pacman.c:124 src/pacman/pacman.c:138
|
||||
#, c-format
|
||||
msgid "options:\n"
|
||||
msgstr "опции:\n"
|
||||
msgstr "параметры:\n"
|
||||
|
||||
#: src/pacman/pacman.c:103 src/pacman/pacman.c:109 src/pacman/pacman.c:120
|
||||
#: src/pacman/pacman.c:140
|
||||
@@ -372,7 +370,7 @@ msgstr ""
|
||||
#: src/pacman/pacman.c:106
|
||||
#, c-format
|
||||
msgid "usage: %s {-R --remove} [options] <package>\n"
|
||||
msgstr "использование: %s {-R --remove} [опции] <пакет>\n"
|
||||
msgstr "использование: %s {-R --remove} [параметры] <пакет>\n"
|
||||
|
||||
#: src/pacman/pacman.c:108
|
||||
#, c-format
|
||||
@@ -404,17 +402,17 @@ msgstr ""
|
||||
#: src/pacman/pacman.c:115
|
||||
#, c-format
|
||||
msgid "usage: %s {-F --freshen} [options] <file>\n"
|
||||
msgstr "использование: %s {-F --freshen} [опции] <файл>\n"
|
||||
msgstr "использование: %s {-F --freshen} [параметры] <файл>\n"
|
||||
|
||||
#: src/pacman/pacman.c:117
|
||||
#, c-format
|
||||
msgid "usage: %s {-U --upgrade} [options] <file>\n"
|
||||
msgstr "использование: %s {-U --upgrade} [опции] <файл>\n"
|
||||
msgstr "использование: %s {-U --upgrade} [параметры] <файл>\n"
|
||||
|
||||
#: src/pacman/pacman.c:123
|
||||
#, c-format
|
||||
msgid "usage: %s {-Q --query} [options] [package]\n"
|
||||
msgstr "использование: %s {-Q --query} [опции] [пакет]\n"
|
||||
msgstr "использование: %s {-Q --query} [параметры] [пакет]\n"
|
||||
|
||||
#: src/pacman/pacman.c:125
|
||||
#, c-format
|
||||
@@ -454,7 +452,7 @@ msgstr " -l, --list показать содержимое запра
|
||||
msgid ""
|
||||
" -m, --foreign list installed packages not found in sync db(s)\n"
|
||||
msgstr ""
|
||||
" -m, --foreign показать все пакеты не найденные в базе данных(s)\n"
|
||||
" -m, --foreign показать все пакеты не найденные в базе(ах) данных\n"
|
||||
|
||||
#: src/pacman/pacman.c:132
|
||||
#, c-format
|
||||
@@ -487,7 +485,7 @@ msgstr ""
|
||||
#: src/pacman/pacman.c:137
|
||||
#, c-format
|
||||
msgid "usage: %s {-S --sync} [options] [package]\n"
|
||||
msgstr "использование: %s {-S --sync} [опции] [пакет]\n"
|
||||
msgstr "использование: %s {-S --sync} [параметры] [пакет]\n"
|
||||
|
||||
#: src/pacman/pacman.c:139
|
||||
#, c-format
|
||||
@@ -506,8 +504,7 @@ msgstr " -e, --dependsonly установить только зависим
|
||||
#: src/pacman/pacman.c:145
|
||||
#, c-format
|
||||
msgid " -l, --list <repo> view a list of packages in a repo\n"
|
||||
msgstr ""
|
||||
" -l, --list <repo> показать список всех пакетов в репозитории repo\n"
|
||||
msgstr " -l, --list <repo> показать все пакеты данного репозитория\n"
|
||||
|
||||
#: src/pacman/pacman.c:146
|
||||
#, c-format
|
||||
@@ -537,8 +534,7 @@ msgid ""
|
||||
" -w, --downloadonly download packages but do not install/upgrade "
|
||||
"anything\n"
|
||||
msgstr ""
|
||||
" -w, --downloadonly загрузить пакеты с сервера, но ничего не "
|
||||
"устанавливать и не обновлять\n"
|
||||
" -w, --downloadonly загрузить пакеты с сервера, но не устанавливать\n"
|
||||
|
||||
#: src/pacman/pacman.c:150
|
||||
#, c-format
|
||||
@@ -553,14 +549,14 @@ msgid ""
|
||||
" --ignore <pkg> ignore a package upgrade (can be used more than "
|
||||
"once)\n"
|
||||
msgstr ""
|
||||
" --ignore <pkg> игнорировать пакет при обновлении (может быть "
|
||||
" --ignore <пакет> игнорировать пакет при обновлении (может быть "
|
||||
"использовано неоднократно)\n"
|
||||
|
||||
#: src/pacman/pacman.c:153
|
||||
#, c-format
|
||||
msgid " --config <path> set an alternate configuration file\n"
|
||||
msgstr ""
|
||||
" --config <path> использовать альтернативный конфигурационный файл\n"
|
||||
" --config <путь> использовать альтернативный конфигурационный файл\n"
|
||||
|
||||
#: src/pacman/pacman.c:154
|
||||
#, c-format
|
||||
@@ -572,7 +568,7 @@ msgstr " --noconfirm не спрашивать подтвержден
|
||||
msgid ""
|
||||
" --ask <number> pre-specify answers for questions (see manpage)\n"
|
||||
msgstr ""
|
||||
" --ask <number> заранее подготовленные ответы на вопросы (смотрите "
|
||||
" --ask <число> заранее подготовленные ответы на вопросы (смотрите "
|
||||
"man-страницу)\n"
|
||||
|
||||
#: src/pacman/pacman.c:156
|
||||
@@ -597,30 +593,30 @@ msgstr " -v, --verbose выводить больше информаци
|
||||
#, c-format
|
||||
msgid " -r, --root <path> set an alternate installation root\n"
|
||||
msgstr ""
|
||||
" -r, --root <path> указать алтернативную корневую директорию для "
|
||||
" -r, --root <путь> указать альтернативную корневую директорию для "
|
||||
"установки\n"
|
||||
|
||||
#: src/pacman/pacman.c:160
|
||||
#, c-format
|
||||
msgid " -b, --dbpath <path> set an alternate database location\n"
|
||||
msgstr ""
|
||||
" -b, --dbpath <path> указать альтернативное расположение базы данных\n"
|
||||
" -b, --dbpath <путь> указать альтернативное расположение базы данных\n"
|
||||
|
||||
#: src/pacman/pacman.c:161
|
||||
#, c-format
|
||||
msgid " --cachedir <dir> set an alternate package cache location\n"
|
||||
msgstr ""
|
||||
" --cachedir <директория> указать альтернативное расположение кэша\n"
|
||||
msgstr " --cachedir <dir> указать альтернативное расположение кэша\n"
|
||||
|
||||
#: src/pacman/pacman.c:174
|
||||
#, c-format
|
||||
msgid " This program may be freely redistributed under\n"
|
||||
msgstr ""
|
||||
" This program may be freely redistributed under\n"
|
||||
|
||||
#: src/pacman/pacman.c:175
|
||||
#, c-format
|
||||
msgid " the terms of the GNU General Public License\n"
|
||||
msgstr ""
|
||||
msgstr " the terms of the GNU General Public License\n"
|
||||
|
||||
#: src/pacman/pacman.c:300
|
||||
#, c-format
|
||||
@@ -640,7 +636,7 @@ msgstr "'%s' неправильно указан путь к базе данны
|
||||
#: src/pacman/pacman.c:363
|
||||
#, c-format
|
||||
msgid "'%s' is not a valid root path\n"
|
||||
msgstr "'%s' не является верным корневым каталогом\n"
|
||||
msgstr "некорректный корневой каталог: '%s'\n"
|
||||
|
||||
#: src/pacman/pacman.c:390
|
||||
msgid "only one operation may be used at a time\n"
|
||||
@@ -648,7 +644,7 @@ msgstr "одновременно может выполняться только
|
||||
|
||||
#: src/pacman/pacman.c:436
|
||||
msgid "warning: current locale is invalid; using default \"C\" locale"
|
||||
msgstr ""
|
||||
msgstr "warning: current locale is invalid; using default \"C\" locale"
|
||||
|
||||
#: src/pacman/pacman.c:456
|
||||
#, c-format
|
||||
@@ -657,12 +653,13 @@ msgstr "не удалось инициализировать библиотек
|
||||
|
||||
#: src/pacman/pacman.c:489
|
||||
msgid "you cannot perform this operation unless you are root.\n"
|
||||
msgstr "Вы не можете выполнить эту операцию если вы не root.\n"
|
||||
msgstr ""
|
||||
"Вы не можете выполнить эту операцию не являясь суперпользователем (root).\n"
|
||||
|
||||
#: src/pacman/pacman.c:505
|
||||
#, c-format
|
||||
msgid "failed to parse config (%s)\n"
|
||||
msgstr "не удалось разобрать конфигурационный файл (%s)\n"
|
||||
msgstr "не удалось обработать конфигурационный файл (%s)\n"
|
||||
|
||||
#: src/pacman/pacman.c:516
|
||||
msgid "Targets :"
|
||||
@@ -671,15 +668,15 @@ msgstr "Цели :"
|
||||
#: src/pacman/pacman.c:522
|
||||
#, c-format
|
||||
msgid "could not register 'local' database (%s)\n"
|
||||
msgstr "не могу зарегистрировать 'локальную' базу данных (%s)\n"
|
||||
msgstr "не могу зарегистрировать локальную базу данных (%s)\n"
|
||||
|
||||
#: src/pacman/pacman.c:529
|
||||
msgid "no targets specified (use -h for help)\n"
|
||||
msgstr "не задано целей (для помощи используйте -h)\n"
|
||||
msgstr "не задано целей (для справки используйте -h)\n"
|
||||
|
||||
#: src/pacman/pacman.c:542
|
||||
msgid "no operation specified (use -h for help)\n"
|
||||
msgstr "не указаны конкретные операции (для помощи используйте -h)\n"
|
||||
msgstr "не задана операция (для справки используйте -h)\n"
|
||||
|
||||
#: src/pacman/query.c:90
|
||||
msgid "no file was specified for --owns\n"
|
||||
@@ -692,12 +689,12 @@ msgstr "не удалось прочитать файл '%s': %s"
|
||||
|
||||
#: src/pacman/query.c:100
|
||||
msgid "cannot determine ownership of a directory"
|
||||
msgstr "не удается определить владельца директории"
|
||||
msgstr "не удалось определить владельца каталога"
|
||||
|
||||
#: src/pacman/query.c:105
|
||||
#, c-format
|
||||
msgid "cannot determine real path for '%s': %s"
|
||||
msgstr ""
|
||||
msgstr "не удалось определить настоящий путь для '%s': %s"
|
||||
|
||||
#: src/pacman/query.c:119
|
||||
#, c-format
|
||||
@@ -728,7 +725,7 @@ msgstr "группа \"%s\" не найдена\n"
|
||||
|
||||
#: src/pacman/query.c:232
|
||||
msgid "no package file was specified for --file\n"
|
||||
msgstr "не указан файл пакета для опции --file\n"
|
||||
msgstr "не указан файл пакета для параметра --file\n"
|
||||
|
||||
#: src/pacman/query.c:236
|
||||
#, c-format
|
||||
@@ -850,7 +847,7 @@ msgstr ":: Синхронизирую базу данных пакетов...\n"
|
||||
|
||||
#: src/pacman/sync.c:491
|
||||
msgid "synchronizing package lists"
|
||||
msgstr "синхронизирую список пакетов"
|
||||
msgstr "синхронизирую списки пакетов"
|
||||
|
||||
#: src/pacman/sync.c:493
|
||||
msgid "failed to synchronize any databases"
|
||||
@@ -882,17 +879,12 @@ msgstr ":: после чего перезапустить операцию с и
|
||||
|
||||
#: src/pacman/sync.c:522
|
||||
msgid ":: Upgrade pacman first? [Y/n] "
|
||||
msgstr ":: Сначала обновить pacman? [Y/n] "
|
||||
msgstr ":: Обновить pacman в первую очередь? [Y/n] "
|
||||
|
||||
#: src/pacman/sync.c:537
|
||||
#, c-format
|
||||
msgid "pacman: %s\n"
|
||||
msgstr ""
|
||||
|
||||
#: src/pacman/sync.c:557
|
||||
#, c-format
|
||||
msgid "'%s': %s\n"
|
||||
msgstr ""
|
||||
msgstr "pacman: %s\n"
|
||||
|
||||
#: src/pacman/sync.c:572
|
||||
msgid ":: Install whole content? [Y/n] "
|
||||
@@ -906,7 +898,7 @@ msgstr ":: Установить %s из группы %s? [Y/n] "
|
||||
#: src/pacman/sync.c:603
|
||||
#, c-format
|
||||
msgid "'%s': not found in sync db\n"
|
||||
msgstr "'%s': не найдено в базе данных\n"
|
||||
msgstr "'%s': не найдено в базе пакетов\n"
|
||||
|
||||
#: src/pacman/sync.c:621
|
||||
msgid "requires"
|
||||
@@ -1090,3 +1082,9 @@ msgstr ""
|
||||
#, c-format
|
||||
msgid "Total Installed Size: %.2f MB\n"
|
||||
msgstr "Итого установлено: %.2f МБ\n"
|
||||
|
||||
#~ msgid "requires: %s"
|
||||
#~ msgstr "требуется: %s"
|
||||
|
||||
#~ msgid "'%s': %s\n"
|
||||
#~ msgstr "'%s': %s\n"
|
||||
|
||||
@@ -554,7 +554,7 @@ int pacman_sync(alpm_list_t *targets)
|
||||
continue;
|
||||
}
|
||||
if(pm_errno != PM_ERR_PKG_NOT_FOUND) {
|
||||
ERR(NL, _("'%s': %s\n"), (char *)i->data, alpm_strerror(pm_errno));
|
||||
ERR(NL, "'%s': %s\n", (char *)i->data, alpm_strerror(pm_errno));
|
||||
retval = 1;
|
||||
goto cleanup;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user