[Date Prev][Date Next] [Thread Prev][Thread Next] [Date Index] [Thread Index]

Bug#577168: marked as done (apt: [PATCH] use standard single or double quotes, not backticks, in messages)



Your message dated Tue, 24 Aug 2010 18:47:15 +0000
with message-id <E1OnyWh-0008QF-3f@franck.debian.org>
and subject line Bug#577168: fixed in apt 0.8.0
has caused the Debian Bug report #577168,
regarding apt: [PATCH] use standard single or double quotes, not backticks, in messages
to be marked as done.

This means that you claim that the problem has been dealt with.
If this is not the case it is now your responsibility to reopen the
Bug report if necessary, and/or fix the problem forthwith.

(NB: If you are a system administrator and have no idea what this
message is talking about, this may indicate a serious mail system
misconfiguration somewhere. Please contact owner@bugs.debian.org
immediately.)


-- 
577168: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=577168
Debian Bug Tracking System
Contact owner@bugs.debian.org with problems
--- Begin Message ---
Package: apt
Version: 0.7.25.3
Severity: normal
Tags: patch


In some of the messages, there is uneven quotes that start with a
backtick. Please prefer normal single-single or double-double quote
pairs for standard output. The use of straight quotes will also help
interoperability when copy/pasting txt and making programs that
postprocess the output (s.c.f regular expression matching).

The following patch (against BZR repo) adjusts:

    `apt-get -f install' => 'apt-get -f install'

For more information aboout the use of quotes:

    ASCII and Unicode quotation marks by Markus Kuhn
    http://www.cl.cam.ac.uk/~mgk25/ucs/quotes.html

    Summary: Please do not use the ASCII grave accent (0x60) as a left
    quotation mark together with the ASCII apostrophe (0x27) as the
    corresponding right quotation mark (as in `quote'). Your text will
    otherwise appear rather strange with most modern fonts (e.g., on
    Windows and Mac systems). Only old X Window System fonts and some
    old video terminals show ASCII 0x60/0x27 as left and right
    quotation marks, while most modern systems follow the ISO and
    Unicode standards instead. If you can use only ASCII’s typewriter
    characters, then use the apostrophe character (0x27) as both the
    left and right quotation mark (as in 'quote'). If you can use
    Unicode characters, nice directional quotation marks are available
    in the form of characters U+2018, U+2019, U+201C, and U+201D (as
    in ‘quote’ or “quote”).

-- Package-specific info:

-- /etc/apt/preferences --

# apt_preferences(5)


-- (/etc/apt/sources.list present, but not submitted) --


-- System Information:
Debian Release: squeeze/sid
  APT prefers testing
  APT policy: (990, 'testing'), (500, 'unstable'), (1, 'experimental')
Architecture: amd64 (x86_64)

Kernel: Linux 2.6.32-trunk-amd64 (SMP w/2 CPU cores)
Locale: LANG=en_DK.UTF-8, LC_CTYPE=en_DK.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/dash

Versions of packages apt depends on:
ii  debian-archive-keyring        2009.01.31 GnuPG archive keys of the Debian a
ii  libc6                         2.10.2-6   Embedded GNU C Library: Shared lib
ii  libgcc1                       1:4.4.2-9  GCC support library
ii  libstdc++6                    4.4.2-9    The GNU Standard C++ Library v3

apt recommends no packages.

Versions of packages apt suggests:
pn  apt-doc                       <none>     (no description available)
pn  aptitude | synaptic | wajig   <none>     (no description available)
ii  bzip2                         1.0.5-4    high-quality block-sorting file co
ii  dpkg-dev                      1.15.5.6   Debian package development tools
ii  lzma                          4.43-14    Compression method of 7z format in
ii  python-apt                    0.7.94.2   Python interface to libapt-pkg

-- no debconf information
>From 2b6262146443a9653d7e9113bc85bf8c537b44fe Mon Sep 17 00:00:00 2001
From: Jari Aalto <jari.aalto@cante.net>
Date: Fri, 9 Apr 2010 21:44:00 +0300
Subject: [PATCH] `apt-get -f install' => 'apt-get -f install'
Organization: Private
Content-Type: text/plain; charset="utf-8"
Content-Transfer-Encoding: 8bit

Signed-off-by: Jari Aalto <jari.aalto@cante.net>
---
 cmdline/apt-get.cc |    4 ++--
 po/apt-all.pot     |    4 ++--
 po/ar.po           |    8 ++++----
 po/bg.po           |    4 ++--
 po/bs.po           |    4 ++--
 po/ca.po           |   12 ++++++------
 po/cs.po           |    8 ++++----
 po/cy.po           |    8 ++++----
 po/da.po           |    6 +++---
 po/de.po           |    4 ++--
 po/dz.po           |    8 ++++----
 po/el.po           |    4 ++--
 po/en_GB.po        |    4 ++--
 po/es.po           |   12 ++++++------
 po/eu.po           |    8 ++++----
 po/fi.po           |    4 ++--
 po/fr.po           |    4 ++--
 po/gl.po           |    4 ++--
 po/he.po           |    4 ++--
 po/hu.po           |    4 ++--
 po/it.po           |    6 +++---
 po/ja.po           |    4 ++--
 po/km.po           |    8 ++++----
 po/ko.po           |    8 ++++----
 po/ku.po           |    4 ++--
 po/mr.po           |    8 ++++----
 po/nb.po           |    4 ++--
 po/ne.po           |    8 ++++----
 po/nl.po           |    4 ++--
 po/nn.po           |    4 ++--
 po/pl.po           |    8 ++++----
 po/pt.po           |   14 +++++++-------
 po/pt_BR.po        |   14 +++++++-------
 po/ro.po           |    4 ++--
 po/ru.po           |    4 ++--
 po/sk.po           |    8 ++++----
 po/sl.po           |    4 ++--
 po/sv.po           |    6 +++---
 po/th.po           |    8 ++++----
 po/tl.po           |    8 ++++----
 po/uk.po           |    4 ++--
 po/vi.po           |    4 ++--
 po/zh_CN.po        |    4 ++--
 po/zh_TW.po        |    4 ++--
 44 files changed, 135 insertions(+), 135 deletions(-)

diff --git a/cmdline/apt-get.cc b/cmdline/apt-get.cc
index 258133c..1372e00 100644
--- a/cmdline/apt-get.cc
+++ b/cmdline/apt-get.cc
@@ -679,7 +679,7 @@ bool CacheFile::CheckDeps(bool AllowBroken)
    }
    else
    {
-      c1out << _("You might want to run `apt-get -f install' to correct these.") << endl;
+      c1out << _("You might want to run 'apt-get -f install' to correct these.") << endl;
       ShowBroken(c1out,*this,true);
 
       return _error->Error(_("Unmet dependencies. Try using -f."));
@@ -1693,7 +1693,7 @@ bool DoInstall(CommandLine &CmdL)
 	 packages */
       if (BrokenFix == true && Cache->BrokenCount() != 0)
       {
-	 c1out << _("You might want to run `apt-get -f install' to correct these:") << endl;
+	 c1out << _("You might want to run 'apt-get -f install' to correct these:") << endl;
 	 ShowBroken(c1out,Cache,false);
 
 	 return _error->Error(_("Unmet dependencies. Try 'apt-get -f install' with no packages (or specify a solution)."));
diff --git a/po/apt-all.pot b/po/apt-all.pot
index 63c4afb..adff49b 100644
--- a/po/apt-all.pot
+++ b/po/apt-all.pot
@@ -674,7 +674,7 @@ msgid " Done"
 msgstr ""
 
 #: cmdline/apt-get.cc:682
-msgid "You might want to run `apt-get -f install' to correct these."
+msgid "You might want to run 'apt-get -f install' to correct these."
 msgstr ""
 
 #: cmdline/apt-get.cc:685
@@ -948,7 +948,7 @@ msgid "%s set to manually installed.\n"
 msgstr ""
 
 #: cmdline/apt-get.cc:1735
-msgid "You might want to run `apt-get -f install' to correct these:"
+msgid "You might want to run 'apt-get -f install' to correct these:"
 msgstr ""
 
 #: cmdline/apt-get.cc:1738
diff --git a/po/ar.po b/po/ar.po
index 8c44171..b12e949 100644
--- a/po/ar.po
+++ b/po/ar.po
@@ -681,8 +681,8 @@ msgid " Done"
 msgstr " تم"
 
 #: cmdline/apt-get.cc:682
-msgid "You might want to run `apt-get -f install' to correct these."
-msgstr "قد ترغب بتنفيذ الأمر `apt-get -f install' لتصحيح هذه."
+msgid "You might want to run 'apt-get -f install' to correct these."
+msgstr "قد ترغب بتنفيذ الأمر 'apt-get -f install' لتصحيح هذه."
 
 #: cmdline/apt-get.cc:685
 msgid "Unmet dependencies. Try using -f."
@@ -962,8 +962,8 @@ msgid "%s set to manually installed.\n"
 msgstr "إلا أنه سيتم تثبيت %s"
 
 #: cmdline/apt-get.cc:1735
-msgid "You might want to run `apt-get -f install' to correct these:"
-msgstr "قد ترغب بتشغيل `apt-get -f install' لتصحيح هذه:"
+msgid "You might want to run 'apt-get -f install' to correct these:"
+msgstr "قد ترغب بتشغيل 'apt-get -f install' لتصحيح هذه:"
 
 #: cmdline/apt-get.cc:1738
 msgid ""
diff --git a/po/bg.po b/po/bg.po
index ed8200b..48b4c62 100644
--- a/po/bg.po
+++ b/po/bg.po
@@ -786,7 +786,7 @@ msgid " Done"
 msgstr " Готово"
 
 #: cmdline/apt-get.cc:682
-msgid "You might want to run `apt-get -f install' to correct these."
+msgid "You might want to run 'apt-get -f install' to correct these."
 msgstr ""
 "Възможно е да изпълните „apt-get -f install“, за да коригирате тези "
 "неизправности."
@@ -1076,7 +1076,7 @@ msgid "%s set to manually installed.\n"
 msgstr "но ще бъде инсталиран %s"
 
 #: cmdline/apt-get.cc:1735
-msgid "You might want to run `apt-get -f install' to correct these:"
+msgid "You might want to run 'apt-get -f install' to correct these:"
 msgstr "Възможно е да изпълните „apt-get -f install“, за да коригирате:"
 
 #: cmdline/apt-get.cc:1738
diff --git a/po/bs.po b/po/bs.po
index ae57584..ef6aeee 100644
--- a/po/bs.po
+++ b/po/bs.po
@@ -689,7 +689,7 @@ msgid " Done"
 msgstr " Urađeno"
 
 #: cmdline/apt-get.cc:682
-msgid "You might want to run `apt-get -f install' to correct these."
+msgid "You might want to run 'apt-get -f install' to correct these."
 msgstr ""
 
 #: cmdline/apt-get.cc:685
@@ -966,7 +966,7 @@ msgid "%s set to manually installed.\n"
 msgstr "ali se %s treba instalirati"
 
 #: cmdline/apt-get.cc:1735
-msgid "You might want to run `apt-get -f install' to correct these:"
+msgid "You might want to run 'apt-get -f install' to correct these:"
 msgstr ""
 
 #: cmdline/apt-get.cc:1738
diff --git a/po/ca.po b/po/ca.po
index 4bc048f..029f4ad 100644
--- a/po/ca.po
+++ b/po/ca.po
@@ -779,8 +779,8 @@ msgid " Done"
 msgstr " Fet"
 
 #: cmdline/apt-get.cc:682
-msgid "You might want to run `apt-get -f install' to correct these."
-msgstr "Potser voldreu executar `apt-get -f install' per a corregir-ho."
+msgid "You might want to run 'apt-get -f install' to correct these."
+msgstr "Potser voldreu executar 'apt-get -f install' per a corregir-ho."
 
 #: cmdline/apt-get.cc:685
 msgid "Unmet dependencies. Try using -f."
@@ -1071,8 +1071,8 @@ msgid "%s set to manually installed.\n"
 msgstr "però s'instal·larà %s"
 
 #: cmdline/apt-get.cc:1735
-msgid "You might want to run `apt-get -f install' to correct these:"
-msgstr "Potser voldreu executar `apt-get -f install' per a corregir-ho:"
+msgid "You might want to run 'apt-get -f install' to correct these:"
+msgstr "Potser voldreu executar 'apt-get -f install' per a corregir-ho:"
 
 #: cmdline/apt-get.cc:1738
 msgid ""
@@ -2950,8 +2950,8 @@ msgstr "La connexió s'ha tancat prematurament"
 #~ msgid ""
 #~ "Some broken packages were found while trying to process build-"
 #~ "dependencies for %s.\n"
-#~ "You might want to run `apt-get -f install' to correct these."
+#~ "You might want to run 'apt-get -f install' to correct these."
 #~ msgstr ""
 #~ "S'han trobat alguns paquets trencats mentre es processaven les\n"
 #~ "dependències de construcció per a %s.\n"
-#~ "Potser voldreu executar `apt-get -f install' per a corregir-ho."
+#~ "Potser voldreu executar 'apt-get -f install' per a corregir-ho."
diff --git a/po/cs.po b/po/cs.po
index d739d51..b3181a2 100644
--- a/po/cs.po
+++ b/po/cs.po
@@ -774,8 +774,8 @@ msgid " Done"
 msgstr " Hotovo"
 
 #: cmdline/apt-get.cc:682
-msgid "You might want to run `apt-get -f install' to correct these."
-msgstr "Pro opravení můžete spustit `apt-get -f install'."
+msgid "You might want to run 'apt-get -f install' to correct these."
+msgstr "Pro opravení můžete spustit 'apt-get -f install'."
 
 #: cmdline/apt-get.cc:685
 msgid "Unmet dependencies. Try using -f."
@@ -1061,8 +1061,8 @@ msgid "%s set to manually installed.\n"
 msgstr "ale %s se bude instalovat"
 
 #: cmdline/apt-get.cc:1735
-msgid "You might want to run `apt-get -f install' to correct these:"
-msgstr "Pro opravení následujících můžete spustit `apt-get -f install':"
+msgid "You might want to run 'apt-get -f install' to correct these:"
+msgstr "Pro opravení následujících můžete spustit 'apt-get -f install':"
 
 #: cmdline/apt-get.cc:1738
 msgid ""
diff --git a/po/cy.po b/po/cy.po
index 5740145..f17b8c9 100644
--- a/po/cy.po
+++ b/po/cy.po
@@ -807,8 +807,8 @@ msgid " Done"
 msgstr " Wedi Gorffen"
 
 #: cmdline/apt-get.cc:682
-msgid "You might want to run `apt-get -f install' to correct these."
-msgstr "Efallai hoffech rhedeg `apt-get -f install' er mwyn cywiro'r rhain."
+msgid "You might want to run 'apt-get -f install' to correct these."
+msgstr "Efallai hoffech rhedeg 'apt-get -f install' er mwyn cywiro'r rhain."
 
 #: cmdline/apt-get.cc:685
 msgid "Unmet dependencies. Try using -f."
@@ -1102,8 +1102,8 @@ msgid "%s set to manually installed.\n"
 msgstr "ond mae %s yn mynd i gael ei sefydlu"
 
 #: cmdline/apt-get.cc:1735
-msgid "You might want to run `apt-get -f install' to correct these:"
-msgstr "Efallai hoffech rhedeg `apt-get -f install' er mwyn cywiro'r rhain:"
+msgid "You might want to run 'apt-get -f install' to correct these:"
+msgstr "Efallai hoffech rhedeg 'apt-get -f install' er mwyn cywiro'r rhain:"
 
 # FIXME
 #: cmdline/apt-get.cc:1738
diff --git a/po/da.po b/po/da.po
index 25fa65a..72da418 100644
--- a/po/da.po
+++ b/po/da.po
@@ -780,7 +780,7 @@ msgid " Done"
 msgstr " Frdig"
 
 #: cmdline/apt-get.cc:682
-msgid "You might want to run `apt-get -f install' to correct these."
+msgid "You might want to run 'apt-get -f install' to correct these."
 msgstr "Du kan muligvis rette dette ved at kre 'apt-get -f install'."
 
 #: cmdline/apt-get.cc:685
@@ -1070,7 +1070,7 @@ msgid "%s set to manually installed.\n"
 msgstr "%s sat til manuelt installeret.\n"
 
 #: cmdline/apt-get.cc:1735
-msgid "You might want to run `apt-get -f install' to correct these:"
+msgid "You might want to run 'apt-get -f install' to correct these:"
 msgstr "Du kan muligvis rette det ved at kre 'apt-get -f install':"
 
 #: cmdline/apt-get.cc:1738
@@ -2925,7 +2925,7 @@ msgstr "Forbindelsen lukkedes for hurtigt"
 #~ msgid ""
 #~ "Some broken packages were found while trying to process build-"
 #~ "dependencies.\n"
-#~ "You might want to run `apt-get -f install' to correct these."
+#~ "You might want to run 'apt-get -f install' to correct these."
 #~ msgstr ""
 #~ "Det blev fundet delagte pakker under behandlingen af "
 #~ "opbygningsafhngighederne.\n"
diff --git a/po/de.po b/po/de.po
index 63e1258..edf9ca9 100644
--- a/po/de.po
+++ b/po/de.po
@@ -791,7 +791,7 @@ msgid " Done"
 msgstr " Fertig"
 
 #: cmdline/apt-get.cc:682
-msgid "You might want to run `apt-get -f install' to correct these."
+msgid "You might want to run 'apt-get -f install' to correct these."
 msgstr "Probieren Sie „apt-get -f install“, um diese zu korrigieren."
 
 #: cmdline/apt-get.cc:685
@@ -1083,7 +1083,7 @@ msgid "%s set to manually installed.\n"
 msgstr "aber %s soll installiert werden"
 
 #: cmdline/apt-get.cc:1735
-msgid "You might want to run `apt-get -f install' to correct these:"
+msgid "You might want to run 'apt-get -f install' to correct these:"
 msgstr "Probieren Sie „apt-get -f install“, um diese zu korrigieren:"
 
 #: cmdline/apt-get.cc:1738
diff --git a/po/dz.po b/po/dz.po
index 8847485..db061bf 100644
--- a/po/dz.po
+++ b/po/dz.po
@@ -785,8 +785,8 @@ msgid " Done"
 msgstr "འབད་ཚར་ཡི།"
 
 #: cmdline/apt-get.cc:682
-msgid "You might want to run `apt-get -f install' to correct these."
-msgstr "འ་ནི་འདི་ཚུ་ནོར་བཅོས་འབད་ནི་ལུ་ཁྱོད་ཀྱི་`apt-get -f install'དེ་གཡོག་བཀོལ་དགོཔ་འོང་།"
+msgid "You might want to run 'apt-get -f install' to correct these."
+msgstr "འ་ནི་འདི་ཚུ་ནོར་བཅོས་འབད་ནི་ལུ་ཁྱོད་ཀྱི་'apt-get -f install'དེ་གཡོག་བཀོལ་དགོཔ་འོང་།"
 
 #: cmdline/apt-get.cc:685
 msgid "Unmet dependencies. Try using -f."
@@ -1077,8 +1077,8 @@ msgid "%s set to manually installed.\n"
 msgstr "འདི་འབདཝ་ད་%sའདི་གཞི་བཙུགས་འབད་ནི་ཨིན།"
 
 #: cmdline/apt-get.cc:1735
-msgid "You might want to run `apt-get -f install' to correct these:"
-msgstr "འདི་ཚུ་ནོར་བཅོས་འབད་ནིའི་དོན་ལུ་ཁྱོད་ཀྱི་`apt-get -f install'དེ་གཡོག་བཀོལ་དགོཔ་འོང་:"
+msgid "You might want to run 'apt-get -f install' to correct these:"
+msgstr "འདི་ཚུ་ནོར་བཅོས་འབད་ནིའི་དོན་ལུ་ཁྱོད་ཀྱི་'apt-get -f install'དེ་གཡོག་བཀོལ་དགོཔ་འོང་:"
 
 #: cmdline/apt-get.cc:1738
 msgid ""
diff --git a/po/el.po b/po/el.po
index 5adf8ca..204fa76 100644
--- a/po/el.po
+++ b/po/el.po
@@ -795,7 +795,7 @@ msgid " Done"
 msgstr " Ετοιμο"
 
 #: cmdline/apt-get.cc:682
-msgid "You might want to run `apt-get -f install' to correct these."
+msgid "You might want to run 'apt-get -f install' to correct these."
 msgstr ""
 "Ίσως να πρέπει να τρέξετε apt-get -f install για να διορθώσετε αυτά τα "
 "προβλήματα."
@@ -1093,7 +1093,7 @@ msgid "%s set to manually installed.\n"
 msgstr "αλλά το %s πρόκειται να εγκατασταθεί"
 
 #: cmdline/apt-get.cc:1735
-msgid "You might want to run `apt-get -f install' to correct these:"
+msgid "You might want to run 'apt-get -f install' to correct these:"
 msgstr "Aν τρέξετε 'apt-get f install' ίσως να διορθώσετε αυτά τα προβλήματα:"
 
 #: cmdline/apt-get.cc:1738
diff --git a/po/en_GB.po b/po/en_GB.po
index b54289c..68621a7 100644
--- a/po/en_GB.po
+++ b/po/en_GB.po
@@ -775,7 +775,7 @@ msgid " Done"
 msgstr "Done"
 
 #: cmdline/apt-get.cc:682
-msgid "You might want to run `apt-get -f install' to correct these."
+msgid "You might want to run 'apt-get -f install' to correct these."
 msgstr "You might want to run ‘apt-get -f install’ to correct these."
 
 #: cmdline/apt-get.cc:685
@@ -1061,7 +1061,7 @@ msgid "%s set to manually installed.\n"
 msgstr "but %s is to be installed"
 
 #: cmdline/apt-get.cc:1735
-msgid "You might want to run `apt-get -f install' to correct these:"
+msgid "You might want to run 'apt-get -f install' to correct these:"
 msgstr "You might want to run ‘apt-get -f install’ to correct these:"
 
 #: cmdline/apt-get.cc:1738
diff --git a/po/es.po b/po/es.po
index 3dcb8c4..72d12e0 100644
--- a/po/es.po
+++ b/po/es.po
@@ -788,8 +788,8 @@ msgid " Done"
 msgstr " Listo"
 
 #: cmdline/apt-get.cc:682
-msgid "You might want to run `apt-get -f install' to correct these."
-msgstr "Tal vez quiera ejecutar `apt-get -f install' para corregirlo."
+msgid "You might want to run 'apt-get -f install' to correct these."
+msgstr "Tal vez quiera ejecutar 'apt-get -f install' para corregirlo."
 
 #: cmdline/apt-get.cc:685
 msgid "Unmet dependencies. Try using -f."
@@ -1080,8 +1080,8 @@ msgid "%s set to manually installed.\n"
 msgstr "fijado %s como instalado manualmente.\n"
 
 #: cmdline/apt-get.cc:1735
-msgid "You might want to run `apt-get -f install' to correct these:"
-msgstr "Tal vez quiera ejecutar `apt-get -f install' para corregirlo:"
+msgid "You might want to run 'apt-get -f install' to correct these:"
+msgstr "Tal vez quiera ejecutar 'apt-get -f install' para corregirlo:"
 
 #: cmdline/apt-get.cc:1738
 msgid ""
@@ -2965,11 +2965,11 @@ msgstr "La conexi
 #~ msgid ""
 #~ "Some broken packages were found while trying to process build-"
 #~ "dependencies.\n"
-#~ "You might want to run `apt-get -f install' to correct these."
+#~ "You might want to run 'apt-get -f install' to correct these."
 #~ msgstr ""
 #~ "Se encontraron algunos paquetes rotos mientras se intentaba procesar\n"
 #~ "las dependencies de construccin. Tal vez quiera ejecutar \n"
-#~ "`apt-get -f install' para corregirlos."
+#~ "'apt-get -f install' para corregirlos."
 
 #~ msgid ""
 #~ "Usage: apt-cache [options] command\n"
diff --git a/po/eu.po b/po/eu.po
index 9ab0b33..e20bad7 100644
--- a/po/eu.po
+++ b/po/eu.po
@@ -776,8 +776,8 @@ msgid " Done"
 msgstr " Eginda"
 
 #: cmdline/apt-get.cc:682
-msgid "You might want to run `apt-get -f install' to correct these."
-msgstr "Beharbada `apt-get -f install' exekutatu nahiko duzu zuzentzeko."
+msgid "You might want to run 'apt-get -f install' to correct these."
+msgstr "Beharbada 'apt-get -f install' exekutatu nahiko duzu zuzentzeko."
 
 #: cmdline/apt-get.cc:685
 msgid "Unmet dependencies. Try using -f."
@@ -1066,8 +1066,8 @@ msgid "%s set to manually installed.\n"
 msgstr "%s eskuz instalatua bezala ezarri.\n"
 
 #: cmdline/apt-get.cc:1735
-msgid "You might want to run `apt-get -f install' to correct these:"
-msgstr "Beharbada `apt-get -f install' exekutatu nahiko duzu hauek zuzentzeko:"
+msgid "You might want to run 'apt-get -f install' to correct these:"
+msgstr "Beharbada 'apt-get -f install' exekutatu nahiko duzu hauek zuzentzeko:"
 
 #: cmdline/apt-get.cc:1738
 msgid ""
diff --git a/po/fi.po b/po/fi.po
index 5259388..4077a0e 100644
--- a/po/fi.po
+++ b/po/fi.po
@@ -779,7 +779,7 @@ msgid " Done"
 msgstr " Valmis"
 
 #: cmdline/apt-get.cc:682
-msgid "You might want to run `apt-get -f install' to correct these."
+msgid "You might want to run 'apt-get -f install' to correct these."
 msgstr "Halunnet suorittaa \"apt-get -f install\" korjaamaan nämä."
 
 #: cmdline/apt-get.cc:685
@@ -1067,7 +1067,7 @@ msgid "%s set to manually installed.\n"
 msgstr "mutta %s on merkitty asennettavaksi"
 
 #: cmdline/apt-get.cc:1735
-msgid "You might want to run `apt-get -f install' to correct these:"
+msgid "You might want to run 'apt-get -f install' to correct these:"
 msgstr "Saatat haluta suorittaa \"apt-get -f install\" korjaamaan nämä:"
 
 #: cmdline/apt-get.cc:1738
diff --git a/po/fr.po b/po/fr.po
index e11900e..8eab683 100644
--- a/po/fr.po
+++ b/po/fr.po
@@ -788,7 +788,7 @@ msgid " Done"
 msgstr " Fait"
 
 #: cmdline/apt-get.cc:682
-msgid "You might want to run `apt-get -f install' to correct these."
+msgid "You might want to run 'apt-get -f install' to correct these."
 msgstr "Vous pouvez lancer « apt-get -f install » pour corriger ces problèmes."
 
 #: cmdline/apt-get.cc:685
@@ -1091,7 +1091,7 @@ msgid "%s set to manually installed.\n"
 msgstr "%s passé en « installé manuellement ».\n"
 
 #: cmdline/apt-get.cc:1735
-msgid "You might want to run `apt-get -f install' to correct these:"
+msgid "You might want to run 'apt-get -f install' to correct these:"
 msgstr "Vous pouvez lancer « apt-get -f install » pour corriger ces problèmes :"
 
 #: cmdline/apt-get.cc:1738
diff --git a/po/gl.po b/po/gl.po
index 55e9cd3..17d939e 100644
--- a/po/gl.po
+++ b/po/gl.po
@@ -784,7 +784,7 @@ msgid " Done"
 msgstr " Rematado"
 
 #: cmdline/apt-get.cc:682
-msgid "You might want to run `apt-get -f install' to correct these."
+msgid "You might want to run 'apt-get -f install' to correct these."
 msgstr "Pode querer executar \"apt-get -f install\" para corrixilos."
 
 #: cmdline/apt-get.cc:685
@@ -1076,7 +1076,7 @@ msgid "%s set to manually installed.\n"
 msgstr "%s cambiouse a instalado manualmente.\n"
 
 #: cmdline/apt-get.cc:1735
-msgid "You might want to run `apt-get -f install' to correct these:"
+msgid "You might want to run 'apt-get -f install' to correct these:"
 msgstr "Pode querer executar \"apt-get -f install\" corrixir isto:"
 
 #: cmdline/apt-get.cc:1738
diff --git a/po/he.po b/po/he.po
index bbb9cf2..6575cc2 100644
--- a/po/he.po
+++ b/po/he.po
@@ -677,7 +677,7 @@ msgid " Done"
 msgstr "סיום"
 
 #: cmdline/apt-get.cc:682
-msgid "You might want to run `apt-get -f install' to correct these."
+msgid "You might want to run 'apt-get -f install' to correct these."
 msgstr "אולי תרצה להריץ 'apt-get -f install' כדי לתקן את אלו."
 
 #: cmdline/apt-get.cc:685
@@ -955,7 +955,7 @@ msgid "%s set to manually installed.\n"
 msgstr "אבל %s הולכת להיות מותקנת"
 
 #: cmdline/apt-get.cc:1735
-msgid "You might want to run `apt-get -f install' to correct these:"
+msgid "You might want to run 'apt-get -f install' to correct these:"
 msgstr ""
 
 #: cmdline/apt-get.cc:1738
diff --git a/po/hu.po b/po/hu.po
index e814491..5c1e5fc 100644
--- a/po/hu.po
+++ b/po/hu.po
@@ -780,7 +780,7 @@ msgid " Done"
 msgstr " Kész"
 
 #: cmdline/apt-get.cc:682
-msgid "You might want to run `apt-get -f install' to correct these."
+msgid "You might want to run 'apt-get -f install' to correct these."
 msgstr "Ezek kijavításához próbáld futtatni az 'apt-get -f install'-t ."
 
 #: cmdline/apt-get.cc:685
@@ -1065,7 +1065,7 @@ msgid "%s set to manually installed.\n"
 msgstr "de csak %s telepíthető"
 
 #: cmdline/apt-get.cc:1735
-msgid "You might want to run `apt-get -f install' to correct these:"
+msgid "You might want to run 'apt-get -f install' to correct these:"
 msgstr "Próbáld futtatni az 'apt-get -f install'-t az alábbiak javításához:"
 
 #: cmdline/apt-get.cc:1738
diff --git a/po/it.po b/po/it.po
index 1ee382d..e3ee9b6 100644
--- a/po/it.po
+++ b/po/it.po
@@ -780,9 +780,9 @@ msgid " Done"
 msgstr " Fatto"
 
 #: cmdline/apt-get.cc:682
-msgid "You might want to run `apt-get -f install' to correct these."
+msgid "You might want to run 'apt-get -f install' to correct these."
 msgstr ""
-" consigliabile eseguire `apt-get -f install' per correggere questi problemi."
+" consigliabile eseguire 'apt-get -f install' per correggere questi problemi."
 
 #: cmdline/apt-get.cc:685
 msgid "Unmet dependencies. Try using -f."
@@ -1074,7 +1074,7 @@ msgid "%s set to manually installed.\n"
 msgstr "ma %s sta per essere installato"
 
 #: cmdline/apt-get.cc:1735
-msgid "You might want to run `apt-get -f install' to correct these:"
+msgid "You might want to run 'apt-get -f install' to correct these:"
 msgstr ""
 " consigliabile eseguire 'apt-get -f install' per correggere questi problemi:"
 
diff --git a/po/ja.po b/po/ja.po
index 0eb432e..d12cba2 100644
--- a/po/ja.po
+++ b/po/ja.po
@@ -777,7 +777,7 @@ msgid " Done"
 msgstr " 完了"
 
 #: cmdline/apt-get.cc:682
-msgid "You might want to run `apt-get -f install' to correct these."
+msgid "You might want to run 'apt-get -f install' to correct these."
 msgstr ""
 "これらを直すためには 'apt-get -f install' を実行する必要があるかもしれませ"
 "ん。"
@@ -1070,7 +1070,7 @@ msgid "%s set to manually installed.\n"
 msgstr "%s は手動でインストールしたと設定されました。\n"
 
 #: cmdline/apt-get.cc:1735
-msgid "You might want to run `apt-get -f install' to correct these:"
+msgid "You might want to run 'apt-get -f install' to correct these:"
 msgstr ""
 "以下の問題を解決するために 'apt-get -f install' を実行する必要があるかもしれ"
 "ません:"
diff --git a/po/km.po b/po/km.po
index 61092dd..d2f92e9 100644
--- a/po/km.po
+++ b/po/km.po
@@ -780,8 +780,8 @@ msgid " Done"
 msgstr " ធ្វើ​រួច"
 
 #: cmdline/apt-get.cc:682
-msgid "You might want to run `apt-get -f install' to correct these."
-msgstr "អ្នក​ប្រហែល​ជា​ចង់រត់ `apt-get -f install' ដើម្បី​កែ​វា​​ទាំងនេះ​ហើយ ។"
+msgid "You might want to run 'apt-get -f install' to correct these."
+msgstr "អ្នក​ប្រហែល​ជា​ចង់រត់ 'apt-get -f install' ដើម្បី​កែ​វា​​ទាំងនេះ​ហើយ ។"
 
 #: cmdline/apt-get.cc:685
 msgid "Unmet dependencies. Try using -f."
@@ -1065,8 +1065,8 @@ msgid "%s set to manually installed.\n"
 msgstr "ប៉ុន្តែ​ %s នឹង​ត្រូវ​បាន​ដំឡើ​ង"
 
 #: cmdline/apt-get.cc:1735
-msgid "You might want to run `apt-get -f install' to correct these:"
-msgstr "អ្នក​ប្រហែល​ជា​ចង់​រត់ `apt-get -f install' ដើម្បី​កែ​ពួក​វា​ទាំង​នេះ ៖"
+msgid "You might want to run 'apt-get -f install' to correct these:"
+msgstr "អ្នក​ប្រហែល​ជា​ចង់​រត់ 'apt-get -f install' ដើម្បី​កែ​ពួក​វា​ទាំង​នេះ ៖"
 
 #: cmdline/apt-get.cc:1738
 msgid ""
diff --git a/po/ko.po b/po/ko.po
index 1310a30..8682739 100644
--- a/po/ko.po
+++ b/po/ko.po
@@ -774,9 +774,9 @@ msgid " Done"
 msgstr " 완료"
 
 #: cmdline/apt-get.cc:682
-msgid "You might want to run `apt-get -f install' to correct these."
+msgid "You might want to run 'apt-get -f install' to correct these."
 msgstr ""
-"이 상황을 바로잡으려면 `apt-get -f install'을 실행해야 할 수도 있습니다."
+"이 상황을 바로잡으려면 'apt-get -f install'을 실행해야 할 수도 있습니다."
 
 #: cmdline/apt-get.cc:685
 msgid "Unmet dependencies. Try using -f."
@@ -1069,8 +1069,8 @@ msgid "%s set to manually installed.\n"
 msgstr "%s 꾸러미 수동설치로 지정합니다.\n"
 
 #: cmdline/apt-get.cc:1735
-msgid "You might want to run `apt-get -f install' to correct these:"
-msgstr "다음을 바로잡으려면 `apt-get -f install'을 실행해 보십시오:"
+msgid "You might want to run 'apt-get -f install' to correct these:"
+msgstr "다음을 바로잡으려면 'apt-get -f install'을 실행해 보십시오:"
 
 # FIXME: specify a solution?  무슨 솔루션?
 #: cmdline/apt-get.cc:1738
diff --git a/po/ku.po b/po/ku.po
index 4d18040..4b7c4a5 100644
--- a/po/ku.po
+++ b/po/ku.po
@@ -688,7 +688,7 @@ msgid " Done"
 msgstr " Temam"
 
 #: cmdline/apt-get.cc:682
-msgid "You might want to run `apt-get -f install' to correct these."
+msgid "You might want to run 'apt-get -f install' to correct these."
 msgstr ""
 
 #: cmdline/apt-get.cc:685
@@ -963,7 +963,7 @@ msgid "%s set to manually installed.\n"
 msgstr "lê %s dê were sazkirin"
 
 #: cmdline/apt-get.cc:1735
-msgid "You might want to run `apt-get -f install' to correct these:"
+msgid "You might want to run 'apt-get -f install' to correct these:"
 msgstr ""
 
 #: cmdline/apt-get.cc:1738
diff --git a/po/mr.po b/po/mr.po
index fc8ca6e..50c722f 100644
--- a/po/mr.po
+++ b/po/mr.po
@@ -777,7 +777,7 @@ msgid " Done"
 msgstr "झाले"
 
 #: cmdline/apt-get.cc:682
-msgid "You might want to run `apt-get -f install' to correct these."
+msgid "You might want to run 'apt-get -f install' to correct these."
 msgstr "हे बरोबर करण्यासाठी तुम्हाला `apt-get -f संस्थापना' प्रोग्राम चालू करावा लागेल."
 
 #: cmdline/apt-get.cc:685
@@ -1064,9 +1064,9 @@ msgid "%s set to manually installed.\n"
 msgstr "पण %s संस्थापित करायचे आहे"
 
 #: cmdline/apt-get.cc:1735
-msgid "You might want to run `apt-get -f install' to correct these:"
+msgid "You might want to run 'apt-get -f install' to correct these:"
 msgstr ""
-"तुम्हाला कदाचित `apt-get -f install'(एपीटी-गेट -एफ संस्थापन') प्रोग्राम चालू करावा "
+"तुम्हाला कदाचित 'apt-get -f install'(एपीटी-गेट -एफ संस्थापन') प्रोग्राम चालू करावा "
 "लागेल'यात बदल करण्यासाठी:"
 
 #: cmdline/apt-get.cc:1738
@@ -1074,7 +1074,7 @@ msgid ""
 "Unmet dependencies. Try 'apt-get -f install' with no packages (or specify a "
 "solution)."
 msgstr ""
-"अनमेट डिपेंडन्सीज.एपीटी-गेट -एफ संस्थापन (`apt-get -f install') पॅकेजशिवाय प्रयत्न करा "
+"अनमेट डिपेंडन्सीज.एपीटी-गेट -एफ संस्थापन ('apt-get -f install') पॅकेजशिवाय प्रयत्न करा "
 "(किंवा पर्याय सांगा)."
 
 #: cmdline/apt-get.cc:1750
diff --git a/po/nb.po b/po/nb.po
index b62eeab..02a9e89 100644
--- a/po/nb.po
+++ b/po/nb.po
@@ -786,7 +786,7 @@ msgid " Done"
 msgstr " Utfrt"
 
 #: cmdline/apt-get.cc:682
-msgid "You might want to run `apt-get -f install' to correct these."
+msgid "You might want to run 'apt-get -f install' to correct these."
 msgstr "Du vil kanskje kjre apt-get -f install for  rette p dette."
 
 #: cmdline/apt-get.cc:685
@@ -1076,7 +1076,7 @@ msgid "%s set to manually installed.\n"
 msgstr "%s satt til manuell installasjon.\n"
 
 #: cmdline/apt-get.cc:1735
-msgid "You might want to run `apt-get -f install' to correct these:"
+msgid "You might want to run 'apt-get -f install' to correct these:"
 msgstr "Du vil kanskje utfre apt-get -f install for  rette p disse:"
 
 #: cmdline/apt-get.cc:1738
diff --git a/po/ne.po b/po/ne.po
index 8252319..0dcbd43 100644
--- a/po/ne.po
+++ b/po/ne.po
@@ -778,8 +778,8 @@ msgid " Done"
 msgstr "काम भयो"
 
 #: cmdline/apt-get.cc:682
-msgid "You might want to run `apt-get -f install' to correct these."
-msgstr "यी सुधार गर्न तपाईँले `apt-get -f install' चलाउन पर्छ ।"
+msgid "You might want to run 'apt-get -f install' to correct these."
+msgstr "यी सुधार गर्न तपाईँले 'apt-get -f install' चलाउन पर्छ ।"
 
 #: cmdline/apt-get.cc:685
 msgid "Unmet dependencies. Try using -f."
@@ -1064,8 +1064,8 @@ msgid "%s set to manually installed.\n"
 msgstr "तर %s स्थापना हुनुपर्यो"
 
 #: cmdline/apt-get.cc:1735
-msgid "You might want to run `apt-get -f install' to correct these:"
-msgstr "तपाईँ यसलाई सुधार गर्न `apt-get -f install' चलाउन चाहनुहुन्छ:"
+msgid "You might want to run 'apt-get -f install' to correct these:"
+msgstr "तपाईँ यसलाई सुधार गर्न 'apt-get -f install' चलाउन चाहनुहुन्छ:"
 
 #: cmdline/apt-get.cc:1738
 msgid ""
diff --git a/po/nl.po b/po/nl.po
index 6783b42..accf347 100644
--- a/po/nl.po
+++ b/po/nl.po
@@ -784,7 +784,7 @@ msgid " Done"
 msgstr " Klaar"
 
 #: cmdline/apt-get.cc:682
-msgid "You might want to run `apt-get -f install' to correct these."
+msgid "You might want to run 'apt-get -f install' to correct these."
 msgstr "U kunt 'apt-get -f install' uitvoeren om dit op te lossen."
 
 #: cmdline/apt-get.cc:685
@@ -1076,7 +1076,7 @@ msgid "%s set to manually installed.\n"
 msgstr "maar %s zal genstalleerd worden"
 
 #: cmdline/apt-get.cc:1735
-msgid "You might want to run `apt-get -f install' to correct these:"
+msgid "You might want to run 'apt-get -f install' to correct these:"
 msgstr ""
 "U wilt waarschijnlijk 'apt-get -f install' uitvoeren om volgende op te "
 "lossen:"
diff --git a/po/nn.po b/po/nn.po
index f2dac08..0388d0f 100644
--- a/po/nn.po
+++ b/po/nn.po
@@ -781,7 +781,7 @@ msgid " Done"
 msgstr " Ferdig"
 
 #: cmdline/apt-get.cc:682
-msgid "You might want to run `apt-get -f install' to correct these."
+msgid "You might want to run 'apt-get -f install' to correct these."
 msgstr "Du vil kanskje prva  retta p desse ved  kyra apt-get -f install."
 
 #: cmdline/apt-get.cc:685
@@ -1071,7 +1071,7 @@ msgid "%s set to manually installed.\n"
 msgstr "men %s skal installerast"
 
 #: cmdline/apt-get.cc:1735
-msgid "You might want to run `apt-get -f install' to correct these:"
+msgid "You might want to run 'apt-get -f install' to correct these:"
 msgstr "Du vil kanskje prva  retta p desse ved  kyra apt-get -f install."
 
 #: cmdline/apt-get.cc:1738
diff --git a/po/pl.po b/po/pl.po
index 271675d..0c8f0c3 100644
--- a/po/pl.po
+++ b/po/pl.po
@@ -776,8 +776,8 @@ msgid " Done"
 msgstr " Gotowe"
 
 #: cmdline/apt-get.cc:682
-msgid "You might want to run `apt-get -f install' to correct these."
-msgstr "Naley uruchomi `apt-get -f install', aby je naprawi."
+msgid "You might want to run 'apt-get -f install' to correct these."
+msgstr "Naley uruchomi 'apt-get -f install', aby je naprawi."
 
 #: cmdline/apt-get.cc:685
 msgid "Unmet dependencies. Try using -f."
@@ -1064,8 +1064,8 @@ msgid "%s set to manually installed.\n"
 msgstr "ale %s ma zosta zainstalowany"
 
 #: cmdline/apt-get.cc:1735
-msgid "You might want to run `apt-get -f install' to correct these:"
-msgstr "Naley uruchomi `apt-get -f install', aby je naprawi:"
+msgid "You might want to run 'apt-get -f install' to correct these:"
+msgstr "Naley uruchomi 'apt-get -f install', aby je naprawi:"
 
 #: cmdline/apt-get.cc:1738
 msgid ""
diff --git a/po/pt.po b/po/pt.po
index 0074c00..889c19c 100644
--- a/po/pt.po
+++ b/po/pt.po
@@ -779,8 +779,8 @@ msgid " Done"
 msgstr " Feito"
 
 #: cmdline/apt-get.cc:682
-msgid "You might want to run `apt-get -f install' to correct these."
-msgstr "Você pode querer executar `apt-get -f install' para corrigir isso."
+msgid "You might want to run 'apt-get -f install' to correct these."
+msgstr "Você pode querer executar 'apt-get -f install' para corrigir isso."
 
 #: cmdline/apt-get.cc:685
 msgid "Unmet dependencies. Try using -f."
@@ -1069,15 +1069,15 @@ msgid "%s set to manually installed.\n"
 msgstr "mas %s está para ser instalado"
 
 #: cmdline/apt-get.cc:1735
-msgid "You might want to run `apt-get -f install' to correct these:"
-msgstr "Você deve querer executar `apt-get -f install' para corrigir isto:"
+msgid "You might want to run 'apt-get -f install' to correct these:"
+msgstr "Você deve querer executar 'apt-get -f install' para corrigir isto:"
 
 #: cmdline/apt-get.cc:1738
 msgid ""
 "Unmet dependencies. Try 'apt-get -f install' with no packages (or specify a "
 "solution)."
 msgstr ""
-"Dependências não satisfeitas. Tente `apt-get -f install' sem nenhum pacote "
+"Dependências não satisfeitas. Tente 'apt-get -f install' sem nenhum pacote "
 "(ou especifique uma solução)."
 
 #: cmdline/apt-get.cc:1750
@@ -2975,12 +2975,12 @@ msgstr "Conexão encerrada prematuramente"
 #~ msgid ""
 #~ "Some broken packages were found while trying to process build-"
 #~ "dependencies.\n"
-#~ "You might want to run `apt-get -f install' to correct these."
+#~ "You might want to run 'apt-get -f install' to correct these."
 #~ msgstr ""
 #~ "Alguns pacotes quebrados foram encontrados enquanto se tentava "
 #~ "processar \n"
 #~ "as dependências de construção.\n"
-#~ "Você pode querer rodar `apt-get -f install' para corrigí-los."
+#~ "Você pode querer rodar 'apt-get -f install' para corrigí-los."
 
 #~ msgid "Sorry, you don't have enough free space in %s to hold all the .debs."
 #~ msgstr ""
diff --git a/po/pt_BR.po b/po/pt_BR.po
index 17286f2..1135ce6 100644
--- a/po/pt_BR.po
+++ b/po/pt_BR.po
@@ -781,8 +781,8 @@ msgid " Done"
 msgstr " Pronto"
 
 #: cmdline/apt-get.cc:682
-msgid "You might want to run `apt-get -f install' to correct these."
-msgstr "Você pode querer rodar `apt-get -f install' para corrigir isso."
+msgid "You might want to run 'apt-get -f install' to correct these."
+msgstr "Você pode querer rodar 'apt-get -f install' para corrigir isso."
 
 #: cmdline/apt-get.cc:685
 msgid "Unmet dependencies. Try using -f."
@@ -1069,15 +1069,15 @@ msgid "%s set to manually installed.\n"
 msgstr "mas %s está para ser instalado"
 
 #: cmdline/apt-get.cc:1735
-msgid "You might want to run `apt-get -f install' to correct these:"
-msgstr "Você deve querer executar `apt-get -f install' para corrigir isso:"
+msgid "You might want to run 'apt-get -f install' to correct these:"
+msgstr "Você deve querer executar 'apt-get -f install' para corrigir isso:"
 
 #: cmdline/apt-get.cc:1738
 msgid ""
 "Unmet dependencies. Try 'apt-get -f install' with no packages (or specify a "
 "solution)."
 msgstr ""
-"Dependências desencontradas. Tente `apt-get -f install' sem nenhum pacote "
+"Dependências desencontradas. Tente 'apt-get -f install' sem nenhum pacote "
 "(ou especifique uma solução)."
 
 #: cmdline/apt-get.cc:1750
@@ -2953,12 +2953,12 @@ msgstr "Conexão encerrada prematuramente"
 #~ msgid ""
 #~ "Some broken packages were found while trying to process build-"
 #~ "dependencies.\n"
-#~ "You might want to run `apt-get -f install' to correct these."
+#~ "You might want to run 'apt-get -f install' to correct these."
 #~ msgstr ""
 #~ "Alguns pacotes quebrados foram encontrados enquanto se tentava "
 #~ "processar \n"
 #~ "as dependências de construção.\n"
-#~ "Você pode querer rodar `apt-get -f install' para corrigí-los."
+#~ "Você pode querer rodar 'apt-get -f install' para corrigí-los."
 
 #~ msgid "Sorry, you don't have enough free space in %s to hold all the .debs."
 #~ msgstr ""
diff --git a/po/ro.po b/po/ro.po
index 388e7e1..379dde3 100644
--- a/po/ro.po
+++ b/po/ro.po
@@ -786,7 +786,7 @@ msgid " Done"
 msgstr " Terminat"
 
 #: cmdline/apt-get.cc:682
-msgid "You might want to run `apt-get -f install' to correct these."
+msgid "You might want to run 'apt-get -f install' to correct these."
 msgstr "Aţi putea să porniţi 'apt-get -f install' pentru a corecta acestea."
 
 #: cmdline/apt-get.cc:685
@@ -1075,7 +1075,7 @@ msgid "%s set to manually installed.\n"
 msgstr "dar %s este pe cale de a fi instalat"
 
 #: cmdline/apt-get.cc:1735
-msgid "You might want to run `apt-get -f install' to correct these:"
+msgid "You might want to run 'apt-get -f install' to correct these:"
 msgstr "Aţi putea porni 'apt-get -f install' pentru a corecta acestea:"
 
 #: cmdline/apt-get.cc:1738
diff --git a/po/ru.po b/po/ru.po
index cc40384..92a2f11 100644
--- a/po/ru.po
+++ b/po/ru.po
@@ -795,7 +795,7 @@ msgid " Done"
 msgstr " Готово"
 
 #: cmdline/apt-get.cc:682
-msgid "You might want to run `apt-get -f install' to correct these."
+msgid "You might want to run 'apt-get -f install' to correct these."
 msgstr ""
 "Возможно, для исправления этих ошибок вы захотите воспользоваться `apt-get -"
 "f install'."
@@ -1090,7 +1090,7 @@ msgid "%s set to manually installed.\n"
 msgstr "но %s будет установлен"
 
 #: cmdline/apt-get.cc:1735
-msgid "You might want to run `apt-get -f install' to correct these:"
+msgid "You might want to run 'apt-get -f install' to correct these:"
 msgstr ""
 "Возможно, для исправления этих ошибок вы захотите воспользоваться `apt-get -"
 "f install':"
diff --git a/po/sk.po b/po/sk.po
index d921c4f..fcc2a3c 100644
--- a/po/sk.po
+++ b/po/sk.po
@@ -775,8 +775,8 @@ msgid " Done"
 msgstr " Hotovo"
 
 #: cmdline/apt-get.cc:682
-msgid "You might want to run `apt-get -f install' to correct these."
-msgstr "Na opravu môžete spustiť `apt-get -f install'."
+msgid "You might want to run 'apt-get -f install' to correct these."
+msgstr "Na opravu môžete spustiť 'apt-get -f install'."
 
 #: cmdline/apt-get.cc:685
 msgid "Unmet dependencies. Try using -f."
@@ -1062,8 +1062,8 @@ msgid "%s set to manually installed.\n"
 msgstr "ale inštalovať sa bude %s"
 
 #: cmdline/apt-get.cc:1735
-msgid "You might want to run `apt-get -f install' to correct these:"
-msgstr "Na opravu nasledovných môžete spustiť `apt-get -f install':"
+msgid "You might want to run 'apt-get -f install' to correct these:"
+msgstr "Na opravu nasledovných môžete spustiť 'apt-get -f install':"
 
 #: cmdline/apt-get.cc:1738
 msgid ""
diff --git a/po/sl.po b/po/sl.po
index eeb9a26..0e31026 100644
--- a/po/sl.po
+++ b/po/sl.po
@@ -776,7 +776,7 @@ msgid " Done"
 msgstr " Opravljeno"
 
 #: cmdline/apt-get.cc:682
-msgid "You might want to run `apt-get -f install' to correct these."
+msgid "You might want to run 'apt-get -f install' to correct these."
 msgstr "e elite popraviti napake, poskusite pognati 'apt-get -f install'."
 
 #: cmdline/apt-get.cc:685
@@ -1063,7 +1063,7 @@ msgid "%s set to manually installed.\n"
 msgstr "vendar bo paket %s nameen"
 
 #: cmdline/apt-get.cc:1735
-msgid "You might want to run `apt-get -f install' to correct these:"
+msgid "You might want to run 'apt-get -f install' to correct these:"
 msgstr "Poskusite zagnati 'apt-get -f install', e elite popraviti:"
 
 #: cmdline/apt-get.cc:1738
diff --git a/po/sv.po b/po/sv.po
index 41b87c5..29cee34 100644
--- a/po/sv.po
+++ b/po/sv.po
@@ -781,7 +781,7 @@ msgid " Done"
 msgstr " Frdig"
 
 #: cmdline/apt-get.cc:682
-msgid "You might want to run `apt-get -f install' to correct these."
+msgid "You might want to run 'apt-get -f install' to correct these."
 msgstr ""
 "Du kan mjligen rtta till dessa genom att kra \"apt-get -f install\"."
 
@@ -1074,7 +1074,7 @@ msgid "%s set to manually installed.\n"
 msgstr "%s r satt till manuellt installerad.\n"
 
 #: cmdline/apt-get.cc:1735
-msgid "You might want to run `apt-get -f install' to correct these:"
+msgid "You might want to run 'apt-get -f install' to correct these:"
 msgstr ""
 "Du kan mjligen rtta till detta genom att kra \"apt-get -f install\":"
 
@@ -2947,7 +2947,7 @@ msgstr "Anslutningen st
 #~ msgid ""
 #~ "Some broken packages were found while trying to process build-"
 #~ "dependencies.\n"
-#~ "You might want to run `apt-get -f install' to correct these."
+#~ "You might want to run 'apt-get -f install' to correct these."
 #~ msgstr ""
 #~ "Trasiga paket hittades när byggberoenden behandlades. Du kan "
 #~ "möjligen\n"
diff --git a/po/th.po b/po/th.po
index 642da83..8a6c26f 100644
--- a/po/th.po
+++ b/po/th.po
@@ -767,8 +767,8 @@ msgid " Done"
 msgstr " เสร็จแล้ว"
 
 #: cmdline/apt-get.cc:682
-msgid "You might want to run `apt-get -f install' to correct these."
-msgstr "คุณอาจต้องเรียก `apt-get -f install' เพื่อแก้ปัญหาเหล่านี้"
+msgid "You might want to run 'apt-get -f install' to correct these."
+msgstr "คุณอาจต้องเรียก 'apt-get -f install' เพื่อแก้ปัญหาเหล่านี้"
 
 #: cmdline/apt-get.cc:685
 msgid "Unmet dependencies. Try using -f."
@@ -1050,8 +1050,8 @@ msgid "%s set to manually installed.\n"
 msgstr "กำหนด %s ให้เป็นการติดตั้งแบบเลือกเองแล้ว\n"
 
 #: cmdline/apt-get.cc:1735
-msgid "You might want to run `apt-get -f install' to correct these:"
-msgstr "คุณอาจเรียก `apt-get -f install' เพื่อแก้ปัญหานี้ได้:"
+msgid "You might want to run 'apt-get -f install' to correct these:"
+msgstr "คุณอาจเรียก 'apt-get -f install' เพื่อแก้ปัญหานี้ได้:"
 
 #: cmdline/apt-get.cc:1738
 msgid ""
diff --git a/po/tl.po b/po/tl.po
index 3479b4b..e3c97cb 100644
--- a/po/tl.po
+++ b/po/tl.po
@@ -787,8 +787,8 @@ msgid " Done"
 msgstr " Tapos"
 
 #: cmdline/apt-get.cc:682
-msgid "You might want to run `apt-get -f install' to correct these."
-msgstr "Maaari ninyong patakbuhin ang `apt-get -f install' upang ayusin ito."
+msgid "You might want to run 'apt-get -f install' to correct these."
+msgstr "Maaari ninyong patakbuhin ang 'apt-get -f install' upang ayusin ito."
 
 #: cmdline/apt-get.cc:685
 msgid "Unmet dependencies. Try using -f."
@@ -1082,9 +1082,9 @@ msgid "%s set to manually installed.\n"
 msgstr "ngunit ang %s ay iluluklok"
 
 #: cmdline/apt-get.cc:1735
-msgid "You might want to run `apt-get -f install' to correct these:"
+msgid "You might want to run 'apt-get -f install' to correct these:"
 msgstr ""
-"Maaaring patakbuhin niyo ang `apt-get -f install' upang ayusin ang mga ito:"
+"Maaaring patakbuhin niyo ang 'apt-get -f install' upang ayusin ang mga ito:"
 
 #: cmdline/apt-get.cc:1738
 msgid ""
diff --git a/po/uk.po b/po/uk.po
index 6e2fde7..d92f24b 100644
--- a/po/uk.po
+++ b/po/uk.po
@@ -785,7 +785,7 @@ msgid " Done"
 msgstr " Виконано"
 
 #: cmdline/apt-get.cc:682
-msgid "You might want to run `apt-get -f install' to correct these."
+msgid "You might want to run 'apt-get -f install' to correct these."
 msgstr ""
 "Можливо, для виправлення цих помилок ви захочете скористатися 'apt-get -f "
 "install'."
@@ -1081,7 +1081,7 @@ msgid "%s set to manually installed.\n"
 msgstr "але %s буде встановлений"
 
 #: cmdline/apt-get.cc:1735
-msgid "You might want to run `apt-get -f install' to correct these:"
+msgid "You might want to run 'apt-get -f install' to correct these:"
 msgstr ""
 "Можливо, для виправлення цих помилок Ви захочете скористатися 'apt-get -f "
 "install':"
diff --git a/po/vi.po b/po/vi.po
index 25ad685..1fe7f46 100644
--- a/po/vi.po
+++ b/po/vi.po
@@ -806,7 +806,7 @@ msgid " Done"
 msgstr " Đã xong"
 
 #: cmdline/apt-get.cc:682
-msgid "You might want to run `apt-get -f install' to correct these."
+msgid "You might want to run 'apt-get -f install' to correct these."
 msgstr "Có lẽ bạn hãy chay lệnh « apt-get -f install » để sửa hết."
 
 #: cmdline/apt-get.cc:685
@@ -1099,7 +1099,7 @@ msgid "%s set to manually installed.\n"
 msgstr "%s được đặt thành « được cài đặt bằng tay ».\n"
 
 #: cmdline/apt-get.cc:1735
-msgid "You might want to run `apt-get -f install' to correct these:"
+msgid "You might want to run 'apt-get -f install' to correct these:"
 msgstr "Có lẽ bạn hãy chạy lênh « apt-get -f install » để sửa hết:"
 
 #: cmdline/apt-get.cc:1738
diff --git a/po/zh_CN.po b/po/zh_CN.po
index 3e6b84e..9a7570a 100644
--- a/po/zh_CN.po
+++ b/po/zh_CN.po
@@ -773,7 +773,7 @@ msgid " Done"
 msgstr " 完成"
 
 #: cmdline/apt-get.cc:682
-msgid "You might want to run `apt-get -f install' to correct these."
+msgid "You might want to run 'apt-get -f install' to correct these."
 msgstr "您也许需要运行“apt-get -f install”来纠正上面的错误。"
 
 #: cmdline/apt-get.cc:685
@@ -1056,7 +1056,7 @@ msgid "%s set to manually installed.\n"
 msgstr "%s 被设置为手动安装。\n"
 
 #: cmdline/apt-get.cc:1735
-msgid "You might want to run `apt-get -f install' to correct these:"
+msgid "You might want to run 'apt-get -f install' to correct these:"
 msgstr "您可能需要运行“apt-get -f install”来纠正下列错误:"
 
 #: cmdline/apt-get.cc:1738
diff --git a/po/zh_TW.po b/po/zh_TW.po
index 4bd79ff..1c3cb12 100644
--- a/po/zh_TW.po
+++ b/po/zh_TW.po
@@ -774,7 +774,7 @@ msgid " Done"
 msgstr " 完成"
 
 #: cmdline/apt-get.cc:682
-msgid "You might want to run `apt-get -f install' to correct these."
+msgid "You might want to run 'apt-get -f install' to correct these."
 msgstr "用『apt-get -f install』指令或許能修正這些問題。"
 
 #: cmdline/apt-get.cc:685
@@ -1058,7 +1058,7 @@ msgid "%s set to manually installed.\n"
 msgstr "但是『%s』卻將被安裝。"
 
 #: cmdline/apt-get.cc:1735
-msgid "You might want to run `apt-get -f install' to correct these:"
+msgid "You might want to run 'apt-get -f install' to correct these:"
 msgstr "用『apt-get -f install』指令或許能修正這些問題。"
 
 #: cmdline/apt-get.cc:1738
-- 
1.7.0


--- End Message ---
--- Begin Message ---
Source: apt
Source-Version: 0.8.0

We believe that the bug you reported is fixed in the latest version of
apt, which is due to be installed in the Debian FTP archive:

apt-doc_0.8.0_all.deb
  to main/a/apt/apt-doc_0.8.0_all.deb
apt-transport-https_0.8.0_i386.deb
  to main/a/apt/apt-transport-https_0.8.0_i386.deb
apt-utils_0.8.0_i386.deb
  to main/a/apt/apt-utils_0.8.0_i386.deb
apt_0.8.0.dsc
  to main/a/apt/apt_0.8.0.dsc
apt_0.8.0.tar.gz
  to main/a/apt/apt_0.8.0.tar.gz
apt_0.8.0_i386.deb
  to main/a/apt/apt_0.8.0_i386.deb
libapt-pkg-dev_0.8.0_i386.deb
  to main/a/apt/libapt-pkg-dev_0.8.0_i386.deb
libapt-pkg-doc_0.8.0_all.deb
  to main/a/apt/libapt-pkg-doc_0.8.0_all.deb



A summary of the changes between this version and the previous one is
attached.

Thank you for reporting the bug, which will now be closed.  If you
have further comments please address them to 577168@bugs.debian.org,
and the maintainer will reopen the bug report if appropriate.

Debian distribution maintenance software
pp.
Michael Vogt <mvo@debian.org> (supplier of updated apt package)

(This message was generated automatically at their request; if you
believe that there is a problem with it please contact the archive
administrators by mailing ftpmaster@debian.org)


-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA1

Format: 1.8
Date: Tue, 24 Aug 2010 16:32:19 +0200
Source: apt
Binary: apt apt-doc libapt-pkg-dev libapt-pkg-doc apt-utils apt-transport-https
Architecture: source all i386
Version: 0.8.0
Distribution: unstable
Urgency: low
Maintainer: APT Development Team <deity@lists.debian.org>
Changed-By: Michael Vogt <mvo@debian.org>
Description: 
 apt        - Advanced front-end for dpkg
 apt-doc    - Documentation for APT
 apt-transport-https - APT https transport
 apt-utils  - APT utility programs
 libapt-pkg-dev - Development files for APT's libapt-pkg and libapt-inst
 libapt-pkg-doc - Documentation for APT development
Closes: 115520 150831 188407 195018 196021 236270 314334 316390 319006 319710 329814 351056 352667 383257 444222 448216 463260 486222 490347 499897 500560 512046 512318 523920 525783 531492 536029 538917 545699 547724 550564 558103 564137 566166 567669 568294 569488 570962 571037 571541 572259 572364 572615 573293 573592 573946 574558 574944 574962 576420 576752 577116 577117 577168 577226 577759 577804 578135 578267 578385 578657 578959 581159 581742 583517 586904 587725 588610 589642 590041 590438 590513 592366 592628 593430
Changes: 
 apt (0.8.0) unstable; urgency=low
 .
   [ Michael Vogt ]
   * merge of the debian-expermental-ma branch
   * refresh po/pot files in doc/ and po/
 .
   [ Programs translations ]
   * Swedish (Daniel Nylander). Closes: #592366
   * French (Christian Perrier)
 .
   [ Manpages translations ]
   * French (Christian Perrier)
 .
 apt (0.8.0~pre2) experimental; urgency=low
 .
   [ David Kalnischkies ]
   * apt-pkg/contrib/strutl.cc:
     - fix error checking for vsnprintf in its safe variant
   * methods/bzip2.cc:
     - fix error checking for read in case of failing bzip2/lzma/whatever
   * debian/apt.cron.daily:
     - create backups for our extended_states file (Closes: #593430)
   * apt-pkg/init.cc:
     - set the default values for dir::etc::trusted options correctly
   * ftparchive/writer.cc:
     - init valid-until correctly to prevent garbage entering Release file
   * apt-pkg/deb/debsystem.cc:
     - set dir::state::status based at least on dir
   * apt-pkg/deb/dpkgpm.cc:
     - use the InstVer instead of the CurrentVer for the autobit transfer
   * methods/http.cc:
     - some http servers violate HTTP1.1 by not issuing a Reason-Phrase
       (or at least a space after the code) especially for 200, but lets
       be nice and ignore it as we don't need the reason in general
   * apt-pkg/acquire-item.cc:
     - don't use ReadOnlyGzip mode for PDiffs as this mode doesn't work
       in combination with the AddFd methods of our hashclasses
 .
 apt (0.8.0~pre1) experimental; urgency=low
 .
   [ Programs translations ]
   * Swedish translation update. Closes: #592366
 .
   [ Michael Vogt ]
   * merge of the debian-expermental-ma branch
   * refresh po/pot files in doc/ and po/
   * apt-pkg/pkgcache.cc:
     - re-evaluate the architectures cache when the cache is (re)opened
 .
   [ Colin Watson ]
   * apt-pkg/cdrom.cc:
     - fix off-by-one error in DropBinaryArch
 .
   [ Julian Andres Klode ]
   * apt-pkg/contrib/fileutl.cc:
     - Add WriteAtomic mode.
     - Revert WriteEmpty to old behavior (LP: #613211)
   * apt-pkg, methods:
     - Convert users of WriteEmpty to WriteAtomic.
   * apt-pkg/depcache.cc:
     - Only try upgrade for Breaks if there is a newer version, otherwise
       handle it as Conflicts (by removing it) (helps for #591882).
   * debian/control:
     - Add dependency on gnupg to apt, apt-key uses it.
 .
   [ David Kalnischkies ]
   * apt-pkg/algorithms.cc:
     - let the problem resolver install packages to fix or-groups
       as a needed remove nuked another or-member (helps for #591882)
     - change the debug outputs to display also arch of the
       package and version dependencies information
   * cmdline/apt-get.cc:
     - let APT::Get::Arch-Only in build-dep default to false again
       (Closes: #592628) Thanks Mohamed Amine IL Idrissi for report!
     - purge packages in 'rc' state, thanks Rogier! (Closes: #150831)
   * apt-pkg/pkgcache.cc:
     - fix LongDesc handling in LANG=C environment
 .
 apt (0.7.26~exp12) experimental; urgency=low
 .
   [ Michael Vogt ]
   * debian/control:
     - add dependency on zlib-dev for libapt-pkg-dev
 .
   [ David Kalnischkies ]
   * apt-pkg/cacheset.cc:
     - [ABI BREAK] add an ErrorType option to CacheSetHelper
   * cmdline/apt-cache.cc:
     - use Notice instead of Error in the CacheSetHelper messages
       for compat reasons. Otherwise tools like sbuild blow up
     - return success in show if a virtual package was given
   * debian/control:
     - remove libcurl3-gnutls-dev alternative as the package is gone
     - increase needed version of libcurl4-gnutls-dev to >= 7.19.0
       as we use CURLOPT_{ISSUERCERT,CRLFILE} (Closes: #589642)
 .
 apt (0.7.26~exp11) experimental; urgency=low
 .
   [ Julian Andres Klode ]
   * apt-pkg/deb/dpkgpm.cc:
     - Write architecture information to history file.
     - Add to history whether a change was automatic or not.
   * apt-pkg/contrib/fileutl.cc:
     - Add FileFd::OpenDescriptor() (needed for python-apt's #383617).
   * cmdline/apt-get.cc:
     - Support large filesystems by using statvfs64() instead of statvfs()
       and statfs64() instead of statfs() (Closes: #590513).
   * apt-pkg/cdrom.cc:
     - Use link() instead of rename() for creating the CD database backup;
       otherwise there would be a short time without any database.
 .
   [ David Kalnischkies ]
   * apt-pkg/depcache.cc:
     - handle "circular" conflicts for "all" packages correctly
   * cmdline/apt-cache.cc:
     - be able to omit dependency types in (r)depends (Closes: #319006)
     - show in (r)depends the canidate per default instead of newest
     - share the (r)depends code instead of codecopy
   * apt-pkg/cacheset.cc:
     - move them back to the library as they look stable now
     - add a 'newest' pseudo target release as in pkg/newest
   * apt-pkg/pkgcache.cc:
     - prefer non-virtual packages in FindPreferredPkg (Closes: #590041)
   * test/integration/*:
     - add with bug#590041 testcase a small test "framework"
   * apt-pkg/orderlist.cc:
     - try to install another or-group member in DepRemove before
       breaking the or group (Closes: #590438)
     - configure also the replacement before remove by adding Immediate flag
 .
   [ Michael Vogt ]
   * apt-pkg/contrib/error.{cc,h}
     - docstring cleanup
     - add inline DumpError() to avoid subtle API break
 .
 apt (0.7.26~exp10) experimental; urgency=low
 .
   [ David Kalnischkies ]
   * apt-pkg/contrib/error.{cc,h}:
     - remove constness of va_list parameter to fix build on amd64 and co
       Thanks Eric Valette! (Closes: #588610)
   * apt-pkg/deb/debmetaindex.cc:
     - do not query each architecture for flat file archives
     - fix typo preventing display of architecture in Info()
   * methods/bzip2.cc:
     - add a copycat of the old gzip.cc as we need it for bzip2 and lzma
 .
   [ Martin Pitt ]
   * debian/rules:
     - Make DEB_BUILD_OPTIONS=noopt actually work by passing the right
       CXXFLAGS.
   * apt-pkg/contrib/fileutl.{h,cc}:
     - Add support for reading of gzipped files with the new "ReadOnlyGzip"
       OpenMode. (Closes: #188407)
     - Link against zlib (in apt-pkg/makefile) and add zlib build dependency.
     - [ABI BREAK] This adds a new private member to FileFd, but its
       initialization is in the public header file.
   * configure.in:
     - Check for zlib library and headers.
   * apt-pkg/acquire-item.cc, apt-pkg/deb/debindexfile.cc,
     apt-pkg/deb/debrecords.cc, apt-pkg/deb/debsrcrecords.h,
     cmdline/apt-cache.cc:
     - Open Packages, Sources, and Translations indexes in "ReadOnlyGzip" mode.
   * apt-pkg/deb/debindexfile.cc:
     - If we do not find uncompressed package/source/translation indexes, look
       for gzip compressed ones.
   * apt-pkg/acquire-item.cc:
     - If the Acquire::GzipIndexes option is true and we download a gzipped
       index file, keep it as it is (and rename to .gz) instead of
       uncompressing it.
   * doc/apt.conf.5.xml:
     - Document the new Acquire::GzipIndexes option.
   * doc/po/apt-doc.pot, doc/po/de.po:
     - German translation of new Acquire::GzipIndexes option.
   * Add test/test-indexes.sh:
     - Test behaviour of index retrieval and usage, in particular with
       uncompressed and gzip compressed indexes.
   * methods/gzip.cc: With FileFd now being able to read gzipped files, there
     is no need for the gzip method any more to spawn an external gzip process.
     Rewrite it to use FileFd directly, which makes the code a lot simpler, and
     also using less memory and overhead.
 .
 apt (0.7.26~exp9) experimental; urgency=low
 .
   [ David Kalnischkies ]
   * doc/apt.conf.5.xml:
     - add and document APT::Cache-{Start,Grow,Limit} options for mmap control
   * apt-pkg/contrib/fileutl.cc:
     - do not fail von double close()
 .
 apt (0.7.26~exp8) experimental; urgency=low
 .
   [ David Kalnischkies ]
   * cmdline/cacheset.cc:
     - doesn't include it in the library for now as it is too volatile
     - get the candidate either from an already built depcache
       or use the policy which is a bit faster than depcache generation
     - get packages by task^ with FromTask()
     - only print errors if all tries to get a package by string failed
     - factor out code to get a single package FromName()
     - check in Grouped* first without modifier interpretation
   * cmdline/apt-get.cc:
     - use the cachsets in the install commands
     - make the specify order of packages irrelevant (Closes: #196021)
   * apt-pkg/orderlist.cc:
     - untouched packages are never missing
   * apt-pkg/packagemanager.cc:
     - packages that are not touched doesn't need to be unpacked
   * debian/control:
     - remove intltool's dependency as it is an ubuntu artefact
   * apt-pkg/depcache.cc:
     - SetCandidateVer for all pseudo packages
     - SetReInstall for the "all" package of a pseudo package
     - use the new MatchAgainstConfig for the DefaultRootSetFunc
     - always mark the all package if a pseudo package is marked for install
   * apt-pkg/contrib/error.{cc,h}:
     - complete rewrite but use the same API
     - add NOTICE and DEBUG as new types of a message
     - add a simple stack handling to be able to delay error handling
   * apt-pkg/aptconfiguration.cc:
     - show a deprecation notice for APT::Acquire::Translation
   * apt-pkg/contrib/configuration.{cc,h}:
     - add a wrapper to match strings against configurable regex patterns
   * apt-pkg/contrib/fileutl.cc:
     - show notice about ignored file instead of being always silent
     - add a Dir::Ignore-Files-Silently list option to control the notice
   * apt-pkg/policy.h:
     - add another round of const& madness as the previous round accidentally
       NOT overrides the virtual GetCandidateVer() method (Closes: #587725)
   * apt-pkg/pkgcachegen.{cc,h}:
     - make the used MMap moveable (and therefore dynamic resizeable) by
       applying (some) mad pointer magic (Closes: #195018)
 .
   [ Michael Vogt ]
   * apt-pkg/deb/dpkgpm.cc:
     - make the apt/term.log output unbuffered (thanks to Matt Zimmerman)
 .
   [ Julian Andres Klode ]
   * methods/ftp.h:
     - Handle different logins on the same server (Closes: #586904).
   * apt-pkg/deb/deblistparser.cc:
     - Handle architecture wildcards (Closes: #547724).
   * apt-pkg/versionmatch.cc:
     - Support matching pins by regular expressions or glob() like patterns,
       regular expressions have to be put between to slashes; for example,
       /.*/.
   * apt-pkg/contrib/fileutl.cc:
     - Make FileFd replace files atomically in WriteTemp mode (for cache, etc).
   * debian/control:
     - Set Standards-Version to 3.9.0
 .
 apt (0.7.26~exp7) experimental; urgency=low
 .
   * apt-pkg/cachefile.h:
     - make pkgPolicy public again, libapt-pkg-perl (and probably
       others) get unhappy without that
 .
 apt (0.7.26~exp6) experimental; urgency=low
 .
   [ Michael Vogt ]
   * merge the remaining Ubuntu change:
     - on gpg verification failure warn and restore the last known
       good state
     - on failure display the IP of the server (useful for servers
       that use round robin DNS)
     - support Original-Maintainer in RewritePackageOrder
     - enable cdrom autodetection via libudev by default
     - show message about Vcs in use when apt-get source is run for
       packages maintained in a Vcs
     - better support transitional packages with mark auto-installed.
       when the transitional package is in "oldlibs" the new package
       is not marked auto installed (same is true for section
       metapackages)
     - provide new "deb mirror://archive.foo/mirrors.list sid main"
       method expects a list of mirrors (generated on the server e.g.
       via geoip) and will use that, including cycle on failure
     - write apport crash file on package failure (disabled by default
       on debian until apport is available)
     - support mirror failure reporting (disabled by default on debian)
 .
   [ David Kalnischkies ]
   * apt-pkg/deb/dpkgpm.cc:
     - write Disappeared also to the history.log
     - forward manual-installed bit on package disappearance
   * apt-pkg/deb/debsystem.cc:
     - add better config item for extended_states file
   * apt-pkg/pkgcache.h:
     - switch {,Install-}Size to unsigned long long
   * apt-pkg/depcache.cc:
     - do the autoremove mark process also for required packages to handle
       these illegally depending on lower priority packages (Closes: #583517)
     - try harder to find the other pseudo versions for autoremove multiarch
     - correct "Dangerous iterator usage" pointed out by cppcheck
     - deal with long long, not with int to remove 2GB Limit (LP: #250909)
     - deprecate AddSize with Multiplier as it is unused and switch to
       boolean instead to handle the sizes more gracefully.
     - switch i{Download,Usr}Size from double to (un)signed long long
   * apt-pkg/aptconfiguration.cc:
     - remove duplicate architectures in getArchitectures()
   * apt-pkg/indexrecords.{cc,h}:
     - backport forgotten Valid-Until patch from the obsolete experimental
       branch to prevent replay attacks better, thanks to Thomas Viehmann
       for the initial patch! (Closes: #499897)
     - add a constant Exists check for MetaKeys
   * apt-pkg/acquire-item.cc:
     - do not try PDiff if it is not listed in the Meta file
     - sent Last-Modified header also for Translation files
   * apt-pkg/cacheiterator.h:
     - let pkgCache::Iterator inherent std::iterator
   * ftparchive/writer.h:
     - add a virtual destructor to FTWScanner class (for cppcheck)
   * apt-pkg/cacheset.{cc,h}:
     - add simple wrapper around std::set for cache structures
     - move regex magic from apt-get to new FromRegEx method
     - move cmdline parsing from apt-cache to new FromCommandLine method
     - support special release-modifier 'installed' and 'candidate'
   * apt-pkg/contrib/cmdline.cc:
     - fix segfault in SaveInConfig caused by writing over char[] sizes
   * apt-pkg/pkgcache.cc:
     - get the best matching arch package from a group with FindPreferredPkg
   * cmdline/apt-cache.cc:
     - make the search multiarch compatible by using GrpIterator instead
     - use pkgCacheFile and the new CacheSets all over the place
     - add --target-release option (Closes: #115520)
     - accept pkg/release and pkg=version in show and co. (Closes: #236270)
     - accept package versions in the unmet command
   * cmdline/apt-get.cc:
     - use unsigned long long instead of double to store values it gets
   * apt-pkg/cachefile.{cc,h}:
     - split Open() into submethods to be able to build only parts
     - make the OpProgress optional in the Cache buildprocess
     - store also the SourceList we use internally for export
   * doc/apt.conf.5.xml:
     - document the new Valid-Until related options
   * apt-pkg/contrib/strutl.cc:
     - split StrToTime() into HTTP1.1 and FTP date parser methods and
       use strptime() instead of some self-made scanf mangling
     - use the portable timegm shown in his manpage instead of a strange
       looking code copycat from wget
   * ftparchive/writer.cc:
     - add ValidTime option to generate a Valid-Until header in Release file
   * apt-pkg/policy.cc:
     - get the candidate right for a not-installed pseudo package if
       his non-pseudo friend is installed
   * apt-pkg/indexcopy.cc:
     - move the gpg codecopy to a new method and use it also in methods/gpgv.cc
 .
 apt (0.7.26~exp5) experimental; urgency=low
 .
   [ David Kalnischkies ]
   * cmdline/apt-get.cc:
     - rerun dpkg-source in source if --fix-broken is given (Closes: #576752)
     - don't suggest held packages as they are installed (Closes: #578135)
     - handle multiple --{tar,diff,dsc}-only options correctly
     - show at the end of the install process a list of disappeared packages
   * cmdline/apt-cache.cc:
     - use GroupCount for package names in stats and add a package struct line
   * methods/rred.cc:
     - use the patchfile modification time instead of the one from the
       "old" file - thanks to Philipp Weis for noticing! (Closes: #571541)
   * debian/rules:
     - remove targets referring to CVS or arch as they are useless
     - use $(CURDIR) instead of $(pwd)
     - use dpkg-buildflags if available for CXXFLAGS
   * README.arch:
     - remove the file completely as it has no use nowadays
   * apt-pkg/depcache.cc:
     - be doublesure that the killer query is empty before starting reinstall
   * methods/gpgv.cc:
     - remove the keyrings count limit by using vector magic
   * contrib/mmap.cc:
     - clarify "MMap reached size limit" error message, thanks Ivan Masár!
   * doc/apt.ent
     - add entities for the current oldstable/stable/testing codenames
   * doc/sources.list.5.xml:
     - use stable-codename instead of stable in the examples (Closes: #531492)
   * doc/apt_preferences.5.xml:
     - adapt some examples here to use current codenames as well
     - add "NotAutomatic: yes" handling, thanks Osamu Aoki (Closes: #490347)
   * debian/libapt-pkg-doc.doc-base.cache:
     - remove yet another reference to the removed cache.sgml
   * doc/apt-get.8.xml:
     - do not say explicit target_release_{name,version,codename}, it should
       be clear by itself and 'man' can break lines again (Closes: #566166)
     - remove the gnome-apt reference as it is removed from unstable
   * apt-pkg/deb/dpkgpm.cc:
     - add 'disappear' to the known processing states, thanks Jonathan Nieder
   * apt-pkg/packagemanager.h:
     - export info about disappeared packages with GetDisappearedPackages()
 .
   [ Michael Vogt ]
   * methods/http.{cc,h}:
     - code cleanup, use enums instead of magic ints
 .
   [ Jari Aalto ]
   * debian/rules:
     - spell out some less known options to reduce manpage consultation-rate
     - Use POSIX command substitution: $(<command sequence>)
     - Remove EOL whitespace (Closes: #577804)
 .
   [ Julian Andres Klode ]
   * apt-pkg/acquire-item.cc:
     - Fix pkgAcqFile::Custom600Headers() to always return something.
 .
 .
   [ Christian Perrier ]
   * Slovak translation update. Closes: #581159
   * Italian translation update. Closes: #581742
   * Swedish translation update. Closes: #592366
 .
 apt (0.7.26~exp4) experimental; urgency=low
 .
   [ David Kalnischkies ]
   * apt-pkg/depcache.cc:
     - rewrite the pseudo package reinstaller to be more intelligent
       in his package choices
   * apt-pkg/packagemanager.cc:
     - don't try to "unpack" pseudo packages twice
   * apt-pkg/contrib/fileutl.cc:
     - add a parent-guarded "mkdir -p" as CreateDirectory()
   * apt-pkg/acquire.{cc,h}:
     - add a delayed constructor with Setup() for success reporting
     - check for and create directories in Setup if needed instead of
       error out unfriendly in the Constructor (Closes: #523920, #525783)
     - optional handle a lock file in Setup()
   * apt-pkg/acquire-item.cc:
     - Acquire::ForceHash to force method for expected hash
   * cmdline/apt-get.cc:
     - remove the lock file handling and let Acquire take care of it instead
     - display MD5Sum in --print-uris if not forced to use another method
       instead of displaying the strongest available (Closes: #576420)
     - regex for package names executed on Grp- not PkgIterator
     - show non-candidates as fallback for virtual packages (Closes: #578385)
     - set also "all" to this version for pseudo packages in TryToChangeVer
   * apt-pkg/deb/dpkgpm.cc:
     - remove Chroot-Directory from files passed to install commands.
       Thanks to Kel Modderman for report & patch! (Closes: #577226)
   * ftparchive/writer.cc:
     - remove 999 chars Files and Checksums rewrite limit (Closes: #577759)
   * cmdline/apt-cache.cc:
     - align Installed and Candidate Version in policy so they can be compared
       easier, thanks Ralf Gesellensetter for the pointer! (Closes: #578657)
   * doc/apt.ent:
     - Add a note about APT_CONFIG in the -c description (Closes: #578267)
   * doc/po/de.po:
     - correct typos in german apt_preferences manpage, thanks Chris Leick!
   * apt-pkg/sourcelist.cc:
     - be less strict and accept [option=value] as well
   * apt-pkg/contrib/configuration.cc:
     - error out if #clear directive has no argument
   * doc/files.sgml:
     - sync documentation with status quo, regarding files/directories in
       use, extended_states and uri schemes.
   * doc/cache.sgml:
     - drop the file in favor of inplace documentation with doxygen
   * apt-pkg/pkgcache.h:
     - enhance the Groups ABI by providing a ID as the other structs does
     - check also the size of the Group struct then checking for the others
 .
   [ Jari Aalto ]
   * cmdline/apt-get.cc:
     - replace backticks with single quotes around fix-broken command
       in the broken packages message. (Closes: #577168)
   * dselect/install:
     - modernize if-statements not to use 'x' (Closes: #577117)
     - replace backticks with POSIX $() (Closes: #577116)
 .
   [ Michael Vogt ]
   * [ Abi break ] apt-pkg/acquire-item.{cc,h}:
     - add "IsIndexFile" to constructor of pkgAcqFile so that it sends
       the right cache control headers
   * cmdline/apt-get.cc:
     - fix crash when pkg.VersionList() is empty
   * apt-pkg/depcache.cc:
     - fix incorrect std::cout usage for debug output
   * test/libapt/getlanguages_test.cc:
     - Add test for Esperanto that has nocounty associated with them
       (LP: #560956)
   * apt-pkg/deb/debrecords.cc:
     - fix max tag buffer size (LP: #545336, closes: #578959)
   * debian/rules:
     - install html doxygen in libapt-pkg-doc
   * debian/control:
     - build-depend on doxygen
 .
   [ Julian Andres Klode ]
   * apt-pkg/contrib/weakptr.h:
     - add a class WeakPointable which allows one to register weak pointers to
       an object which will be set to NULL when the object is deallocated.
   * [ABI break] apt-pkg/acquire{-worker,-item,}.h:
     - subclass pkgAcquire::{Worker,Item,ItemDesc} from WeakPointable.
   * apt-pkg/pkgcache.cc:
     - Merge fix from David to correct handling in single-arch environments.
   * cmdline/apt-cache.cc:
     - Add a showauto command to apt-cache.
   * cmdline/apt-get.cc:
     - Add apt-get markauto and unmarkauto commands.
 .
 apt (0.7.26~exp3) experimental; urgency=low
 .
   [ Christian Perrier ]
   * German translation update. Closes: #571037
   * Spanish manpages translation update. Closes: #573293
   * Dutch translation update. Closes: #573946
   * Polish manpages translation update. Closes: #574558
   * Add "manpages-pl (<< 20060617-3~)" to avoid file conflicts with
     that package that was providing some manpages for APT utilities.
 .
   [ David Kalnischkies ]
   * [BREAK] merge MultiArch-ABI. We don't support MultiArch,
     but we support the usage of the new ABI so libapt users
     can start to prepare for MultiArch (Closes: #536029)
   * Ignore :qualifiers after package name in build dependencies
     in the library by default, but try to honour them in apt-get
     as we have some sort of MultiArch support ready (Closes: #558103)
   * add translation of the manpages to PT (portuguese)
     Thanks to Américo Monteiro!
   * Switch to dpkg-source 3.0 (native) format
   * apt-pkg/depcache.cc:
     - remove Auto-Installed information from extended_states
       together with the package itself (Closes: #572364)
   * cmdline/apt-mark:
     - don't crash if no arguments are given (Closes: #570962)
   * debian/control:
     - remove some years old and obsolete Replaces
     - add automake/conf build-depends/conflicts as recommend by
       the autotools-dev README (Closes: #572615)
   * apt-pkg/contrib/mmap.{h,cc}:
     - add char[] fallback for filesystems without shared writable
       mmap() like JFFS2. Thanks to Marius Vollmer for writing
       and to Loïc Minier for pointing to the patch! (Closes: #314334)
   * doc/apt_preferences.5.xml:
     - fix two typos and be more verbose in the novice warning.
       Thanks to Osamu Aoki for pointing it out! (Closes: #567669)
     - fix a=sid vs. n=sid typo, thanks Ansgar Burchardt!
     - origin can be used to match a hostname (Closes: #352667)
     - remove wrong pin-priority is optional remark (Closes: #574944)
   * apt-pkg/deb/dpkgpm.cc:
     - fix error message construction in OpenLog()
     - if available store the Commandline in the history
   * cmdline/apt-get.cc:
     - add a --only-upgrade flag to install command (Closes: #572259)
     - fix memory leaks in error conditions in DoSource()
     - try version match in FindSrc first exact than fuzzy (LP: #551178)
   * apt-pkg/contrib/cmndline.cc:
     - save Commandline in Commandline::AsString for logging
   * apt-pkg/deb/debversion.cc:
     - consider absent of debian revision equivalent to 0 (Closes: #573592)
   * doc/makefile, doc/*:
     - generate subdirectories for building the manpages in on the fly
       depending on the po files we have.
   * apt-pkg/pkgcachegen.cc:
     - merge versions correctly even if multiple different versions
       with the same version number are available.
       Thanks to Magnus Holmgren for the patch! (Closes: #351056)
   * ftparchive/writer.cc:
     - write LongDescriptions if they shouldn't be included in Packages
       file into i18n/Translation-en by default.
   * doc/po/de.po:
     - correct a few typos in the german manpage translation.
       Thanks to Chris Leick and Georg Koppen! (Closes: #574962)
   * apt-pkg/contrib/strutl.cc:
     - convert all toupper calls to tolower_ascii for a little speedup
 .
   [ Jean-Baptiste Lallement ]
   * apt-pkg/contrib/strutl.cc:
     - always escape '%' (LP: #130289) (Closes: #500560)
     - unescape '%' sequence only if followed by 2 hex digit
     - username/password are urlencoded in proxy string (RFC 3986)
 .
   [ Julian Andres Klode ]
   * cmdline/apt-cache.cc:
     - Change behavior of showsrc to match the one of show (Closes: #512046).
   * cmdline/apt-key:
     - Honor Apt::GPGV::TrustedKeyring (Closes: #316390)
   * cmdline/apt-mark:
     - Use the new python-apt API (and conflict with python-apt << 0.7.93.2).
   * apt-inst/contrib/arfile.h:
     - Add public ARArchive::Members() which returns the list of members.
   * apt-pkg/policy.cc:
     - Always return a candidate if there is at least one version pinned > 0
       (Closes: #512318)
   * ftparchive/apt-ftparchive.cc:
     - Read default configuration (Closes: #383257)
   * debian/rules:
     - Fix the libraries name to be e.g. libapt-pkg4.9 instead of
       libapt-pkg-4.9.
 .
   [ Michael Vogt ]
   * apt-pkg/deb/dpkgpm.cc:
     - fix backgrounding when dpkg runs (closes: #486222)
   * cmdline/apt-mark:
     - show error on incorrect aguments (LP: #517917), thanks to
       Torsten Spindler
   * cmdline/apt-get.cc:
     - if apt-get source foo=version or foo/distro can not be found,
       error out (LP: #502641)
   * apt-pkg/packagemanager.cc:
     - better debug output
   * doc/examples/configure-index:
     - add missing Debug::pkgPackageManager option
 .
 apt (0.7.26~exp2) experimental; urgency=low
 .
   * fix crash when LANGUAGE is not set
 .
 apt (0.7.26~exp1) experimental; urgency=low
 .
   [ David Kalnischkies ]
   * [BREAK] add possibility to download and use multiply
     Translation files, configurable with Acquire::Translation
     (Closes: #444222, #448216, #550564)
   * Ignore :qualifiers after package name in build dependencies
     for now as long we don't understand them (Closes: #558103)
   * apt-pkg/contrib/mmap.{cc,h}:
     - extend it to have a growable flag - unused now but maybe...
   * apt-pkg/pkgcache.h:
     - use long instead of short for {Ver,Desc}File size,
       patch from Víctor Manuel Jáquez Leal, thanks! (Closes: #538917)
   * apt-pkg/acquire-item.cc:
     - allow also to skip the last patch if target is reached,
       thanks Bernhard R. Link! (Closes: #545699)
   * ftparchive/writer.{cc,h}:
     - add --arch option for packages and contents commands
     - if an arch is given accept only *_all.deb and *_arch.deb instead
       of *.deb. Thanks Stephan Bosch for the patch! (Closes: #319710)
     - add APT::FTPArchive::AlwaysStat to disable the too aggressive
       caching if versions are build multiply times (not recommend)
       Patch by Christoph Goehre, thanks! (Closes: #463260)
   * apt-pkg/deb/dpkgpm.cc:
     - stdin redirected to /dev/null takes all CPU (Closes: #569488)
       Thanks to Aurelien Jarno for providing (again) a patch!
   * buildlib/apti18n.h.in, po/makefile:
     - add ngettext support with P_()
   * aptconfiguration.cc:
     - include all existing Translation files in the Cache (Closes: 564137)
   * debian/control:
     - update with no changes to debian policy 3.8.4
   * doc/apt_preferences.5.xml:
     - explicitly warn against careless use (Closes: #567669)
   * debian/rules:
     - remove creation of empty dir /usr/share/apt
   * doc/apt-cdrom.8.xml:
     - fix typo spotted by lintian: proc(c)eed
 .
   [ Ivan Masár ]
   * Slovak translation update. Closes: #568294
 .
   [ Michael Vogt ]
   * [BREAK] merged lp:~mvo/apt/history
     - this writes a /var/log/apt/history tagfile that contains details
       from the transaction (complements term.log)
   * methods/http.cc:
     - add cache-control headers even if no cache is given to allow
       adding options for intercepting proxies
     - add Acquire::http::ProxyAutoDetect configuration that
       can be used to call a external helper to figure out the
       proxy configuration and return it to apt via stdout
       (this is a step towards WPAD and zeroconf/avahi support)
   * abicheck/
     - add new abitest tester using the ABI Compliance Checker from
       http://ispras.linuxfoundation.org/index.php/ABI_compliance_checker
 .
   [ Robert Collins ]
   * Change the package index Info methods to allow apt-cache policy to be
     useful when using several different archives on the same host.
     (Closes: #329814, LP: #22354)
Checksums-Sha1: 
 a44ec680fd2b37b7a042ef2f2b8d05343ddf1929 1282 apt_0.8.0.dsc
 0fa9075640943ddec0f97a8a268fea7aa2378467 3052419 apt_0.8.0.tar.gz
 ac453c6596098a2af4f6ee617f970c438213086c 201688 apt-doc_0.8.0_all.deb
 95df5bc8d4093df27fb13fc01ad52c048c3dd6a1 687228 libapt-pkg-doc_0.8.0_all.deb
 350a8a7a43fe182d54f3b7d73b8032f85b5d7ddf 1965454 apt_0.8.0_i386.deb
 52cc97588f405d9c9588b1ff2486df4d49856139 147434 libapt-pkg-dev_0.8.0_i386.deb
 973eb3e2c9025f81eed70bee3f41db6ecf638dbf 256382 apt-utils_0.8.0_i386.deb
 c55efb7fb68500542f4b8b314af8020103f10102 79486 apt-transport-https_0.8.0_i386.deb
Checksums-Sha256: 
 07c8c13c022820c04c4f7c5f1a8e46bd60cd766c7245af41189381e0a7b454be 1282 apt_0.8.0.dsc
 a7f2c4906f0fa301b2202d3e4af7e1651e795b3d1977850759c1282c54e4cbac 3052419 apt_0.8.0.tar.gz
 2f434a9b6b1821aae8e04083f9b928038880957bb6dbf7faadda938bf923f0e6 201688 apt-doc_0.8.0_all.deb
 6d84ed0a5953067a15d032eb79abaf4aab233da4d34ef2abb918eafa72fb558d 687228 libapt-pkg-doc_0.8.0_all.deb
 a593e7d7f9b3cffa37770201a3c13bd2c8bc588bafbf39b4aaa5e13b5fb00b8b 1965454 apt_0.8.0_i386.deb
 482c3d36e5a1464a4a695d315a6571721ec858c42ae854833034992ff1eb2fc3 147434 libapt-pkg-dev_0.8.0_i386.deb
 3c6b12d3bce42a9fb587856bc55ebd9b28694da1c38d84f4347041c7d2fe4f7c 256382 apt-utils_0.8.0_i386.deb
 a140d5aeb6fffa058554def5b41d5ab946bffc656f5d9b889ebfbc4ab41c1262 79486 apt-transport-https_0.8.0_i386.deb
Files: 
 130fdd69012ecaa5803fb40b619adc52 1282 admin important apt_0.8.0.dsc
 f2a4203720d9f7c3b79c95b33a52a47c 3052419 admin important apt_0.8.0.tar.gz
 83dc4da2cce59fb7b21b99bd895bb59f 201688 doc optional apt-doc_0.8.0_all.deb
 f18cba6291c545b2ddffa245093985e8 687228 doc optional libapt-pkg-doc_0.8.0_all.deb
 43364819b898e49b8175e88ec5787241 1965454 admin important apt_0.8.0_i386.deb
 72767fb35c364cb87c21c0a31033de87 147434 libdevel optional libapt-pkg-dev_0.8.0_i386.deb
 054ed2576bf7eda6a793b51bc887c36e 256382 admin important apt-utils_0.8.0_i386.deb
 dbf3e63b69e7fe0e05bd5c246d62314a 79486 admin optional apt-transport-https_0.8.0_i386.deb

-----BEGIN PGP SIGNATURE-----
Version: GnuPG v1.4.10 (GNU/Linux)

iEYEARECAAYFAkx0DecACgkQliSD4VZixzSOcwCfVOztS6+5/9DNF0wWB3gJfzaU
GeoAnRghDhHJwAcf/xizOfMBTsXHMBCg
=OymA
-----END PGP SIGNATURE-----



--- End Message ---

Reply to: