From: Michael Vogt Date: Tue, 28 Oct 2008 17:45:36 +0000 (+0100) Subject: * apt-ftparchive might write corrupt Release files (LP: #46439) X-Git-Tag: 0.7.22~6^2~43 X-Git-Url: https://git.saurik.com/apt.git/commitdiff_plain/742f980e2df763c76431026bd0e03f724797cc50 * apt-ftparchive might write corrupt Release files (LP: #46439) * Apply --important option to apt-cache depends (LP: #16947) * apt-pkg/acquire-item.cc: - Added fallback to uncompressed 'Packages' if neither 'bz2' nor 'gz' available. (Closes: #409284) * apt-pkg/algorithm.cc: - Strip username and password from source URL in error message. (Closes: #425150) * Fix typos: - apt-pkg/depcache.cc * Fix compilation warnings: - apt-pkg/acquire.cc - apt-pkg/versionmatch.cc * Compilation fixes and portability improvement for compiling APT against non-GNU libc (thanks to Martin Koeppe, closes: #392063): - buildlib/apti18n.h.in: + textdomain() and bindtextdomain() must not be visible when --disable-nls - buildlib/inttypes.h.in: undefine standard int*_t types - Append INTLLIBS to SLIBS: + cmdline/makefile + ftparchive/makefile + methods/makefile * doc/apt.conf.5.xml: - clarify whether configuration items of apt.conf are case-sensitive (thanks to Vincent McIntyre, closes: #345901) * doc/apt-cache.8.xml: - search command uses POSIX regex, and searches for virtual packages too (closes: #277536) * doc/offline.sgml: clarify remote and target hosts (thanks to Nikolaus Schulz, closes: #175940) * Fix several typos in docs, translations and debian/changelog (thanks to timeless, Nicolas Bonifas and Josh Triplett, closes: #368665, #298821, #411532, #431636, #461458) * Document apt-key finger and adv commands (thanks to Stefan Schmidt, closes: #350575) * Better documentation for apt-get --option (thanks to Tomas Pospisek, closes: #386579) * Retitle the apt-mark.8 manpage (thanks to Justin Pryzby, closes: #471276) * Better documentation on using both APT::Default-Release and /etc/apt/preferences (thanks to Ingo Saitz, closes: #145575) * doc/apt-cache.8.xml: - add missing citerefentry * Upload to unstable * apt-pkg/deb/dpkgpm.cc: - Store the trigger state descriptions in a way that does not break the ABI. The approach taken makes the search for a string O(n) rather than O(lg(n)), but since n == 4, I do not consider this a major concern. If it becomes a concern, we can sort the static array and use std::equal_range(). (Closes: #499322) * apt-pkg/pkgcachegen.cc: - do not add multiple identical descriptions for the same language (closes: #400768) * Catalan updated. Closes: #499462 * Fix typo in cron.daily script. Closes: #486179 * Traditional Chinese updated. Closes: #488526 * German corrected and completed. Closes: #490532, #480002, #498018 * French completed * Bulgarian updated. Closes: #492473 * Slovak updated. Closes: #492475 * Galician updated. Closes: #492794 * Japanese updated. Closes: #492975 * Fix missing space in Greek translation. Closes: #493922 * Greek updated. * Brazilian Portuguese updated. * Basque updated. Closes: #496754 * Romanian updated. Closes: #492773, #488361 * Portuguese updated. Closes: #491790 * Simplified Chinese updated. Closes: #489344 * Norwegian Bokmål updated. Closes: #480022 * Czech updated. Closes: #479628, #497277 * Korean updated. Closes: #464515 * Spanish updated. Closes: #457706 * Lithuanian added. Closes: #493328 * Swedish updated. Closes: #497496 * Vietnamese updated. Closes: #497893 * Portuguese updated. Closes: #498411 * Greek updated. Closes: #498687 * Polish updated. * merge patch that enforces stricter https server certificate checking (thanks to Arnaud Ebalard, closes: #485960) * allow per-mirror specific https settings (thanks to Arnaud Ebalard, closes: #485965) * add doc/examples/apt-https-method-example.cof (thanks to Arnaud Ebalard, closes: #485964) * apt-pkg/depcache.cc: - when checking for new important deps, skip critical ones (closes: #485943) * improve apt progress reporting, display trigger actions * add DPkg::NoTriggers option so that applications that call apt/aptitude (like the installer) defer trigger processing (thanks to Joey Hess) * doc/makefile: - add examples/apt-https-method-example.conf * Russian updated. Closes: #479777, #499029 * fix FTBFS by changing build-depends to * ABI library name change because it's built against * Package that contains all the new features * Branch that contains all the new features: --- 742f980e2df763c76431026bd0e03f724797cc50 diff --cc README.arch index 364e940a4,364e940a4..58c40a497 --- a/README.arch +++ b/README.arch @@@ -1,7 -1,7 +1,7 @@@ You can build apt from arch, but this needs the following additional packages (in addtion to the usual build-depends): --autoconf automake xmlto perlsgml sgml2x sgmlspl docbook ++autoconf automake xmlto perlsgml sgml2x sgmlspl docbook doxygen then run: diff --cc debian/apt.cron.daily index 472d20c6d,32fbafc57..cdec7eea0 --- a/debian/apt.cron.daily +++ b/debian/apt.cron.daily @@@ -102,125 -72,109 +102,217 @@@ update_stamp( touch $stamp } - - + # we check here if autoclean was enough sizewise + check_size_constraints() + { + # min-age in days + MaxAge=0 + MinAge=2 + MaxSize=0 + CacheDir="var/cache/apt" + CacheArchive="archives/" + eval $(apt-config shell MaxAge APT::Archives::MaxAge) + eval $(apt-config shell MinAge APT::Archives::MinAge) + eval $(apt-config shell MaxSize APT::Archives::MaxSize) + eval $(apt-config shell Dir Dir) + eval $(apt-config shell CacheDir Dir::Cache) + eval $(apt-config shell CacheArchive Dir::Cache::archives) + + # sanity check + if [ -z "$CacheDir" -o -z "$CacheArchive" ]; then + echo "empty Dir::Cache or Dir::Cache::archives, exiting" + exit + fi + + Cache="${Dir%/}/${CacheDir%/}/${CacheArchive%/}/" + + # check age + if [ ! $MaxAge -eq 0 ] && [ ! $MinAge -eq 0 ]; then + find $Cache -name "*.deb" \( -mtime +$MaxAge -and -ctime +$MaxAge \) -and -not \( -mtime -$MinAge -or -ctime -$MinAge \) -print0 | xargs -r -0 rm -f + elif [ ! $MaxAge -eq 0 ]; then + find $Cache -name "*.deb" -ctime +$MaxAge -and -mtime +$MaxAge -print0 | xargs -r -0 rm -f + fi + + # check size + if [ ! $MaxSize -eq 0 ]; then + # maxSize is in MB + MaxSize=$(($MaxSize*1024)) + + #get current time + now=$(date --date=$(date --iso-8601) +%s) + MinAge=$(($MinAge*24*60*60)) + + # reverse-sort by mtime + for file in $(ls -rt $Cache/*.deb 2>/dev/null); do + du=$(du -s $Cache) + size=${du%%/*} + # check if the cache is small enough + if [ $size -lt $MaxSize ]; then + break + fi + + # check for MinAge of the file + if [ ! $MinAge -eq 0 ]; then + # check both ctime and mtime + mtime=$(stat -c %Y $file) + ctime=$(stat -c %Z $file) + if [ $mtime -gt $ctime ]; then + delta=$(($now-$mtime)) + else + delta=$(($now-$ctime)) + fi + #echo "$file ($delta), $MinAge" + if [ $delta -le $MinAge ]; then + #echo "Skiping $file (delta=$delta)" + break + fi + fi + + # delete oldest file + rm -f $file + done + fi + } + + # sleep for a random interval of time (default 30min) + # (some code taken from cron-apt, thanks) + random_sleep() + { + RandomSleep=1800 + eval $(apt-config shell RandomSleep APT::Periodic::RandomSleep) + if [ $RandomSleep -eq 0 ]; then + return + fi + if [ -z "$RANDOM" ] ; then + # A fix for shells that do not have this bash feature. + RANDOM=$(dd if=/dev/urandom count=1 2> /dev/null | cksum | cut -c"1-5") + fi + TIME=$(($RANDOM % $RandomSleep)) + sleep $TIME + } + ++ +debug_echo() +{ + # Display message if $VERBOSE >= 1 + if [ "$VERBOSE" -ge 1 ]; then + echo $1 1>&2 + fi +} + + # main + -if ! which apt-config >/dev/null; then +# check apt-config exstance +if ! which apt-config >/dev/null ; then + exit 0 +fi + +# Set VERBOSE mode from apt-config (or inherit from environment) +eval $(apt-config shell VERBOSE APT::Periodic::Verbose) +if [ -z "$VERBOSE" ]; then + VERBOSE="0" +fi +if [ "$VERBOSE" -le 2 ]; then + # quiet for 0,1,2 + XSTDOUT=">/dev/null" + XSTDERR="2>/dev/null" + XAPTOPT="-qq" + XUUPOPT="" +else + XSTDOUT="" + XSTDERR="" + XAPTOPT="" + XUUPOPT="-d" +fi +if [ "$VERBOSE" -ge 3 ]; then + # trace output + set -x +fi + +# laptop check, on_ac_power returns: +# 0 (true) System is on main power +# 1 (false) System is not on main power +# 255 (false) Power status could not be determined +# Desktop systems always return 255 it seems +if which on_ac_power >/dev/null; then + on_ac_power + POWER=$? + if [ $POWER -eq 1 ]; then + debug_echo "exit: system on main power." exit 0 + elif [ $POWER -ne 0 ]; then + debug_echo "exit: power status ($POWER) undetermined." + exit 0 + fi + debug_echo "system is on main power." +fi + +# check if we can lock the cache and if the cache is clean +if which apt-get >/dev/null && ! eval apt-get check $XAPTOPT $XSTDERR ; then + debug_echo "error encountered in cron job with \"apt-get check\"." + exit 0 +fi +# No need to check for apt-get below + +# Global current time in seconds since 1970-01-01 00:00:00 UTC +now=$(date +%s) + +# Set default values and normalize +Dir="/" +eval $(apt-config shell Dir Dir) +Dir=${Dir%/} + +CacheDir="var/cache/apt/" +eval $(apt-config shell CacheDir Dir::Cache) +CacheDir=${CacheDir%/} +if [ -z "$CacheDir" ]; then + debug_echo "practically empty Dir::Cache, exiting" + exit 0 fi +CacheArchive="archives/" +eval $(apt-config shell CacheArchive Dir::Cache::Archives) +CacheArchive=${CacheArchive%/} +if [ -z "$CacheArchive" ]; then + debug_echo "practically empty Dir::Cache::archives, exiting" + exit 0 +fi + +BackupArchiveInterval=0 +eval $(apt-config shell BackupArchiveInterval APT::Periodic::BackupArchiveInterval) + +BackupLevel=3 +eval $(apt-config shell BackupLevel APT::Periodic::BackupLevel) +if [ $BackupLevel -le 1 ]; then BackupLevel=2 ; fi + +CacheBackup="backup/" +eval $(apt-config shell CacheBackup Dir::Cache::Backup) +CacheBackup=${CacheBackup%/} +if [ -z "$CacheBackup" ]; then + echo "practically empty Dir::Cache::Backup, exiting" 1>&2 + exit 0 +fi + +# Support old Archive for compatibility. +# Document only Periodic for all controling parameters of this script. +MaxAge=0 +eval $(apt-config shell MaxAge APT::Archives::MaxAge) +eval $(apt-config shell MaxAge APT::Periodic::MaxAge) + +MinAge=2 +eval $(apt-config shell MinAge APT::Archives::MinAge) +eval $(apt-config shell MinAge APT::Periodic::MinAge) + +MaxSize=0 +eval $(apt-config shell MaxSize APT::Archives::MaxSize) +eval $(apt-config shell MaxSize APT::Periodic::MaxSize) + UpdateInterval=0 +eval $(apt-config shell UpdateInterval APT::Periodic::Update-Package-Lists) + DownloadUpgradeableInterval=0 -eval $(apt-config shell UpdateInterval APT::Periodic::Update-Package-Lists DownloadUpgradeableInterval APT::Periodic::Download-Upgradeable-Packages) -AutocleanInterval=$DownloadUpgradeableInterval -eval $(apt-config shell AutocleanInterval APT::Periodic::AutocleanInterval) +eval $(apt-config shell DownloadUpgradeableInterval APT::Periodic::Download-Upgradeable-Packages) + UnattendedUpgradeInterval=0 eval $(apt-config shell UnattendedUpgradeInterval APT::Periodic::Unattended-Upgrade) diff --cc debian/changelog index bef67eb6f,5b5657731..283c49fd5 --- a/debian/changelog +++ b/debian/changelog @@@ -1,50 -1,81 +1,118 @@@ - apt (0.7.15) UNRELEASED; urgency=low ++apt (0.7.17) UNRELEASED; urgency=low + + [ Osamu Aoki ] + * Updated cron script to support backups by hardlinks and + verbose levels. All features turned off by default. + * Added more error handlings. Closes: #438803, #462734, #454989, + * Refactored condition structure to make download and upgrade performed + if only previous steps succeeded. Closes: #341970 + * Documented all cron script related configuration items in + configure-index. + + [ Michael Vogt ] - * apt-pkg/deb/dpkgpm.cc: - - improve apt progress reporting, display trigger actions + * apt-pkg/depcache.cc: + - when checking for new important deps, skip critical ones + (LP: #236360) - * merge patch that enforces stricter https server certificate - checking (thanks to Arnaud Ebalard, closes: #485960) - * allow per-mirror specific https settings - (thanks to Arnaud Ebalard, closes: #485965) - * add doc/examples/apt-https-method-example.cof - (thanks to Arnaud Ebalard, closes: #485964) - * add DPkg::NoTriggers option so that applications that call - apt/aptitude (like the installer) defer trigger processing - (thanks to Joey Hess) + * document --install-recommends and --no-install-recommends + (thanks to Dereck Wonnacott, LP: #126180) - * fix various -Wall warnings + * make "apt-get build-dep" installed packages marked automatic + by default. This can be changed by setting the value of + APT::Get::Build-Dep-Automatic to false (thanks to Aaron + Haviland, closes: #44874, LP: #248268) + * apt-pkg/indexcopy.cc: + - support having CDs with no Packages file (just a Packages.gz) + by not forcing a verification on non-existing files + (LP: #255545) + * cmdline/apt-cache.cc: + - remove the gettext from a string that consists entirely + of variables (LP: #56792) - * doc/makefile: - - add examples/apt-https-method-example.conf + * apt-pkg/cacheiterators.h: + - add missing checks for Owner == 0 in end() - * apt-pkg/pkgcachegen.cc: - - do not add multiple identical descriptions for the same - language (closes: #400768) ++ ++ [ Dereck Wonnacott ] ++ * apt-ftparchive might write corrupt Release files (LP: #46439) ++ * Apply --important option to apt-cache depends (LP: #16947) ++ ++ -- Michael Vogt Fri, 12 Sep 2008 11:34:24 +0200 ++ + apt (0.7.17~exp2) experimental; urgency=low + + [ Eugene V. Lyubimkin ] + * apt-pkg/acquire-item.cc: + - Added fallback to uncompressed 'Packages' if neither 'bz2' nor 'gz' + available. (Closes: #409284) + * apt-pkg/algorithm.cc: + - Strip username and password from source URL in error message. + (Closes: #425150) + + -- Eugene V. Lyubimkin Fri, 24 Oct 2008 23:45:17 +0300 + + + apt (0.7.17~exp1) experimental; urgency=low + + [ Luca Bruno ] + * Fix typos: + - apt-pkg/depcache.cc + * Fix compilation warnings: + - apt-pkg/acquire.cc + - apt-pkg/versionmatch.cc + * Compilation fixes and portability improvement for compiling APT against non-GNU libc + (thanks to Martin Koeppe, closes: #392063): + - buildlib/apti18n.h.in: + + textdomain() and bindtextdomain() must not be visible when --disable-nls + - buildlib/inttypes.h.in: undefine standard int*_t types + - Append INTLLIBS to SLIBS: + + cmdline/makefile + + ftparchive/makefile + + methods/makefile + * doc/apt.conf.5.xml: + - clarify whether configuration items of apt.conf are case-sensitive + (thanks to Vincent McIntyre, closes: #345901) + + -- Luca Bruno Sat, 11 Oct 2008 09:17:46 +0200 + + apt (0.7.16) unstable; urgency=low + + [ Luca Bruno ] + * doc/apt-cache.8.xml: + - search command uses POSIX regex, and searches for virtual packages too + (closes: #277536) + * doc/offline.sgml: clarify remote and target hosts + (thanks to Nikolaus Schulz, closes: #175940) + * Fix several typos in docs, translations and debian/changelog + (thanks to timeless, Nicolas Bonifas and Josh Triplett, + closes: #368665, #298821, #411532, #431636, #461458) + * Document apt-key finger and adv commands + (thanks to Stefan Schmidt, closes: #350575) + * Better documentation for apt-get --option + (thanks to Tomas Pospisek, closes: #386579) + * Retitle the apt-mark.8 manpage (thanks to Justin Pryzby, closes: #471276) + * Better documentation on using both APT::Default-Release and + /etc/apt/preferences (thanks to Ingo Saitz, closes: #145575) + + [ Michael Vogt ] + * doc/apt-cache.8.xml: + - add missing citerefentry + + -- Michael Vogt Fri, 10 Oct 2008 23:44:50 +0200 + + apt (0.7.15) unstable; urgency=low + + * Upload to unstable + + -- Michael Vogt Sun, 05 Oct 2008 13:23:47 +0200 + + apt (0.7.15~exp3) experimental; urgency=low + + [Daniel Burrows] + * apt-pkg/deb/dpkgpm.cc: + - Store the trigger state descriptions in a way that does not break + the ABI. The approach taken makes the search for a string O(n) rather + than O(lg(n)), but since n == 4, I do not consider this a major + concern. If it becomes a concern, we can sort the static array and + use std::equal_range(). (Closes: #499322) + + [ Michael Vogt ] * apt-pkg/packagemanager.cc, apt-pkg/deb/dpkgpm.cc: - move the state file writting into the Go() implementation of dpkgpm (closes: #498799) diff --cc po/ar.po index 7b2582ace,3197aad35..512df2ebc --- a/po/ar.po +++ b/po/ar.po @@@ -6,7 -6,7 +6,7 @@@ msgid " msgstr "" "Project-Id-Version: apt_po\n" "Report-Msgid-Bugs-To: \n" - "POT-Creation-Date: 2008-05-04 09:18+0200\n" -"POT-Creation-Date: 2008-05-28 14:25+0200\n" ++"POT-Creation-Date: 2008-05-22 16:56+0200\n" "PO-Revision-Date: 2006-10-20 21:28+0300\n" "Last-Translator: Ossama M. Khayat \n" "Language-Team: Arabic \n" @@@ -2662,7 -2662,18 +2662,18 @@@ msgstr "التحضير لإزالة %s msgid "Completely removed %s" msgstr "تمت إزالة %s بالكامل" - #: apt-pkg/deb/dpkgpm.cc:716 + #. populate the "processing" map + #: apt-pkg/deb/dpkgpm.cc:604 + #, fuzzy, c-format + msgid "Installing %s" + msgstr "تم تثبيت %s" + + #: apt-pkg/deb/dpkgpm.cc:607 -#, c-format -msgid "Running post-installation trigger %s" -msgstr "" ++#, fuzzy, c-format ++msgid "Triggering %s" ++msgstr "تحضير %s" + + #: apt-pkg/deb/dpkgpm.cc:756 msgid "Can not write log, openpty() failed (/dev/pts not mounted?)\n" msgstr "" diff --cc po/bg.po index e08001349,78f6d9e09..bbacdbd11 --- a/po/bg.po +++ b/po/bg.po @@@ -9,10 -9,10 +9,10 @@@ # Damyan Ivanov , 2008. msgid "" msgstr "" - "Project-Id-Version: bg\n" + "Project-Id-Version: apt_po_bg\n" "Report-Msgid-Bugs-To: \n" - "POT-Creation-Date: 2008-05-04 09:18+0200\n" - "PO-Revision-Date: 2008-05-04 17:19+0300\n" -"POT-Creation-Date: 2008-05-28 14:25+0200\n" ++"POT-Creation-Date: 2008-05-22 16:56+0200\n" + "PO-Revision-Date: 2008-07-26 14:55+0300\n" "Last-Translator: Damyan Ivanov \n" "Language-Team: Bulgarian \n" "MIME-Version: 1.0\n" @@@ -2900,7 -2900,18 +2900,18 @@@ msgstr "Подготовка за пъРmsgid "Completely removed %s" msgstr "%s е напълно премахнат" - #: apt-pkg/deb/dpkgpm.cc:716 + #. populate the "processing" map + #: apt-pkg/deb/dpkgpm.cc:604 + #, c-format + msgid "Installing %s" + msgstr "Инсталиране на %s" + + #: apt-pkg/deb/dpkgpm.cc:607 -#, c-format -msgid "Running post-installation trigger %s" -msgstr "Изпълнение на тригер след инсталиране %s" ++#, fuzzy, c-format ++msgid "Triggering %s" ++msgstr "Подготвяне на %s" + + #: apt-pkg/deb/dpkgpm.cc:756 msgid "Can not write log, openpty() failed (/dev/pts not mounted?)\n" msgstr "" "Неуспех при запис в журнала, openpty() се провали (дали /dev/pts е " @@@ -2913,3 -2924,3 +2924,6 @@@ msgstr "Неуспех при Ð·Ð°ÐºÑŠÑ #: methods/rsh.cc:330 msgid "Connection closed prematurely" msgstr "Връзката прекъсна преждевременно" ++ ++#~ msgid "Running post-installation trigger %s" ++#~ msgstr "Изпълнение на тригер след инсталиране %s" diff --cc po/bs.po index 8e86696d8,05c655c2e..43fcb1c65 --- a/po/bs.po +++ b/po/bs.po @@@ -6,7 -6,7 +6,7 @@@ msgid " msgstr "" "Project-Id-Version: apt 0.5.26\n" "Report-Msgid-Bugs-To: \n" - "POT-Creation-Date: 2008-05-04 09:18+0200\n" -"POT-Creation-Date: 2008-05-28 14:25+0200\n" ++"POT-Creation-Date: 2008-05-22 16:56+0200\n" "PO-Revision-Date: 2004-05-06 15:25+0100\n" "Last-Translator: Safir Å ećerović \n" "Language-Team: Bosnian \n" @@@ -2662,7 -2662,18 +2662,18 @@@ msgstr " msgid "Completely removed %s" msgstr "Ne mogu ukloniti %s" - #: apt-pkg/deb/dpkgpm.cc:716 + #. populate the "processing" map + #: apt-pkg/deb/dpkgpm.cc:604 + #, fuzzy, c-format + msgid "Installing %s" + msgstr " Instalirano:" + + #: apt-pkg/deb/dpkgpm.cc:607 -#, c-format -msgid "Running post-installation trigger %s" -msgstr "" ++#, fuzzy, c-format ++msgid "Triggering %s" ++msgstr "Otvaram %s" + + #: apt-pkg/deb/dpkgpm.cc:756 msgid "Can not write log, openpty() failed (/dev/pts not mounted?)\n" msgstr "" diff --cc po/ca.po index 3843dc05a,37bd1ca13..9144ef668 --- a/po/ca.po +++ b/po/ca.po @@@ -6,10 -6,10 +6,10 @@@ # msgid "" msgstr "" - "Project-Id-Version: apt 0.6\n" + "Project-Id-Version: apt 0.7.15\n" "Report-Msgid-Bugs-To: \n" - "POT-Creation-Date: 2008-05-04 09:18+0200\n" - "PO-Revision-Date: 2006-02-05 22:00+0100\n" -"POT-Creation-Date: 2008-05-28 14:25+0200\n" ++"POT-Creation-Date: 2008-05-22 16:56+0200\n" + "PO-Revision-Date: 2008-09-19 09:38+0200\n" "Last-Translator: Jordi Mallach \n" "Language-Team: Catalan \n" "MIME-Version: 1.0\n" @@@ -2254,12 -2257,12 +2257,12 @@@ msgstr "Sub-procés %s ha rebut una vio msgid "Sub-process %s returned an error code (%u)" msgstr "Sub-procés %s ha retornat un codi d'error (%u)" -#: apt-pkg/contrib/fileutl.cc:459 +#: apt-pkg/contrib/fileutl.cc:457 #, c-format msgid "Sub-process %s exited unexpectedly" - msgstr "Sub-procés %s ha eixit inesperadament" + msgstr "El sub-procés %s ha sortit inesperadament" -#: apt-pkg/contrib/fileutl.cc:503 +#: apt-pkg/contrib/fileutl.cc:501 #, c-format msgid "Could not open file %s" msgstr "No s'ha pogut obrir el fitxer %s" @@@ -2862,76 -2866,57 +2866,60 @@@ msgstr "S'estan processant els gallets msgid "Installed %s" msgstr "S'ha instal·lat el paquet %s" - #: apt-pkg/deb/dpkgpm.cc:552 apt-pkg/deb/dpkgpm.cc:554 - #: apt-pkg/deb/dpkgpm.cc:555 + #: apt-pkg/deb/dpkgpm.cc:586 apt-pkg/deb/dpkgpm.cc:588 + #: apt-pkg/deb/dpkgpm.cc:589 #, c-format msgid "Preparing for removal of %s" - msgstr "S'està preparant per a l'eliminació del paquet %s" + msgstr "S'està preparant per a la supressió del paquet %s" - #: apt-pkg/deb/dpkgpm.cc:557 + #: apt-pkg/deb/dpkgpm.cc:591 apt-pkg/deb/dpkgpm.cc:606 #, c-format msgid "Removing %s" - msgstr "S'està eliminant el paquet %s" + msgstr "S'està suprimint el paquet %s" - #: apt-pkg/deb/dpkgpm.cc:558 + #: apt-pkg/deb/dpkgpm.cc:592 #, c-format msgid "Removed %s" - msgstr "S'ha eliminat el paquet %s" + msgstr "S'ha suprimit el paquet %s" - #: apt-pkg/deb/dpkgpm.cc:563 + #: apt-pkg/deb/dpkgpm.cc:597 #, c-format msgid "Preparing to completely remove %s" - msgstr "S'està preparant per a eliminar completament el paquet %s" + msgstr "S'està preparant per a suprimir completament el paquet %s" - #: apt-pkg/deb/dpkgpm.cc:564 + #: apt-pkg/deb/dpkgpm.cc:598 #, c-format msgid "Completely removed %s" - msgstr "S'ha eliminat completament el paquet %s" + msgstr "S'ha suprimit completament el paquet %s" + + #. populate the "processing" map + #: apt-pkg/deb/dpkgpm.cc:604 + #, c-format + msgid "Installing %s" + msgstr "S'està instal·lant %s" - #: apt-pkg/deb/dpkgpm.cc:716 + #: apt-pkg/deb/dpkgpm.cc:607 -#, c-format -msgid "Running post-installation trigger %s" -msgstr "S'està executant el gallet de postinstal·lació %s" ++#, fuzzy, c-format ++msgid "Triggering %s" ++msgstr "S'està preparant el paquet %s" + + #: apt-pkg/deb/dpkgpm.cc:756 msgid "Can not write log, openpty() failed (/dev/pts not mounted?)\n" msgstr "" + "No es pot escriure el registre, ha fallat openpty() (no s'ha muntat /dev/" + "pts?)\n" #: methods/rred.cc:219 - #, fuzzy msgid "Could not patch file" - msgstr "No s'ha pogut obrir el fitxer %s" + msgstr "No s'ha pogut aplicar el pedaç al fitxer" #: methods/rsh.cc:330 msgid "Connection closed prematurely" msgstr "La connexió s'ha tancat prematurament" - #, fuzzy - #~ msgid "Line %d too long (max %lu)" - #~ msgstr "Línia %d massa llarga (màx %d)" - - #, fuzzy - #~ msgid "Line %d too long (max %d)" - #~ msgstr "Línia %d massa llarga (màx %d)" - - #, fuzzy - #~ msgid "Error occured while processing %s (NewFileDesc1)" - #~ msgstr "S'ha produït un error durant el processament de %s (NewFileVer1)" - - #, fuzzy - #~ msgid "Error occured while processing %s (NewFileDesc2)" - #~ msgstr "S'ha produït un error durant el processament de %s (NewFileVer1)" - - #, fuzzy - #~ msgid "Stored label: %s \n" - #~ msgstr "S'ha emmagatzemat l'etiqueta: %s\n" - - #, fuzzy - #~ msgid "" - #~ "Found %i package indexes, %i source indexes, %i translation indexes and %" - #~ "i signatures\n" - #~ msgstr "" - #~ "S'han trobat %i índex de paquets, %i índex de fonts i %i signatures\n" - - #, fuzzy - #~ msgid "openpty failed\n" - #~ msgstr "Ha fallat la selecció" ++#~ msgid "Running post-installation trigger %s" ++#~ msgstr "S'està executant el gallet de postinstal·lació %s" + #~ msgid "File date has changed %s" #~ msgstr "La data del fitxer ha canviat %s" diff --cc po/cs.po index 2a82e7f07,85f649534..b2f2a86c1 --- a/po/cs.po +++ b/po/cs.po @@@ -7,8 -7,8 +7,8 @@@ msgid " msgstr "" "Project-Id-Version: apt\n" "Report-Msgid-Bugs-To: \n" - "POT-Creation-Date: 2008-05-04 09:18+0200\n" - "PO-Revision-Date: 2008-05-05 21:29+0200\n" -"POT-Creation-Date: 2008-05-28 14:25+0200\n" ++"POT-Creation-Date: 2008-05-22 16:56+0200\n" + "PO-Revision-Date: 2008-08-31 15:52+0200\n" "Last-Translator: Miroslav Kure \n" "Language-Team: Czech \n" "MIME-Version: 1.0\n" @@@ -2841,7 -2841,18 +2841,18 @@@ msgstr "Připravuji úplné odstraněnà msgid "Completely removed %s" msgstr "Kompletně odstraněn %s" - #: apt-pkg/deb/dpkgpm.cc:716 + #. populate the "processing" map + #: apt-pkg/deb/dpkgpm.cc:604 + #, c-format + msgid "Installing %s" + msgstr "Instaluji %s" + + #: apt-pkg/deb/dpkgpm.cc:607 -#, c-format -msgid "Running post-installation trigger %s" -msgstr "SpouÅ¡tím poinstalační spouÅ¡těč %s" ++#, fuzzy, c-format ++msgid "Triggering %s" ++msgstr "Připravuji %s" + + #: apt-pkg/deb/dpkgpm.cc:756 msgid "Can not write log, openpty() failed (/dev/pts not mounted?)\n" msgstr "Nelze zapsat log, volání openpty() selhalo (/dev/pts není připojen?)\n" @@@ -2853,6 -2864,6 +2864,9 @@@ msgstr "Nemohu záplatovat soubor msgid "Connection closed prematurely" msgstr "Spojení bylo předčasně ukončeno" ++#~ msgid "Running post-installation trigger %s" ++#~ msgstr "SpouÅ¡tím poinstalační spouÅ¡těč %s" ++ #~ msgid "Line %d too long (max %lu)" #~ msgstr "Řádek %d je příliÅ¡ dlouhý (max %lu)" diff --cc po/cy.po index ef0b4bf1d,fcc70d423..0723e718d --- a/po/cy.po +++ b/po/cy.po @@@ -6,7 -6,7 +6,7 @@@ msgid " msgstr "" "Project-Id-Version: APT\n" "Report-Msgid-Bugs-To: \n" - "POT-Creation-Date: 2008-05-04 09:18+0200\n" -"POT-Creation-Date: 2008-05-28 14:25+0200\n" ++"POT-Creation-Date: 2008-05-22 16:56+0200\n" "PO-Revision-Date: 2005-06-06 13:46+0100\n" "Last-Translator: Dafydd Harries \n" "Language-Team: Welsh \n" @@@ -2949,7 -2949,18 +2949,18 @@@ msgstr "Yn agor y ffeil cyfluniad %s msgid "Completely removed %s" msgstr "Methwyd dileu %s" - #: apt-pkg/deb/dpkgpm.cc:716 + #. populate the "processing" map + #: apt-pkg/deb/dpkgpm.cc:604 + #, fuzzy, c-format + msgid "Installing %s" + msgstr " Wedi Sefydlu: " + + #: apt-pkg/deb/dpkgpm.cc:607 -#, c-format -msgid "Running post-installation trigger %s" -msgstr "" ++#, fuzzy, c-format ++msgid "Triggering %s" ++msgstr "Yn agor %s" + + #: apt-pkg/deb/dpkgpm.cc:756 msgid "Can not write log, openpty() failed (/dev/pts not mounted?)\n" msgstr "" diff --cc po/da.po index 0669b1da1,2e87785b3..e40e16ded --- a/po/da.po +++ b/po/da.po @@@ -9,7 -9,7 +9,7 @@@ msgid " msgstr "" "Project-Id-Version: apt-da\n" "Report-Msgid-Bugs-To: \n" - "POT-Creation-Date: 2008-05-04 09:18+0200\n" -"POT-Creation-Date: 2008-05-28 14:25+0200\n" ++"POT-Creation-Date: 2008-05-22 16:56+0200\n" "PO-Revision-Date: 2007-09-06 21:40+0200\n" "Last-Translator: Claus Hindsgaul \n" "Language-Team: Danish\n" @@@ -2863,7 -2863,18 +2863,18 @@@ msgstr "Gør klar til at fjerne %s helt msgid "Completely removed %s" msgstr "Fjernede %s helt" - #: apt-pkg/deb/dpkgpm.cc:716 + #. populate the "processing" map + #: apt-pkg/deb/dpkgpm.cc:604 + #, fuzzy, c-format + msgid "Installing %s" + msgstr "Installerede %s" + + #: apt-pkg/deb/dpkgpm.cc:607 -#, c-format -msgid "Running post-installation trigger %s" -msgstr "" ++#, fuzzy, c-format ++msgid "Triggering %s" ++msgstr "Klargør %s" + + #: apt-pkg/deb/dpkgpm.cc:756 msgid "Can not write log, openpty() failed (/dev/pts not mounted?)\n" msgstr "" diff --cc po/de.po index 4bb7a9955,88bab3021..82d5391bb --- a/po/de.po +++ b/po/de.po @@@ -8,10 -9,10 +9,10 @@@ msgid " msgstr "" "Project-Id-Version: apt 0.7.14\n" "Report-Msgid-Bugs-To: \n" - "POT-Creation-Date: 2008-05-04 09:50+0200\n" - "PO-Revision-Date: 2008-05-07 15:10+0200\n" - "Last-Translator: Jens Seidel \n" - "Language-Team: \n" -"POT-Creation-Date: 2008-05-28 14:25+0200\n" ++"POT-Creation-Date: 2008-05-22 16:56+0200\n" + "PO-Revision-Date: 2008-09-06 13:55+0100\n" + "Last-Translator: Holger Wansing \n" + "Language-Team: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@@ -2289,12 -2293,12 +2293,12 @@@ msgstr "Unterprozess %s hat sich unerwa msgid "Could not open file %s" msgstr "Konnte Datei %s nicht öffnen" -#: apt-pkg/contrib/fileutl.cc:559 +#: apt-pkg/contrib/fileutl.cc:557 #, c-format msgid "read, still have %lu to read but none left" - msgstr "Lesen, habe noch %lu zu lesen aber nichts mehr da" + msgstr "Lese, habe noch %lu zu lesen, aber nichts mehr übrig" -#: apt-pkg/contrib/fileutl.cc:589 +#: apt-pkg/contrib/fileutl.cc:587 #, c-format msgid "write, still have %lu to write but couldn't" msgstr "Schreiben, habe noch %lu zu schreiben, konnte aber nicht" @@@ -2649,25 -2653,26 +2653,26 @@@ msgstr "Ein Fehler trat beim Bearbeite #: apt-pkg/pkgcachegen.cc:251 msgid "Wow, you exceeded the number of package names this APT is capable of." msgstr "" - "Toll, Sie haben die Anzahl an Paketen überschritten, die APT handhaben kann." -"Na so was, Sie haben die Anzahl an Paketen überschritten, mit denen APT umgehen " -"kann." ++"Na so was, Sie haben die Anzahl an Paketen überschritten, mit denen APT " ++"umgehen kann." #: apt-pkg/pkgcachegen.cc:254 msgid "Wow, you exceeded the number of versions this APT is capable of." msgstr "" - "Toll, Sie haben die Anzahl an Versionen überschritten, die APT handhaben " -"Na so was, Sie haben die Anzahl an Versionen überschritten, mit denen APT umgehen " --"kann." ++"Na so was, Sie haben die Anzahl an Versionen überschritten, mit denen APT " ++"umgehen kann." #: apt-pkg/pkgcachegen.cc:257 msgid "Wow, you exceeded the number of descriptions this APT is capable of." msgstr "" - "Toll, Sie haben die Anzahl an Beschreibungen überschritten, die APT " - "handhaben kann." -"Na so was, Sie haben die Anzahl an Beschreibungen überschritten, mit denen APT " -"umgehen kann." ++"Na so was, Sie haben die Anzahl an Beschreibungen überschritten, mit denen " ++"APT umgehen kann." #: apt-pkg/pkgcachegen.cc:260 msgid "Wow, you exceeded the number of dependencies this APT is capable of." msgstr "" - "Toll, Sie haben die Anzahl an Abhängigkeiten überschritten, die APT " - "handhaben kann." -"Na so was, Sie haben die Anzahl an Abhängigkeiten überschritten, mit denen APT " -"umgehen kann." ++"Na so was, Sie haben die Anzahl an Abhängigkeiten überschritten, mit denen " ++"APT umgehen kann." #: apt-pkg/pkgcachegen.cc:288 #, c-format @@@ -2911,12 -2916,23 +2916,23 @@@ msgstr "%s entfernt msgid "Preparing to completely remove %s" msgstr "Komplettes Entfernen von %s wird vorbereitet" - #: apt-pkg/deb/dpkgpm.cc:564 + #: apt-pkg/deb/dpkgpm.cc:598 #, c-format msgid "Completely removed %s" - msgstr "%s komplett entfernt" + msgstr "%s vollständig entfernt" + + #. populate the "processing" map + #: apt-pkg/deb/dpkgpm.cc:604 + #, c-format + msgid "Installing %s" + msgstr "Installiere %s" + + #: apt-pkg/deb/dpkgpm.cc:607 -#, c-format -msgid "Running post-installation trigger %s" -msgstr "Rufe Nach-Installations-Trigger %s auf" ++#, fuzzy, c-format ++msgid "Triggering %s" ++msgstr "%s wird vorbereitet" - #: apt-pkg/deb/dpkgpm.cc:716 + #: apt-pkg/deb/dpkgpm.cc:756 msgid "Can not write log, openpty() failed (/dev/pts not mounted?)\n" msgstr "" "Kann Protokoll nicht schreiben, openpty() schlug fehl (/dev/pts nicht " @@@ -2929,32 -2945,3 +2945,6 @@@ msgstr "Konnte Datei nicht patchen #: methods/rsh.cc:330 msgid "Connection closed prematurely" msgstr "Verbindung zu früh beendet" + - #~ msgid "Line %d too long (max %lu)" - #~ msgstr "Zeile %d zu lang (maximal %lu)" - - #, fuzzy - #~ msgid "Line %d too long (max %d)" - #~ msgstr "Zeile %d zu lang (maximal %d)" - - #, fuzzy - #~ msgid "Error occured while processing %s (NewFileDesc1)" - #~ msgstr "Ein Fehler trat beim Bearbeiten von %s auf (NewFileVer1)" - - #, fuzzy - #~ msgid "Error occured while processing %s (NewFileDesc2)" - #~ msgstr "Ein Fehler trat beim Bearbeiten von %s auf (NewFileVer1)" - - #, fuzzy - #~ msgid "Stored label: %s \n" - #~ msgstr "Gespeicherte Kennzeichnung: %s \n" - - #, fuzzy - #~ msgid "" - #~ "Found %i package indexes, %i source indexes, %i translation indexes and %" - #~ "i signatures\n" - #~ msgstr "Fand %i Paketindexe, %i Quellenindexe und %i Signaturen\n" - - #, fuzzy - #~ msgid "openpty failed\n" - #~ msgstr "Auswahl fehlgeschlagen" ++#~ msgid "Running post-installation trigger %s" ++#~ msgstr "Rufe Nach-Installations-Trigger %s auf" diff --cc po/dz.po index 35563388d,833a18f92..34674c6c2 --- a/po/dz.po +++ b/po/dz.po @@@ -6,7 -6,7 +6,7 @@@ msgid " msgstr "" "Project-Id-Version: apt_po.pot\n" "Report-Msgid-Bugs-To: \n" - "POT-Creation-Date: 2008-05-04 09:18+0200\n" -"POT-Creation-Date: 2008-05-28 14:25+0200\n" ++"POT-Creation-Date: 2008-05-22 16:56+0200\n" "PO-Revision-Date: 2006-09-19 09:49+0530\n" "Last-Translator: Kinley Tshering \n" "Language-Team: Dzongkha \n" @@@ -2875,7 -2875,18 +2875,18 @@@ msgstr "%s མཇུག་བསྡུà msgid "Completely removed %s" msgstr "%s མཇུག་བསྡུཝ་སྦེ་རང་རྩ་བསྐྲད་བཏང་ཡོད།" - #: apt-pkg/deb/dpkgpm.cc:716 + #. populate the "processing" map + #: apt-pkg/deb/dpkgpm.cc:604 + #, fuzzy, c-format + msgid "Installing %s" + msgstr "གཞི་བཙུགས་འབད་ཡོད་པའི་%s།" + + #: apt-pkg/deb/dpkgpm.cc:607 -#, c-format -msgid "Running post-installation trigger %s" -msgstr "" ++#, fuzzy, c-format ++msgid "Triggering %s" ++msgstr "%s་ གྲ་སྒྲིག་འབད་དོ།" + + #: apt-pkg/deb/dpkgpm.cc:756 msgid "Can not write log, openpty() failed (/dev/pts not mounted?)\n" msgstr "" diff --cc po/el.po index c89bfbe42,8b643cec4..47c8eb047 --- a/po/el.po +++ b/po/el.po @@@ -13,14 -9,15 +9,15 @@@ # George Papamichalakis , 2004. # Greek Translation Team , 2005. # quad-nrg.net , 2005. - # + # Serafeim Zanikolas , 2008. + # quad-nrg.net , 2008. msgid "" msgstr "" - "Project-Id-Version: apt_po_el_new\n" + "Project-Id-Version: apt_po_el\n" "Report-Msgid-Bugs-To: \n" - "POT-Creation-Date: 2008-05-04 09:18+0200\n" - "PO-Revision-Date: 2006-01-18 15:16+0200\n" - "Last-Translator: Konstantinos Margaritis \n" -"POT-Creation-Date: 2008-05-28 14:25+0200\n" ++"POT-Creation-Date: 2008-05-22 16:56+0200\n" + "PO-Revision-Date: 2008-08-26 18:25+0300\n" + "Last-Translator: quad-nrg.net \n" "Language-Team: Greek \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@@ -2893,71 -2892,37 +2892,40 @@@ msgstr "Αφαιρώ το %s msgid "Removed %s" msgstr "Αφαίρεσα το %s" - #: apt-pkg/deb/dpkgpm.cc:563 - #, fuzzy, c-format + #: apt-pkg/deb/dpkgpm.cc:597 + #, c-format msgid "Preparing to completely remove %s" - msgstr "Προετοιμασία ρύθμισης του %s" + msgstr "Προετοιμασία πλήρης αφαίρεσης του %s" - #: apt-pkg/deb/dpkgpm.cc:564 - #, fuzzy, c-format + #: apt-pkg/deb/dpkgpm.cc:598 + #, c-format msgid "Completely removed %s" - msgstr "Αποτυχία διαγραφής του %s" + msgstr "Το %s διαγράφηκε πλήρως" + + #. populate the "processing" map + #: apt-pkg/deb/dpkgpm.cc:604 + #, c-format + msgid "Installing %s" + msgstr "Εγκατάσταση του %s" + + #: apt-pkg/deb/dpkgpm.cc:607 -#, c-format -msgid "Running post-installation trigger %s" -msgstr "Εκτέλεση του post-installation trigger %s" ++#, fuzzy, c-format ++msgid "Triggering %s" ++msgstr "Προετοιμασία του %s" - #: apt-pkg/deb/dpkgpm.cc:716 + #: apt-pkg/deb/dpkgpm.cc:756 msgid "Can not write log, openpty() failed (/dev/pts not mounted?)\n" msgstr "" + "Αδυναμία εγγραφής στο αρχείο γεγονότων, λόγω αποτυχίας του openpyt() (είναι " + "προσαρτημένο το /dev/pts;)\n" #: methods/rred.cc:219 - #, fuzzy msgid "Could not patch file" - msgstr "Αδύνατο το άνοιγμα του αρχείου %s" + msgstr "Αδύνατη η διόρθωση του αρχείου" #: methods/rsh.cc:330 msgid "Connection closed prematurely" msgstr "Η σύνδεση έκλεισε πρόωρα" + - #, fuzzy - #~ msgid "Line %d too long (max %lu)" - #~ msgstr "Η γραμμή %d έχει υπερβολικό μήκος (μέγιστο %d)" - - #, fuzzy - #~ msgid "Line %d too long (max %d)" - #~ msgstr "Η γραμμή %d έχει υπερβολικό μήκος (μέγιστο %d)" - - #, fuzzy - #~ msgid "Error occured while processing %s (NewFileDesc1)" - #~ msgstr "Προέκευψε σφάλμα κατά την επεξεργασία του %s (NewFileVer1)" - - #, fuzzy - #~ msgid "Error occured while processing %s (NewFileDesc2)" - #~ msgstr "Προέκευψε σφάλμα κατά την επεξεργασία του %s (NewFileVer1)" - - #, fuzzy - #~ msgid "Stored label: %s \n" - #~ msgstr "Αποθήκευση Ετικέτας: %s \n" - - #, fuzzy - #~ msgid "" - #~ "Found %i package indexes, %i source indexes, %i translation indexes and %" - #~ "i signatures\n" - #~ msgstr "" - #~ "Βρέθηκαν %i κατάλογοι πακέτων, %i κατάλογοι πηγαίων και %i υπογραφές\n" - - #, fuzzy - #~ msgid "openpty failed\n" - #~ msgstr "Η επιλογή απέτυχε" - - #~ msgid "File date has changed %s" - #~ msgstr "Η ημερομηνία του αρχείου %s έχει αλλάξει" - - #~ msgid "Reading file list" - #~ msgstr "Ανάγνωση Λιστών Αρχείων" - - #~ msgid "Could not execute " - #~ msgstr "Αδύνατη η εκτέλεση " - - #~ msgid "Preparing for remove with config %s" - #~ msgstr "Προετοιμασία για αφαίρεση με ρύθμιση του %s" - - #~ msgid "Removed with config %s" - #~ msgstr "Αφαίρεσα με ρύθμιση το %s" ++#~ msgid "Running post-installation trigger %s" ++#~ msgstr "Εκτέλεση του post-installation trigger %s" diff --cc po/en_GB.po index a40000dbb,5f4ff3985..12cf3ff2c --- a/po/en_GB.po +++ b/po/en_GB.po @@@ -7,7 -7,7 +7,7 @@@ msgid " msgstr "" "Project-Id-Version: apt 0.6.46.2\n" "Report-Msgid-Bugs-To: \n" - "POT-Creation-Date: 2008-05-04 09:18+0200\n" -"POT-Creation-Date: 2008-05-28 14:25+0200\n" ++"POT-Creation-Date: 2008-05-22 16:56+0200\n" "PO-Revision-Date: 2006-10-12 11:07+0100\n" "Last-Translator: Neil Williams \n" "Language-Team: en_GB \n" @@@ -2845,7 -2845,18 +2845,18 @@@ msgstr "Preparing to completely remove msgid "Completely removed %s" msgstr "Completely removed %s" - #: apt-pkg/deb/dpkgpm.cc:716 + #. populate the "processing" map + #: apt-pkg/deb/dpkgpm.cc:604 + #, fuzzy, c-format + msgid "Installing %s" + msgstr "Installed %s" + + #: apt-pkg/deb/dpkgpm.cc:607 -#, c-format -msgid "Running post-installation trigger %s" -msgstr "" ++#, fuzzy, c-format ++msgid "Triggering %s" ++msgstr "Preparing %s" + + #: apt-pkg/deb/dpkgpm.cc:756 msgid "Can not write log, openpty() failed (/dev/pts not mounted?)\n" msgstr "" diff --cc po/es.po index db715c783,9cade2ac8..259685d83 --- a/po/es.po +++ b/po/es.po @@@ -8,10 -8,10 +8,10 @@@ # msgid "" msgstr "" - "Project-Id-Version: apt 0.6.42.3exp1\n" + "Project-Id-Version: apt 0.7.9\n" "Report-Msgid-Bugs-To: \n" - "POT-Creation-Date: 2008-05-04 09:18+0200\n" - "PO-Revision-Date: 2007-06-21 13:06+0200\n" -"POT-Creation-Date: 2008-05-28 14:25+0200\n" ++"POT-Creation-Date: 2008-05-22 16:56+0200\n" + "PO-Revision-Date: 2007-12-24 18:35+0100\n" "Last-Translator: Javier Fernandez-Sanguino \n" "Language-Team: Debian Spanish \n" "MIME-Version: 1.0\n" @@@ -31,6 -56,8 +56,7 @@@ msgid "Unable to locate package %s msgstr "No se ha podido localizar el paquete %s" #: cmdline/apt-cache.cc:247 + #, fuzzy -#| msgid "Total package names : " msgid "Total package names: " msgstr "Nombres de paquetes totales: " @@@ -59,8 -86,10 +85,9 @@@ msgid "Total distinct versions: msgstr "Versiones diferentes totales: " #: cmdline/apt-cache.cc:295 + #, fuzzy -#| msgid "Total Distinct Descriptions: " msgid "Total distinct descriptions: " - msgstr "Descipciones diferentes totales: " + msgstr "Descripciones diferentes totales: " #: cmdline/apt-cache.cc:297 msgid "Total dependencies: " @@@ -1987,10 -2061,11 +2015,10 @@@ msgid "At least one invalid signature w msgstr "Se encontró al menos una firma inválida." #: methods/gpgv.cc:214 - #, c-format + #, fuzzy, c-format -#| msgid "Could not execute '%s' to verify signature (is gnupg installed?)" msgid "Could not execute '%s' to verify signature (is gpgv installed?)" msgstr "" - "No se pudo ejecutar '%s' para verificar la firma (¿está instalado gpgv?)" + "No se pudo ejecutar '%s' para verificar la firma (¿está instalado gnupg?)" #: methods/gpgv.cc:219 msgid "Unknown error executing gpgv" @@@ -2901,9 -2978,23 +2928,22 @@@ msgstr "Preparándose para eliminar comp msgid "Completely removed %s" msgstr "Se borró completamente %s" - #: apt-pkg/deb/dpkgpm.cc:716 + #. populate the "processing" map + #: apt-pkg/deb/dpkgpm.cc:604 + #, fuzzy, c-format -#| msgid "Installed %s" + msgid "Installing %s" + msgstr "%s instalado" + + #: apt-pkg/deb/dpkgpm.cc:607 -#, c-format -msgid "Running post-installation trigger %s" -msgstr "" ++#, fuzzy, c-format ++msgid "Triggering %s" ++msgstr "Preparando %s" + + #: apt-pkg/deb/dpkgpm.cc:756 msgid "Can not write log, openpty() failed (/dev/pts not mounted?)\n" msgstr "" + "No se pudo escribir un registro, falló la llamada a «openpty()» (¿no está " + "montado «/dev/pts»?)\n" #: methods/rred.cc:219 msgid "Could not patch file" diff --cc po/eu.po index 63c449f8b,264642c6a..e95b2eec1 --- a/po/eu.po +++ b/po/eu.po @@@ -5,10 -5,10 +5,10 @@@ # Piarres Beobide , 2005, 2006, 2007, 2008. msgid "" msgstr "" - "Project-Id-Version: apt-eu\n" + "Project-Id-Version: apt_po_eu\n" "Report-Msgid-Bugs-To: \n" - "POT-Creation-Date: 2008-05-04 09:18+0200\n" - "PO-Revision-Date: 2008-05-04 23:24+0200\n" -"POT-Creation-Date: 2008-05-28 14:25+0200\n" ++"POT-Creation-Date: 2008-05-22 16:56+0200\n" + "PO-Revision-Date: 2008-08-27 10:19+0200\n" "Last-Translator: Piarres Beobide \n" "Language-Team: Euskara \n" "MIME-Version: 1.0\n" @@@ -2862,7 -2862,18 +2862,18 @@@ msgstr "%s guztiz ezabatzeko prestatzen msgid "Completely removed %s" msgstr "%s guztiz ezabatu da" - #: apt-pkg/deb/dpkgpm.cc:716 + #. populate the "processing" map + #: apt-pkg/deb/dpkgpm.cc:604 + #, c-format + msgid "Installing %s" + msgstr "%s Instalatzen" + + #: apt-pkg/deb/dpkgpm.cc:607 -#, c-format -msgid "Running post-installation trigger %s" -msgstr "Inbstalazio-ondorengo %s abiarazlea exekutatzen" ++#, fuzzy, c-format ++msgid "Triggering %s" ++msgstr "%s prestatzen" + + #: apt-pkg/deb/dpkgpm.cc:756 msgid "Can not write log, openpty() failed (/dev/pts not mounted?)\n" msgstr "" "Ezin da erregistroa idatzi, openpty() -ek huts egin du (/dev/pts ez dago " @@@ -2875,3 -2886,3 +2886,6 @@@ msgstr "Ezin izan zaio fitxategiari ada #: methods/rsh.cc:330 msgid "Connection closed prematurely" msgstr "Konexioa behar baino lehenago itxi da" ++ ++#~ msgid "Running post-installation trigger %s" ++#~ msgstr "Inbstalazio-ondorengo %s abiarazlea exekutatzen" diff --cc po/fi.po index 4b8dfd0ca,8842aea72..68a7d819e --- a/po/fi.po +++ b/po/fi.po @@@ -8,7 -8,7 +8,7 @@@ msgid " msgstr "" "Project-Id-Version: apt 0.5.26\n" "Report-Msgid-Bugs-To: \n" - "POT-Creation-Date: 2008-05-04 09:18+0200\n" -"POT-Creation-Date: 2008-05-28 14:25+0200\n" ++"POT-Creation-Date: 2008-05-22 16:56+0200\n" "PO-Revision-Date: 2008-05-04 19:30+0300\n" "Last-Translator: Tapio Lehtonen \n" "Language-Team: Finnish \n" @@@ -2859,7 -2859,18 +2859,18 @@@ msgstr "Valmistaudutaan poistamaan %s k msgid "Completely removed %s" msgstr "%s poistettiin kokonaan" - #: apt-pkg/deb/dpkgpm.cc:716 + #. populate the "processing" map + #: apt-pkg/deb/dpkgpm.cc:604 + #, fuzzy, c-format + msgid "Installing %s" + msgstr "%s asennettu" + + #: apt-pkg/deb/dpkgpm.cc:607 -#, c-format -msgid "Running post-installation trigger %s" -msgstr "" ++#, fuzzy, c-format ++msgid "Triggering %s" ++msgstr "Valmistellaan %s" + + #: apt-pkg/deb/dpkgpm.cc:756 msgid "Can not write log, openpty() failed (/dev/pts not mounted?)\n" msgstr "" "Lokiin ei voi kirjoittaa, openpty() epäonnistui (onko /dev/pts " diff --cc po/fr.po index 4e5261f38,8931d0f15..1b6abe4b6 --- a/po/fr.po +++ b/po/fr.po @@@ -7,8 -7,8 +7,8 @@@ msgid " msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: \n" - "POT-Creation-Date: 2008-05-04 09:18+0200\n" - "PO-Revision-Date: 2008-05-04 10:15+0200\n" -"POT-Creation-Date: 2008-05-28 14:25+0200\n" ++"POT-Creation-Date: 2008-05-22 16:56+0200\n" + "PO-Revision-Date: 2008-07-26 07:36+0200\n" "Last-Translator: Christian Perrier \n" "Language-Team: French \n" "MIME-Version: 1.0\n" @@@ -242,11 -242,11 +242,13 @@@ msgstr " #: cmdline/apt-cdrom.cc:78 msgid "Please provide a name for this Disc, such as 'Debian 2.1r1 Disk 1'" --msgstr "Veuillez indiquer le nom de ce disque, par exemple « Debian 2.1r1 Disk 1 »" ++msgstr "" ++"Veuillez indiquer le nom de ce disque, par exemple « Debian 2.1r1 Disk 1 »" #: cmdline/apt-cdrom.cc:93 msgid "Please insert a Disc in the drive and press enter" --msgstr "Veuillez insérer un disque dans le lecteur et appuyez sur la touche Entrée" ++msgstr "" ++"Veuillez insérer un disque dans le lecteur et appuyez sur la touche Entrée" #: cmdline/apt-cdrom.cc:117 msgid "Repeat this process for the rest of the CDs in your set." @@@ -322,7 -322,7 +324,8 @@@ msgstr "Impossible d'écrire sur %s #: cmdline/apt-extracttemplates.cc:310 msgid "Cannot get debconf version. Is debconf installed?" --msgstr "Impossible d'obtenir la version de debconf. Est-ce que debconf est installé ?" ++msgstr "" ++"Impossible d'obtenir la version de debconf. Est-ce que debconf est installé ?" #: ftparchive/apt-ftparchive.cc:164 ftparchive/apt-ftparchive.cc:338 msgid "Package extension list is too long" @@@ -437,7 -437,7 +440,8 @@@ msgstr "Aucune sélection ne correspond #: ftparchive/apt-ftparchive.cc:832 #, c-format msgid "Some files are missing in the package file group `%s'" --msgstr "Quelques fichiers sont manquants dans le groupe de fichiers de paquets « %s »" ++msgstr "" ++"Quelques fichiers sont manquants dans le groupe de fichiers de paquets « %s »" #: ftparchive/cachedb.cc:43 #, c-format @@@ -816,7 -816,7 +820,8 @@@ msgstr "Erreur interne, « InstallPack #: cmdline/apt-get.cc:782 msgid "Packages need to be removed but remove is disabled." --msgstr "Les paquets doivent être enlevés mais la désinstallation est désactivée." ++msgstr "" ++"Les paquets doivent être enlevés mais la désinstallation est désactivée." #: cmdline/apt-get.cc:793 msgid "Internal error, Ordering didn't finish" @@@ -850,7 -850,7 +855,8 @@@ msgstr "Il est nécessaire de prendre % #: cmdline/apt-get.cc:847 #, c-format msgid "After this operation, %sB of additional disk space will be used.\n" --msgstr "Après cette opération, %so d'espace disque supplémentaires seront utilisés.\n" ++msgstr "" ++"Après cette opération, %so d'espace disque supplémentaires seront utilisés.\n" #: cmdline/apt-get.cc:850 #, c-format @@@ -921,7 -921,7 +927,8 @@@ msgstr " #: cmdline/apt-get.cc:1013 msgid "--fix-missing and media swapping is not currently supported" --msgstr "l'option --fix-missing et l'échange de support ne sont pas encore reconnus." ++msgstr "" ++"l'option --fix-missing et l'échange de support ne sont pas encore reconnus." #: cmdline/apt-get.cc:1018 msgid "Unable to correct missing packages." @@@ -983,7 -983,7 +990,8 @@@ msgstr "Aucun paquet ne correspond au p #: cmdline/apt-get.cc:1156 #, c-format msgid "Reinstallation of %s is not possible, it cannot be downloaded.\n" --msgstr "La réinstallation de %s est impossible, il ne peut pas être téléchargé.\n" ++msgstr "" ++"La réinstallation de %s est impossible, il ne peut pas être téléchargé.\n" #: cmdline/apt-get.cc:1164 #, c-format @@@ -1046,7 -1046,7 +1054,8 @@@ msgstr "L'information suivante devrait #: cmdline/apt-get.cc:1449 msgid "Internal Error, AutoRemover broke stuff" --msgstr "Erreur interne, l'outil de suppression automatique a cassé quelque chose." ++msgstr "" ++"Erreur interne, l'outil de suppression automatique a cassé quelque chose." #: cmdline/apt-get.cc:1468 msgid "Internal error, AllUpgrade broke stuff" @@@ -1250,7 -1250,7 +1259,8 @@@ msgstr "Impossible de satisfaire les dà #: cmdline/apt-get.cc:2540 #, c-format msgid "Build-dependencies for %s could not be satisfied." --msgstr "Les dépendances de compilation pour %s ne peuvent pas être satisfaites." ++msgstr "" ++"Les dépendances de compilation pour %s ne peuvent pas être satisfaites." #: cmdline/apt-get.cc:2544 msgid "Failed to process build dependencies" @@@ -1441,7 -1441,7 +1451,8 @@@ msgstr " "seules les erreurs" #: dselect/install:104 --msgid "above this message are important. Please fix them and run [I]nstall again" ++msgid "" ++"above this message are important. Please fix them and run [I]nstall again" msgstr "" "précédant ce message sont importantes. Veuillez les corriger et\n" "démarrer l'[I]nstallation une nouvelle fois." @@@ -1804,7 -1804,7 +1815,8 @@@ msgstr " #: methods/ftp.cc:265 #, c-format msgid "Login script command '%s' failed, server said: %s" --msgstr "La commande « %s » du script de connexion a échoué, le serveur a répondu : %s" ++msgstr "" ++"La commande « %s » du script de connexion a échoué, le serveur a répondu : %s" #: methods/ftp.cc:291 #, c-format @@@ -1841,7 -1841,7 +1853,8 @@@ msgstr "Impossible de créer un connect #: methods/ftp.cc:698 msgid "Could not connect data socket, connection timed out" --msgstr "Impossible de se connecter sur le port de données, délai de connexion dépassé" ++msgstr "" ++"Impossible de se connecter sur le port de données, délai de connexion dépassé" #: methods/ftp.cc:704 msgid "Could not connect passive socket." @@@ -1978,10 -1978,10 +1991,12 @@@ msgstr "Impossible d'accéder au porte- #: methods/gpgv.cc:101 msgid "E: Argument list from Acquire::gpgv::Options too long. Exiting." --msgstr "E: liste de paramètres trop longue pour Acquire::gpgv::Options. Abandon." ++msgstr "" ++"E: liste de paramètres trop longue pour Acquire::gpgv::Options. Abandon." #: methods/gpgv.cc:205 --msgid "Internal error: Good signature, but could not determine key fingerprint?!" ++msgid "" ++"Internal error: Good signature, but could not determine key fingerprint?!" msgstr "" "Erreur interne : signature correcte, mais il est impossible de déterminer " "l'empreinte de la clé." @@@ -2426,12 -2426,12 +2441,14 @@@ msgstr "Ligne %lu mal formée dans la l #: apt-pkg/sourcelist.cc:101 #, c-format msgid "Malformed line %lu in source list %s (absolute dist)" --msgstr "Ligne %lu mal formée dans la liste des sources %s (distribution absolue)" ++msgstr "" ++"Ligne %lu mal formée dans la liste des sources %s (distribution absolue)" #: apt-pkg/sourcelist.cc:108 #, c-format msgid "Malformed line %lu in source list %s (dist parse)" --msgstr "Ligne %lu mal formée dans la liste des sources %s (analyse de distribution)" ++msgstr "" ++"Ligne %lu mal formée dans la liste des sources %s (analyse de distribution)" #: apt-pkg/sourcelist.cc:199 #, c-format @@@ -2456,7 -2456,7 +2473,8 @@@ msgstr "Le type « %s » est inconnu #: apt-pkg/sourcelist.cc:248 apt-pkg/sourcelist.cc:251 #, c-format msgid "Malformed line %u in source list %s (vendor id)" --msgstr "Ligne %u mal formée dans la liste des sources %s (identifiant du fournisseur)" ++msgstr "" ++"Ligne %u mal formée dans la liste des sources %s (identifiant du fournisseur)" #: apt-pkg/packagemanager.cc:428 #, c-format @@@ -2477,7 -2477,7 +2495,8 @@@ msgstr "Le type de fichier d'index «  #: apt-pkg/algorithms.cc:247 #, c-format --msgid "The package %s needs to be reinstalled, but I can't find an archive for it." ++msgid "" ++"The package %s needs to be reinstalled, but I can't find an archive for it." msgstr "" "Le paquet %s doit être réinstallé, mais je ne parviens pas à trouver son " "archive." @@@ -2559,7 -2559,7 +2578,8 @@@ msgstr "Impossible de localiser %s. #: apt-pkg/srcrecords.cc:44 msgid "You must put some 'source' URIs in your sources.list" --msgstr "Vous devez insérer quelques adresses « sources » dans votre sources.list" ++msgstr "" ++"Vous devez insérer quelques adresses « sources » dans votre sources.list" #: apt-pkg/cachefile.cc:71 msgid "The package lists or status file could not be parsed or opened." @@@ -2687,7 -2687,7 +2707,8 @@@ msgstr "Assemblage des fichiers listé #: apt-pkg/pkgcachegen.cc:890 apt-pkg/pkgcachegen.cc:897 msgid "IO Error saving source cache" --msgstr "Erreur d'entrée/sortie lors de la sauvegarde du fichier de cache des sources" ++msgstr "" ++"Erreur d'entrée/sortie lors de la sauvegarde du fichier de cache des sources" #: apt-pkg/acquire-item.cc:127 #, c-format @@@ -2704,7 -2704,7 +2725,8 @@@ msgstr "Somme de contrôle de hachage i #: apt-pkg/acquire-item.cc:1100 msgid "There is no public key available for the following key IDs:\n" --msgstr "Aucune clé publique n'est disponible pour la/les clé(s) suivante(s) :\n" ++msgstr "" ++"Aucune clé publique n'est disponible pour la/les clé(s) suivante(s) :\n" #: apt-pkg/acquire-item.cc:1213 #, c-format @@@ -2727,7 -2727,7 +2749,8 @@@ msgstr " #: apt-pkg/acquire-item.cc:1313 #, c-format --msgid "The package index files are corrupted. No Filename: field for package %s." ++msgid "" ++"The package index files are corrupted. No Filename: field for package %s." msgstr "" "Les fichiers d'index des paquets sont corrompus. Aucun champ « Filename: » " "pour le paquet %s." @@@ -2907,7 -2907,18 +2930,18 @@@ msgstr "Préparation de la suppression msgid "Completely removed %s" msgstr "%s complètement supprimé" - #: apt-pkg/deb/dpkgpm.cc:716 + #. populate the "processing" map + #: apt-pkg/deb/dpkgpm.cc:604 + #, c-format + msgid "Installing %s" + msgstr "Installation de %s" + + #: apt-pkg/deb/dpkgpm.cc:607 -#, c-format -msgid "Running post-installation trigger %s" -msgstr "Exécution des actions différées (« trigger ») de %s" ++#, fuzzy, c-format ++msgid "Triggering %s" ++msgstr "Préparation de %s" + + #: apt-pkg/deb/dpkgpm.cc:756 msgid "Can not write log, openpty() failed (/dev/pts not mounted?)\n" msgstr "" "Impossible d'écrire le journal, échec d'openpty()\n" @@@ -2921,3 -2932,3 +2955,5 @@@ msgstr "Impossible de corriger le fichi msgid "Connection closed prematurely" msgstr "Connexion fermée prématurément" ++#~ msgid "Running post-installation trigger %s" ++#~ msgstr "Exécution des actions différées (« trigger ») de %s" diff --cc po/gl.po index ffb20cc94,75fcf82f0..b90e8cb7c --- a/po/gl.po +++ b/po/gl.po @@@ -6,8 -6,8 +6,8 @@@ msgid " msgstr "" "Project-Id-Version: apt\n" "Report-Msgid-Bugs-To: \n" - "POT-Creation-Date: 2008-05-04 09:18+0200\n" - "PO-Revision-Date: 2008-05-06 19:24+0100\n" -"POT-Creation-Date: 2008-05-28 14:25+0200\n" ++"POT-Creation-Date: 2008-05-22 16:56+0200\n" + "PO-Revision-Date: 2008-07-28 22:28+0100\n" "Last-Translator: Jacobo Tarrío \n" "Language-Team: Galician \n" "MIME-Version: 1.0\n" @@@ -2879,7 -2879,18 +2879,18 @@@ msgstr "A se preparar para eliminar %s msgid "Completely removed %s" msgstr "Eliminouse %s completamente" - #: apt-pkg/deb/dpkgpm.cc:716 + #. populate the "processing" map + #: apt-pkg/deb/dpkgpm.cc:604 + #, c-format + msgid "Installing %s" + msgstr "A instalar %s" + + #: apt-pkg/deb/dpkgpm.cc:607 -#, c-format -msgid "Running post-installation trigger %s" -msgstr "A executar o disparador de post-instalación %s" ++#, fuzzy, c-format ++msgid "Triggering %s" ++msgstr "A preparar %s" + + #: apt-pkg/deb/dpkgpm.cc:756 msgid "Can not write log, openpty() failed (/dev/pts not mounted?)\n" msgstr "" "Non se puido escribir no rexistro, a chamada a openpty() fallou (¿/dev/pts " @@@ -2893,6 -2904,6 +2904,9 @@@ msgstr "Non se puido parchear o ficheir msgid "Connection closed prematurely" msgstr "A conexión pechouse prematuramente" ++#~ msgid "Running post-installation trigger %s" ++#~ msgstr "A executar o disparador de post-instalación %s" ++ #~ msgid "Line %d too long (max %lu)" #~ msgstr "Liña %d longa de máis (máximo %lu)" diff --cc po/he.po index b0e551350,1b31532fa..e4d997831 --- a/po/he.po +++ b/po/he.po @@@ -7,7 -7,7 +7,7 @@@ msgid " msgstr "" "Project-Id-Version: apt 0.5.25\n" "Report-Msgid-Bugs-To: \n" - "POT-Creation-Date: 2008-05-04 09:18+0200\n" -"POT-Creation-Date: 2008-05-28 14:25+0200\n" ++"POT-Creation-Date: 2008-05-22 16:56+0200\n" "PO-Revision-Date: 2004-06-10 19:58+0300\n" "Last-Translator: Lior Kaplan \n" "Language-Team: Hebrew\n" @@@ -2645,7 -2645,18 +2645,18 @@@ msgstr " msgid "Completely removed %s" msgstr "" - #: apt-pkg/deb/dpkgpm.cc:716 + #. populate the "processing" map + #: apt-pkg/deb/dpkgpm.cc:604 + #, fuzzy, c-format + msgid "Installing %s" + msgstr "מותקן:" + + #: apt-pkg/deb/dpkgpm.cc:607 + #, c-format -msgid "Running post-installation trigger %s" ++msgid "Triggering %s" + msgstr "" + + #: apt-pkg/deb/dpkgpm.cc:756 msgid "Can not write log, openpty() failed (/dev/pts not mounted?)\n" msgstr "" diff --cc po/hu.po index f622445d4,df8fd73ef..600fa7f52 --- a/po/hu.po +++ b/po/hu.po @@@ -7,7 -7,7 +7,7 @@@ msgid " msgstr "" "Project-Id-Version: hu\n" "Report-Msgid-Bugs-To: \n" - "POT-Creation-Date: 2008-05-04 09:18+0200\n" -"POT-Creation-Date: 2008-05-28 14:25+0200\n" ++"POT-Creation-Date: 2008-05-22 16:56+0200\n" "PO-Revision-Date: 2008-05-11 14:49+0100\n" "Last-Translator: SZERVÁC Attila \n" "Language-Team: Hungarian \n" @@@ -2858,7 -2858,18 +2858,18 @@@ msgstr "%s teljes eltávolítása elők msgid "Completely removed %s" msgstr "%s teljesen eltávolítva" - #: apt-pkg/deb/dpkgpm.cc:716 + #. populate the "processing" map + #: apt-pkg/deb/dpkgpm.cc:604 + #, fuzzy, c-format + msgid "Installing %s" + msgstr "Telepített %s" + + #: apt-pkg/deb/dpkgpm.cc:607 -#, c-format -msgid "Running post-installation trigger %s" -msgstr "" ++#, fuzzy, c-format ++msgid "Triggering %s" ++msgstr "%s előkészítése" + + #: apt-pkg/deb/dpkgpm.cc:756 msgid "Can not write log, openpty() failed (/dev/pts not mounted?)\n" msgstr "Naplózási hiba, sikertelen openpty() (a /dev/pts nincs csatolva?)\n" diff --cc po/it.po index 162af8527,be3d9d4ae..19e9efd1e --- a/po/it.po +++ b/po/it.po @@@ -5,7 -5,7 +5,7 @@@ msgid " msgstr "" "Project-Id-Version: apt 0.5.5\n" "Report-Msgid-Bugs-To: \n" - "POT-Creation-Date: 2008-05-04 09:50+0200\n" -"POT-Creation-Date: 2008-05-28 14:25+0200\n" ++"POT-Creation-Date: 2008-05-22 16:56+0200\n" "PO-Revision-Date: 2008-05-04 12:26+0200\n" "Last-Translator: Samuele Giovanni Tonon \n" "Language-Team: Italian \n" @@@ -2898,7 -2898,18 +2898,18 @@@ msgstr "Preparazione alla rimozione tot msgid "Completely removed %s" msgstr "Rimozione totale completata %s" - #: apt-pkg/deb/dpkgpm.cc:716 + #. populate the "processing" map + #: apt-pkg/deb/dpkgpm.cc:604 + #, fuzzy, c-format + msgid "Installing %s" + msgstr "%s Installato" + + #: apt-pkg/deb/dpkgpm.cc:607 -#, c-format -msgid "Running post-installation trigger %s" -msgstr "" ++#, fuzzy, c-format ++msgid "Triggering %s" ++msgstr "Preparazione di %s in corso" + + #: apt-pkg/deb/dpkgpm.cc:756 msgid "Can not write log, openpty() failed (/dev/pts not mounted?)\n" msgstr "Impossibile scrivere un log, openpty() fallito (/dev/pts è montato?)\n" diff --cc po/ja.po index 548fbcd59,b038f7d38..95379a182 --- a/po/ja.po +++ b/po/ja.po @@@ -8,8 -8,8 +8,8 @@@ msgid " msgstr "" "Project-Id-Version: apt 0.7\n" "Report-Msgid-Bugs-To: \n" - "POT-Creation-Date: 2008-05-04 09:18+0200\n" - "PO-Revision-Date: 2008-05-06 11:11+0900\n" -"POT-Creation-Date: 2008-05-28 14:25+0200\n" ++"POT-Creation-Date: 2008-05-22 16:56+0200\n" + "PO-Revision-Date: 2008-07-31 16:28+0900\n" "Last-Translator: Kenshi Muto \n" "Language-Team: Debian Japanese List \n" "MIME-Version: 1.0\n" @@@ -2876,7 -2876,18 +2876,18 @@@ msgstr "%s を完全に削除する準å msgid "Completely removed %s" msgstr "%s を完全に削除しました" - #: apt-pkg/deb/dpkgpm.cc:716 + #. populate the "processing" map + #: apt-pkg/deb/dpkgpm.cc:604 + #, c-format + msgid "Installing %s" + msgstr "%s をインストールしています" + + #: apt-pkg/deb/dpkgpm.cc:607 -#, c-format -msgid "Running post-installation trigger %s" -msgstr "インストール後トリガ %s を実行しています" ++#, fuzzy, c-format ++msgid "Triggering %s" ++msgstr "%s を準備しています" + + #: apt-pkg/deb/dpkgpm.cc:756 msgid "Can not write log, openpty() failed (/dev/pts not mounted?)\n" msgstr "" "ログに書き込めません。openpty() に失敗しました (/dev/pts がマウントされていな" @@@ -2889,3 -2900,3 +2900,6 @@@ msgstr "ファイルにパッチできã #: methods/rsh.cc:330 msgid "Connection closed prematurely" msgstr "途中で接続がクローズされました" ++ ++#~ msgid "Running post-installation trigger %s" ++#~ msgstr "インストール後トリガ %s を実行しています" diff --cc po/km.po index 6666a031c,3269183a3..f3a953e8a --- a/po/km.po +++ b/po/km.po @@@ -10,7 -10,7 +10,7 @@@ msgid " msgstr "" "Project-Id-Version: apt_po_km\n" "Report-Msgid-Bugs-To: \n" - "POT-Creation-Date: 2008-05-04 09:18+0200\n" -"POT-Creation-Date: 2008-05-28 14:25+0200\n" ++"POT-Creation-Date: 2008-05-22 16:56+0200\n" "PO-Revision-Date: 2006-10-10 09:48+0700\n" "Last-Translator: Khoem Sokhem \n" "Language-Team: Khmer \n" @@@ -2835,7 -2835,18 +2835,18 @@@ msgstr "កំពុង​រៀបចá msgid "Completely removed %s" msgstr "បាន​យក %s ចេញ​ទាំង​ស្រុង" - #: apt-pkg/deb/dpkgpm.cc:716 + #. populate the "processing" map + #: apt-pkg/deb/dpkgpm.cc:604 + #, fuzzy, c-format + msgid "Installing %s" + msgstr "បាន​ដំឡើង %s" + + #: apt-pkg/deb/dpkgpm.cc:607 -#, c-format -msgid "Running post-installation trigger %s" -msgstr "" ++#, fuzzy, c-format ++msgid "Triggering %s" ++msgstr "កំពុងរៀបចំ​ %s" + + #: apt-pkg/deb/dpkgpm.cc:756 msgid "Can not write log, openpty() failed (/dev/pts not mounted?)\n" msgstr "" diff --cc po/ko.po index 4a420304b,6af14a7c5..cc0b931d1 --- a/po/ko.po +++ b/po/ko.po @@@ -5,9 -5,9 +5,9 @@@ msgid " msgstr "" "Project-Id-Version: apt\n" "Report-Msgid-Bugs-To: \n" - "POT-Creation-Date: 2008-05-04 09:18+0200\n" - "PO-Revision-Date: 2008-05-04 13:52-0400\n" - "Last-Translator: Sunjae Park \n" -"POT-Creation-Date: 2008-05-28 14:25+0200\n" ++"POT-Creation-Date: 2008-05-22 16:56+0200\n" + "PO-Revision-Date: 2008-07-19 19:14+0900\n" + "Last-Translator: Changwoo Ryu \n" "Language-Team: Korean \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@@ -2836,17 -2838,29 +2838,28 @@@ msgstr "%s 패키지를 지우는 ì¤‘ìž msgid "Removed %s" msgstr "%s 지움" - #: apt-pkg/deb/dpkgpm.cc:563 + #: apt-pkg/deb/dpkgpm.cc:597 #, c-format msgid "Preparing to completely remove %s" - msgstr "%s을(를) 완전히 지울 준비를 하는 중입니다" + msgstr "%s 패키지를 완전히 지울 준비를 하는 중입니다" - #: apt-pkg/deb/dpkgpm.cc:564 + #: apt-pkg/deb/dpkgpm.cc:598 #, c-format msgid "Completely removed %s" - msgstr "%s을(를) 완전히 지웠습니다" + msgstr "%s 패키지를 완전히 지웠습니다" + + #. populate the "processing" map + #: apt-pkg/deb/dpkgpm.cc:604 + #, fuzzy, c-format -#| msgid "Installed %s" + msgid "Installing %s" + msgstr "%s 설치" - #: apt-pkg/deb/dpkgpm.cc:716 + #: apt-pkg/deb/dpkgpm.cc:607 -#, c-format -msgid "Running post-installation trigger %s" -msgstr "" ++#, fuzzy, c-format ++msgid "Triggering %s" ++msgstr "%s 준비 중입니다" + + #: apt-pkg/deb/dpkgpm.cc:756 msgid "Can not write log, openpty() failed (/dev/pts not mounted?)\n" msgstr "" "로그에 쓰는데 실패. openpty() 실패(/dev/pts가 마운트되어있지 않습니까?)\n" diff --cc po/ku.po index 3dbef3898,dcd0f6a81..92f745d52 --- a/po/ku.po +++ b/po/ku.po @@@ -8,7 -8,7 +8,7 @@@ msgid " msgstr "" "Project-Id-Version: apt-ku\n" "Report-Msgid-Bugs-To: \n" - "POT-Creation-Date: 2008-05-04 09:18+0200\n" -"POT-Creation-Date: 2008-05-28 14:25+0200\n" ++"POT-Creation-Date: 2008-05-22 16:56+0200\n" "PO-Revision-Date: 2008-05-08 12:48+0200\n" "Last-Translator: Erdal Ronahi \n" "Language-Team: ku \n" @@@ -2662,7 -2662,18 +2662,18 @@@ msgstr "Bi tevahî rakirina %s tê amad msgid "Completely removed %s" msgstr "%s bi tevahî hatine rakirin" - #: apt-pkg/deb/dpkgpm.cc:716 + #. populate the "processing" map + #: apt-pkg/deb/dpkgpm.cc:604 + #, fuzzy, c-format + msgid "Installing %s" + msgstr "%s hatine sazkirin" + + #: apt-pkg/deb/dpkgpm.cc:607 -#, c-format -msgid "Running post-installation trigger %s" -msgstr "" ++#, fuzzy, c-format ++msgid "Triggering %s" ++msgstr "%s tê amadekirin" + + #: apt-pkg/deb/dpkgpm.cc:756 msgid "Can not write log, openpty() failed (/dev/pts not mounted?)\n" msgstr "" diff --cc po/mr.po index 562fad6ce,f636f2839..737ebda92 --- a/po/mr.po +++ b/po/mr.po @@@ -6,7 -6,7 +6,7 @@@ msgid " msgstr "" "Project-Id-Version: apt\n" "Report-Msgid-Bugs-To: \n" - "POT-Creation-Date: 2008-05-04 09:18+0200\n" -"POT-Creation-Date: 2008-05-28 14:25+0200\n" ++"POT-Creation-Date: 2008-05-22 16:56+0200\n" "PO-Revision-Date: 2006-08-09 16:17+0200\n" "Last-Translator: Priti Patil \n" "Language-Team: Marathi, janabhaaratii, C-DAC, Mumbai, India " @@@ -2854,7 -2854,18 +2854,18 @@@ msgstr "%s संपूर्ण का msgid "Completely removed %s" msgstr "%s संपूर्ण काढून टाकले" - #: apt-pkg/deb/dpkgpm.cc:716 + #. populate the "processing" map + #: apt-pkg/deb/dpkgpm.cc:604 + #, fuzzy, c-format + msgid "Installing %s" + msgstr "%s संस्थापित झाले" + + #: apt-pkg/deb/dpkgpm.cc:607 -#, c-format -msgid "Running post-installation trigger %s" -msgstr "" ++#, fuzzy, c-format ++msgid "Triggering %s" ++msgstr "%s तयार करित आहे" + + #: apt-pkg/deb/dpkgpm.cc:756 msgid "Can not write log, openpty() failed (/dev/pts not mounted?)\n" msgstr "" diff --cc po/nb.po index 2b7552d5b,5aff23e83..a28368f53 --- a/po/nb.po +++ b/po/nb.po @@@ -15,8 -13,8 +13,8 @@@ msgid " msgstr "" "Project-Id-Version: apt\n" "Report-Msgid-Bugs-To: \n" - "POT-Creation-Date: 2008-05-04 09:18+0200\n" - "PO-Revision-Date: 2008-01-02 14:40+0100\n" -"POT-Creation-Date: 2008-05-28 14:25+0200\n" ++"POT-Creation-Date: 2008-05-22 16:56+0200\n" + "PO-Revision-Date: 2008-08-31 21:01+0200\n" "Last-Translator: Hans Fredrik Nordhaug \n" "Language-Team: Norwegian Bokmal \n" "MIME-Version: 1.0\n" @@@ -2867,7 -2864,18 +2864,18 @@@ msgstr "Forbereder å fullstendig slett msgid "Completely removed %s" msgstr "Fjernet %s fullstendig" - #: apt-pkg/deb/dpkgpm.cc:716 + #. populate the "processing" map + #: apt-pkg/deb/dpkgpm.cc:604 + #, c-format + msgid "Installing %s" + msgstr "Installerer %s" + + #: apt-pkg/deb/dpkgpm.cc:607 -#, c-format -msgid "Running post-installation trigger %s" -msgstr "Kjører etter-installasjonsutløser %s" ++#, fuzzy, c-format ++msgid "Triggering %s" ++msgstr "Forbereder %s" + + #: apt-pkg/deb/dpkgpm.cc:756 msgid "Can not write log, openpty() failed (/dev/pts not mounted?)\n" msgstr "Klarte ikke skrive logg, openpty() feilet (/dev/pts ikke montert?)\n" @@@ -2879,6 -2887,6 +2887,9 @@@ msgstr "Kunne ikke åpne fila %s msgid "Connection closed prematurely" msgstr "Forbindelsen ble uventet stengt" ++#~ msgid "Running post-installation trigger %s" ++#~ msgstr "Kjører etter-installasjonsutløser %s" ++ #~ msgid "Line %d too long (max %lu)" #~ msgstr "Linje %d er for lang (maks %lu)" diff --cc po/ne.po index aabbed96b,3bce00b01..13dab4f9f --- a/po/ne.po +++ b/po/ne.po @@@ -6,7 -6,7 +6,7 @@@ msgid " msgstr "" "Project-Id-Version: apt_po\n" "Report-Msgid-Bugs-To: \n" - "POT-Creation-Date: 2008-05-04 09:18+0200\n" -"POT-Creation-Date: 2008-05-28 14:25+0200\n" ++"POT-Creation-Date: 2008-05-22 16:56+0200\n" "PO-Revision-Date: 2006-06-12 14:35+0545\n" "Last-Translator: Shiva Pokharel \n" "Language-Team: Nepali \n" @@@ -2840,7 -2840,18 +2840,18 @@@ msgstr " %s पूर्ण रुपठmsgid "Completely removed %s" msgstr " %s पूर्ण रुपले हट्यो" - #: apt-pkg/deb/dpkgpm.cc:716 + #. populate the "processing" map + #: apt-pkg/deb/dpkgpm.cc:604 + #, fuzzy, c-format + msgid "Installing %s" + msgstr " %s स्थापना भयो" + + #: apt-pkg/deb/dpkgpm.cc:607 -#, c-format -msgid "Running post-installation trigger %s" -msgstr "" ++#, fuzzy, c-format ++msgid "Triggering %s" ++msgstr " %s तयार गरिदैछ" + + #: apt-pkg/deb/dpkgpm.cc:756 msgid "Can not write log, openpty() failed (/dev/pts not mounted?)\n" msgstr "" diff --cc po/nl.po index 33f5eb8e5,78c748d71..9e1fae51b --- a/po/nl.po +++ b/po/nl.po @@@ -7,7 -7,7 +7,7 @@@ msgid " msgstr "" "Project-Id-Version: apt\n" "Report-Msgid-Bugs-To: \n" - "POT-Creation-Date: 2008-05-04 09:18+0200\n" -"POT-Creation-Date: 2008-05-28 14:25+0200\n" ++"POT-Creation-Date: 2008-05-22 16:56+0200\n" "PO-Revision-Date: 2008-05-05 18:39+0200\n" "Last-Translator: Bart Cornelis \n" "Language-Team: debian-l10n-dutch \n" @@@ -2910,7 -2910,18 +2910,18 @@@ msgstr "Volledige verwijdering van %s w msgid "Completely removed %s" msgstr "%s is volledig verwijderd" - #: apt-pkg/deb/dpkgpm.cc:716 + #. populate the "processing" map + #: apt-pkg/deb/dpkgpm.cc:604 + #, fuzzy, c-format + msgid "Installing %s" + msgstr "%s is geïnstalleerd" + + #: apt-pkg/deb/dpkgpm.cc:607 -#, c-format -msgid "Running post-installation trigger %s" -msgstr "" ++#, fuzzy, c-format ++msgid "Triggering %s" ++msgstr "%s wordt voorbereid" + + #: apt-pkg/deb/dpkgpm.cc:756 msgid "Can not write log, openpty() failed (/dev/pts not mounted?)\n" msgstr "" "Kon logbestand niet wegschrijven, openpty() is mislukt (/dev/pts niet " diff --cc po/nn.po index 1c0759ad3,ea47beda3..fad74b4a9 --- a/po/nn.po +++ b/po/nn.po @@@ -9,7 -9,7 +9,7 @@@ msgid " msgstr "" "Project-Id-Version: apt_nn\n" "Report-Msgid-Bugs-To: \n" - "POT-Creation-Date: 2008-05-04 09:18+0200\n" -"POT-Creation-Date: 2008-05-28 14:25+0200\n" ++"POT-Creation-Date: 2008-05-22 16:56+0200\n" "PO-Revision-Date: 2005-02-14 23:30+0100\n" "Last-Translator: Havard Korsvoll \n" "Language-Team: Norwegian nynorsk \n" @@@ -2859,7 -2859,18 +2859,18 @@@ msgstr "Opnar oppsettsfila %s msgid "Completely removed %s" msgstr "Klarte ikkje fjerna %s" - #: apt-pkg/deb/dpkgpm.cc:716 + #. populate the "processing" map + #: apt-pkg/deb/dpkgpm.cc:604 + #, fuzzy, c-format + msgid "Installing %s" + msgstr " Installert: " + + #: apt-pkg/deb/dpkgpm.cc:607 -#, c-format -msgid "Running post-installation trigger %s" -msgstr "" ++#, fuzzy, c-format ++msgid "Triggering %s" ++msgstr "Opnar %s" + + #: apt-pkg/deb/dpkgpm.cc:756 msgid "Can not write log, openpty() failed (/dev/pts not mounted?)\n" msgstr "" diff --cc po/pl.po index 941bf138c,8c2808285..a0e7c2715 --- a/po/pl.po +++ b/po/pl.po @@@ -10,8 -10,8 +10,8 @@@ msgid " msgstr "" "Project-Id-Version: apt 0.7.14\n" "Report-Msgid-Bugs-To: \n" - "POT-Creation-Date: 2008-05-04 09:50+0200\n" - "PO-Revision-Date: 2008-05-06 10:29+0100\n" -"POT-Creation-Date: 2008-05-28 14:25+0200\n" ++"POT-Creation-Date: 2008-05-22 16:56+0200\n" + "PO-Revision-Date: 2008-09-16 00:28+0100\n" "Last-Translator: Wiktor Wandachowicz \n" "Language-Team: Polish \n" "MIME-Version: 1.0\n" @@@ -2879,7 -2879,18 +2879,18 @@@ msgstr "Przygotowanie do całkowitego u msgid "Completely removed %s" msgstr "Całkowicie usunięto %s" - #: apt-pkg/deb/dpkgpm.cc:716 + #. populate the "processing" map + #: apt-pkg/deb/dpkgpm.cc:604 + #, c-format + msgid "Installing %s" + msgstr "Instalowanie %s" + + #: apt-pkg/deb/dpkgpm.cc:607 -#, c-format -msgid "Running post-installation trigger %s" -msgstr "Uruchamianie wyzwalacza post-installation %s" ++#, fuzzy, c-format ++msgid "Triggering %s" ++msgstr "Przygotowanie %s" + + #: apt-pkg/deb/dpkgpm.cc:756 msgid "Can not write log, openpty() failed (/dev/pts not mounted?)\n" msgstr "" "Nie można zapisać dziennika, openpty() nie powiodło się (/dev/pts nie " @@@ -2893,5 -2904,5 +2904,8 @@@ msgstr "Nie udało się nałożyć łat msgid "Connection closed prematurely" msgstr "Połączenie zostało zamknięte przedwcześnie" ++#~ msgid "Running post-installation trigger %s" ++#~ msgstr "Uruchamianie wyzwalacza post-installation %s" ++ #~ msgid "Line %d too long (max %lu)" #~ msgstr "Linia %d jest zbyt długa (max %lu)" diff --cc po/pt.po index 40eefa9ae,2601d0f91..2e4de11ce --- a/po/pt.po +++ b/po/pt.po @@@ -7,8 -7,8 +7,8 @@@ msgid " msgstr "" "Project-Id-Version: apt\n" "Report-Msgid-Bugs-To: \n" - "POT-Creation-Date: 2008-05-04 09:18+0200\n" - "PO-Revision-Date: 2008-05-06 23:13+0100\n" -"POT-Creation-Date: 2008-05-28 14:25+0200\n" ++"POT-Creation-Date: 2008-05-22 16:56+0200\n" + "PO-Revision-Date: 2008-09-09 20:54+0100\n" "Last-Translator: Miguel Figueiredo \n" "Language-Team: Portuguese \n" "MIME-Version: 1.0\n" @@@ -2894,7 -2894,18 +2894,18 @@@ msgstr "A preparar para remover complet msgid "Completely removed %s" msgstr "Remoção completa de %s" - #: apt-pkg/deb/dpkgpm.cc:716 + #. populate the "processing" map + #: apt-pkg/deb/dpkgpm.cc:604 + #, c-format + msgid "Installing %s" + msgstr "A instalar %s" + + #: apt-pkg/deb/dpkgpm.cc:607 -#, c-format -msgid "Running post-installation trigger %s" -msgstr "A correr o 'trigger' de pós-instalação %s" ++#, fuzzy, c-format ++msgid "Triggering %s" ++msgstr "A preparar %s" + + #: apt-pkg/deb/dpkgpm.cc:756 msgid "Can not write log, openpty() failed (/dev/pts not mounted?)\n" msgstr "" "Não é possível escrever o registo (log), openpty() falhou (/dev/pts não está " @@@ -2908,6 -2919,6 +2919,9 @@@ msgstr "Não foi possível aplicar o 'p msgid "Connection closed prematurely" msgstr "Ligação encerrada prematuramente" ++#~ msgid "Running post-installation trigger %s" ++#~ msgstr "A correr o 'trigger' de pós-instalação %s" ++ #~ msgid "Line %d too long (max %lu)" #~ msgstr "a linha %d é demasiado longa (max %lu)" diff --cc po/pt_BR.po index fe6b73278,3767d4318..a87b2ed93 --- a/po/pt_BR.po +++ b/po/pt_BR.po @@@ -7,8 -7,8 +7,8 @@@ msgid " msgstr "" "Project-Id-Version: apt\n" "Report-Msgid-Bugs-To: \n" - "POT-Creation-Date: 2008-05-04 09:18+0200\n" - "PO-Revision-Date: 2008-05-10 18:31-0300\n" -"POT-Creation-Date: 2008-05-28 14:25+0200\n" ++"POT-Creation-Date: 2008-05-22 16:56+0200\n" + "PO-Revision-Date: 2008-08-26 01:19-0300\n" "Last-Translator: Felipe Augusto van de Wiel (faw) \n" "Language-Team: l10n portuguese \n" "MIME-Version: 1.0\n" @@@ -2890,7 -2890,18 +2890,18 @@@ msgstr "Preparando para remover complet msgid "Completely removed %s" msgstr "%s completamente removido" - #: apt-pkg/deb/dpkgpm.cc:716 + #. populate the "processing" map + #: apt-pkg/deb/dpkgpm.cc:604 + #, c-format + msgid "Installing %s" + msgstr "Instalando %s" + + #: apt-pkg/deb/dpkgpm.cc:607 -#, c-format -msgid "Running post-installation trigger %s" -msgstr "Executando gatilho pós-instalação %s" ++#, fuzzy, c-format ++msgid "Triggering %s" ++msgstr "Preparando %s" + + #: apt-pkg/deb/dpkgpm.cc:756 msgid "Can not write log, openpty() failed (/dev/pts not mounted?)\n" msgstr "Impossível escrever log, openpty() falhou (/dev/pts não montado?)\n" @@@ -2902,6 -2913,6 +2913,9 @@@ msgstr "Não foi possível aplicar o pa msgid "Connection closed prematurely" msgstr "Conexão encerrada prematuramente" ++#~ msgid "Running post-installation trigger %s" ++#~ msgstr "Executando gatilho pós-instalação %s" ++ #, fuzzy #~ msgid "Line %d too long (max %lu)" #~ msgstr "Linha %d muito longa (máx. %d)" diff --cc po/ro.po index 9d70a9297,cd8795183..a32072254 --- a/po/ro.po +++ b/po/ro.po @@@ -2,13 -2,14 +2,14 @@@ # This file is put in the public domain. # # Sorin Batariuc , 2004, 2005, 2006. + # Eddy Petrișor , 2008. msgid "" msgstr "" - "Project-Id-Version: apt_po_ro\n" + "Project-Id-Version: ro\n" "Report-Msgid-Bugs-To: \n" - "POT-Creation-Date: 2008-05-04 09:18+0200\n" - "PO-Revision-Date: 2006-09-19 01:35+0300\n" - "Last-Translator: Sorin Batariuc \n" -"POT-Creation-Date: 2008-05-28 14:25+0200\n" ++"POT-Creation-Date: 2008-05-22 16:56+0200\n" + "PO-Revision-Date: 2008-07-28 20:43+0300\n" + "Last-Translator: Eddy Petrișor \n" "Language-Team: Romanian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@@ -1807,9 -1817,9 +1817,9 @@@ msgstr "Timpul de conectare a expirat #: methods/ftp.cc:335 msgid "Server closed the connection" - msgstr "Serverul a terminat conexiunea" + msgstr "Serverul a închis conexiunea" -#: methods/ftp.cc:338 apt-pkg/contrib/fileutl.cc:538 methods/rsh.cc:190 +#: methods/ftp.cc:338 apt-pkg/contrib/fileutl.cc:536 methods/rsh.cc:190 msgid "Read error" msgstr "Eroare de citire" @@@ -1819,9 -1829,9 +1829,9 @@@ msgstr "Un răspuns a depășit zona d #: methods/ftp.cc:362 methods/ftp.cc:374 msgid "Protocol corruption" - msgstr "Degradare protocol" + msgstr "Protocol corupt" -#: methods/ftp.cc:446 apt-pkg/contrib/fileutl.cc:577 methods/rsh.cc:232 +#: methods/ftp.cc:446 apt-pkg/contrib/fileutl.cc:575 methods/rsh.cc:232 msgid "Write error" msgstr "Eroare de scriere" @@@ -2219,34 -2233,34 +2233,34 @@@ msgstr "Nu pot schimba la %s #: apt-pkg/contrib/cdromutl.cc:187 msgid "Failed to stat the cdrom" - msgstr "Eşuare la determinarea stării cdrom-ului" + msgstr "Eșec la „stat” pentru CD" -#: apt-pkg/contrib/fileutl.cc:149 +#: apt-pkg/contrib/fileutl.cc:147 #, c-format msgid "Not using locking for read only lock file %s" - msgstr "Nu s-a folosit închiderea pentru fişierul disponibil doar-citire %s" + msgstr "Nu s-a folosit închiderea pentru fișierul disponibil doar-citire %s" -#: apt-pkg/contrib/fileutl.cc:154 +#: apt-pkg/contrib/fileutl.cc:152 #, c-format msgid "Could not open lock file %s" - msgstr "Nu pot deschide fişierul blocat %s" + msgstr "Nu pot deschide fișierul blocat %s" -#: apt-pkg/contrib/fileutl.cc:172 +#: apt-pkg/contrib/fileutl.cc:170 #, c-format msgid "Not using locking for nfs mounted lock file %s" - msgstr "Nu este folosit blocajul pentru fişierul montat nfs %s" + msgstr "Nu este folosit blocajul pentru fișierul montat nfs %s" -#: apt-pkg/contrib/fileutl.cc:176 +#: apt-pkg/contrib/fileutl.cc:174 #, c-format msgid "Could not get lock %s" msgstr "Nu pot determina blocajul %s" -#: apt-pkg/contrib/fileutl.cc:444 +#: apt-pkg/contrib/fileutl.cc:442 #, c-format msgid "Waited for %s but it wasn't there" - msgstr "Aşteptat %s, dar n-a fost acolo" + msgstr "Așteptat %s, dar n-a fost acolo" -#: apt-pkg/contrib/fileutl.cc:454 +#: apt-pkg/contrib/fileutl.cc:452 #, c-format msgid "Sub-process %s received a segmentation fault." msgstr "Subprocesul %s a primit o eroare de segmentare." @@@ -2261,12 -2275,12 +2275,12 @@@ msgstr "Subprocesul %s a întors un co msgid "Sub-process %s exited unexpectedly" msgstr "Subprocesul %s s-a terminat brusc" -#: apt-pkg/contrib/fileutl.cc:503 +#: apt-pkg/contrib/fileutl.cc:501 #, c-format msgid "Could not open file %s" - msgstr "Nu pot deschide fişierul %s" + msgstr "Nu s-a putut deschide fișierul %s" -#: apt-pkg/contrib/fileutl.cc:559 +#: apt-pkg/contrib/fileutl.cc:557 #, c-format msgid "read, still have %lu to read but none left" msgstr "citire, încă mai am %lu de citit dar n-a mai rămas nimic" @@@ -2276,17 -2290,17 +2290,17 @@@ msgid "write, still have %lu to write but couldn't" msgstr "scriere, încă mai am %lu de scris dar nu pot" -#: apt-pkg/contrib/fileutl.cc:664 +#: apt-pkg/contrib/fileutl.cc:662 msgid "Problem closing the file" - msgstr "Problemă la închiderea fişierului" + msgstr "Problemă la închiderea fișierului" -#: apt-pkg/contrib/fileutl.cc:670 +#: apt-pkg/contrib/fileutl.cc:668 msgid "Problem unlinking the file" - msgstr "Problemă la dezlegarea fişierului" + msgstr "Problemă la dezlegarea fișierului" -#: apt-pkg/contrib/fileutl.cc:681 +#: apt-pkg/contrib/fileutl.cc:679 msgid "Problem syncing the file" - msgstr "Problemă în timpul sincronizării fişierului" + msgstr "Problemă în timpul sincronizării fișierului" #: apt-pkg/pkgcache.cc:132 msgid "Empty package cache" @@@ -2865,48 -2878,58 +2878,61 @@@ msgstr "Se procesează declanșatorii p msgid "Installed %s" msgstr "Instalat %s" - #: apt-pkg/deb/dpkgpm.cc:552 apt-pkg/deb/dpkgpm.cc:554 - #: apt-pkg/deb/dpkgpm.cc:555 + #: apt-pkg/deb/dpkgpm.cc:586 apt-pkg/deb/dpkgpm.cc:588 + #: apt-pkg/deb/dpkgpm.cc:589 #, c-format msgid "Preparing for removal of %s" - msgstr "Se pregăteşte ştergerea lui %s" + msgstr "Se pregătește ștergerea lui %s" - #: apt-pkg/deb/dpkgpm.cc:557 + #: apt-pkg/deb/dpkgpm.cc:591 apt-pkg/deb/dpkgpm.cc:606 #, c-format msgid "Removing %s" - msgstr "Se şterge %s" + msgstr "Se șterge %s" - #: apt-pkg/deb/dpkgpm.cc:558 + #: apt-pkg/deb/dpkgpm.cc:592 #, c-format msgid "Removed %s" - msgstr "Şters %s" + msgstr "Șters %s" - #: apt-pkg/deb/dpkgpm.cc:563 + #: apt-pkg/deb/dpkgpm.cc:597 #, c-format msgid "Preparing to completely remove %s" - msgstr "Se pregăteşte ştergerea completă a %s" + msgstr "Se pregătește ștergerea completă a %s" - #: apt-pkg/deb/dpkgpm.cc:564 + #: apt-pkg/deb/dpkgpm.cc:598 #, c-format msgid "Completely removed %s" - msgstr "Şters complet %s" + msgstr "Șters complet %s" - #: apt-pkg/deb/dpkgpm.cc:716 + #. populate the "processing" map + #: apt-pkg/deb/dpkgpm.cc:604 + #, c-format + msgid "Installing %s" + msgstr "Se instalează %s" + + #: apt-pkg/deb/dpkgpm.cc:607 -#, c-format -msgid "Running post-installation trigger %s" -msgstr "Se rulează declanșatorul post-instalare %s" ++#, fuzzy, c-format ++msgid "Triggering %s" ++msgstr "Se pregătește %s" + + #: apt-pkg/deb/dpkgpm.cc:756 msgid "Can not write log, openpty() failed (/dev/pts not mounted?)\n" msgstr "" + "Nu se poate scrie jurnalul, openpty() a eșuat (oare /dev/pts e montat?)\n" #: methods/rred.cc:219 - #, fuzzy msgid "Could not patch file" - msgstr "Nu pot deschide fişierul %s" + msgstr "Nu s-a putut peteci fișierul" #: methods/rsh.cc:330 msgid "Connection closed prematurely" msgstr "Conexiune închisă prematur" - #, fuzzy ++#~ msgid "Running post-installation trigger %s" ++#~ msgstr "Se rulează declanșatorul post-instalare %s" ++ #~ msgid "Line %d too long (max %lu)" - #~ msgstr "Linie %d prea lungă (max %d)" + #~ msgstr "Linia %d e prea lungă (max %lu)" #, fuzzy #~ msgid "Line %d too long (max %d)" diff --cc po/ru.po index e9085431b,5056b2a79..56e9818ea --- a/po/ru.po +++ b/po/ru.po @@@ -10,10 -10,10 +10,10 @@@ # Yuri Kozlov , 2004, 2005, 2006, 2007, 2008. msgid "" msgstr "" - "Project-Id-Version: apt 0.7.14\n" + "Project-Id-Version: apt_po_ru\n" "Report-Msgid-Bugs-To: \n" - "POT-Creation-Date: 2008-05-04 09:18+0200\n" - "PO-Revision-Date: 2008-05-06 20:30+0400\n" -"POT-Creation-Date: 2008-05-28 14:25+0200\n" ++"POT-Creation-Date: 2008-05-22 16:56+0200\n" + "PO-Revision-Date: 2008-09-09 19:16+0400\n" "Last-Translator: Yuri Kozlov \n" "Language-Team: Russian \n" "MIME-Version: 1.0\n" @@@ -2906,7 -2906,18 +2906,18 @@@ msgstr "Подготовка к полРmsgid "Completely removed %s" msgstr "%s полностью удалён" - #: apt-pkg/deb/dpkgpm.cc:716 + #. populate the "processing" map + #: apt-pkg/deb/dpkgpm.cc:604 + #, c-format + msgid "Installing %s" + msgstr "Устанавливается %s" + + #: apt-pkg/deb/dpkgpm.cc:607 -#, c-format -msgid "Running post-installation trigger %s" -msgstr "Выполняется послеустановочный триггер %s" ++#, fuzzy, c-format ++msgid "Triggering %s" ++msgstr "Подготавливается %s" + + #: apt-pkg/deb/dpkgpm.cc:756 msgid "Can not write log, openpty() failed (/dev/pts not mounted?)\n" msgstr "" "Не удалось записать в журнал, неудачное выполнение openpty() (/dev/pts не " @@@ -2919,3 -2930,3 +2930,6 @@@ msgstr "Не удалось Ð¿Ñ€Ð¾Ð¿Ð°Ñ #: methods/rsh.cc:330 msgid "Connection closed prematurely" msgstr "Соединение закрыто преждевременно" ++ ++#~ msgid "Running post-installation trigger %s" ++#~ msgstr "Выполняется послеустановочный триггер %s" diff --cc po/sk.po index d567121cc,c982692a6..66abff856 --- a/po/sk.po +++ b/po/sk.po @@@ -10,9 -10,9 +10,9 @@@ msgid " msgstr "" "Project-Id-Version: apt\n" "Report-Msgid-Bugs-To: \n" - "POT-Creation-Date: 2008-05-04 09:18+0200\n" - "PO-Revision-Date: 2008-05-05 19:22+0200\n" - "Last-Translator: Peter Mann \n" -"POT-Creation-Date: 2008-05-28 14:25+0200\n" ++"POT-Creation-Date: 2008-05-22 16:56+0200\n" + "PO-Revision-Date: 2008-07-26 15:33+0100\n" + "Last-Translator: Ivan Masár \n" "Language-Team: Slovak \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@@ -2844,12 -2844,23 +2844,23 @@@ msgstr "Odstránený balík %s msgid "Preparing to completely remove %s" msgstr "Pripravuje sa úplné odstránenie %s" - #: apt-pkg/deb/dpkgpm.cc:564 + #: apt-pkg/deb/dpkgpm.cc:598 #, c-format msgid "Completely removed %s" - msgstr "Balík '%s' je úplne odstránený" + msgstr "Balík „%s“ je úplne odstránený" + + #. populate the "processing" map + #: apt-pkg/deb/dpkgpm.cc:604 + #, c-format + msgid "Installing %s" + msgstr "InÅ¡taluje sa %s" - #: apt-pkg/deb/dpkgpm.cc:716 + #: apt-pkg/deb/dpkgpm.cc:607 -#, c-format -msgid "Running post-installation trigger %s" -msgstr "Vykonáva sa spúšťač post-installation %s" ++#, fuzzy, c-format ++msgid "Triggering %s" ++msgstr "Pripravuje sa %s" + + #: apt-pkg/deb/dpkgpm.cc:756 msgid "Can not write log, openpty() failed (/dev/pts not mounted?)\n" msgstr "" "Nedá sa zapísaÅ¥ záznam, volanie openpty() zlyhalo (/dev/pts nie je " @@@ -2862,3 -2873,3 +2873,6 @@@ msgstr "Nedá sa upraviÅ¥ súbor #: methods/rsh.cc:330 msgid "Connection closed prematurely" msgstr "Spojenie bolo predčasne ukončené" ++ ++#~ msgid "Running post-installation trigger %s" ++#~ msgstr "Vykonáva sa spúšťač post-installation %s" diff --cc po/sl.po index 8cbcf46a1,d620877d8..a8d201953 --- a/po/sl.po +++ b/po/sl.po @@@ -4,7 -4,7 +4,7 @@@ msgid " msgstr "" "Project-Id-Version: apt 0.5.5\n" "Report-Msgid-Bugs-To: \n" - "POT-Creation-Date: 2008-05-04 09:18+0200\n" -"POT-Creation-Date: 2008-05-28 14:25+0200\n" ++"POT-Creation-Date: 2008-05-22 16:56+0200\n" "PO-Revision-Date: 2005-02-16 22:18+0100\n" "Last-Translator: Jure Cuhalev \n" "Language-Team: Slovenian \n" @@@ -2854,7 -2854,18 +2854,18 @@@ msgstr "Odpiranje nastavitvene datotek msgid "Completely removed %s" msgstr "Odstranitev %s ni uspela" - #: apt-pkg/deb/dpkgpm.cc:716 + #. populate the "processing" map + #: apt-pkg/deb/dpkgpm.cc:604 + #, fuzzy, c-format + msgid "Installing %s" + msgstr " Name¹èen: " + + #: apt-pkg/deb/dpkgpm.cc:607 -#, c-format -msgid "Running post-installation trigger %s" -msgstr "" ++#, fuzzy, c-format ++msgid "Triggering %s" ++msgstr "Odpiram %s" + + #: apt-pkg/deb/dpkgpm.cc:756 msgid "Can not write log, openpty() failed (/dev/pts not mounted?)\n" msgstr "" diff --cc po/sv.po index 1d4ea2654,40f1f7f09..82c81fc33 --- a/po/sv.po +++ b/po/sv.po @@@ -7,13 -7,13 +7,13 @@@ msgid " msgstr "" "Project-Id-Version: apt\n" "Report-Msgid-Bugs-To: \n" - "POT-Creation-Date: 2008-05-04 09:18+0200\n" - "PO-Revision-Date: 2008-05-07 06:19+0100\n" - "Last-Translator: Peter Karlsson \n" -"POT-Creation-Date: 2008-05-28 14:25+0200\n" ++"POT-Creation-Date: 2008-05-22 16:56+0200\n" + "PO-Revision-Date: 2008-08-29 11:48+0100\n" + "Last-Translator: Daniel Nylander \n" "Language-Team: Swedish \n" "MIME-Version: 1.0\n" - "Content-Type: text/plain; charset=utf-8\n" - "Content-Transfer-Encoding: 8bit" + "Content-Type: text/plain; charset=UTF-8\n" + "Content-Transfer-Encoding: 8bit\n" #: cmdline/apt-cache.cc:143 #, c-format @@@ -2884,7 -2884,18 +2884,18 @@@ msgstr "Förbereder borttagning av hel msgid "Completely removed %s" msgstr "Tog bort hela %s" - #: apt-pkg/deb/dpkgpm.cc:716 + #. populate the "processing" map + #: apt-pkg/deb/dpkgpm.cc:604 + #, c-format + msgid "Installing %s" + msgstr "Installerar %s" + + #: apt-pkg/deb/dpkgpm.cc:607 -#, c-format -msgid "Running post-installation trigger %s" -msgstr "Kör efterinstallationsutlösare %s" ++#, fuzzy, c-format ++msgid "Triggering %s" ++msgstr "Förbereder %s" + + #: apt-pkg/deb/dpkgpm.cc:756 msgid "Can not write log, openpty() failed (/dev/pts not mounted?)\n" msgstr "" "Kan inte skriva loggfil, openpty() misslyckades (/dev/pts inte monterad?)\n" @@@ -2897,5 -2908,5 +2908,8 @@@ msgstr "Kunde inte lägga pÃ¥ programfi msgid "Connection closed prematurely" msgstr "Anslutningen stängdes i förtid" -msgid "Line %d too long (max %lu)" -msgstr "Rad %d är för lÃ¥ng (max %lu)" ++#~ msgid "Running post-installation trigger %s" ++#~ msgstr "Kör efterinstallationsutlösare %s" ++ +#~ msgid "Line %d too long (max %lu)" +#~ msgstr "Rad %d är för lÃ¥ng (max %lu)" diff --cc po/th.po index 176c0b47e,4529d55ee..a8c8f0768 --- a/po/th.po +++ b/po/th.po @@@ -8,7 -8,7 +8,7 @@@ msgid " msgstr "" "Project-Id-Version: apt\n" "Report-Msgid-Bugs-To: \n" - "POT-Creation-Date: 2008-05-04 09:18+0200\n" -"POT-Creation-Date: 2008-05-28 14:25+0200\n" ++"POT-Creation-Date: 2008-05-22 16:56+0200\n" "PO-Revision-Date: 2008-05-06 12:52+0700\n" "Last-Translator: Theppitak Karoonboonyanan \n" "Language-Team: Thai \n" @@@ -2815,7 -2815,18 +2815,18 @@@ msgstr "กำลังเตรียà msgid "Completely removed %s" msgstr "ถอดถอน %s อย่างสมบูรณ์แล้ว" - #: apt-pkg/deb/dpkgpm.cc:716 + #. populate the "processing" map + #: apt-pkg/deb/dpkgpm.cc:604 + #, fuzzy, c-format + msgid "Installing %s" + msgstr "ติดตั้ง %s แล้ว" + + #: apt-pkg/deb/dpkgpm.cc:607 -#, c-format -msgid "Running post-installation trigger %s" -msgstr "" ++#, fuzzy, c-format ++msgid "Triggering %s" ++msgstr "กำลังเตรียม %s" + + #: apt-pkg/deb/dpkgpm.cc:756 msgid "Can not write log, openpty() failed (/dev/pts not mounted?)\n" msgstr "" "ไม่สามารถเขียนบันทึกปฏิบัติการ เนื่องจาก openpty() ล้มเหลว (ไม่ได้เมานท์ /dev/pts " diff --cc po/tl.po index ae2e4adcb,5807548c5..feed92d3c --- a/po/tl.po +++ b/po/tl.po @@@ -10,7 -10,7 +10,7 @@@ msgid " msgstr "" "Project-Id-Version: apt\n" "Report-Msgid-Bugs-To: \n" - "POT-Creation-Date: 2008-05-04 09:18+0200\n" -"POT-Creation-Date: 2008-05-28 14:25+0200\n" ++"POT-Creation-Date: 2008-05-22 16:56+0200\n" "PO-Revision-Date: 2007-03-29 21:36+0800\n" "Last-Translator: Eric Pareja \n" "Language-Team: Tagalog \n" @@@ -2894,7 -2894,18 +2894,18 @@@ msgstr "Naghahanda upang tanggalin ng l msgid "Completely removed %s" msgstr "Natanggal ng lubusan ang %s" - #: apt-pkg/deb/dpkgpm.cc:716 + #. populate the "processing" map + #: apt-pkg/deb/dpkgpm.cc:604 + #, fuzzy, c-format + msgid "Installing %s" + msgstr "Iniluklok ang %s" + + #: apt-pkg/deb/dpkgpm.cc:607 -#, c-format -msgid "Running post-installation trigger %s" -msgstr "" ++#, fuzzy, c-format ++msgid "Triggering %s" ++msgstr "Hinahanda ang %s" + + #: apt-pkg/deb/dpkgpm.cc:756 msgid "Can not write log, openpty() failed (/dev/pts not mounted?)\n" msgstr "" diff --cc po/uk.po index 7fdafc742,07e5342ec..42d63a0d6 --- a/po/uk.po +++ b/po/uk.po @@@ -6,7 -6,7 +6,7 @@@ msgid " msgstr "" "Project-Id-Version: apt-all\n" "Report-Msgid-Bugs-To: \n" - "POT-Creation-Date: 2008-05-04 09:18+0200\n" -"POT-Creation-Date: 2008-05-28 14:25+0200\n" ++"POT-Creation-Date: 2008-05-22 16:56+0200\n" "PO-Revision-Date: 2006-07-29 15:57+0300\n" "Last-Translator: Artem Bondarenko \n" "Language-Team: Українська \n" @@@ -2902,7 -2902,18 +2902,18 @@@ msgstr "Підготовка до поРmsgid "Completely removed %s" msgstr "Повністю видалено %s" - #: apt-pkg/deb/dpkgpm.cc:716 + #. populate the "processing" map + #: apt-pkg/deb/dpkgpm.cc:604 + #, fuzzy, c-format + msgid "Installing %s" + msgstr "Встановлено %s" + + #: apt-pkg/deb/dpkgpm.cc:607 -#, c-format -msgid "Running post-installation trigger %s" -msgstr "" ++#, fuzzy, c-format ++msgid "Triggering %s" ++msgstr "Підготовка %s" + + #: apt-pkg/deb/dpkgpm.cc:756 msgid "Can not write log, openpty() failed (/dev/pts not mounted?)\n" msgstr "" diff --cc po/vi.po index a0d483a88,f40dbcec9..1508e8831 --- a/po/vi.po +++ b/po/vi.po @@@ -6,8 -6,8 +6,8 @@@ msgid " msgstr "" "Project-Id-Version: apt 0.7.14\n" "Report-Msgid-Bugs-To: \n" - "POT-Creation-Date: 2008-05-04 09:18+0200\n" - "PO-Revision-Date: 2008-05-02 17:13+0930\n" -"POT-Creation-Date: 2008-05-28 14:25+0200\n" ++"POT-Creation-Date: 2008-05-22 16:56+0200\n" + "PO-Revision-Date: 2008-09-05 17:03+0930\n" "Last-Translator: Clytie Siddall \n" "Language-Team: Vietnamese \n" "MIME-Version: 1.0\n" @@@ -2910,7 -2910,18 +2910,18 @@@ msgstr "Đang chuẩn bị gỡ bỏ ho msgid "Completely removed %s" msgstr "Mới gỡ bỏ hoàn toàn %s" - #: apt-pkg/deb/dpkgpm.cc:716 + #. populate the "processing" map + #: apt-pkg/deb/dpkgpm.cc:604 + #, c-format + msgid "Installing %s" + msgstr "Đang cài đặt %s" + + #: apt-pkg/deb/dpkgpm.cc:607 -#, c-format -msgid "Running post-installation trigger %s" -msgstr "Đang chạy bộ gây nên tiến trình cuối cùng cài đặt %s" ++#, fuzzy, c-format ++msgid "Triggering %s" ++msgstr "Đang chuẩn bị %s..." + + #: apt-pkg/deb/dpkgpm.cc:756 msgid "Can not write log, openpty() failed (/dev/pts not mounted?)\n" msgstr "Không thể ghi lÆ°u, openpty() bị lỗi (« /dev/pts » chÆ°a lắp ?)\n" @@@ -2921,3 -2932,3 +2932,6 @@@ msgstr "Không thể vá lỗi trong tá #: methods/rsh.cc:330 msgid "Connection closed prematurely" msgstr "Kết nối bị đóng quá sớm." ++ ++#~ msgid "Running post-installation trigger %s" ++#~ msgstr "Đang chạy bộ gây nên tiến trình cuối cùng cài đặt %s" diff --cc po/zh_CN.po index 32235218b,f6e38271b..18537cc63 --- a/po/zh_CN.po +++ b/po/zh_CN.po @@@ -6,10 -6,10 +6,10 @@@ # msgid "" msgstr "" - "Project-Id-Version: apt 0.5.23\n" + "Project-Id-Version: apt\n" "Report-Msgid-Bugs-To: \n" - "POT-Creation-Date: 2008-05-04 09:18+0200\n" - "PO-Revision-Date: 2008-04-18 21:53+0800\n" -"POT-Creation-Date: 2008-05-28 14:25+0200\n" ++"POT-Creation-Date: 2008-05-22 16:56+0200\n" + "PO-Revision-Date: 2008-08-17 23:45+0800\n" "Last-Translator: Deng Xiyue \n" "Language-Team: Debian Chinese [GB] \n" "MIME-Version: 1.0\n" @@@ -2825,7 -2825,18 +2825,18 @@@ msgstr "正在准备完全删除 %s msgid "Completely removed %s" msgstr "完全删除了 %s" - #: apt-pkg/deb/dpkgpm.cc:716 + #. populate the "processing" map + #: apt-pkg/deb/dpkgpm.cc:604 + #, c-format + msgid "Installing %s" + msgstr "正在安装 %s" + + #: apt-pkg/deb/dpkgpm.cc:607 -#, c-format -msgid "Running post-installation trigger %s" -msgstr "执行安装后执行的触发器 %s" ++#, fuzzy, c-format ++msgid "Triggering %s" ++msgstr "正在准备 %s" + + #: apt-pkg/deb/dpkgpm.cc:756 msgid "Can not write log, openpty() failed (/dev/pts not mounted?)\n" msgstr "无法写入日志。 openpty() 失败 (/dev/pts 没有 mount 上?)\n" @@@ -2837,6 -2848,6 +2848,9 @@@ msgstr "无法打开补丁文件 msgid "Connection closed prematurely" msgstr "连接被永久关闭" ++#~ msgid "Running post-installation trigger %s" ++#~ msgstr "执行安装后执行的触发器 %s" ++ #~ msgid "Line %d too long (max %lu)" #~ msgstr "第 %d 行超长了(长度限制为 %lu)。" diff --cc po/zh_TW.po index bcada53c2,65ff77711..2f11c93d8 --- a/po/zh_TW.po +++ b/po/zh_TW.po @@@ -8,8 -8,8 +8,8 @@@ msgid " msgstr "" "Project-Id-Version: 0.5.4\n" "Report-Msgid-Bugs-To: \n" - "POT-Creation-Date: 2008-05-04 09:18+0200\n" - "PO-Revision-Date: 2006-10-21 16:58+0800\n" -"POT-Creation-Date: 2008-05-28 14:25+0200\n" ++"POT-Creation-Date: 2008-05-22 16:56+0200\n" + "PO-Revision-Date: 2008-06-29 21:41+0800\n" "Last-Translator: Asho Yeh \n" "Language-Team: Chinese/Traditional \n" "MIME-Version: 1.0\n" @@@ -2821,9 -2814,20 +2814,20 @@@ msgstr "準備完整移除 %s msgid "Completely removed %s" msgstr "已完整移除%s" - #: apt-pkg/deb/dpkgpm.cc:716 + #. populate the "processing" map + #: apt-pkg/deb/dpkgpm.cc:604 + #, fuzzy, c-format + msgid "Installing %s" + msgstr "已安裝%s" + + #: apt-pkg/deb/dpkgpm.cc:607 -#, c-format -msgid "Running post-installation trigger %s" -msgstr "" ++#, fuzzy, c-format ++msgid "Triggering %s" ++msgstr "準備配置%s中" + + #: apt-pkg/deb/dpkgpm.cc:756 msgid "Can not write log, openpty() failed (/dev/pts not mounted?)\n" - msgstr "" + msgstr "無法寫入記錄檔,openpty()失敗(/dev/pts有掛載嗎?)\n" #: methods/rred.cc:219 msgid "Could not patch file"