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:
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)
- 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 <michael.vogt@ubuntu.com> 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 <jackyf.devel@gmail.com> 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 <lethalman88@gmail.com> 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 <mvo@debian.org> Fri, 10 Oct 2008 23:44:50 +0200
+
+ apt (0.7.15) unstable; urgency=low
+
+ * Upload to unstable
+
+ -- Michael Vogt <mvo@debian.org> 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)
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 <okhayat@yahoo.com>\n"
"Language-Team: Arabic <support@arabeyes.org>\n"
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 ""
# Damyan Ivanov <dmn@debiian.org>, 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 <dmn@debian.org>\n"
"Language-Team: Bulgarian <dict@fsa-bg.org>\n"
"MIME-Version: 1.0\n"
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 е "
#: methods/rsh.cc:330
msgid "Connection closed prematurely"
msgstr "Връзката прекъсна преждевременно"
++
++#~ msgid "Running post-installation trigger %s"
++#~ msgstr "Изпълнение на тригер след инсталиране %s"
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ć <sapphire@linux.org.ba>\n"
"Language-Team: Bosnian <lokal@lugbih.org>\n"
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 ""
#
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 <jordi@debian.org>\n"
"Language-Team: Catalan <debian-l10n-catalan@lists.debian.org>\n"
"MIME-Version: 1.0\n"
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"
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"
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 <kurem@debian.cz>\n"
"Language-Team: Czech <debian-l10n-czech@lists.debian.org>\n"
"MIME-Version: 1.0\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"
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)"
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 <daf@muse.19inch.net>\n"
"Language-Team: Welsh <cy@pengwyn.linux.org.uk>\n"
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 ""
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 <claus.hindsgaul@gmail.com>\n"
"Language-Team: Danish\n"
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 ""
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 <jensseidel@users.sf.net>\n"
- "Language-Team: <debian-l10n-german@lists.debian.org>\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 <linux@wansing-online.de>\n"
+ "Language-Team: <debian-l10n-german@lists.debian.org>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
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"
#: 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
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 "
#: 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"
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 <gasepkuenden2k3@hotmail.com>\n"
"Language-Team: Dzongkha <pgeyleg@dit.gov.bt>\n"
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 ""
# George Papamichalakis <george@step.gr>, 2004.
# Greek Translation Team <debian-l10n-greek@lists.debian.org>, 2005.
# quad-nrg.net <galaxico@quad-nrg.net>, 2005.
- #
+ # Serafeim Zanikolas <serzan@hellug.gr>, 2008.
+ # quad-nrg.net <yodesy@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 <markos@debian.org>\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 <yodesy@quad-nrg.net>\n"
"Language-Team: Greek <debian-l10n-greek@lists.debian.org>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
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 "Î Ï\81οεÏ\84οιμαÏ\83ία Ï\81Ï\8dθμισης του %s"
+ msgstr "Î Ï\81οεÏ\84οιμαÏ\83ία Ï\80λήÏ\81ηÏ\82 αÏ\86αίÏ\81εσης του %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 "Î\91δÏ\8dναÏ\84ο Ï\84ο άνοιγμα Ï\84οÏ\85 αÏ\81Ï\87είοÏ\85 %s"
+ msgstr "Î\91δÏ\8dναÏ\84η η διÏ\8cÏ\81θÏ\89Ï\83η Ï\84οÏ\85 αÏ\81Ï\87είοÏ\85"
#: 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"
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 <linux@codehelp.co.uk>\n"
"Language-Team: en_GB <en_gb@li.org>\n"
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 ""
#
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 <jfs@debian.org>\n"
"Language-Team: Debian Spanish <debian-l10n-spanish@lists.debian.org>\n"
"MIME-Version: 1.0\n"
msgstr "No se ha podido localizar el paquete %s"
#: cmdline/apt-cache.cc:247
-#| msgid "Total package names : "
+ #, fuzzy
msgid "Total package names: "
msgstr "Nombres de paquetes totales: "
msgstr "Versiones diferentes totales: "
#: cmdline/apt-cache.cc:295
-#| msgid "Total Distinct Descriptions: "
+ #, fuzzy
msgid "Total distinct descriptions: "
- msgstr "Descipciones diferentes totales: "
+ msgstr "Descripciones diferentes totales: "
#: cmdline/apt-cache.cc:297
msgid "Total dependencies: "
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"
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"
# Piarres Beobide <pi@beobide.net>, 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 <pi@beobide.net>\n"
"Language-Team: Euskara <debian-l10n-basque@lists.debian.org>\n"
"MIME-Version: 1.0\n"
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 "
#: 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"
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 <tale@debian.org>\n"
"Language-Team: Finnish <debian-l10n-finnish@lists.debian.org>\n"
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 "
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 <bubulle@debian.org>\n"
"Language-Team: French <debian-l10n-french@lists.debian.org>\n"
"MIME-Version: 1.0\n"
#: 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."
#: 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"
#: 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
#: 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"
#: 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
#: 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."
#: 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
#: 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"
#: 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"
"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."
#: 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
#: 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."
#: 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é."
#: 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
#: 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
#: 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."
#: 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."
#: 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
#: 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
#: 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."
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"
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"
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 <jtarrio@debian.org>\n"
"Language-Team: Galician <proxecto@trasno.net>\n"
"MIME-Version: 1.0\n"
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 "
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)"
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 <webmaster@guides.co.il>\n"
"Language-Team: Hebrew\n"
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 ""
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 <sas@321.hu>\n"
"Language-Team: Hungarian <debian-l10n-hungarian>\n"
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"
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 <samu@debian.org>\n"
"Language-Team: Italian <it@li.org>\n"
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"
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 <kmuto@debian.org>\n"
"Language-Team: Debian Japanese List <debian-japanese@lists.debian.org>\n"
"MIME-Version: 1.0\n"
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 がマウントされていな"
#: methods/rsh.cc:330
msgid "Connection closed prematurely"
msgstr "途中で接続がクローズされました"
++
++#~ msgid "Running post-installation trigger %s"
++#~ msgstr "インストール後トリガ %s を実行しています"
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 <khoemsokhem@khmeros.info>\n"
"Language-Team: Khmer <support@khmeros.info>\n"
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 ""
"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 <darehanl@gmail.com>\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 <cwryu@debian.org>\n"
"Language-Team: Korean <debian-l10n-korean@lists.debian.org>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
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"
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 <erdal dot ronahi at gmail dot com>\n"
"Language-Team: ku <ubuntu-l10n-kur@lists.ubuntu.com>\n"
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 ""
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 <prithisd@gmail.com>\n"
"Language-Team: Marathi, janabhaaratii, C-DAC, Mumbai, India "
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 ""
"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 <hans@nordhaug.priv.no>\n"
"Language-Team: Norwegian Bokmal <i18n-nb@lister.ping.ui.no>\n"
"MIME-Version: 1.0\n"
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"
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)"
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 <pokharelshiva@hotmail.com>\n"
"Language-Team: Nepali <info@mpp.org.np>\n"
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 ""
"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 <cobaco@skolelinux.no>\n"
"Language-Team: debian-l10n-dutch <debian-l10n-dutch@lists.debian.org>\n"
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 "
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 <korsvoll@skulelinux.no>\n"
"Language-Team: Norwegian nynorsk <i18n-nn@lister.ping.uio.no>\n"
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 ""
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 <siryes@gmail.com>\n"
"Language-Team: Polish <debian-l10n-polish@lists.debian.org>\n"
"MIME-Version: 1.0\n"
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 "
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)"
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 <elmig@debianpt.org>\n"
"Language-Team: Portuguese <traduz@debianpt.org>\n"
"MIME-Version: 1.0\n"
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á "
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)"
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) <faw@debian.org>\n"
"Language-Team: l10n portuguese <debian-l10n-portuguese@lists.debian.org>\n"
"MIME-Version: 1.0\n"
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"
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)"
# This file is put in the public domain.
#
# Sorin Batariuc <sorin@bonbon.net>, 2004, 2005, 2006.
+ # Eddy Petrișor <eddy.petrisor@gmail.com>, 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 <sorin@bonbon.net>\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 <eddy.petrisor@gmail.com>\n"
"Language-Team: Romanian <debian-l10n-romanian@lists.debian.org>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
#: 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"
#: 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"
#: 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."
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"
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"
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)"
# Yuri Kozlov <kozlov.y@gmail.com>, 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 <kozlov.y@gmail.com>\n"
"Language-Team: Russian <debian-l10n-russian@lists.debian.org>\n"
"MIME-Version: 1.0\n"
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 не "
#: methods/rsh.cc:330
msgid "Connection closed prematurely"
msgstr "Соединение закрыто преждевременно"
++
++#~ msgid "Running post-installation trigger %s"
++#~ msgstr "Выполняется послеустановочный триггер %s"
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 <Peter.Mann@tuke.sk>\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 <helix84@centrum.sk>\n"
"Language-Team: Slovak <sk-i18n@lists.linux.sk>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
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 "
#: 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"
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 <gandalf@owca.info>\n"
"Language-Team: Slovenian <sl@li.org>\n"
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 ""
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 <peterk@debian.org>\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 <po@danielnylander.se>\n"
"Language-Team: Swedish <debian-l10n-swedish@debian.org>\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
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"
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)"
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 <thep@linux.thai.net>\n"
"Language-Team: Thai <thai-l10n@googlegroups.com>\n"
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 "
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 <xenos@upm.edu.ph>\n"
"Language-Team: Tagalog <debian-tl@banwa.upm.edu.ph>\n"
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 ""
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 <artem.brz@gmail.com>\n"
"Language-Team: Українська <uk@li.org>\n"
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 ""
"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 <clytie@riverland.net.au>\n"
"Language-Team: Vietnamese <vi-VN@googlegroups.com>\n"
"MIME-Version: 1.0\n"
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"
#: 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"
#
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 <manphiz-guest@users.alioth.debian.org>\n"
"Language-Team: Debian Chinese [GB] <debian-chinese-gb@lists.debian.org>\n"
"MIME-Version: 1.0\n"
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"
msgid "Connection closed prematurely"
msgstr "连接被永久关闭"
++#~ msgid "Running post-installation trigger %s"
++#~ msgstr "执行安装后执行的触发器 %s"
++
#~ msgid "Line %d too long (max %lu)"
#~ msgstr "第 %d 行超长了(长度限制为 %lu)。"
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 <asho@debian.org.tw>\n"
"Language-Team: Chinese/Traditional <zh-l10n@linux.org.tw>\n"
"MIME-Version: 1.0\n"
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"