1
0
forked from mirrors/pacman

Compare commits

..

7 Commits

Author SHA1 Message Date
Dan McGee
a06d91f7f9 A few final changes for the 3.0.6 release
* Updated all message catalogs
* Bump version in configure.ac
* Remove a dead mirror
2007-09-16 22:15:03 +00:00
Dan McGee
3166257396 A few more core updates and revise the mirrorlist 2007-09-16 21:44:00 +00:00
Dan McGee
05346af459 Make current -> core updates 2007-09-16 21:20:19 +00:00
Dan McGee
9ea7c5c402 Fix symlink overwrite issue in CVS 2007-08-17 20:07:05 +00:00
Dan McGee
d8b57fcb76 backport fix for FS 7578 2007-07-10 15:08:33 +00:00
Dan McGee
51aeac33e9 Add fix for config parsing issue in case of another pacman 3.0.X release 2007-06-26 19:35:00 +00:00
Dan McGee
4b00fdeef0 Revert erroneous chmod 'fix'. 2007-06-20 21:52:24 +00:00
20 changed files with 270 additions and 263 deletions

View File

@@ -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.5, [pacman-dev@archlinux.org], [pacman])
AC_INIT([Pacman package manager], 3.0.6, [pacman-dev@archlinux.org], [pacman])
AC_LANG([C])
AC_CONFIG_HEADERS(config.h)
AC_CANONICAL_HOST
@@ -148,6 +148,9 @@ if test -z "$LIBDOWNLOAD"; then
AC_MSG_ERROR("libdownload is needed to compile pacman!");
fi
# Enable large file support if available
AC_SYS_LARGEFILE
dnl Set config location
AC_MSG_CHECKING(for configuration file name)
if test -n "$configfile"; then

View File

@@ -1,6 +1,6 @@
EXTRA_DIST = abs.conf \
supfile.arch \
supfile.community \
supfile.core \
supfile.extra \
supfile.testing \
supfile.unstable

View File

@@ -9,5 +9,5 @@
# Supfiles to be parsed by abs (in this order)
# (prefix a module with a ! to disable it)
#
SUPFILES=(arch extra !unstable !community !testing)
SUPFILES=(core extra !unstable !community !testing)

View File

@@ -1,8 +1,8 @@
#
# /etc/abs/supfile.arch
# /etc/abs/supfile.core
#
# this is the host containing the current PKGBUILD files
# this is the host containing the core PKGBUILD files
*default host=cvs.archlinux.org
*default release=cvs
@@ -12,4 +12,4 @@
#*default umask=002
*default tag=CURRENT
arch
core

View File

@@ -12,5 +12,5 @@
#*default umask=002
*default tag=TESTING
arch
core
extra

View File

@@ -22,9 +22,9 @@ HoldPkg = pacman glibc
#[testing]
#Include = /etc/pacman.d/testing
[current]
[core]
# Add your preferred servers here, they will be used first
Include = /etc/pacman.d/current
Include = /etc/pacman.d/core
[extra]
# Add your preferred servers here, they will be used first

View File

@@ -1,5 +1,5 @@
pkgsysconfdir = ${sysconfdir}/pacman.d
dist_pkgsysconf_DATA = community current extra release testing unstable
dist_pkgsysconf_DATA = community core extra release testing unstable
$(dist_pkgsysconf_DATA): mirrorlist
sed "s|@@REPO@@|$@|g" <$< >$@

View File

@@ -6,6 +6,7 @@
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://mirrors.unixheads.org/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@
@@ -61,6 +62,7 @@ Server = ftp://darkstar.ist.utl.pt/pub/archlinux/@@REPO@@/os/@CARCH@
Server = ftp://ftp.iasi.roedu.net/mirrors/archlinux.org/@@REPO@@/os/@CARCH@
# - Russia
Server = http://archlinux.freeside.ru/@@REPO@@/os/@CARCH@
Server = ftp://mirror.yandex.ru/archlinux/@@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@
@@ -70,6 +72,7 @@ Server = ftp://archlinux.puzzle.ch/@@REPO@@/os/@CARCH@
Server = ftp://ftp.linux.org.tr/pub/archlinux/@@REPO@@/os/@CARCH@
# - Ukraine
Server = ftp://ftp.linux.kiev.ua/pub/Linux/ArchLinux/@@REPO@@/os/@CARCH@
Server = ftp://hell.org.ua/archlinux/@@REPO@@/os/@CARCH@
# Asia
# - Israel

View File

@@ -700,12 +700,12 @@ int _alpm_add_commit(pmtrans_t *trans, pmdb_t *db)
archive_entry_set_pathname(entry, filename);
if(archive_read_extract(archive, entry, ARCHIVE_EXTRACT_FLAGS) != ARCHIVE_OK) {
int ret = archive_read_extract(archive, entry,
ARCHIVE_EXTRACT_FLAGS | ARCHIVE_EXTRACT_NO_OVERWRITE);
if(ret != ARCHIVE_OK && ret != ARCHIVE_WARN) {
_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 */

View File

@@ -940,6 +940,7 @@ int SYMEXPORT alpm_parse_config(char *file, alpm_cb_db_register callback, const
}
_alpm_strtrim(key);
strncpy(origkey, key, min(255, strlen(key)));
origkey[min(255, strlen(key))] = '\0';
key = _alpm_strtoupper(key);
if(!strlen(section) && strcmp(key, "INCLUDE")) {
RET_ERR(PM_ERR_CONF_DIRECTIVE_OUTSIDE_SECTION, -1);

View File

@@ -10,7 +10,7 @@ msgid ""
msgstr ""
"Project-Id-Version: de\n"
"Report-Msgid-Bugs-To: pacman-dev@archlinux.org\n"
"POT-Creation-Date: 2007-06-17 20:11-0400\n"
"POT-Creation-Date: 2007-09-16 16:55-0500\n"
"PO-Revision-Date: 2007-04-17 20:26+0200\n"
"Last-Translator: Pierre Schmitz <pierre@archlinux.de>\n"
"Language-Team: German <archlinux.de>\n"
@@ -107,7 +107,7 @@ msgstr "%s ist in NoExtract, wird nicht entpackt"
msgid "%s is in trans->skip_add, skipping extraction"
msgstr "%s ist in trans->skip_add, wird nicht entpackt"
#: lib/libalpm/add.c:554 lib/libalpm/add.c:555 lib/libalpm/add.c:704
#: lib/libalpm/add.c:554 lib/libalpm/add.c:555 lib/libalpm/add.c:706
#, c-format
msgid "could not extract %s (%s)"
msgstr "Konnte %s nicht entpacken (%s)"
@@ -222,7 +222,7 @@ msgstr "Warnung: Entpacke %s als %s.pacnew"
msgid "extracting %s"
msgstr "Entpacke %s"
#: lib/libalpm/add.c:705
#: lib/libalpm/add.c:707
#, c-format
msgid "error: could not extract %s (%s)"
msgstr "Fehler: Konnte %s nicht entpacken (%s)"
@@ -382,107 +382,107 @@ msgstr "Warnung: Konnte Sperrdatei %s nicht entfernen"
msgid "config: new section '%s'"
msgstr "Konfiguration: Neuer Abschnitt '%s'"
#: lib/libalpm/alpm.c:950
#: lib/libalpm/alpm.c:951
msgid "config: nopassiveftp"
msgstr "Konfiguration: nopassiveftp"
#: lib/libalpm/alpm.c:953
#: lib/libalpm/alpm.c:954
msgid "config: usesyslog"
msgstr "Konfiguration: usesyslog"
#: lib/libalpm/alpm.c:956
#: lib/libalpm/alpm.c:957
msgid "config: chomp"
msgstr "Konfiguration: chomp"
#: lib/libalpm/alpm.c:959
#: lib/libalpm/alpm.c:960
msgid "config: usecolor"
msgstr "Konfiguration: usecolor"
#: lib/libalpm/alpm.c:968
#: lib/libalpm/alpm.c:969
#, c-format
msgid "config: including %s"
msgstr "Konfiguration: including %s"
#: lib/libalpm/alpm.c:978 lib/libalpm/alpm.c:983
#: lib/libalpm/alpm.c:979 lib/libalpm/alpm.c:984
#, c-format
msgid "config: noupgrade: %s"
msgstr "Konfiguration: noupgrade: %s"
#: lib/libalpm/alpm.c:991 lib/libalpm/alpm.c:996
#: lib/libalpm/alpm.c:992 lib/libalpm/alpm.c:997
#, c-format
msgid "config: noextract: %s"
msgstr "Konfiguration: noextract: %s"
#: lib/libalpm/alpm.c:1004 lib/libalpm/alpm.c:1009
#: lib/libalpm/alpm.c:1005 lib/libalpm/alpm.c:1010
#, c-format
msgid "config: ignorepkg: %s"
msgstr "Konfiguration: ignorepkg: %s"
#: lib/libalpm/alpm.c:1017 lib/libalpm/alpm.c:1022
#: lib/libalpm/alpm.c:1018 lib/libalpm/alpm.c:1023
#, c-format
msgid "config: holdpkg: %s"
msgstr "Konfiguration: holdpkg: %s"
#: lib/libalpm/alpm.c:1029
#: lib/libalpm/alpm.c:1030
#, c-format
msgid "config: dbpath: %s"
msgstr "Konfiguration: dbpath: %s"
#: lib/libalpm/alpm.c:1036
#: lib/libalpm/alpm.c:1037
#, c-format
msgid "config: cachedir: %s"
msgstr "Konfiguration: cachedir: %s"
#: lib/libalpm/alpm.c:1043
#: lib/libalpm/alpm.c:1044
#, c-format
msgid "config: rootdir: %s"
msgstr "Konfiguration: rootdir: %s"
#: lib/libalpm/alpm.c:1046
#: lib/libalpm/alpm.c:1047
#, c-format
msgid "config: logfile: %s"
msgstr "Konfiguration: logfile: %s"
#: lib/libalpm/alpm.c:1049
#: lib/libalpm/alpm.c:1050
#, c-format
msgid "config: xfercommand: %s"
msgstr "Konfiguration: xfercommand: %s"
#: lib/libalpm/alpm.c:1054
#: lib/libalpm/alpm.c:1055
#, c-format
msgid "config: upgradedelay: %d"
msgstr "Konfiguration: upgradedelay: %d"
#: lib/libalpm/alpm.c:1092 lib/libalpm/sync.c:107
#: lib/libalpm/alpm.c:1093 lib/libalpm/sync.c:107
msgid "checking for package replacements"
msgstr "Prüfe auf Paketersetzungen"
#: lib/libalpm/alpm.c:1103 lib/libalpm/sync.c:123
#: lib/libalpm/alpm.c:1104 lib/libalpm/sync.c:123
#, c-format
msgid "checking replacement '%s' for package '%s'"
msgstr "Prüfe Ersetzung '%s' für Paket '%s'"
#: lib/libalpm/alpm.c:1106 lib/libalpm/sync.c:125
#: lib/libalpm/alpm.c:1107 lib/libalpm/sync.c:125
#, c-format
msgid "%s-%s: ignoring package upgrade (to be replaced by %s-%s)"
msgstr "%s-%s: Ignoriere zu aktualisierendes Packet (zu ersetzen durch %s-%s)"
#: lib/libalpm/alpm.c:1136 lib/libalpm/sync.c:160
#: lib/libalpm/alpm.c:1137 lib/libalpm/sync.c:160
#, c-format
msgid "%s-%s elected for upgrade (to be replaced by %s-%s)"
msgstr "%s-%s wurde zur Aktualisierung ausgewählt (wird durch %s-%s ersetzt)"
#: lib/libalpm/alpm.c:1158 lib/libalpm/sync.c:194
#: lib/libalpm/alpm.c:1159 lib/libalpm/sync.c:194
#, c-format
msgid "'%s' not found in sync db -- skipping"
msgstr "'%s' nicht in Sync-DB gefunden -- Überspringe"
#: lib/libalpm/alpm.c:1172 lib/libalpm/sync.c:208 lib/libalpm/sync.c:509
#: lib/libalpm/alpm.c:1173 lib/libalpm/sync.c:208 lib/libalpm/sync.c:509
#, c-format
msgid "'%s' is already elected for removal -- skipping"
msgstr "'%s' ist bereits zum Entfernen ausgewählt -- Überspringe"
#: lib/libalpm/alpm.c:1178
#: lib/libalpm/alpm.c:1179
#, c-format
msgid "%s elected for upgrade (%s => %s)"
msgstr "%s wurde zur Aktualisierung ausgewählt (%s => %s)"

View File

@@ -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-06-17 20:11-0400\n"
"POT-Creation-Date: 2007-09-16 16:55-0500\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"
@@ -103,7 +103,7 @@ msgstr "%s is in NoExtract, skipping extraction"
msgid "%s is in trans->skip_add, skipping extraction"
msgstr "%s is in trans->skip_add, skipping extraction"
#: lib/libalpm/add.c:554 lib/libalpm/add.c:555 lib/libalpm/add.c:704
#: lib/libalpm/add.c:554 lib/libalpm/add.c:555 lib/libalpm/add.c:706
#, c-format
msgid "could not extract %s (%s)"
msgstr "could not extract %s (%s)"
@@ -217,7 +217,7 @@ msgstr "warning: extracting %s as %s.pacnew"
msgid "extracting %s"
msgstr "extracting %s"
#: lib/libalpm/add.c:705
#: lib/libalpm/add.c:707
#, c-format
msgid "error: could not extract %s (%s)"
msgstr "error: could not extract %s (%s)"
@@ -376,107 +376,107 @@ msgstr "warning: could not remove lock file %s"
msgid "config: new section '%s'"
msgstr "config: new section '%s'"
#: lib/libalpm/alpm.c:950
#: lib/libalpm/alpm.c:951
msgid "config: nopassiveftp"
msgstr "config: nopassiveftp"
#: lib/libalpm/alpm.c:953
#: lib/libalpm/alpm.c:954
msgid "config: usesyslog"
msgstr "config: usesyslog"
#: lib/libalpm/alpm.c:956
#: lib/libalpm/alpm.c:957
msgid "config: chomp"
msgstr "config: chomp"
#: lib/libalpm/alpm.c:959
#: lib/libalpm/alpm.c:960
msgid "config: usecolor"
msgstr "config: usecolor"
#: lib/libalpm/alpm.c:968
#: lib/libalpm/alpm.c:969
#, c-format
msgid "config: including %s"
msgstr "config: including %s"
#: lib/libalpm/alpm.c:978 lib/libalpm/alpm.c:983
#: lib/libalpm/alpm.c:979 lib/libalpm/alpm.c:984
#, c-format
msgid "config: noupgrade: %s"
msgstr "config: noupgrade: %s"
#: lib/libalpm/alpm.c:991 lib/libalpm/alpm.c:996
#: lib/libalpm/alpm.c:992 lib/libalpm/alpm.c:997
#, c-format
msgid "config: noextract: %s"
msgstr "config: noextract: %s"
#: lib/libalpm/alpm.c:1004 lib/libalpm/alpm.c:1009
#: lib/libalpm/alpm.c:1005 lib/libalpm/alpm.c:1010
#, c-format
msgid "config: ignorepkg: %s"
msgstr "config: ignorepkg: %s"
#: lib/libalpm/alpm.c:1017 lib/libalpm/alpm.c:1022
#: lib/libalpm/alpm.c:1018 lib/libalpm/alpm.c:1023
#, c-format
msgid "config: holdpkg: %s"
msgstr "config: holdpkg: %s"
#: lib/libalpm/alpm.c:1029
#: lib/libalpm/alpm.c:1030
#, c-format
msgid "config: dbpath: %s"
msgstr "config: dbpath: %s"
#: lib/libalpm/alpm.c:1036
#: lib/libalpm/alpm.c:1037
#, c-format
msgid "config: cachedir: %s"
msgstr "config: cachedir: %s"
#: lib/libalpm/alpm.c:1043
#: lib/libalpm/alpm.c:1044
#, fuzzy, c-format
msgid "config: rootdir: %s"
msgstr "config: cachedir: %s"
#: lib/libalpm/alpm.c:1046
#: lib/libalpm/alpm.c:1047
#, c-format
msgid "config: logfile: %s"
msgstr "config: logfile: %s"
#: lib/libalpm/alpm.c:1049
#: lib/libalpm/alpm.c:1050
#, c-format
msgid "config: xfercommand: %s"
msgstr "config: xfercommand: %s"
#: lib/libalpm/alpm.c:1054
#: lib/libalpm/alpm.c:1055
#, c-format
msgid "config: upgradedelay: %d"
msgstr "config: upgradedelay: %d"
#: lib/libalpm/alpm.c:1092 lib/libalpm/sync.c:107
#: lib/libalpm/alpm.c:1093 lib/libalpm/sync.c:107
msgid "checking for package replacements"
msgstr "checking for package replacements"
#: lib/libalpm/alpm.c:1103 lib/libalpm/sync.c:123
#: lib/libalpm/alpm.c:1104 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:1106 lib/libalpm/sync.c:125
#: lib/libalpm/alpm.c:1107 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:1136 lib/libalpm/sync.c:160
#: lib/libalpm/alpm.c:1137 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:1158 lib/libalpm/sync.c:194
#: lib/libalpm/alpm.c:1159 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:1172 lib/libalpm/sync.c:208 lib/libalpm/sync.c:509
#: lib/libalpm/alpm.c:1173 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:1178
#: lib/libalpm/alpm.c:1179
#, c-format
msgid "%s elected for upgrade (%s => %s)"
msgstr "%s elected for upgrade (%s => %s)"

View File

@@ -9,7 +9,7 @@ msgid ""
msgstr ""
"Project-Id-Version: libalpm\n"
"Report-Msgid-Bugs-To: pacman-dev@archlinux.org\n"
"POT-Creation-Date: 2007-06-17 20:11-0400\n"
"POT-Creation-Date: 2007-09-16 16:55-0500\n"
"PO-Revision-Date: 2007-04-29 11:12-0300\n"
"Last-Translator: Juan Pablo González Tognarelli <lord_jotape@yahoo.com.ar>\n"
"Language-Team: juan pablo gonzález tognarelli <lord_jotape@yahoo.com.ar>\n"
@@ -108,7 +108,7 @@ msgstr "%s está en NoExtract. Saltando la extracción"
msgid "%s is in trans->skip_add, skipping extraction"
msgstr "%s esta en la extracción trans->skip_add, skipping"
#: lib/libalpm/add.c:554 lib/libalpm/add.c:555 lib/libalpm/add.c:704
#: lib/libalpm/add.c:554 lib/libalpm/add.c:555 lib/libalpm/add.c:706
#, c-format
msgid "could not extract %s (%s)"
msgstr "no se pudo extraer %s (%s)"
@@ -223,7 +223,7 @@ msgstr "advertencia: descomprimiendo %s como %s.pacnew"
msgid "extracting %s"
msgstr "descomprimiendo %s"
#: lib/libalpm/add.c:705
#: lib/libalpm/add.c:707
#, c-format
msgid "error: could not extract %s (%s)"
msgstr "error: no se pudo descomprimir %s (%s)"
@@ -385,108 +385,108 @@ msgstr "advertencia: no se pudo eliminar el archivo de bloqueo %s"
msgid "config: new section '%s'"
msgstr "config: nueva sección '%s'"
#: lib/libalpm/alpm.c:950
#: lib/libalpm/alpm.c:951
msgid "config: nopassiveftp"
msgstr "config: nopassiveftp"
#: lib/libalpm/alpm.c:953
#: lib/libalpm/alpm.c:954
msgid "config: usesyslog"
msgstr "config: usesyslog"
#: lib/libalpm/alpm.c:956
#: lib/libalpm/alpm.c:957
msgid "config: chomp"
msgstr "config: chomp"
#: lib/libalpm/alpm.c:959
#: lib/libalpm/alpm.c:960
msgid "config: usecolor"
msgstr "config: usecolor"
#: lib/libalpm/alpm.c:968
#: lib/libalpm/alpm.c:969
#, c-format
msgid "config: including %s"
msgstr "config: incluyendo %s"
#: lib/libalpm/alpm.c:978 lib/libalpm/alpm.c:983
#: lib/libalpm/alpm.c:979 lib/libalpm/alpm.c:984
#, c-format
msgid "config: noupgrade: %s"
msgstr "config: noupgrade: %s"
#: lib/libalpm/alpm.c:991 lib/libalpm/alpm.c:996
#: lib/libalpm/alpm.c:992 lib/libalpm/alpm.c:997
#, c-format
msgid "config: noextract: %s"
msgstr "config: noextract: %s"
#: lib/libalpm/alpm.c:1004 lib/libalpm/alpm.c:1009
#: lib/libalpm/alpm.c:1005 lib/libalpm/alpm.c:1010
#, c-format
msgid "config: ignorepkg: %s"
msgstr "config: ignorepkg: %s"
#: lib/libalpm/alpm.c:1017 lib/libalpm/alpm.c:1022
#: lib/libalpm/alpm.c:1018 lib/libalpm/alpm.c:1023
#, c-format
msgid "config: holdpkg: %s"
msgstr "config: holdpkg: %s"
#: lib/libalpm/alpm.c:1029
#: lib/libalpm/alpm.c:1030
#, c-format
msgid "config: dbpath: %s"
msgstr "config: dbpath: %s"
#: lib/libalpm/alpm.c:1036
#: lib/libalpm/alpm.c:1037
#, c-format
msgid "config: cachedir: %s"
msgstr "config: cachedir: %s"
#: lib/libalpm/alpm.c:1043
#: lib/libalpm/alpm.c:1044
#, fuzzy, c-format
msgid "config: rootdir: %s"
msgstr "config: cachedir: %s"
#: lib/libalpm/alpm.c:1046
#: lib/libalpm/alpm.c:1047
#, c-format
msgid "config: logfile: %s"
msgstr "config: logfile: %s"
#: lib/libalpm/alpm.c:1049
#: lib/libalpm/alpm.c:1050
#, c-format
msgid "config: xfercommand: %s"
msgstr "config: xfercommand: %s"
#: lib/libalpm/alpm.c:1054
#: lib/libalpm/alpm.c:1055
#, c-format
msgid "config: upgradedelay: %d"
msgstr "config: upgradedelay: %d"
#: lib/libalpm/alpm.c:1092 lib/libalpm/sync.c:107
#: lib/libalpm/alpm.c:1093 lib/libalpm/sync.c:107
msgid "checking for package replacements"
msgstr "verificando si hay reemplazo de paquetes"
#: lib/libalpm/alpm.c:1103 lib/libalpm/sync.c:123
#: lib/libalpm/alpm.c:1104 lib/libalpm/sync.c:123
#, c-format
msgid "checking replacement '%s' for package '%s'"
msgstr "verificando el reemplazo '%s' para el paquete '%s'"
#: lib/libalpm/alpm.c:1106 lib/libalpm/sync.c:125
#: lib/libalpm/alpm.c:1107 lib/libalpm/sync.c:125
#, c-format
msgid "%s-%s: ignoring package upgrade (to be replaced by %s-%s)"
msgstr ""
"%s-%s: ignorando la actualización del paquete(para ser reemplazado por %s-%s)"
#: lib/libalpm/alpm.c:1136 lib/libalpm/sync.c:160
#: lib/libalpm/alpm.c:1137 lib/libalpm/sync.c:160
#, c-format
msgid "%s-%s elected for upgrade (to be replaced by %s-%s)"
msgstr "%s-%s escogido para actualizar (para ser reemplazado por %s-%s)"
#: lib/libalpm/alpm.c:1158 lib/libalpm/sync.c:194
#: lib/libalpm/alpm.c:1159 lib/libalpm/sync.c:194
#, c-format
msgid "'%s' not found in sync db -- skipping"
msgstr "'%s' not encontrado en la base -- saltando"
#: lib/libalpm/alpm.c:1172 lib/libalpm/sync.c:208 lib/libalpm/sync.c:509
#: lib/libalpm/alpm.c:1173 lib/libalpm/sync.c:208 lib/libalpm/sync.c:509
#, c-format
msgid "'%s' is already elected for removal -- skipping"
msgstr "'%s' está ya seleccionado para quitar -- saltando"
#: lib/libalpm/alpm.c:1178
#: lib/libalpm/alpm.c:1179
#, c-format
msgid "%s elected for upgrade (%s => %s)"
msgstr "%s seleccionado para actualizar (%s => %s)"

View File

@@ -5,7 +5,7 @@ msgid ""
msgstr ""
"Project-Id-Version: Pacman package manager 3.0.1\n"
"Report-Msgid-Bugs-To: pacman-dev@archlinux.org\n"
"POT-Creation-Date: 2007-06-17 20:11-0400\n"
"POT-Creation-Date: 2007-09-16 16:55-0500\n"
"PO-Revision-Date: 2007-04-17 12:45+0100\n"
"Last-Translator: nam <37ii11@altern.org>\n"
"Language-Team: solsTiCe d'Hiver <solstice.dhiver@laposte.net>\n"
@@ -105,7 +105,7 @@ msgstr "%s est dans la liste des paquets NoExtract -- extraction non effectuée"
msgid "%s is in trans->skip_add, skipping extraction"
msgstr "%s est dans trans->skip_add, extraction ignorée"
#: lib/libalpm/add.c:554 lib/libalpm/add.c:555 lib/libalpm/add.c:704
#: lib/libalpm/add.c:554 lib/libalpm/add.c:555 lib/libalpm/add.c:706
#, c-format
msgid "could not extract %s (%s)"
msgstr "l'extraction de %s (%s) a échoué"
@@ -220,7 +220,7 @@ msgstr "avertissement: extraction de %s comme %s.pacnew"
msgid "extracting %s"
msgstr "extraction de %s"
#: lib/libalpm/add.c:705
#: lib/libalpm/add.c:707
#, c-format
msgid "error: could not extract %s (%s)"
msgstr "erreur: l'extraction de %s (%s) a échoué"
@@ -382,107 +382,107 @@ msgstr "avertissement: la suppression du fichier de verrouillage %s a échoué"
msgid "config: new section '%s'"
msgstr "config: nouvelle section '%s'"
#: lib/libalpm/alpm.c:950
#: lib/libalpm/alpm.c:951
msgid "config: nopassiveftp"
msgstr "config: nopassiveftp"
#: lib/libalpm/alpm.c:953
#: lib/libalpm/alpm.c:954
msgid "config: usesyslog"
msgstr "config: usesyslog"
#: lib/libalpm/alpm.c:956
#: lib/libalpm/alpm.c:957
msgid "config: chomp"
msgstr "config: chomp"
#: lib/libalpm/alpm.c:959
#: lib/libalpm/alpm.c:960
msgid "config: usecolor"
msgstr "config: usecolor"
#: lib/libalpm/alpm.c:968
#: lib/libalpm/alpm.c:969
#, c-format
msgid "config: including %s"
msgstr "config: inclusion de %s"
#: lib/libalpm/alpm.c:978 lib/libalpm/alpm.c:983
#: lib/libalpm/alpm.c:979 lib/libalpm/alpm.c:984
#, c-format
msgid "config: noupgrade: %s"
msgstr "config: noupgrade: %s"
#: lib/libalpm/alpm.c:991 lib/libalpm/alpm.c:996
#: lib/libalpm/alpm.c:992 lib/libalpm/alpm.c:997
#, c-format
msgid "config: noextract: %s"
msgstr "config: noextract: %s"
#: lib/libalpm/alpm.c:1004 lib/libalpm/alpm.c:1009
#: lib/libalpm/alpm.c:1005 lib/libalpm/alpm.c:1010
#, c-format
msgid "config: ignorepkg: %s"
msgstr "config: ignorepkg: %s"
#: lib/libalpm/alpm.c:1017 lib/libalpm/alpm.c:1022
#: lib/libalpm/alpm.c:1018 lib/libalpm/alpm.c:1023
#, c-format
msgid "config: holdpkg: %s"
msgstr "config: holdpkg: %s"
#: lib/libalpm/alpm.c:1029
#: lib/libalpm/alpm.c:1030
#, c-format
msgid "config: dbpath: %s"
msgstr "config: dbpath: %s"
#: lib/libalpm/alpm.c:1036
#: lib/libalpm/alpm.c:1037
#, c-format
msgid "config: cachedir: %s"
msgstr "config: cachedir: %s"
#: lib/libalpm/alpm.c:1043
#: lib/libalpm/alpm.c:1044
#, c-format
msgid "config: rootdir: %s"
msgstr "config: rootdir: %s"
#: lib/libalpm/alpm.c:1046
#: lib/libalpm/alpm.c:1047
#, c-format
msgid "config: logfile: %s"
msgstr "config: logfile: %s"
#: lib/libalpm/alpm.c:1049
#: lib/libalpm/alpm.c:1050
#, c-format
msgid "config: xfercommand: %s"
msgstr "config: xfercommand: %s"
#: lib/libalpm/alpm.c:1054
#: lib/libalpm/alpm.c:1055
#, c-format
msgid "config: upgradedelay: %d"
msgstr "config: upgradedelay: %d"
#: lib/libalpm/alpm.c:1092 lib/libalpm/sync.c:107
#: lib/libalpm/alpm.c:1093 lib/libalpm/sync.c:107
msgid "checking for package replacements"
msgstr "analyse de remplacements possibles pour le paquet"
#: lib/libalpm/alpm.c:1103 lib/libalpm/sync.c:123
#: lib/libalpm/alpm.c:1104 lib/libalpm/sync.c:123
#, c-format
msgid "checking replacement '%s' for package '%s'"
msgstr "analyse du remplacement '%s' pour le paquet '%s'"
#: lib/libalpm/alpm.c:1106 lib/libalpm/sync.c:125
#: lib/libalpm/alpm.c:1107 lib/libalpm/sync.c:125
#, c-format
msgid "%s-%s: ignoring package upgrade (to be replaced by %s-%s)"
msgstr "%s-%s: ignore la mise à jour du paquet (à remplacer par %s-%s)"
#: lib/libalpm/alpm.c:1136 lib/libalpm/sync.c:160
#: lib/libalpm/alpm.c:1137 lib/libalpm/sync.c:160
#, c-format
msgid "%s-%s elected for upgrade (to be replaced by %s-%s)"
msgstr "%s-%s sélectionné pour mise à jour (à remplacer par %s-%s)"
#: lib/libalpm/alpm.c:1158 lib/libalpm/sync.c:194
#: lib/libalpm/alpm.c:1159 lib/libalpm/sync.c:194
#, c-format
msgid "'%s' not found in sync db -- skipping"
msgstr "'%s' non trouvé dans la liste de synchronisation -- ignoré"
#: lib/libalpm/alpm.c:1172 lib/libalpm/sync.c:208 lib/libalpm/sync.c:509
#: lib/libalpm/alpm.c:1173 lib/libalpm/sync.c:208 lib/libalpm/sync.c:509
#, c-format
msgid "'%s' is already elected for removal -- skipping"
msgstr "'%s' est déjà sélectionné pour suppression -- ignoré"
#: lib/libalpm/alpm.c:1178
#: lib/libalpm/alpm.c:1179
#, c-format
msgid "%s elected for upgrade (%s => %s)"
msgstr "%s sélectionné pour mise à jour (%s => %s)"

View File

@@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: hu\n"
"Report-Msgid-Bugs-To: pacman-dev@archlinux.org\n"
"POT-Creation-Date: 2007-06-17 20:11-0400\n"
"POT-Creation-Date: 2007-09-16 16:55-0500\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"
@@ -104,7 +104,7 @@ msgstr "%s a NoExtractben van, kit
msgid "%s is in trans->skip_add, skipping extraction"
msgstr ""
#: lib/libalpm/add.c:554 lib/libalpm/add.c:555 lib/libalpm/add.c:704
#: lib/libalpm/add.c:554 lib/libalpm/add.c:555 lib/libalpm/add.c:706
#, c-format
msgid "could not extract %s (%s)"
msgstr "nem siker<65>lt kit<69>m<EFBFBD>r<EFBFBD>teni: %s (%s)"
@@ -219,7 +219,7 @@ msgstr "figyelmeztet
msgid "extracting %s"
msgstr "a %s kit<69>m<EFBFBD>r<EFBFBD>t<EFBFBD>se"
#: lib/libalpm/add.c:705
#: lib/libalpm/add.c:707
#, c-format
msgid "error: could not extract %s (%s)"
msgstr "hiba: nem siker<65>lt kit<69>m<EFBFBD>r<EFBFBD>teni: %s (%s)"
@@ -381,107 +381,107 @@ msgstr "figyelmeztet
msgid "config: new section '%s'"
msgstr "be<62>ll<6C>t<EFBFBD>sok: <20>j szekci<63> '%s'"
#: lib/libalpm/alpm.c:950
#: lib/libalpm/alpm.c:951
msgid "config: nopassiveftp"
msgstr "be<62>ll<6C>t<EFBFBD>sok: nopassiveftp"
#: lib/libalpm/alpm.c:953
#: lib/libalpm/alpm.c:954
msgid "config: usesyslog"
msgstr "be<62>ll<6C>t<EFBFBD>sok: usesyslog"
#: lib/libalpm/alpm.c:956
#: lib/libalpm/alpm.c:957
msgid "config: chomp"
msgstr "be<62>ll<6C>t<EFBFBD>sok: chomp"
#: lib/libalpm/alpm.c:959
#: lib/libalpm/alpm.c:960
msgid "config: usecolor"
msgstr "be<62>ll<6C>t<EFBFBD>sok: usecolor"
#: lib/libalpm/alpm.c:968
#: lib/libalpm/alpm.c:969
#, c-format
msgid "config: including %s"
msgstr "be<62>ll<6C>t<EFBFBD>sok: a %s beolvas<61>sa"
#: lib/libalpm/alpm.c:978 lib/libalpm/alpm.c:983
#: lib/libalpm/alpm.c:979 lib/libalpm/alpm.c:984
#, c-format
msgid "config: noupgrade: %s"
msgstr "be<62>ll<6C>t<EFBFBD>sok: noupgrade: %s"
#: lib/libalpm/alpm.c:991 lib/libalpm/alpm.c:996
#: lib/libalpm/alpm.c:992 lib/libalpm/alpm.c:997
#, c-format
msgid "config: noextract: %s"
msgstr "be<62>ll<6C>t<EFBFBD>sok: noextract: %s"
#: lib/libalpm/alpm.c:1004 lib/libalpm/alpm.c:1009
#: lib/libalpm/alpm.c:1005 lib/libalpm/alpm.c:1010
#, c-format
msgid "config: ignorepkg: %s"
msgstr "be<62>ll<6C>t<EFBFBD>sok: ignorepkg: %s"
#: lib/libalpm/alpm.c:1017 lib/libalpm/alpm.c:1022
#: lib/libalpm/alpm.c:1018 lib/libalpm/alpm.c:1023
#, c-format
msgid "config: holdpkg: %s"
msgstr "be<62>ll<6C>t<EFBFBD>sok: holdpkg: %s"
#: lib/libalpm/alpm.c:1029
#: lib/libalpm/alpm.c:1030
#, c-format
msgid "config: dbpath: %s"
msgstr "be<62>ll<6C>t<EFBFBD>sok: adatb<74>zis<69>tvonal: %s"
#: lib/libalpm/alpm.c:1036
#: lib/libalpm/alpm.c:1037
#, 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:1043
#: lib/libalpm/alpm.c:1044
#, 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
#: lib/libalpm/alpm.c:1047
#, c-format
msgid "config: logfile: %s"
msgstr "be<62>ll<6C>t<EFBFBD>sok: napl<70>f<EFBFBD>jl: %s"
#: lib/libalpm/alpm.c:1049
#: lib/libalpm/alpm.c:1050
#, c-format
msgid "config: xfercommand: %s"
msgstr "be<62>ll<6C>t<EFBFBD>sok: xfercommand: %s"
#: lib/libalpm/alpm.c:1054
#: lib/libalpm/alpm.c:1055
#, 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:1092 lib/libalpm/sync.c:107
#: lib/libalpm/alpm.c:1093 lib/libalpm/sync.c:107
msgid "checking for package replacements"
msgstr "csomagcser<65>k ellen<65>rz<72>se"
#: lib/libalpm/alpm.c:1103 lib/libalpm/sync.c:123
#: lib/libalpm/alpm.c:1104 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:1106 lib/libalpm/sync.c:125
#: lib/libalpm/alpm.c:1107 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:1136 lib/libalpm/sync.c:160
#: lib/libalpm/alpm.c:1137 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:1158 lib/libalpm/sync.c:194
#: lib/libalpm/alpm.c:1159 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:1172 lib/libalpm/sync.c:208 lib/libalpm/sync.c:509
#: lib/libalpm/alpm.c:1173 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:1178
#: lib/libalpm/alpm.c:1179
#, c-format
msgid "%s elected for upgrade (%s => %s)"
msgstr "a(z) %s kiv<69>lasztva friss<73>t<EFBFBD>sre (%s => %s)"

View File

@@ -9,7 +9,7 @@ msgid ""
msgstr ""
"Project-Id-Version: libalpm VERSION\n"
"Report-Msgid-Bugs-To: pacman-dev@archlinux.org\n"
"POT-Creation-Date: 2007-06-17 20:11-0400\n"
"POT-Creation-Date: 2007-09-16 16:55-0500\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"
@@ -104,7 +104,7 @@ msgstr "%s è in NoExtract, estrazione ignorata"
msgid "%s is in trans->skip_add, skipping extraction"
msgstr "%s è in trans->skip_add, estrazione ignorata"
#: lib/libalpm/add.c:554 lib/libalpm/add.c:555 lib/libalpm/add.c:704
#: lib/libalpm/add.c:554 lib/libalpm/add.c:555 lib/libalpm/add.c:706
#, c-format
msgid "could not extract %s (%s)"
msgstr "impossibile estrarre %s (%s)"
@@ -219,7 +219,7 @@ msgstr "attenzione: estrazione in corso di %s come %s.pacnew"
msgid "extracting %s"
msgstr "estrazione di %s in corso"
#: lib/libalpm/add.c:705
#: lib/libalpm/add.c:707
#, c-format
msgid "error: could not extract %s (%s)"
msgstr "errore: impossibile estrarre %s (%s)"
@@ -381,109 +381,109 @@ msgstr "attenzione: impossibile rimuovere il file di lock %s"
msgid "config: new section '%s'"
msgstr "config: nuova sezione '%s'"
#: lib/libalpm/alpm.c:950
#: lib/libalpm/alpm.c:951
msgid "config: nopassiveftp"
msgstr "config: nopassiveftp"
#: lib/libalpm/alpm.c:953
#: lib/libalpm/alpm.c:954
msgid "config: usesyslog"
msgstr "config: usesyslog"
#: lib/libalpm/alpm.c:956
#: lib/libalpm/alpm.c:957
msgid "config: chomp"
msgstr "config: chomp"
#: lib/libalpm/alpm.c:959
#: lib/libalpm/alpm.c:960
msgid "config: usecolor"
msgstr "config: usecolor"
#: lib/libalpm/alpm.c:968
#: lib/libalpm/alpm.c:969
#, c-format
msgid "config: including %s"
msgstr "config: including %s"
#: lib/libalpm/alpm.c:978 lib/libalpm/alpm.c:983
#: lib/libalpm/alpm.c:979 lib/libalpm/alpm.c:984
#, c-format
msgid "config: noupgrade: %s"
msgstr "config: noupgrade: %s"
#: lib/libalpm/alpm.c:991 lib/libalpm/alpm.c:996
#: lib/libalpm/alpm.c:992 lib/libalpm/alpm.c:997
#, c-format
msgid "config: noextract: %s"
msgstr "config: noextract:·%s"
#: lib/libalpm/alpm.c:1004 lib/libalpm/alpm.c:1009
#: lib/libalpm/alpm.c:1005 lib/libalpm/alpm.c:1010
#, c-format
msgid "config: ignorepkg: %s"
msgstr "config: ignorepkg: %s"
#: lib/libalpm/alpm.c:1017 lib/libalpm/alpm.c:1022
#: lib/libalpm/alpm.c:1018 lib/libalpm/alpm.c:1023
#, c-format
msgid "config: holdpkg: %s"
msgstr "config: holdpkg: %s"
#: lib/libalpm/alpm.c:1029
#: lib/libalpm/alpm.c:1030
#, c-format
msgid "config: dbpath: %s"
msgstr "config: dbpath: %s"
#: lib/libalpm/alpm.c:1036
#: lib/libalpm/alpm.c:1037
#, c-format
msgid "config: cachedir: %s"
msgstr "config: cachedir: %s"
#: lib/libalpm/alpm.c:1043
#: lib/libalpm/alpm.c:1044
#, c-format
msgid "config: rootdir: %s"
msgstr "config: rootdir: %s"
#: lib/libalpm/alpm.c:1046
#: lib/libalpm/alpm.c:1047
#, c-format
msgid "config: logfile: %s"
msgstr "config: logfile: %s"
#: lib/libalpm/alpm.c:1049
#: lib/libalpm/alpm.c:1050
#, c-format
msgid "config: xfercommand: %s"
msgstr "config: xfercommand: %s"
#: lib/libalpm/alpm.c:1054
#: lib/libalpm/alpm.c:1055
#, c-format
msgid "config: upgradedelay: %d"
msgstr "config: upgradedelay: %d"
#: lib/libalpm/alpm.c:1092 lib/libalpm/sync.c:107
#: lib/libalpm/alpm.c:1093 lib/libalpm/sync.c:107
msgid "checking for package replacements"
msgstr "controllo della sostituzione dei pacchetti in corso"
#: lib/libalpm/alpm.c:1103 lib/libalpm/sync.c:123
#: lib/libalpm/alpm.c:1104 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:1106 lib/libalpm/sync.c:125
#: lib/libalpm/alpm.c:1107 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:1136 lib/libalpm/sync.c:160
#: lib/libalpm/alpm.c:1137 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:1158 lib/libalpm/sync.c:194
#: lib/libalpm/alpm.c:1159 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:1172 lib/libalpm/sync.c:208 lib/libalpm/sync.c:509
#: lib/libalpm/alpm.c:1173 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:1178
#: lib/libalpm/alpm.c:1179
#, c-format
msgid "%s elected for upgrade (%s => %s)"
msgstr "%s selezionato per l'aggiornamento (%s => %s)"

View File

@@ -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-06-17 20:11-0400\n"
"POT-Creation-Date: 2007-09-16 16:55-0500\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"
@@ -103,7 +103,7 @@ msgstr ""
msgid "%s is in trans->skip_add, skipping extraction"
msgstr ""
#: lib/libalpm/add.c:554 lib/libalpm/add.c:555 lib/libalpm/add.c:704
#: lib/libalpm/add.c:554 lib/libalpm/add.c:555 lib/libalpm/add.c:706
#, c-format
msgid "could not extract %s (%s)"
msgstr ""
@@ -216,7 +216,7 @@ msgstr ""
msgid "extracting %s"
msgstr ""
#: lib/libalpm/add.c:705
#: lib/libalpm/add.c:707
#, c-format
msgid "error: could not extract %s (%s)"
msgstr ""
@@ -374,107 +374,107 @@ msgstr ""
msgid "config: new section '%s'"
msgstr ""
#: lib/libalpm/alpm.c:950
#: lib/libalpm/alpm.c:951
msgid "config: nopassiveftp"
msgstr ""
#: lib/libalpm/alpm.c:953
#: lib/libalpm/alpm.c:954
msgid "config: usesyslog"
msgstr ""
#: lib/libalpm/alpm.c:956
#: lib/libalpm/alpm.c:957
msgid "config: chomp"
msgstr ""
#: lib/libalpm/alpm.c:959
#: lib/libalpm/alpm.c:960
msgid "config: usecolor"
msgstr ""
#: lib/libalpm/alpm.c:968
#: lib/libalpm/alpm.c:969
#, c-format
msgid "config: including %s"
msgstr ""
#: lib/libalpm/alpm.c:978 lib/libalpm/alpm.c:983
#: lib/libalpm/alpm.c:979 lib/libalpm/alpm.c:984
#, c-format
msgid "config: noupgrade: %s"
msgstr ""
#: lib/libalpm/alpm.c:991 lib/libalpm/alpm.c:996
#: lib/libalpm/alpm.c:992 lib/libalpm/alpm.c:997
#, c-format
msgid "config: noextract: %s"
msgstr ""
#: lib/libalpm/alpm.c:1004 lib/libalpm/alpm.c:1009
#: lib/libalpm/alpm.c:1005 lib/libalpm/alpm.c:1010
#, c-format
msgid "config: ignorepkg: %s"
msgstr ""
#: lib/libalpm/alpm.c:1017 lib/libalpm/alpm.c:1022
#: lib/libalpm/alpm.c:1018 lib/libalpm/alpm.c:1023
#, c-format
msgid "config: holdpkg: %s"
msgstr ""
#: lib/libalpm/alpm.c:1029
#: lib/libalpm/alpm.c:1030
#, c-format
msgid "config: dbpath: %s"
msgstr ""
#: lib/libalpm/alpm.c:1036
#: lib/libalpm/alpm.c:1037
#, c-format
msgid "config: cachedir: %s"
msgstr ""
#: lib/libalpm/alpm.c:1043
#: lib/libalpm/alpm.c:1044
#, c-format
msgid "config: rootdir: %s"
msgstr ""
#: lib/libalpm/alpm.c:1046
#: lib/libalpm/alpm.c:1047
#, c-format
msgid "config: logfile: %s"
msgstr ""
#: lib/libalpm/alpm.c:1049
#: lib/libalpm/alpm.c:1050
#, c-format
msgid "config: xfercommand: %s"
msgstr ""
#: lib/libalpm/alpm.c:1054
#: lib/libalpm/alpm.c:1055
#, c-format
msgid "config: upgradedelay: %d"
msgstr ""
#: lib/libalpm/alpm.c:1092 lib/libalpm/sync.c:107
#: lib/libalpm/alpm.c:1093 lib/libalpm/sync.c:107
msgid "checking for package replacements"
msgstr ""
#: lib/libalpm/alpm.c:1103 lib/libalpm/sync.c:123
#: lib/libalpm/alpm.c:1104 lib/libalpm/sync.c:123
#, c-format
msgid "checking replacement '%s' for package '%s'"
msgstr ""
#: lib/libalpm/alpm.c:1106 lib/libalpm/sync.c:125
#: lib/libalpm/alpm.c:1107 lib/libalpm/sync.c:125
#, c-format
msgid "%s-%s: ignoring package upgrade (to be replaced by %s-%s)"
msgstr ""
#: lib/libalpm/alpm.c:1136 lib/libalpm/sync.c:160
#: lib/libalpm/alpm.c:1137 lib/libalpm/sync.c:160
#, c-format
msgid "%s-%s elected for upgrade (to be replaced by %s-%s)"
msgstr ""
#: lib/libalpm/alpm.c:1158 lib/libalpm/sync.c:194
#: lib/libalpm/alpm.c:1159 lib/libalpm/sync.c:194
#, c-format
msgid "'%s' not found in sync db -- skipping"
msgstr ""
#: lib/libalpm/alpm.c:1172 lib/libalpm/sync.c:208 lib/libalpm/sync.c:509
#: lib/libalpm/alpm.c:1173 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:1178
#: lib/libalpm/alpm.c:1179
#, c-format
msgid "%s elected for upgrade (%s => %s)"
msgstr ""

View File

@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: Pacman package manager 3.0.1\n"
"Report-Msgid-Bugs-To: pacman-dev@archlinux.org\n"
"POT-Creation-Date: 2007-06-17 20:11-0400\n"
"POT-Creation-Date: 2007-09-16 16:55-0500\n"
"PO-Revision-Date: 2007-04-12 04:23+0200\n"
"Last-Translator: Mateusz Jędrasik <m.jedrasik@gmail.com>\n"
"Language-Team: Polish <translation-team-pl@lists.sourceforge.net>\n"
@@ -105,7 +105,7 @@ msgstr "%s znajduje się w NoExtract, pomijanie rozpakowywania"
msgid "%s is in trans->skip_add, skipping extraction"
msgstr "%s znajduje się w trans->skip_add, pomijanie rozpakowywania"
#: lib/libalpm/add.c:554 lib/libalpm/add.c:555 lib/libalpm/add.c:704
#: lib/libalpm/add.c:554 lib/libalpm/add.c:555 lib/libalpm/add.c:706
#, c-format
msgid "could not extract %s (%s)"
msgstr "nie udało się rozpakować %s (%s)"
@@ -220,7 +220,7 @@ msgstr "uwaga: rozpakowywanie %s jako %s.pacnew"
msgid "extracting %s"
msgstr "rozpakowywanie %s"
#: lib/libalpm/add.c:705
#: lib/libalpm/add.c:707
#, c-format
msgid "error: could not extract %s (%s)"
msgstr "błąd: nie udało się rozpakować %s (%s)"
@@ -381,107 +381,107 @@ msgstr "uwaga: nie udało się usunąć pliku blokującego %s"
msgid "config: new section '%s'"
msgstr "konfiguracja: nowa sekcja '%s'"
#: lib/libalpm/alpm.c:950
#: lib/libalpm/alpm.c:951
msgid "config: nopassiveftp"
msgstr "konfiguracja: nopassiveftp"
#: lib/libalpm/alpm.c:953
#: lib/libalpm/alpm.c:954
msgid "config: usesyslog"
msgstr "konfiguracja: usesyslog"
#: lib/libalpm/alpm.c:956
#: lib/libalpm/alpm.c:957
msgid "config: chomp"
msgstr "konfiguracja: chomp"
#: lib/libalpm/alpm.c:959
#: lib/libalpm/alpm.c:960
msgid "config: usecolor"
msgstr "konfiguracja: usecolor"
#: lib/libalpm/alpm.c:968
#: lib/libalpm/alpm.c:969
#, c-format
msgid "config: including %s"
msgstr "konfiguracja: zawieranie %s"
#: lib/libalpm/alpm.c:978 lib/libalpm/alpm.c:983
#: lib/libalpm/alpm.c:979 lib/libalpm/alpm.c:984
#, c-format
msgid "config: noupgrade: %s"
msgstr "konfiguracja: noupgrade: %s"
#: lib/libalpm/alpm.c:991 lib/libalpm/alpm.c:996
#: lib/libalpm/alpm.c:992 lib/libalpm/alpm.c:997
#, c-format
msgid "config: noextract: %s"
msgstr "konfiguracja: noextract: %s"
#: lib/libalpm/alpm.c:1004 lib/libalpm/alpm.c:1009
#: lib/libalpm/alpm.c:1005 lib/libalpm/alpm.c:1010
#, c-format
msgid "config: ignorepkg: %s"
msgstr "konfiguracja: ignorepkg: %s"
#: lib/libalpm/alpm.c:1017 lib/libalpm/alpm.c:1022
#: lib/libalpm/alpm.c:1018 lib/libalpm/alpm.c:1023
#, c-format
msgid "config: holdpkg: %s"
msgstr "konfiguracja: holdpkg: %s"
#: lib/libalpm/alpm.c:1029
#: lib/libalpm/alpm.c:1030
#, c-format
msgid "config: dbpath: %s"
msgstr "konfiguracja: dbpath: %s"
#: lib/libalpm/alpm.c:1036
#: lib/libalpm/alpm.c:1037
#, c-format
msgid "config: cachedir: %s"
msgstr "konfiguracja: cachedir: %s"
#: lib/libalpm/alpm.c:1043
#: lib/libalpm/alpm.c:1044
#, c-format
msgid "config: rootdir: %s"
msgstr "konfiguracja: rootdir: %s"
#: lib/libalpm/alpm.c:1046
#: lib/libalpm/alpm.c:1047
#, c-format
msgid "config: logfile: %s"
msgstr "konfiguracja: logfile: %s"
#: lib/libalpm/alpm.c:1049
#: lib/libalpm/alpm.c:1050
#, c-format
msgid "config: xfercommand: %s"
msgstr "konfiguracja: xfercommand: %s"
#: lib/libalpm/alpm.c:1054
#: lib/libalpm/alpm.c:1055
#, c-format
msgid "config: upgradedelay: %d"
msgstr "konfiguracja: upgradedelay: %d"
#: lib/libalpm/alpm.c:1092 lib/libalpm/sync.c:107
#: lib/libalpm/alpm.c:1093 lib/libalpm/sync.c:107
msgid "checking for package replacements"
msgstr "sprawdzanie potencjalnych pakietów zastępczych"
#: lib/libalpm/alpm.c:1103 lib/libalpm/sync.c:123
#: lib/libalpm/alpm.c:1104 lib/libalpm/sync.c:123
#, c-format
msgid "checking replacement '%s' for package '%s'"
msgstr "sprawdzanie zastępcy '%s' dla pakietu '%s'"
#: lib/libalpm/alpm.c:1106 lib/libalpm/sync.c:125
#: lib/libalpm/alpm.c:1107 lib/libalpm/sync.c:125
#, c-format
msgid "%s-%s: ignoring package upgrade (to be replaced by %s-%s)"
msgstr "%s-%s: ignorowanie aktualizowania pakietu (do zastąpienia przez %s-%s)"
#: lib/libalpm/alpm.c:1136 lib/libalpm/sync.c:160
#: lib/libalpm/alpm.c:1137 lib/libalpm/sync.c:160
#, c-format
msgid "%s-%s elected for upgrade (to be replaced by %s-%s)"
msgstr "%s-%s wybrany do zaktualizowania (do zastąpienia przez %s-%s)"
#: lib/libalpm/alpm.c:1158 lib/libalpm/sync.c:194
#: lib/libalpm/alpm.c:1159 lib/libalpm/sync.c:194
#, c-format
msgid "'%s' not found in sync db -- skipping"
msgstr "'%s' nie odnaleziony w bd sync -- pomijanie"
#: lib/libalpm/alpm.c:1172 lib/libalpm/sync.c:208 lib/libalpm/sync.c:509
#: lib/libalpm/alpm.c:1173 lib/libalpm/sync.c:208 lib/libalpm/sync.c:509
#, c-format
msgid "'%s' is already elected for removal -- skipping"
msgstr "'%s' jest już wybrany do usunięcia -- pomijanie"
#: lib/libalpm/alpm.c:1178
#: lib/libalpm/alpm.c:1179
#, c-format
msgid "%s elected for upgrade (%s => %s)"
msgstr "%s wybrany do zaktualizowania (%s => %s)"

View File

@@ -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-06-17 20:11-0400\n"
"POT-Creation-Date: 2007-09-16 16:55-0500\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"
@@ -109,7 +109,7 @@ msgstr "%s está incluso em NoExtract -- não descompactando"
msgid "%s is in trans->skip_add, skipping extraction"
msgstr "o pacote %s está incluso em trans->skip_add, não descompactando"
#: lib/libalpm/add.c:554 lib/libalpm/add.c:555 lib/libalpm/add.c:704
#: lib/libalpm/add.c:554 lib/libalpm/add.c:555 lib/libalpm/add.c:706
#, c-format
msgid "could not extract %s (%s)"
msgstr "não foi possível extrair %s (%s)"
@@ -224,7 +224,7 @@ msgstr "aviso: extraindo %s como %s.pacnew"
msgid "extracting %s"
msgstr "extraindo %s"
#: lib/libalpm/add.c:705
#: lib/libalpm/add.c:707
#, c-format
msgid "error: could not extract %s (%s)"
msgstr "erro: não foi possível descompactar %s (%s)"
@@ -385,107 +385,107 @@ msgstr "aviso: não foi possível remover o arquivo de lock %s"
msgid "config: new section '%s'"
msgstr "configuração: nova seção '%s'"
#: lib/libalpm/alpm.c:950
#: lib/libalpm/alpm.c:951
msgid "config: nopassiveftp"
msgstr "configuração: nopassiveftp"
#: lib/libalpm/alpm.c:953
#: lib/libalpm/alpm.c:954
msgid "config: usesyslog"
msgstr "configuração: usesyslog"
#: lib/libalpm/alpm.c:956
#: lib/libalpm/alpm.c:957
msgid "config: chomp"
msgstr "configuração: chomp"
#: lib/libalpm/alpm.c:959
#: lib/libalpm/alpm.c:960
msgid "config: usecolor"
msgstr "configuração: usecolor"
#: lib/libalpm/alpm.c:968
#: lib/libalpm/alpm.c:969
#, c-format
msgid "config: including %s"
msgstr "configuração: including %s"
#: lib/libalpm/alpm.c:978 lib/libalpm/alpm.c:983
#: lib/libalpm/alpm.c:979 lib/libalpm/alpm.c:984
#, c-format
msgid "config: noupgrade: %s"
msgstr "configuração: noupgrade: %s"
#: lib/libalpm/alpm.c:991 lib/libalpm/alpm.c:996
#: lib/libalpm/alpm.c:992 lib/libalpm/alpm.c:997
#, c-format
msgid "config: noextract: %s"
msgstr "configuração: noextract: %s"
#: lib/libalpm/alpm.c:1004 lib/libalpm/alpm.c:1009
#: lib/libalpm/alpm.c:1005 lib/libalpm/alpm.c:1010
#, c-format
msgid "config: ignorepkg: %s"
msgstr "configuração: ignorepkg: %s"
#: lib/libalpm/alpm.c:1017 lib/libalpm/alpm.c:1022
#: lib/libalpm/alpm.c:1018 lib/libalpm/alpm.c:1023
#, c-format
msgid "config: holdpkg: %s"
msgstr "configuração: holdpkg: %s"
#: lib/libalpm/alpm.c:1029
#: lib/libalpm/alpm.c:1030
#, c-format
msgid "config: dbpath: %s"
msgstr "configuração: dbpath: %s"
#: lib/libalpm/alpm.c:1036
#: lib/libalpm/alpm.c:1037
#, c-format
msgid "config: cachedir: %s"
msgstr "configuração: cachedir: %s"
#: lib/libalpm/alpm.c:1043
#: lib/libalpm/alpm.c:1044
#, fuzzy, c-format
msgid "config: rootdir: %s"
msgstr "configuração: cachedir: %s"
#: lib/libalpm/alpm.c:1046
#: lib/libalpm/alpm.c:1047
#, c-format
msgid "config: logfile: %s"
msgstr "configuração: logfile: %s"
#: lib/libalpm/alpm.c:1049
#: lib/libalpm/alpm.c:1050
#, c-format
msgid "config: xfercommand: %s"
msgstr "configuração: xfercommand: %s"
#: lib/libalpm/alpm.c:1054
#: lib/libalpm/alpm.c:1055
#, c-format
msgid "config: upgradedelay: %d"
msgstr "configuração: upgradedelay: %d"
#: lib/libalpm/alpm.c:1092 lib/libalpm/sync.c:107
#: lib/libalpm/alpm.c:1093 lib/libalpm/sync.c:107
msgid "checking for package replacements"
msgstr "verificando por substitutos do pacote"
#: lib/libalpm/alpm.c:1103 lib/libalpm/sync.c:123
#: lib/libalpm/alpm.c:1104 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:1106 lib/libalpm/sync.c:125
#: lib/libalpm/alpm.c:1107 lib/libalpm/sync.c:125
#, c-format
msgid "%s-%s: ignoring package upgrade (to be replaced by %s-%s)"
msgstr ""
#: lib/libalpm/alpm.c:1136 lib/libalpm/sync.c:160
#: lib/libalpm/alpm.c:1137 lib/libalpm/sync.c:160
#, c-format
msgid "%s-%s elected for upgrade (to be replaced by %s-%s)"
msgstr ""
#: lib/libalpm/alpm.c:1158 lib/libalpm/sync.c:194
#: lib/libalpm/alpm.c:1159 lib/libalpm/sync.c:194
#, c-format
msgid "'%s' not found in sync db -- skipping"
msgstr ""
#: lib/libalpm/alpm.c:1172 lib/libalpm/sync.c:208 lib/libalpm/sync.c:509
#: lib/libalpm/alpm.c:1173 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:1178
#: lib/libalpm/alpm.c:1179
#, c-format
msgid "%s elected for upgrade (%s => %s)"
msgstr ""

View File

@@ -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-06-17 20:11-0400\n"
"POT-Creation-Date: 2007-09-16 16:55-0500\n"
"PO-Revision-Date: 2007-03-16 02:52+1000\n"
"Last-Translator: Vladimir Bayrakovskiy <4rayven@gmail.com>\n"
"MIME-Version: 1.0\n"
@@ -103,7 +103,7 @@ msgstr "%s в списке NoExtract, пропускаю при распаков
msgid "%s is in trans->skip_add, skipping extraction"
msgstr ""
#: lib/libalpm/add.c:554 lib/libalpm/add.c:555 lib/libalpm/add.c:704
#: lib/libalpm/add.c:554 lib/libalpm/add.c:555 lib/libalpm/add.c:706
#, c-format
msgid "could not extract %s (%s)"
msgstr "не могу извлечь %s (%s)"
@@ -218,7 +218,7 @@ msgstr "предупреждение: извлекаю %s как %s.pacnew"
msgid "extracting %s"
msgstr "извлекаю %s"
#: lib/libalpm/add.c:705
#: lib/libalpm/add.c:707
#, c-format
msgid "error: could not extract %s (%s)"
msgstr "ошибка: не могу извлечь %s (%s)"
@@ -379,107 +379,107 @@ msgstr "предупреждение: не могу удалить lock-файл
msgid "config: new section '%s'"
msgstr "config: новая секция '%s'"
#: lib/libalpm/alpm.c:950
#: lib/libalpm/alpm.c:951
msgid "config: nopassiveftp"
msgstr ""
#: lib/libalpm/alpm.c:953
#: lib/libalpm/alpm.c:954
msgid "config: usesyslog"
msgstr ""
#: lib/libalpm/alpm.c:956
#: lib/libalpm/alpm.c:957
msgid "config: chomp"
msgstr ""
#: lib/libalpm/alpm.c:959
#: lib/libalpm/alpm.c:960
msgid "config: usecolor"
msgstr ""
#: lib/libalpm/alpm.c:968
#: lib/libalpm/alpm.c:969
#, c-format
msgid "config: including %s"
msgstr ""
#: lib/libalpm/alpm.c:978 lib/libalpm/alpm.c:983
#: lib/libalpm/alpm.c:979 lib/libalpm/alpm.c:984
#, c-format
msgid "config: noupgrade: %s"
msgstr ""
#: lib/libalpm/alpm.c:991 lib/libalpm/alpm.c:996
#: lib/libalpm/alpm.c:992 lib/libalpm/alpm.c:997
#, c-format
msgid "config: noextract: %s"
msgstr ""
#: lib/libalpm/alpm.c:1004 lib/libalpm/alpm.c:1009
#: lib/libalpm/alpm.c:1005 lib/libalpm/alpm.c:1010
#, c-format
msgid "config: ignorepkg: %s"
msgstr ""
#: lib/libalpm/alpm.c:1017 lib/libalpm/alpm.c:1022
#: lib/libalpm/alpm.c:1018 lib/libalpm/alpm.c:1023
#, c-format
msgid "config: holdpkg: %s"
msgstr ""
#: lib/libalpm/alpm.c:1029
#: lib/libalpm/alpm.c:1030
#, c-format
msgid "config: dbpath: %s"
msgstr ""
#: lib/libalpm/alpm.c:1036
#: lib/libalpm/alpm.c:1037
#, c-format
msgid "config: cachedir: %s"
msgstr ""
#: lib/libalpm/alpm.c:1043
#: lib/libalpm/alpm.c:1044
#, fuzzy, c-format
msgid "config: rootdir: %s"
msgstr "config: новая секция '%s'"
#: lib/libalpm/alpm.c:1046
#: lib/libalpm/alpm.c:1047
#, c-format
msgid "config: logfile: %s"
msgstr ""
#: lib/libalpm/alpm.c:1049
#: lib/libalpm/alpm.c:1050
#, c-format
msgid "config: xfercommand: %s"
msgstr ""
#: lib/libalpm/alpm.c:1054
#: lib/libalpm/alpm.c:1055
#, c-format
msgid "config: upgradedelay: %d"
msgstr ""
#: lib/libalpm/alpm.c:1092 lib/libalpm/sync.c:107
#: lib/libalpm/alpm.c:1093 lib/libalpm/sync.c:107
msgid "checking for package replacements"
msgstr "проверяю замены для пакетов"
#: lib/libalpm/alpm.c:1103 lib/libalpm/sync.c:123
#: lib/libalpm/alpm.c:1104 lib/libalpm/sync.c:123
#, c-format
msgid "checking replacement '%s' for package '%s'"
msgstr "проверяю замену '%s' для пакета '%s'"
#: lib/libalpm/alpm.c:1106 lib/libalpm/sync.c:125
#: lib/libalpm/alpm.c:1107 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:1136 lib/libalpm/sync.c:160
#: lib/libalpm/alpm.c:1137 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:1158 lib/libalpm/sync.c:194
#: lib/libalpm/alpm.c:1159 lib/libalpm/sync.c:194
#, c-format
msgid "'%s' not found in sync db -- skipping"
msgstr "'%s' не найден в базе данных -- пропускаю"
#: lib/libalpm/alpm.c:1172 lib/libalpm/sync.c:208 lib/libalpm/sync.c:509
#: lib/libalpm/alpm.c:1173 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:1178
#: lib/libalpm/alpm.c:1179
#, c-format
msgid "%s elected for upgrade (%s => %s)"
msgstr "%s выбран для обновления (%s => %s)"