From e124705b95abb6ea3c4c6f96ed5559dac8a2c697 Mon Sep 17 00:00:00 2001 From: Michael Vogt Date: Mon, 30 Jul 2007 22:46:27 +0200 Subject: * apt/debfile.py: - added wrapper around apt_inst.debExtract() - support dictionary like access * python/apt_instmodule.cc: - added arCheckMember() --- apt/debfile.py | 58 ++++++++++++++++++++++++++++++++++++++++++++++++ debian/changelog | 12 +++++++++- po/am.po | 10 ++++----- po/ar.po | 10 ++++----- po/be.po | 10 ++++----- po/bg.po | 10 ++++----- po/bn.po | 10 ++++----- po/br.po | 10 ++++----- po/ca.po | 10 ++++----- po/cs.po | 10 ++++----- po/csb.po | 10 ++++----- po/da.po | 10 ++++----- po/de.po | 12 +++++----- po/el.po | 10 ++++----- po/en_AU.po | 10 ++++----- po/en_CA.po | 10 ++++----- po/en_GB.po | 10 ++++----- po/eo.po | 10 ++++----- po/es.po | 10 ++++----- po/et.po | 10 ++++----- po/eu.po | 10 ++++----- po/fa.po | 10 ++++----- po/fi.po | 10 ++++----- po/fr.po | 10 ++++----- po/fur.po | 10 ++++----- po/gl.po | 10 ++++----- po/he.po | 10 ++++----- po/hi.po | 10 ++++----- po/hr.po | 10 ++++----- po/hu.po | 10 ++++----- po/id.po | 10 ++++----- po/it.po | 10 ++++----- po/ja.po | 10 ++++----- po/ka.po | 10 ++++----- po/ko.po | 10 ++++----- po/ku.po | 10 ++++----- po/lt.po | 10 ++++----- po/lv.po | 10 ++++----- po/mk.po | 10 ++++----- po/mr.po | 10 ++++----- po/ms.po | 10 ++++----- po/nb.po | 10 ++++----- po/ne.po | 10 ++++----- po/nl.po | 10 ++++----- po/nn.po | 10 ++++----- po/no.po | 10 ++++----- po/oc.po | 10 ++++----- po/pa.po | 10 ++++----- po/pl.po | 10 ++++----- po/ps.po | 10 ++++----- po/pt.po | 10 ++++----- po/pt_BR.po | 10 ++++----- po/python-apt.pot | 10 ++++----- po/qu.po | 10 ++++----- po/ro.po | 10 ++++----- po/ru.po | 10 ++++----- po/rw.po | 10 ++++----- po/sk.po | 10 ++++----- po/sl.po | 10 ++++----- po/sq.po | 10 ++++----- po/sr.po | 10 ++++----- po/sv.po | 10 ++++----- po/ta.po | 10 ++++----- po/th.po | 10 ++++----- po/tl.po | 10 ++++----- po/tr.po | 10 ++++----- po/uk.po | 10 ++++----- po/ur.po | 10 ++++----- po/urd.po | 10 ++++----- po/vi.po | 10 ++++----- po/xh.po | 10 ++++----- po/zh_CN.po | 10 ++++----- po/zh_HK.po | 10 ++++----- po/zh_TW.po | 10 ++++----- python/apt_instmodule.cc | 31 +++++++++++++++++++++++++- 75 files changed, 460 insertions(+), 363 deletions(-) create mode 100644 apt/debfile.py diff --git a/apt/debfile.py b/apt/debfile.py new file mode 100644 index 00000000..ddde5bf1 --- /dev/null +++ b/apt/debfile.py @@ -0,0 +1,58 @@ +import apt_inst +import apt_pkg +from apt_inst import arCheckMember + +from gettext import gettext as _ + +class NoDebArchiveException(IOError): + pass + +class DebPackage(object): + + _supported_data_members = ("data.tar.gz", "data.tar.bz2", "data.tar.lzma") + + def __init__(self, filename=None): + self._section = {} + if filename: + self.open(filename) + + def open(self, filename): + " open given debfile " + self.filename = filename + if not arCheckMember(open(self.filename), "debian-binary"): + raise NoDebArchiveException, _("This is not a valid DEB archive, missing '%s' member" % "debian-binary") + control = apt_inst.debExtractControl(open(self.filename)) + self._sections = apt_pkg.ParseSection(control) + self.pkgname = self._sections["Package"] + + def __getitem__(self, key): + return self._sections[key] + + def filelist(self): + """ return the list of files in the deb """ + files = [] + def extract_cb(What,Name,Link,Mode,UID,GID,Size,MTime,Major,Minor): + #print "%s '%s','%s',%u,%u,%u,%u,%u,%u,%u"\ + # % (What,Name,Link,Mode,UID,GID,Size, MTime, Major, Minor) + files.append(Name) + for member in self._supported_data_members: + if arCheckMember(open(self.filename), member): + try: + apt_inst.debExtract(open(self.filename), extract_cb, member) + break + except SystemError, e: + return [_("List of files for '%s'could not be read" % self.filename)] + return files + filelist = property(filelist) + + + +if __name__ == "__main__": + import sys + + d = DebPackage(sys.argv[1]) + print d["Section"] + print d["Maintainer"] + print "Files:" + print "\n".join(d.filelist) + diff --git a/debian/changelog b/debian/changelog index 37df62a9..09df061d 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,13 @@ +python-apt (0.7.4) UNRELEASED; urgency=low + + * apt/debfile.py: + - added wrapper around apt_inst.debExtract() + - support dictionary like access + * python/apt_instmodule.cc: + - added arCheckMember() + + -- Michael Vogt Mon, 30 Jul 2007 22:33:59 +0200 + python-apt (0.7.3) unstable; urgency=low * apt/package.py: @@ -20,7 +30,7 @@ python-apt (0.7.3) unstable; urgency=low * python/indexfile.cc: - increase str buffer in PackageIndexFileRepr - -- + -- Michael Vogt Fri, 27 Jul 2007 16:57:28 +0200 python-apt (0.7.2) unstable; urgency=low diff --git a/po/am.po b/po/am.po index 164dc89d..673ed669 100644 --- a/po/am.po +++ b/po/am.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: update-manager\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2007-04-07 10:08+0200\n" +"POT-Creation-Date: 2007-07-30 22:28+0200\n" "PO-Revision-Date: 2006-10-09 15:49+0000\n" "Last-Translator: Habte \n" "Language-Team: Amharic \n" @@ -275,7 +275,7 @@ msgid "Non-DFSG-compatible Software" msgstr "" #. TRANSLATORS: %s is a country -#: ../aptsources/distro.py:343 +#: ../aptsources/distro.py:192 ../aptsources/distro.py:399 #, python-format msgid "Server for %s" msgstr "" @@ -283,12 +283,12 @@ msgstr "" #. More than one server is used. Since we don't handle this case #. in the user interface we set "custom servers" to true and #. append a list of all used servers -#: ../aptsources/distro.py:355 ../aptsources/distro.py:360 -#: ../aptsources/distro.py:374 +#: ../aptsources/distro.py:211 ../aptsources/distro.py:216 +#: ../aptsources/distro.py:230 msgid "Main server" msgstr "" -#: ../aptsources/distro.py:377 +#: ../aptsources/distro.py:233 msgid "Custom servers" msgstr "" diff --git a/po/ar.po b/po/ar.po index 42725119..39265a8c 100644 --- a/po/ar.po +++ b/po/ar.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: update-manager\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2007-04-07 10:08+0200\n" +"POT-Creation-Date: 2007-07-30 22:28+0200\n" "PO-Revision-Date: 2006-10-16 04:14+0000\n" "Last-Translator: Saleh Odeh \n" "Language-Team: Arabic \n" @@ -278,7 +278,7 @@ msgid "Non-DFSG-compatible Software" msgstr "" #. TRANSLATORS: %s is a country -#: ../aptsources/distro.py:343 +#: ../aptsources/distro.py:192 ../aptsources/distro.py:399 #, python-format msgid "Server for %s" msgstr "" @@ -286,12 +286,12 @@ msgstr "" #. More than one server is used. Since we don't handle this case #. in the user interface we set "custom servers" to true and #. append a list of all used servers -#: ../aptsources/distro.py:355 ../aptsources/distro.py:360 -#: ../aptsources/distro.py:374 +#: ../aptsources/distro.py:211 ../aptsources/distro.py:216 +#: ../aptsources/distro.py:230 msgid "Main server" msgstr "" -#: ../aptsources/distro.py:377 +#: ../aptsources/distro.py:233 msgid "Custom servers" msgstr "" diff --git a/po/be.po b/po/be.po index c47bac25..d4c45847 100644 --- a/po/be.po +++ b/po/be.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: update-manager\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2007-04-07 10:08+0200\n" +"POT-Creation-Date: 2007-07-30 22:28+0200\n" "PO-Revision-Date: 2006-10-16 04:05+0000\n" "Last-Translator: Alexander Nyakhaychyk \n" "Language-Team: Belarusian \n" @@ -276,7 +276,7 @@ msgid "Non-DFSG-compatible Software" msgstr "" #. TRANSLATORS: %s is a country -#: ../aptsources/distro.py:343 +#: ../aptsources/distro.py:192 ../aptsources/distro.py:399 #, python-format msgid "Server for %s" msgstr "" @@ -284,12 +284,12 @@ msgstr "" #. More than one server is used. Since we don't handle this case #. in the user interface we set "custom servers" to true and #. append a list of all used servers -#: ../aptsources/distro.py:355 ../aptsources/distro.py:360 -#: ../aptsources/distro.py:374 +#: ../aptsources/distro.py:211 ../aptsources/distro.py:216 +#: ../aptsources/distro.py:230 msgid "Main server" msgstr "" -#: ../aptsources/distro.py:377 +#: ../aptsources/distro.py:233 msgid "Custom servers" msgstr "" diff --git a/po/bg.po b/po/bg.po index 857310f1..f0a7a011 100644 --- a/po/bg.po +++ b/po/bg.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: update manager\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2007-04-07 10:08+0200\n" +"POT-Creation-Date: 2007-07-30 22:28+0200\n" "PO-Revision-Date: 2006-10-16 04:01+0000\n" "Last-Translator: Nikola Kasabov \n" "Language-Team: Bulgarian \n" @@ -309,7 +309,7 @@ msgid "Non-DFSG-compatible Software" msgstr "Софтуер несъвместим с DFSG" #. TRANSLATORS: %s is a country -#: ../aptsources/distro.py:343 +#: ../aptsources/distro.py:192 ../aptsources/distro.py:399 #, python-format msgid "Server for %s" msgstr "" @@ -317,12 +317,12 @@ msgstr "" #. More than one server is used. Since we don't handle this case #. in the user interface we set "custom servers" to true and #. append a list of all used servers -#: ../aptsources/distro.py:355 ../aptsources/distro.py:360 -#: ../aptsources/distro.py:374 +#: ../aptsources/distro.py:211 ../aptsources/distro.py:216 +#: ../aptsources/distro.py:230 msgid "Main server" msgstr "" -#: ../aptsources/distro.py:377 +#: ../aptsources/distro.py:233 msgid "Custom servers" msgstr "" diff --git a/po/bn.po b/po/bn.po index 489a7122..ee0a4818 100644 --- a/po/bn.po +++ b/po/bn.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: update-manager\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2007-04-07 10:08+0200\n" +"POT-Creation-Date: 2007-07-30 22:28+0200\n" "PO-Revision-Date: 2006-10-16 04:02+0000\n" "Last-Translator: Khandakar Mujahidul Islam \n" "Language-Team: Bengali \n" @@ -301,7 +301,7 @@ msgid "Non-DFSG-compatible Software" msgstr "" #. TRANSLATORS: %s is a country -#: ../aptsources/distro.py:343 +#: ../aptsources/distro.py:192 ../aptsources/distro.py:399 #, python-format msgid "Server for %s" msgstr "" @@ -309,12 +309,12 @@ msgstr "" #. More than one server is used. Since we don't handle this case #. in the user interface we set "custom servers" to true and #. append a list of all used servers -#: ../aptsources/distro.py:355 ../aptsources/distro.py:360 -#: ../aptsources/distro.py:374 +#: ../aptsources/distro.py:211 ../aptsources/distro.py:216 +#: ../aptsources/distro.py:230 msgid "Main server" msgstr "" -#: ../aptsources/distro.py:377 +#: ../aptsources/distro.py:233 msgid "Custom servers" msgstr "" diff --git a/po/br.po b/po/br.po index 51b8fce1..f8684645 100644 --- a/po/br.po +++ b/po/br.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: update-manager\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2007-04-07 10:08+0200\n" +"POT-Creation-Date: 2007-07-30 22:28+0200\n" "PO-Revision-Date: 2006-05-19 02:42+0000\n" "Last-Translator: Oublieuse \n" "Language-Team: Breton \n" @@ -275,7 +275,7 @@ msgid "Non-DFSG-compatible Software" msgstr "" #. TRANSLATORS: %s is a country -#: ../aptsources/distro.py:343 +#: ../aptsources/distro.py:192 ../aptsources/distro.py:399 #, python-format msgid "Server for %s" msgstr "" @@ -283,12 +283,12 @@ msgstr "" #. More than one server is used. Since we don't handle this case #. in the user interface we set "custom servers" to true and #. append a list of all used servers -#: ../aptsources/distro.py:355 ../aptsources/distro.py:360 -#: ../aptsources/distro.py:374 +#: ../aptsources/distro.py:211 ../aptsources/distro.py:216 +#: ../aptsources/distro.py:230 msgid "Main server" msgstr "" -#: ../aptsources/distro.py:377 +#: ../aptsources/distro.py:233 msgid "Custom servers" msgstr "" diff --git a/po/ca.po b/po/ca.po index 8373396f..9d3fef77 100644 --- a/po/ca.po +++ b/po/ca.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: update-manager\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2007-04-07 10:08+0200\n" +"POT-Creation-Date: 2007-07-30 22:28+0200\n" "PO-Revision-Date: 2006-10-16 04:14+0000\n" "Last-Translator: Jordi Irazuzta \n" "Language-Team: Catalan \n" @@ -306,7 +306,7 @@ msgid "Non-DFSG-compatible Software" msgstr "Programari no compatible DFSG" #. TRANSLATORS: %s is a country -#: ../aptsources/distro.py:343 +#: ../aptsources/distro.py:192 ../aptsources/distro.py:399 #, python-format msgid "Server for %s" msgstr "" @@ -314,12 +314,12 @@ msgstr "" #. More than one server is used. Since we don't handle this case #. in the user interface we set "custom servers" to true and #. append a list of all used servers -#: ../aptsources/distro.py:355 ../aptsources/distro.py:360 -#: ../aptsources/distro.py:374 +#: ../aptsources/distro.py:211 ../aptsources/distro.py:216 +#: ../aptsources/distro.py:230 msgid "Main server" msgstr "Servidor principal" -#: ../aptsources/distro.py:377 +#: ../aptsources/distro.py:233 #, fuzzy msgid "Custom servers" msgstr "Servidor més proper" diff --git a/po/cs.po b/po/cs.po index e619f3e2..cf748690 100644 --- a/po/cs.po +++ b/po/cs.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: update-manager\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2007-04-07 10:08+0200\n" +"POT-Creation-Date: 2007-07-30 22:28+0200\n" "PO-Revision-Date: 2006-10-18 22:54+0000\n" "Last-Translator: Dominik Sauer \n" "Language-Team: Czech \n" @@ -289,7 +289,7 @@ msgid "Non-DFSG-compatible Software" msgstr "Software nekompatibilní s DFSG" #. TRANSLATORS: %s is a country -#: ../aptsources/distro.py:343 +#: ../aptsources/distro.py:192 ../aptsources/distro.py:399 #, python-format msgid "Server for %s" msgstr "Server pro zemi \"%s\"" @@ -297,12 +297,12 @@ msgstr "Server pro zemi \"%s\"" #. More than one server is used. Since we don't handle this case #. in the user interface we set "custom servers" to true and #. append a list of all used servers -#: ../aptsources/distro.py:355 ../aptsources/distro.py:360 -#: ../aptsources/distro.py:374 +#: ../aptsources/distro.py:211 ../aptsources/distro.py:216 +#: ../aptsources/distro.py:230 msgid "Main server" msgstr "Hlavní server" -#: ../aptsources/distro.py:377 +#: ../aptsources/distro.py:233 msgid "Custom servers" msgstr "Uživatelem vybrané servery" diff --git a/po/csb.po b/po/csb.po index a16e0b0c..11bee656 100644 --- a/po/csb.po +++ b/po/csb.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: update-manager\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2007-04-07 10:08+0200\n" +"POT-Creation-Date: 2007-07-30 22:28+0200\n" "PO-Revision-Date: 2006-10-08 04:10+0000\n" "Last-Translator: Michôł Òstrowsczi \n" "Language-Team: Kashubian \n" @@ -278,7 +278,7 @@ msgid "Non-DFSG-compatible Software" msgstr "" #. TRANSLATORS: %s is a country -#: ../aptsources/distro.py:343 +#: ../aptsources/distro.py:192 ../aptsources/distro.py:399 #, python-format msgid "Server for %s" msgstr "Serwera dlô kraju %s" @@ -286,12 +286,12 @@ msgstr "Serwera dlô kraju %s" #. More than one server is used. Since we don't handle this case #. in the user interface we set "custom servers" to true and #. append a list of all used servers -#: ../aptsources/distro.py:355 ../aptsources/distro.py:360 -#: ../aptsources/distro.py:374 +#: ../aptsources/distro.py:211 ../aptsources/distro.py:216 +#: ../aptsources/distro.py:230 msgid "Main server" msgstr "Przédny serwera" -#: ../aptsources/distro.py:377 +#: ../aptsources/distro.py:233 msgid "Custom servers" msgstr "Jine serwerë" diff --git a/po/da.po b/po/da.po index 9639a1f9..8bca0917 100644 --- a/po/da.po +++ b/po/da.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: update-manager\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2007-04-07 10:08+0200\n" +"POT-Creation-Date: 2007-07-30 22:28+0200\n" "PO-Revision-Date: 2006-10-16 15:55+0000\n" "Last-Translator: Lasse Bang Mikkelsen \n" "Language-Team: Danish \n" @@ -288,7 +288,7 @@ msgid "Non-DFSG-compatible Software" msgstr "Ikke-DFSG-kompatibel software" #. TRANSLATORS: %s is a country -#: ../aptsources/distro.py:343 +#: ../aptsources/distro.py:192 ../aptsources/distro.py:399 #, python-format msgid "Server for %s" msgstr "Server for %s" @@ -296,12 +296,12 @@ msgstr "Server for %s" #. More than one server is used. Since we don't handle this case #. in the user interface we set "custom servers" to true and #. append a list of all used servers -#: ../aptsources/distro.py:355 ../aptsources/distro.py:360 -#: ../aptsources/distro.py:374 +#: ../aptsources/distro.py:211 ../aptsources/distro.py:216 +#: ../aptsources/distro.py:230 msgid "Main server" msgstr "Hovedserver" -#: ../aptsources/distro.py:377 +#: ../aptsources/distro.py:233 msgid "Custom servers" msgstr "Brugerdefinerede servere" diff --git a/po/de.po b/po/de.po index 7a96d6d4..0b9e0af5 100644 --- a/po/de.po +++ b/po/de.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: update-manager\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2007-04-07 10:08+0200\n" +"POT-Creation-Date: 2007-07-30 22:28+0200\n" "PO-Revision-Date: 2007-04-07 11:15+0200\n" "Last-Translator: Sebastian Heinlein \n" "Language-Team: German GNOME Translations \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=2; plural=n != 1" +"Plural-Forms: nplurals=2; plural=n != 1\n" #. ChangelogURI #: ../data/templates/Ubuntu.info.in.h:4 @@ -276,7 +276,7 @@ msgid "Non-DFSG-compatible Software" msgstr "Nicht DFSG-kompatible Software" #. TRANSLATORS: %s is a country -#: ../aptsources/distro.py:343 +#: ../aptsources/distro.py:192 ../aptsources/distro.py:399 #, python-format msgid "Server for %s" msgstr "Server für %s" @@ -284,12 +284,12 @@ msgstr "Server für %s" #. More than one server is used. Since we don't handle this case #. in the user interface we set "custom servers" to true and #. append a list of all used servers -#: ../aptsources/distro.py:355 ../aptsources/distro.py:360 -#: ../aptsources/distro.py:374 +#: ../aptsources/distro.py:211 ../aptsources/distro.py:216 +#: ../aptsources/distro.py:230 msgid "Main server" msgstr "Haupt-Server" -#: ../aptsources/distro.py:377 +#: ../aptsources/distro.py:233 msgid "Custom servers" msgstr "Benutzerdefinierte Server" diff --git a/po/el.po b/po/el.po index 2d0b3719..15cbe529 100644 --- a/po/el.po +++ b/po/el.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: el\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2007-04-07 10:08+0200\n" +"POT-Creation-Date: 2007-07-30 22:28+0200\n" "PO-Revision-Date: 2006-10-16 04:13+0000\n" "Last-Translator: Kostas Papadimas \n" "Language-Team: Greek \n" @@ -288,7 +288,7 @@ msgid "Non-DFSG-compatible Software" msgstr "Λογισμικό μη συμβατό με DFSG" #. TRANSLATORS: %s is a country -#: ../aptsources/distro.py:343 +#: ../aptsources/distro.py:192 ../aptsources/distro.py:399 #, python-format msgid "Server for %s" msgstr "Εξυπηρετητής για %s" @@ -296,12 +296,12 @@ msgstr "Εξυπηρετητής για %s" #. More than one server is used. Since we don't handle this case #. in the user interface we set "custom servers" to true and #. append a list of all used servers -#: ../aptsources/distro.py:355 ../aptsources/distro.py:360 -#: ../aptsources/distro.py:374 +#: ../aptsources/distro.py:211 ../aptsources/distro.py:216 +#: ../aptsources/distro.py:230 msgid "Main server" msgstr "Κύριος εξυπηρετητής" -#: ../aptsources/distro.py:377 +#: ../aptsources/distro.py:233 msgid "Custom servers" msgstr "Προσαρμοσμένοι εξυπηρετητές" diff --git a/po/en_AU.po b/po/en_AU.po index a43a816d..2c620c48 100644 --- a/po/en_AU.po +++ b/po/en_AU.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: update-manager\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2007-04-07 10:08+0200\n" +"POT-Creation-Date: 2007-07-30 22:28+0200\n" "PO-Revision-Date: 2006-10-16 04:01+0000\n" "Last-Translator: David Satchell \n" "Language-Team: English (Australia) \n" @@ -288,7 +288,7 @@ msgid "Non-DFSG-compatible Software" msgstr "Non-DFSG-compatible Software" #. TRANSLATORS: %s is a country -#: ../aptsources/distro.py:343 +#: ../aptsources/distro.py:192 ../aptsources/distro.py:399 #, python-format msgid "Server for %s" msgstr "Server for %s" @@ -296,12 +296,12 @@ msgstr "Server for %s" #. More than one server is used. Since we don't handle this case #. in the user interface we set "custom servers" to true and #. append a list of all used servers -#: ../aptsources/distro.py:355 ../aptsources/distro.py:360 -#: ../aptsources/distro.py:374 +#: ../aptsources/distro.py:211 ../aptsources/distro.py:216 +#: ../aptsources/distro.py:230 msgid "Main server" msgstr "Main server" -#: ../aptsources/distro.py:377 +#: ../aptsources/distro.py:233 msgid "Custom servers" msgstr "Custom servers" diff --git a/po/en_CA.po b/po/en_CA.po index 5a35f6fb..e84193f1 100644 --- a/po/en_CA.po +++ b/po/en_CA.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: update-manager\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2007-04-07 10:08+0200\n" +"POT-Creation-Date: 2007-07-30 22:28+0200\n" "PO-Revision-Date: 2006-10-16 04:06+0000\n" "Last-Translator: Adam Weinberger \n" "Language-Team: Canadian English \n" @@ -309,7 +309,7 @@ msgid "Non-DFSG-compatible Software" msgstr "" #. TRANSLATORS: %s is a country -#: ../aptsources/distro.py:343 +#: ../aptsources/distro.py:192 ../aptsources/distro.py:399 #, python-format msgid "Server for %s" msgstr "" @@ -317,12 +317,12 @@ msgstr "" #. More than one server is used. Since we don't handle this case #. in the user interface we set "custom servers" to true and #. append a list of all used servers -#: ../aptsources/distro.py:355 ../aptsources/distro.py:360 -#: ../aptsources/distro.py:374 +#: ../aptsources/distro.py:211 ../aptsources/distro.py:216 +#: ../aptsources/distro.py:230 msgid "Main server" msgstr "" -#: ../aptsources/distro.py:377 +#: ../aptsources/distro.py:233 msgid "Custom servers" msgstr "" diff --git a/po/en_GB.po b/po/en_GB.po index b73af91c..a99cfda9 100644 --- a/po/en_GB.po +++ b/po/en_GB.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: update-manager\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2007-04-07 10:08+0200\n" +"POT-Creation-Date: 2007-07-30 22:28+0200\n" "PO-Revision-Date: 2006-10-16 04:14+0000\n" "Last-Translator: Jeff Bailes \n" "Language-Team: \n" @@ -289,7 +289,7 @@ msgid "Non-DFSG-compatible Software" msgstr "Non-DFSG-compatible Software" #. TRANSLATORS: %s is a country -#: ../aptsources/distro.py:343 +#: ../aptsources/distro.py:192 ../aptsources/distro.py:399 #, python-format msgid "Server for %s" msgstr "Server for %s" @@ -297,12 +297,12 @@ msgstr "Server for %s" #. More than one server is used. Since we don't handle this case #. in the user interface we set "custom servers" to true and #. append a list of all used servers -#: ../aptsources/distro.py:355 ../aptsources/distro.py:360 -#: ../aptsources/distro.py:374 +#: ../aptsources/distro.py:211 ../aptsources/distro.py:216 +#: ../aptsources/distro.py:230 msgid "Main server" msgstr "Main server" -#: ../aptsources/distro.py:377 +#: ../aptsources/distro.py:233 msgid "Custom servers" msgstr "Custom servers" diff --git a/po/eo.po b/po/eo.po index b192a027..324d644b 100644 --- a/po/eo.po +++ b/po/eo.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: update-manager\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2007-04-07 10:08+0200\n" +"POT-Creation-Date: 2007-07-30 22:28+0200\n" "PO-Revision-Date: 2006-10-16 04:05+0000\n" "Last-Translator: Ed Glez \n" "Language-Team: Esperanto \n" @@ -276,7 +276,7 @@ msgid "Non-DFSG-compatible Software" msgstr "" #. TRANSLATORS: %s is a country -#: ../aptsources/distro.py:343 +#: ../aptsources/distro.py:192 ../aptsources/distro.py:399 #, python-format msgid "Server for %s" msgstr "" @@ -284,12 +284,12 @@ msgstr "" #. More than one server is used. Since we don't handle this case #. in the user interface we set "custom servers" to true and #. append a list of all used servers -#: ../aptsources/distro.py:355 ../aptsources/distro.py:360 -#: ../aptsources/distro.py:374 +#: ../aptsources/distro.py:211 ../aptsources/distro.py:216 +#: ../aptsources/distro.py:230 msgid "Main server" msgstr "" -#: ../aptsources/distro.py:377 +#: ../aptsources/distro.py:233 msgid "Custom servers" msgstr "" diff --git a/po/es.po b/po/es.po index 637bbcf5..70459807 100644 --- a/po/es.po +++ b/po/es.po @@ -9,7 +9,7 @@ msgid "" msgstr "" "Project-Id-Version: es\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2007-04-07 10:08+0200\n" +"POT-Creation-Date: 2007-07-30 22:28+0200\n" "PO-Revision-Date: 2006-10-16 04:15+0000\n" "Last-Translator: Ricardo Pérez López \n" "Language-Team: Spanish \n" @@ -290,7 +290,7 @@ msgid "Non-DFSG-compatible Software" msgstr "Software no compatible con la DFSG" #. TRANSLATORS: %s is a country -#: ../aptsources/distro.py:343 +#: ../aptsources/distro.py:192 ../aptsources/distro.py:399 #, python-format msgid "Server for %s" msgstr "Servidor para %s" @@ -298,12 +298,12 @@ msgstr "Servidor para %s" #. More than one server is used. Since we don't handle this case #. in the user interface we set "custom servers" to true and #. append a list of all used servers -#: ../aptsources/distro.py:355 ../aptsources/distro.py:360 -#: ../aptsources/distro.py:374 +#: ../aptsources/distro.py:211 ../aptsources/distro.py:216 +#: ../aptsources/distro.py:230 msgid "Main server" msgstr "Servidor principal" -#: ../aptsources/distro.py:377 +#: ../aptsources/distro.py:233 msgid "Custom servers" msgstr "Servidores personalizados" diff --git a/po/et.po b/po/et.po index ed200538..02d4129f 100644 --- a/po/et.po +++ b/po/et.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: update-manager\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2007-04-07 10:08+0200\n" +"POT-Creation-Date: 2007-07-30 22:28+0200\n" "PO-Revision-Date: 2006-10-09 15:49+0000\n" "Last-Translator: margus723 \n" "Language-Team: Estonian \n" @@ -275,7 +275,7 @@ msgid "Non-DFSG-compatible Software" msgstr "" #. TRANSLATORS: %s is a country -#: ../aptsources/distro.py:343 +#: ../aptsources/distro.py:192 ../aptsources/distro.py:399 #, python-format msgid "Server for %s" msgstr "" @@ -283,12 +283,12 @@ msgstr "" #. More than one server is used. Since we don't handle this case #. in the user interface we set "custom servers" to true and #. append a list of all used servers -#: ../aptsources/distro.py:355 ../aptsources/distro.py:360 -#: ../aptsources/distro.py:374 +#: ../aptsources/distro.py:211 ../aptsources/distro.py:216 +#: ../aptsources/distro.py:230 msgid "Main server" msgstr "" -#: ../aptsources/distro.py:377 +#: ../aptsources/distro.py:233 msgid "Custom servers" msgstr "" diff --git a/po/eu.po b/po/eu.po index c29206ad..954857ad 100644 --- a/po/eu.po +++ b/po/eu.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: update-manager\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2007-04-07 10:08+0200\n" +"POT-Creation-Date: 2007-07-30 22:28+0200\n" "PO-Revision-Date: 2006-10-09 15:49+0000\n" "Last-Translator: Xabi Ezpeleta \n" "Language-Team: Basque \n" @@ -275,7 +275,7 @@ msgid "Non-DFSG-compatible Software" msgstr "" #. TRANSLATORS: %s is a country -#: ../aptsources/distro.py:343 +#: ../aptsources/distro.py:192 ../aptsources/distro.py:399 #, python-format msgid "Server for %s" msgstr "" @@ -283,12 +283,12 @@ msgstr "" #. More than one server is used. Since we don't handle this case #. in the user interface we set "custom servers" to true and #. append a list of all used servers -#: ../aptsources/distro.py:355 ../aptsources/distro.py:360 -#: ../aptsources/distro.py:374 +#: ../aptsources/distro.py:211 ../aptsources/distro.py:216 +#: ../aptsources/distro.py:230 msgid "Main server" msgstr "" -#: ../aptsources/distro.py:377 +#: ../aptsources/distro.py:233 msgid "Custom servers" msgstr "" diff --git a/po/fa.po b/po/fa.po index c762a396..43e4fb8a 100644 --- a/po/fa.po +++ b/po/fa.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: update-manager\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2007-04-07 10:08+0200\n" +"POT-Creation-Date: 2007-07-30 22:28+0200\n" "PO-Revision-Date: 2006-10-09 15:49+0000\n" "Last-Translator: Pedram Ganjeh Hadidi \n" @@ -276,7 +276,7 @@ msgid "Non-DFSG-compatible Software" msgstr "" #. TRANSLATORS: %s is a country -#: ../aptsources/distro.py:343 +#: ../aptsources/distro.py:192 ../aptsources/distro.py:399 #, python-format msgid "Server for %s" msgstr "" @@ -284,12 +284,12 @@ msgstr "" #. More than one server is used. Since we don't handle this case #. in the user interface we set "custom servers" to true and #. append a list of all used servers -#: ../aptsources/distro.py:355 ../aptsources/distro.py:360 -#: ../aptsources/distro.py:374 +#: ../aptsources/distro.py:211 ../aptsources/distro.py:216 +#: ../aptsources/distro.py:230 msgid "Main server" msgstr "" -#: ../aptsources/distro.py:377 +#: ../aptsources/distro.py:233 msgid "Custom servers" msgstr "" diff --git a/po/fi.po b/po/fi.po index 370ffa6e..16bcf1fa 100644 --- a/po/fi.po +++ b/po/fi.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: update-manager\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2007-04-07 10:08+0200\n" +"POT-Creation-Date: 2007-07-30 22:28+0200\n" "PO-Revision-Date: 2006-10-23 12:24+0000\n" "Last-Translator: Timo Jyrinki \n" "Language-Team: Finnish \n" @@ -288,7 +288,7 @@ msgid "Non-DFSG-compatible Software" msgstr "DFSG-epäyhteensopivat ohjelmistot" #. TRANSLATORS: %s is a country -#: ../aptsources/distro.py:343 +#: ../aptsources/distro.py:192 ../aptsources/distro.py:399 #, python-format msgid "Server for %s" msgstr "Palvelin maalle: %s" @@ -296,12 +296,12 @@ msgstr "Palvelin maalle: %s" #. More than one server is used. Since we don't handle this case #. in the user interface we set "custom servers" to true and #. append a list of all used servers -#: ../aptsources/distro.py:355 ../aptsources/distro.py:360 -#: ../aptsources/distro.py:374 +#: ../aptsources/distro.py:211 ../aptsources/distro.py:216 +#: ../aptsources/distro.py:230 msgid "Main server" msgstr "Pääpalvelin" -#: ../aptsources/distro.py:377 +#: ../aptsources/distro.py:233 msgid "Custom servers" msgstr "Määrittele palvelin" diff --git a/po/fr.po b/po/fr.po index 252e304b..ee8d3c50 100644 --- a/po/fr.po +++ b/po/fr.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: update-manager 0.37.2\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2007-04-07 10:08+0200\n" +"POT-Creation-Date: 2007-07-30 22:28+0200\n" "PO-Revision-Date: 2006-10-16 04:02+0000\n" "Last-Translator: E.Malandain \n" "Language-Team: French \n" @@ -290,7 +290,7 @@ msgid "Non-DFSG-compatible Software" msgstr "Logiciel non libre (selon les lignes directrices du projet Debian)" #. TRANSLATORS: %s is a country -#: ../aptsources/distro.py:343 +#: ../aptsources/distro.py:192 ../aptsources/distro.py:399 #, python-format msgid "Server for %s" msgstr "Serveur pour %s" @@ -298,12 +298,12 @@ msgstr "Serveur pour %s" #. More than one server is used. Since we don't handle this case #. in the user interface we set "custom servers" to true and #. append a list of all used servers -#: ../aptsources/distro.py:355 ../aptsources/distro.py:360 -#: ../aptsources/distro.py:374 +#: ../aptsources/distro.py:211 ../aptsources/distro.py:216 +#: ../aptsources/distro.py:230 msgid "Main server" msgstr "Serveur principal" -#: ../aptsources/distro.py:377 +#: ../aptsources/distro.py:233 msgid "Custom servers" msgstr "Serveurs personnalisés" diff --git a/po/fur.po b/po/fur.po index 59569c9e..ba8259cc 100644 --- a/po/fur.po +++ b/po/fur.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: update-manager\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2007-04-07 10:08+0200\n" +"POT-Creation-Date: 2007-07-30 22:28+0200\n" "PO-Revision-Date: 2006-08-25 05:55+0000\n" "Last-Translator: Marco \n" "Language-Team: Friulian \n" @@ -275,7 +275,7 @@ msgid "Non-DFSG-compatible Software" msgstr "" #. TRANSLATORS: %s is a country -#: ../aptsources/distro.py:343 +#: ../aptsources/distro.py:192 ../aptsources/distro.py:399 #, python-format msgid "Server for %s" msgstr "" @@ -283,12 +283,12 @@ msgstr "" #. More than one server is used. Since we don't handle this case #. in the user interface we set "custom servers" to true and #. append a list of all used servers -#: ../aptsources/distro.py:355 ../aptsources/distro.py:360 -#: ../aptsources/distro.py:374 +#: ../aptsources/distro.py:211 ../aptsources/distro.py:216 +#: ../aptsources/distro.py:230 msgid "Main server" msgstr "" -#: ../aptsources/distro.py:377 +#: ../aptsources/distro.py:233 msgid "Custom servers" msgstr "" diff --git a/po/gl.po b/po/gl.po index ee2ad743..1b14a089 100644 --- a/po/gl.po +++ b/po/gl.po @@ -9,7 +9,7 @@ msgid "" msgstr "" "Project-Id-Version: gl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2007-04-07 10:08+0200\n" +"POT-Creation-Date: 2007-07-30 22:28+0200\n" "PO-Revision-Date: 2006-10-19 00:43+0000\n" "Last-Translator: Felipe Gil Castiñeira \n" "Language-Team: galician\n" @@ -290,7 +290,7 @@ msgid "Non-DFSG-compatible Software" msgstr "Software non compatible coa DFSG" #. TRANSLATORS: %s is a country -#: ../aptsources/distro.py:343 +#: ../aptsources/distro.py:192 ../aptsources/distro.py:399 #, python-format msgid "Server for %s" msgstr "Servidor desde %s" @@ -298,12 +298,12 @@ msgstr "Servidor desde %s" #. More than one server is used. Since we don't handle this case #. in the user interface we set "custom servers" to true and #. append a list of all used servers -#: ../aptsources/distro.py:355 ../aptsources/distro.py:360 -#: ../aptsources/distro.py:374 +#: ../aptsources/distro.py:211 ../aptsources/distro.py:216 +#: ../aptsources/distro.py:230 msgid "Main server" msgstr "Servidor principal" -#: ../aptsources/distro.py:377 +#: ../aptsources/distro.py:233 msgid "Custom servers" msgstr "Servidores personalizados" diff --git a/po/he.po b/po/he.po index 97f629b4..38f2353c 100644 --- a/po/he.po +++ b/po/he.po @@ -10,7 +10,7 @@ msgid "" msgstr "" "Project-Id-Version: update-manager.HEAD\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2007-04-07 10:08+0200\n" +"POT-Creation-Date: 2007-07-30 22:28+0200\n" "PO-Revision-Date: 2006-10-16 08:48+0000\n" "Last-Translator: Yaniv Abir \n" "Language-Team: Hebrew \n" @@ -296,7 +296,7 @@ msgid "Non-DFSG-compatible Software" msgstr "" #. TRANSLATORS: %s is a country -#: ../aptsources/distro.py:343 +#: ../aptsources/distro.py:192 ../aptsources/distro.py:399 #, python-format msgid "Server for %s" msgstr "השרת ב%s" @@ -304,12 +304,12 @@ msgstr "השרת ב%s" #. More than one server is used. Since we don't handle this case #. in the user interface we set "custom servers" to true and #. append a list of all used servers -#: ../aptsources/distro.py:355 ../aptsources/distro.py:360 -#: ../aptsources/distro.py:374 +#: ../aptsources/distro.py:211 ../aptsources/distro.py:216 +#: ../aptsources/distro.py:230 msgid "Main server" msgstr "שרת ראשי" -#: ../aptsources/distro.py:377 +#: ../aptsources/distro.py:233 #, fuzzy msgid "Custom servers" msgstr "השרת הקרוב ביותר" diff --git a/po/hi.po b/po/hi.po index 5fcbe0b8..f0976b7f 100644 --- a/po/hi.po +++ b/po/hi.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: update-manager\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2007-04-07 10:08+0200\n" +"POT-Creation-Date: 2007-07-30 22:28+0200\n" "PO-Revision-Date: 2006-08-01 15:30+0000\n" "Last-Translator: Gaurav Mishra \n" "Language-Team: Hindi \n" @@ -275,7 +275,7 @@ msgid "Non-DFSG-compatible Software" msgstr "" #. TRANSLATORS: %s is a country -#: ../aptsources/distro.py:343 +#: ../aptsources/distro.py:192 ../aptsources/distro.py:399 #, python-format msgid "Server for %s" msgstr "" @@ -283,12 +283,12 @@ msgstr "" #. More than one server is used. Since we don't handle this case #. in the user interface we set "custom servers" to true and #. append a list of all used servers -#: ../aptsources/distro.py:355 ../aptsources/distro.py:360 -#: ../aptsources/distro.py:374 +#: ../aptsources/distro.py:211 ../aptsources/distro.py:216 +#: ../aptsources/distro.py:230 msgid "Main server" msgstr "" -#: ../aptsources/distro.py:377 +#: ../aptsources/distro.py:233 msgid "Custom servers" msgstr "" diff --git a/po/hr.po b/po/hr.po index 4ad13ffd..0697c590 100644 --- a/po/hr.po +++ b/po/hr.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: update-manager\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2007-04-07 10:08+0200\n" +"POT-Creation-Date: 2007-07-30 22:28+0200\n" "PO-Revision-Date: 2006-10-18 19:37+0000\n" "Last-Translator: Ante Karamatić \n" "Language-Team: Croatian \n" @@ -289,7 +289,7 @@ msgid "Non-DFSG-compatible Software" msgstr "DFSG-nekompatibilni programi" #. TRANSLATORS: %s is a country -#: ../aptsources/distro.py:343 +#: ../aptsources/distro.py:192 ../aptsources/distro.py:399 #, python-format msgid "Server for %s" msgstr "Poslužitelj za %s" @@ -297,12 +297,12 @@ msgstr "Poslužitelj za %s" #. More than one server is used. Since we don't handle this case #. in the user interface we set "custom servers" to true and #. append a list of all used servers -#: ../aptsources/distro.py:355 ../aptsources/distro.py:360 -#: ../aptsources/distro.py:374 +#: ../aptsources/distro.py:211 ../aptsources/distro.py:216 +#: ../aptsources/distro.py:230 msgid "Main server" msgstr "Glavni poslužitelj" -#: ../aptsources/distro.py:377 +#: ../aptsources/distro.py:233 msgid "Custom servers" msgstr "Osobni poslužitelji" diff --git a/po/hu.po b/po/hu.po index 17803cb3..ad42d3b8 100644 --- a/po/hu.po +++ b/po/hu.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: update-manager.HEAD\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2007-04-07 10:08+0200\n" +"POT-Creation-Date: 2007-07-30 22:28+0200\n" "PO-Revision-Date: 2006-10-16 04:03+0000\n" "Last-Translator: Gabor Kelemen \n" "Language-Team: Hungarian \n" @@ -288,7 +288,7 @@ msgid "Non-DFSG-compatible Software" msgstr "Nem DFSG-kompatibilis szoftver" #. TRANSLATORS: %s is a country -#: ../aptsources/distro.py:343 +#: ../aptsources/distro.py:192 ../aptsources/distro.py:399 #, python-format msgid "Server for %s" msgstr "Kiszolgáló a következőhöz: %s" @@ -296,12 +296,12 @@ msgstr "Kiszolgáló a következőhöz: %s" #. More than one server is used. Since we don't handle this case #. in the user interface we set "custom servers" to true and #. append a list of all used servers -#: ../aptsources/distro.py:355 ../aptsources/distro.py:360 -#: ../aptsources/distro.py:374 +#: ../aptsources/distro.py:211 ../aptsources/distro.py:216 +#: ../aptsources/distro.py:230 msgid "Main server" msgstr "Fő kiszolgáló" -#: ../aptsources/distro.py:377 +#: ../aptsources/distro.py:233 msgid "Custom servers" msgstr "Egyéni kiszolgálók" diff --git a/po/id.po b/po/id.po index ee341dc1..0c67a0db 100644 --- a/po/id.po +++ b/po/id.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: update-manager\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2007-04-07 10:08+0200\n" +"POT-Creation-Date: 2007-07-30 22:28+0200\n" "PO-Revision-Date: 2006-10-16 04:03+0000\n" "Last-Translator: Andy Apdhani \n" "Language-Team: Indonesian \n" @@ -304,7 +304,7 @@ msgid "Non-DFSG-compatible Software" msgstr "Perangkat Lunak yang tidak sesuai dengan DFSG" #. TRANSLATORS: %s is a country -#: ../aptsources/distro.py:343 +#: ../aptsources/distro.py:192 ../aptsources/distro.py:399 #, python-format msgid "Server for %s" msgstr "" @@ -312,12 +312,12 @@ msgstr "" #. More than one server is used. Since we don't handle this case #. in the user interface we set "custom servers" to true and #. append a list of all used servers -#: ../aptsources/distro.py:355 ../aptsources/distro.py:360 -#: ../aptsources/distro.py:374 +#: ../aptsources/distro.py:211 ../aptsources/distro.py:216 +#: ../aptsources/distro.py:230 msgid "Main server" msgstr "" -#: ../aptsources/distro.py:377 +#: ../aptsources/distro.py:233 msgid "Custom servers" msgstr "" diff --git a/po/it.po b/po/it.po index b8685c52..35439e6e 100644 --- a/po/it.po +++ b/po/it.po @@ -9,7 +9,7 @@ msgid "" msgstr "" "Project-Id-Version: update-manager\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2007-04-07 10:08+0200\n" +"POT-Creation-Date: 2007-07-30 22:28+0200\n" "PO-Revision-Date: 2006-10-22 10:13+0000\n" "Last-Translator: Luca Ferretti \n" "Language-Team: Italian \n" @@ -290,7 +290,7 @@ msgid "Non-DFSG-compatible Software" msgstr "Software non compatibile con le DFSG" #. TRANSLATORS: %s is a country -#: ../aptsources/distro.py:343 +#: ../aptsources/distro.py:192 ../aptsources/distro.py:399 #, python-format msgid "Server for %s" msgstr "Server in %s" @@ -298,12 +298,12 @@ msgstr "Server in %s" #. More than one server is used. Since we don't handle this case #. in the user interface we set "custom servers" to true and #. append a list of all used servers -#: ../aptsources/distro.py:355 ../aptsources/distro.py:360 -#: ../aptsources/distro.py:374 +#: ../aptsources/distro.py:211 ../aptsources/distro.py:216 +#: ../aptsources/distro.py:230 msgid "Main server" msgstr "Server principale" -#: ../aptsources/distro.py:377 +#: ../aptsources/distro.py:233 msgid "Custom servers" msgstr "Server personalizzati" diff --git a/po/ja.po b/po/ja.po index f4812ba2..df1cb04f 100644 --- a/po/ja.po +++ b/po/ja.po @@ -9,7 +9,7 @@ msgid "" msgstr "" "Project-Id-Version: update-manager 0.42.4\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2007-04-07 10:08+0200\n" +"POT-Creation-Date: 2007-07-30 22:28+0200\n" "PO-Revision-Date: 2006-10-16 04:03+0000\n" "Last-Translator: Ikuya Awashiro \n" "Language-Team: Ubuntu Japanese Team \n" @@ -301,7 +301,7 @@ msgid "Non-DFSG-compatible Software" msgstr "DFSGに適合しないソフトウェア" #. TRANSLATORS: %s is a country -#: ../aptsources/distro.py:343 +#: ../aptsources/distro.py:192 ../aptsources/distro.py:399 #, python-format msgid "Server for %s" msgstr "%s のサーバ" @@ -309,12 +309,12 @@ msgstr "%s のサーバ" #. More than one server is used. Since we don't handle this case #. in the user interface we set "custom servers" to true and #. append a list of all used servers -#: ../aptsources/distro.py:355 ../aptsources/distro.py:360 -#: ../aptsources/distro.py:374 +#: ../aptsources/distro.py:211 ../aptsources/distro.py:216 +#: ../aptsources/distro.py:230 msgid "Main server" msgstr "メインサーバ" -#: ../aptsources/distro.py:377 +#: ../aptsources/distro.py:233 msgid "Custom servers" msgstr "カスタムサーバ" diff --git a/po/ka.po b/po/ka.po index 63676486..71e21f88 100644 --- a/po/ka.po +++ b/po/ka.po @@ -9,7 +9,7 @@ msgid "" msgstr "" "Project-Id-Version: update-manager\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2007-04-07 10:08+0200\n" +"POT-Creation-Date: 2007-07-30 22:28+0200\n" "PO-Revision-Date: 2006-10-18 01:28+0000\n" "Last-Translator: Malkhaz Barkalaya \n" "Language-Team: Georgian \n" @@ -290,7 +290,7 @@ msgid "Non-DFSG-compatible Software" msgstr "DFSG-არათავსებადი პროგრამები" #. TRANSLATORS: %s is a country -#: ../aptsources/distro.py:343 +#: ../aptsources/distro.py:192 ../aptsources/distro.py:399 #, python-format msgid "Server for %s" msgstr "%s სერვერი" @@ -298,12 +298,12 @@ msgstr "%s სერვერი" #. More than one server is used. Since we don't handle this case #. in the user interface we set "custom servers" to true and #. append a list of all used servers -#: ../aptsources/distro.py:355 ../aptsources/distro.py:360 -#: ../aptsources/distro.py:374 +#: ../aptsources/distro.py:211 ../aptsources/distro.py:216 +#: ../aptsources/distro.py:230 msgid "Main server" msgstr "მთავარი სერვერი" -#: ../aptsources/distro.py:377 +#: ../aptsources/distro.py:233 msgid "Custom servers" msgstr "საკუთარი სერვერები" diff --git a/po/ko.po b/po/ko.po index cc2a5b03..e2a6d174 100644 --- a/po/ko.po +++ b/po/ko.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: update-manager\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2007-04-07 10:08+0200\n" +"POT-Creation-Date: 2007-07-30 22:28+0200\n" "PO-Revision-Date: 2006-10-16 04:04+0000\n" "Last-Translator: Eungkyu Song \n" "Language-Team: Korean \n" @@ -287,7 +287,7 @@ msgid "Non-DFSG-compatible Software" msgstr "DFSG와 호환이 되지 않는 소프트웨어" #. TRANSLATORS: %s is a country -#: ../aptsources/distro.py:343 +#: ../aptsources/distro.py:192 ../aptsources/distro.py:399 #, python-format msgid "Server for %s" msgstr "%s 서버" @@ -295,12 +295,12 @@ msgstr "%s 서버" #. More than one server is used. Since we don't handle this case #. in the user interface we set "custom servers" to true and #. append a list of all used servers -#: ../aptsources/distro.py:355 ../aptsources/distro.py:360 -#: ../aptsources/distro.py:374 +#: ../aptsources/distro.py:211 ../aptsources/distro.py:216 +#: ../aptsources/distro.py:230 msgid "Main server" msgstr "주 서버" -#: ../aptsources/distro.py:377 +#: ../aptsources/distro.py:233 msgid "Custom servers" msgstr "사용자 정의 서버" diff --git a/po/ku.po b/po/ku.po index 755b693c..d15f136f 100644 --- a/po/ku.po +++ b/po/ku.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: update-manager\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2007-04-07 10:08+0200\n" +"POT-Creation-Date: 2007-07-30 22:28+0200\n" "PO-Revision-Date: 2006-10-17 09:50+0000\n" "Last-Translator: rizoye-xerzi \n" "Language-Team: Kurdish \n" @@ -289,7 +289,7 @@ msgid "Non-DFSG-compatible Software" msgstr "nivîsbariya hevgirtî ya ne li gorî -DFSG" #. TRANSLATORS: %s is a country -#: ../aptsources/distro.py:343 +#: ../aptsources/distro.py:192 ../aptsources/distro.py:399 #, python-format msgid "Server for %s" msgstr "Pêşkêşkera %s" @@ -297,12 +297,12 @@ msgstr "Pêşkêşkera %s" #. More than one server is used. Since we don't handle this case #. in the user interface we set "custom servers" to true and #. append a list of all used servers -#: ../aptsources/distro.py:355 ../aptsources/distro.py:360 -#: ../aptsources/distro.py:374 +#: ../aptsources/distro.py:211 ../aptsources/distro.py:216 +#: ../aptsources/distro.py:230 msgid "Main server" msgstr "Pêşkêşkera Mak" -#: ../aptsources/distro.py:377 +#: ../aptsources/distro.py:233 msgid "Custom servers" msgstr "Pêşkêşkera taybet" diff --git a/po/lt.po b/po/lt.po index 12bf58aa..4db952d8 100644 --- a/po/lt.po +++ b/po/lt.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: update-manager HEAD\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2007-04-07 10:08+0200\n" +"POT-Creation-Date: 2007-07-30 22:28+0200\n" "PO-Revision-Date: 2006-10-16 04:04+0000\n" "Last-Translator: Mantas Kriaučiūnas \n" "Language-Team: Lithuanian \n" @@ -293,7 +293,7 @@ msgid "Non-DFSG-compatible Software" msgstr "Su DFSG nesuderinama programinė įranga" #. TRANSLATORS: %s is a country -#: ../aptsources/distro.py:343 +#: ../aptsources/distro.py:192 ../aptsources/distro.py:399 #, python-format msgid "Server for %s" msgstr "" @@ -301,12 +301,12 @@ msgstr "" #. More than one server is used. Since we don't handle this case #. in the user interface we set "custom servers" to true and #. append a list of all used servers -#: ../aptsources/distro.py:355 ../aptsources/distro.py:360 -#: ../aptsources/distro.py:374 +#: ../aptsources/distro.py:211 ../aptsources/distro.py:216 +#: ../aptsources/distro.py:230 msgid "Main server" msgstr "" -#: ../aptsources/distro.py:377 +#: ../aptsources/distro.py:233 msgid "Custom servers" msgstr "" diff --git a/po/lv.po b/po/lv.po index 64a5d6e8..060eb352 100644 --- a/po/lv.po +++ b/po/lv.po @@ -9,7 +9,7 @@ msgid "" msgstr "" "Project-Id-Version: lp-upd-manager-lv\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2007-04-07 10:08+0200\n" +"POT-Creation-Date: 2007-07-30 22:28+0200\n" "PO-Revision-Date: 2006-09-05 20:00+0000\n" "Last-Translator: Raivis Dejus \n" "Language-Team: Latvian \n" @@ -284,7 +284,7 @@ msgid "Non-DFSG-compatible Software" msgstr "" #. TRANSLATORS: %s is a country -#: ../aptsources/distro.py:343 +#: ../aptsources/distro.py:192 ../aptsources/distro.py:399 #, python-format msgid "Server for %s" msgstr "" @@ -292,12 +292,12 @@ msgstr "" #. More than one server is used. Since we don't handle this case #. in the user interface we set "custom servers" to true and #. append a list of all used servers -#: ../aptsources/distro.py:355 ../aptsources/distro.py:360 -#: ../aptsources/distro.py:374 +#: ../aptsources/distro.py:211 ../aptsources/distro.py:216 +#: ../aptsources/distro.py:230 msgid "Main server" msgstr "Galvenais serveris" -#: ../aptsources/distro.py:377 +#: ../aptsources/distro.py:233 msgid "Custom servers" msgstr "" diff --git a/po/mk.po b/po/mk.po index 22b7ef3b..aab640fe 100644 --- a/po/mk.po +++ b/po/mk.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: mk\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2007-04-07 10:08+0200\n" +"POT-Creation-Date: 2007-07-30 22:28+0200\n" "PO-Revision-Date: 2006-10-16 04:04+0000\n" "Last-Translator: Арангел Ангов \n" "Language-Team: Macedonian \n" @@ -308,7 +308,7 @@ msgid "Non-DFSG-compatible Software" msgstr "Не-DFSG-компатибилен софтвер" #. TRANSLATORS: %s is a country -#: ../aptsources/distro.py:343 +#: ../aptsources/distro.py:192 ../aptsources/distro.py:399 #, python-format msgid "Server for %s" msgstr "" @@ -316,12 +316,12 @@ msgstr "" #. More than one server is used. Since we don't handle this case #. in the user interface we set "custom servers" to true and #. append a list of all used servers -#: ../aptsources/distro.py:355 ../aptsources/distro.py:360 -#: ../aptsources/distro.py:374 +#: ../aptsources/distro.py:211 ../aptsources/distro.py:216 +#: ../aptsources/distro.py:230 msgid "Main server" msgstr "" -#: ../aptsources/distro.py:377 +#: ../aptsources/distro.py:233 msgid "Custom servers" msgstr "" diff --git a/po/mr.po b/po/mr.po index 6a30ffdb..66c5a0db 100644 --- a/po/mr.po +++ b/po/mr.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: update-manager\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2007-04-07 10:08+0200\n" +"POT-Creation-Date: 2007-07-30 22:28+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: Marathi \n" @@ -275,7 +275,7 @@ msgid "Non-DFSG-compatible Software" msgstr "" #. TRANSLATORS: %s is a country -#: ../aptsources/distro.py:343 +#: ../aptsources/distro.py:192 ../aptsources/distro.py:399 #, python-format msgid "Server for %s" msgstr "" @@ -283,11 +283,11 @@ msgstr "" #. More than one server is used. Since we don't handle this case #. in the user interface we set "custom servers" to true and #. append a list of all used servers -#: ../aptsources/distro.py:355 ../aptsources/distro.py:360 -#: ../aptsources/distro.py:374 +#: ../aptsources/distro.py:211 ../aptsources/distro.py:216 +#: ../aptsources/distro.py:230 msgid "Main server" msgstr "" -#: ../aptsources/distro.py:377 +#: ../aptsources/distro.py:233 msgid "Custom servers" msgstr "" diff --git a/po/ms.po b/po/ms.po index 16c60cde..787aabf8 100644 --- a/po/ms.po +++ b/po/ms.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: update-manager\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2007-04-07 10:08+0200\n" +"POT-Creation-Date: 2007-07-30 22:28+0200\n" "PO-Revision-Date: 2006-10-16 04:04+0000\n" "Last-Translator: azlinux \n" "Language-Team: Malay \n" @@ -276,7 +276,7 @@ msgid "Non-DFSG-compatible Software" msgstr "" #. TRANSLATORS: %s is a country -#: ../aptsources/distro.py:343 +#: ../aptsources/distro.py:192 ../aptsources/distro.py:399 #, python-format msgid "Server for %s" msgstr "" @@ -284,12 +284,12 @@ msgstr "" #. More than one server is used. Since we don't handle this case #. in the user interface we set "custom servers" to true and #. append a list of all used servers -#: ../aptsources/distro.py:355 ../aptsources/distro.py:360 -#: ../aptsources/distro.py:374 +#: ../aptsources/distro.py:211 ../aptsources/distro.py:216 +#: ../aptsources/distro.py:230 msgid "Main server" msgstr "" -#: ../aptsources/distro.py:377 +#: ../aptsources/distro.py:233 msgid "Custom servers" msgstr "" diff --git a/po/nb.po b/po/nb.po index d59ffb5d..a96f1bbf 100644 --- a/po/nb.po +++ b/po/nb.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: nb\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2007-04-07 10:08+0200\n" +"POT-Creation-Date: 2007-07-30 22:28+0200\n" "PO-Revision-Date: 2006-10-16 04:04+0000\n" "Last-Translator: Hans Petter Birkeland \n" "Language-Team: Norwegian Bokmal \n" @@ -310,7 +310,7 @@ msgid "Non-DFSG-compatible Software" msgstr "Ikke-DFSG-kompatibel programvare" #. TRANSLATORS: %s is a country -#: ../aptsources/distro.py:343 +#: ../aptsources/distro.py:192 ../aptsources/distro.py:399 #, fuzzy, python-format msgid "Server for %s" msgstr "Tjener for %s" @@ -318,13 +318,13 @@ msgstr "Tjener for %s" #. More than one server is used. Since we don't handle this case #. in the user interface we set "custom servers" to true and #. append a list of all used servers -#: ../aptsources/distro.py:355 ../aptsources/distro.py:360 -#: ../aptsources/distro.py:374 +#: ../aptsources/distro.py:211 ../aptsources/distro.py:216 +#: ../aptsources/distro.py:230 #, fuzzy msgid "Main server" msgstr "Hovedtjener" -#: ../aptsources/distro.py:377 +#: ../aptsources/distro.py:233 #, fuzzy msgid "Custom servers" msgstr "Egendefinerte tjenere" diff --git a/po/ne.po b/po/ne.po index 0ebf43a4..59f7c78d 100644 --- a/po/ne.po +++ b/po/ne.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: update-manager.HEAD\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2007-04-07 10:08+0200\n" +"POT-Creation-Date: 2007-07-30 22:28+0200\n" "PO-Revision-Date: 2006-10-16 04:13+0000\n" "Last-Translator: Jaydeep Bhusal \n" "Language-Team: Nepali \n" @@ -312,7 +312,7 @@ msgid "Non-DFSG-compatible Software" msgstr "" #. TRANSLATORS: %s is a country -#: ../aptsources/distro.py:343 +#: ../aptsources/distro.py:192 ../aptsources/distro.py:399 #, python-format msgid "Server for %s" msgstr "" @@ -320,12 +320,12 @@ msgstr "" #. More than one server is used. Since we don't handle this case #. in the user interface we set "custom servers" to true and #. append a list of all used servers -#: ../aptsources/distro.py:355 ../aptsources/distro.py:360 -#: ../aptsources/distro.py:374 +#: ../aptsources/distro.py:211 ../aptsources/distro.py:216 +#: ../aptsources/distro.py:230 msgid "Main server" msgstr "" -#: ../aptsources/distro.py:377 +#: ../aptsources/distro.py:233 msgid "Custom servers" msgstr "" diff --git a/po/nl.po b/po/nl.po index 746b1a49..f458a837 100644 --- a/po/nl.po +++ b/po/nl.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: update-manager HEAD\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2007-04-07 10:08+0200\n" +"POT-Creation-Date: 2007-07-30 22:28+0200\n" "PO-Revision-Date: 2006-10-21 13:15+0000\n" "Last-Translator: Tino Meinen \n" "Language-Team: Nederlands \n" @@ -288,7 +288,7 @@ msgid "Non-DFSG-compatible Software" msgstr "Software niet compatibel met DFSG" #. TRANSLATORS: %s is a country -#: ../aptsources/distro.py:343 +#: ../aptsources/distro.py:192 ../aptsources/distro.py:399 #, python-format msgid "Server for %s" msgstr "Server voor %s" @@ -296,12 +296,12 @@ msgstr "Server voor %s" #. More than one server is used. Since we don't handle this case #. in the user interface we set "custom servers" to true and #. append a list of all used servers -#: ../aptsources/distro.py:355 ../aptsources/distro.py:360 -#: ../aptsources/distro.py:374 +#: ../aptsources/distro.py:211 ../aptsources/distro.py:216 +#: ../aptsources/distro.py:230 msgid "Main server" msgstr "Hoofdserver" -#: ../aptsources/distro.py:377 +#: ../aptsources/distro.py:233 msgid "Custom servers" msgstr "Andere servers" diff --git a/po/nn.po b/po/nn.po index afb52661..d0ad627b 100644 --- a/po/nn.po +++ b/po/nn.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: update-manager\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2007-04-07 10:08+0200\n" +"POT-Creation-Date: 2007-07-30 22:28+0200\n" "PO-Revision-Date: 2006-10-09 15:50+0000\n" "Last-Translator: Willy André Bergstrøm \n" "Language-Team: Norwegian Nynorsk \n" @@ -275,7 +275,7 @@ msgid "Non-DFSG-compatible Software" msgstr "" #. TRANSLATORS: %s is a country -#: ../aptsources/distro.py:343 +#: ../aptsources/distro.py:192 ../aptsources/distro.py:399 #, python-format msgid "Server for %s" msgstr "" @@ -283,12 +283,12 @@ msgstr "" #. More than one server is used. Since we don't handle this case #. in the user interface we set "custom servers" to true and #. append a list of all used servers -#: ../aptsources/distro.py:355 ../aptsources/distro.py:360 -#: ../aptsources/distro.py:374 +#: ../aptsources/distro.py:211 ../aptsources/distro.py:216 +#: ../aptsources/distro.py:230 msgid "Main server" msgstr "" -#: ../aptsources/distro.py:377 +#: ../aptsources/distro.py:233 msgid "Custom servers" msgstr "" diff --git a/po/no.po b/po/no.po index b44737c7..daffe607 100644 --- a/po/no.po +++ b/po/no.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: nb\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2007-04-07 10:08+0200\n" +"POT-Creation-Date: 2007-07-30 22:28+0200\n" "PO-Revision-Date: 2005-06-08 23:10+0200\n" "Last-Translator: Terance Edward Sola \n" "Language-Team: Norwegian Bokmal \n" @@ -312,7 +312,7 @@ msgid "Non-DFSG-compatible Software" msgstr "" #. TRANSLATORS: %s is a country -#: ../aptsources/distro.py:343 +#: ../aptsources/distro.py:192 ../aptsources/distro.py:399 #, python-format msgid "Server for %s" msgstr "" @@ -320,12 +320,12 @@ msgstr "" #. More than one server is used. Since we don't handle this case #. in the user interface we set "custom servers" to true and #. append a list of all used servers -#: ../aptsources/distro.py:355 ../aptsources/distro.py:360 -#: ../aptsources/distro.py:374 +#: ../aptsources/distro.py:211 ../aptsources/distro.py:216 +#: ../aptsources/distro.py:230 msgid "Main server" msgstr "" -#: ../aptsources/distro.py:377 +#: ../aptsources/distro.py:233 msgid "Custom servers" msgstr "" diff --git a/po/oc.po b/po/oc.po index f17eba0e..9f2b3938 100644 --- a/po/oc.po +++ b/po/oc.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: update-manager\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2007-04-07 10:08+0200\n" +"POT-Creation-Date: 2007-07-30 22:28+0200\n" "PO-Revision-Date: 2006-10-18 10:01+0000\n" "Last-Translator: Yannig MARCHEGAY (Kokoyaya) \n" @@ -294,7 +294,7 @@ msgid "Non-DFSG-compatible Software" msgstr "" #. TRANSLATORS: %s is a country -#: ../aptsources/distro.py:343 +#: ../aptsources/distro.py:192 ../aptsources/distro.py:399 #, python-format msgid "Server for %s" msgstr "Servidor per %s" @@ -302,12 +302,12 @@ msgstr "Servidor per %s" #. More than one server is used. Since we don't handle this case #. in the user interface we set "custom servers" to true and #. append a list of all used servers -#: ../aptsources/distro.py:355 ../aptsources/distro.py:360 -#: ../aptsources/distro.py:374 +#: ../aptsources/distro.py:211 ../aptsources/distro.py:216 +#: ../aptsources/distro.py:230 msgid "Main server" msgstr "Servidor principal" -#: ../aptsources/distro.py:377 +#: ../aptsources/distro.py:233 msgid "Custom servers" msgstr "Servidors personalizats" diff --git a/po/pa.po b/po/pa.po index c9537d28..766049de 100644 --- a/po/pa.po +++ b/po/pa.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: pa\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2007-04-07 10:08+0200\n" +"POT-Creation-Date: 2007-07-30 22:28+0200\n" "PO-Revision-Date: 2006-10-16 04:16+0000\n" "Last-Translator: Amanpreet Singh Alam \n" "Language-Team: Punjabi \n" @@ -280,7 +280,7 @@ msgid "Non-DFSG-compatible Software" msgstr "" #. TRANSLATORS: %s is a country -#: ../aptsources/distro.py:343 +#: ../aptsources/distro.py:192 ../aptsources/distro.py:399 #, python-format msgid "Server for %s" msgstr "" @@ -288,12 +288,12 @@ msgstr "" #. More than one server is used. Since we don't handle this case #. in the user interface we set "custom servers" to true and #. append a list of all used servers -#: ../aptsources/distro.py:355 ../aptsources/distro.py:360 -#: ../aptsources/distro.py:374 +#: ../aptsources/distro.py:211 ../aptsources/distro.py:216 +#: ../aptsources/distro.py:230 msgid "Main server" msgstr "" -#: ../aptsources/distro.py:377 +#: ../aptsources/distro.py:233 msgid "Custom servers" msgstr "" diff --git a/po/pl.po b/po/pl.po index e9c561f1..45732f58 100644 --- a/po/pl.po +++ b/po/pl.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: update-manager cvs\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2007-04-07 10:08+0200\n" +"POT-Creation-Date: 2007-07-30 22:28+0200\n" "PO-Revision-Date: 2006-10-21 12:05+0000\n" "Last-Translator: Dominik Zablotny \n" "Language-Team: Polish \n" @@ -289,7 +289,7 @@ msgid "Non-DFSG-compatible Software" msgstr "Oprogramowanie niekompatybilne z DFSG." #. TRANSLATORS: %s is a country -#: ../aptsources/distro.py:343 +#: ../aptsources/distro.py:192 ../aptsources/distro.py:399 #, python-format msgid "Server for %s" msgstr "Serwer dla kraju %s" @@ -297,12 +297,12 @@ msgstr "Serwer dla kraju %s" #. More than one server is used. Since we don't handle this case #. in the user interface we set "custom servers" to true and #. append a list of all used servers -#: ../aptsources/distro.py:355 ../aptsources/distro.py:360 -#: ../aptsources/distro.py:374 +#: ../aptsources/distro.py:211 ../aptsources/distro.py:216 +#: ../aptsources/distro.py:230 msgid "Main server" msgstr "Serwer główny" -#: ../aptsources/distro.py:377 +#: ../aptsources/distro.py:233 msgid "Custom servers" msgstr "Inne serwery" diff --git a/po/ps.po b/po/ps.po index 682c9804..69a681ee 100644 --- a/po/ps.po +++ b/po/ps.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: update-manager\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2007-04-07 10:08+0200\n" +"POT-Creation-Date: 2007-07-30 22:28+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: Pushto \n" @@ -275,7 +275,7 @@ msgid "Non-DFSG-compatible Software" msgstr "" #. TRANSLATORS: %s is a country -#: ../aptsources/distro.py:343 +#: ../aptsources/distro.py:192 ../aptsources/distro.py:399 #, python-format msgid "Server for %s" msgstr "" @@ -283,11 +283,11 @@ msgstr "" #. More than one server is used. Since we don't handle this case #. in the user interface we set "custom servers" to true and #. append a list of all used servers -#: ../aptsources/distro.py:355 ../aptsources/distro.py:360 -#: ../aptsources/distro.py:374 +#: ../aptsources/distro.py:211 ../aptsources/distro.py:216 +#: ../aptsources/distro.py:230 msgid "Main server" msgstr "" -#: ../aptsources/distro.py:377 +#: ../aptsources/distro.py:233 msgid "Custom servers" msgstr "" diff --git a/po/pt.po b/po/pt.po index 3dd7d497..afaf18c3 100644 --- a/po/pt.po +++ b/po/pt.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: update-manager\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2007-04-07 10:08+0200\n" +"POT-Creation-Date: 2007-07-30 22:28+0200\n" "PO-Revision-Date: 2006-10-16 11:04+0000\n" "Last-Translator: Tiago Silva \n" "Language-Team: Ubuntu Portuguese Team \n" @@ -286,7 +286,7 @@ msgid "Non-DFSG-compatible Software" msgstr "Software compatível-DFSG" #. TRANSLATORS: %s is a country -#: ../aptsources/distro.py:343 +#: ../aptsources/distro.py:192 ../aptsources/distro.py:399 #, python-format msgid "Server for %s" msgstr "Servidor para %s" @@ -294,12 +294,12 @@ msgstr "Servidor para %s" #. More than one server is used. Since we don't handle this case #. in the user interface we set "custom servers" to true and #. append a list of all used servers -#: ../aptsources/distro.py:355 ../aptsources/distro.py:360 -#: ../aptsources/distro.py:374 +#: ../aptsources/distro.py:211 ../aptsources/distro.py:216 +#: ../aptsources/distro.py:230 msgid "Main server" msgstr "Servidor principal" -#: ../aptsources/distro.py:377 +#: ../aptsources/distro.py:233 msgid "Custom servers" msgstr "Servidores personalizados" diff --git a/po/pt_BR.po b/po/pt_BR.po index 0fbe7412..70b19cc6 100644 --- a/po/pt_BR.po +++ b/po/pt_BR.po @@ -5,7 +5,7 @@ msgid "" msgstr "" "Project-Id-Version: update-manager\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2007-04-07 10:08+0200\n" +"POT-Creation-Date: 2007-07-30 22:28+0200\n" "PO-Revision-Date: 2006-10-21 01:31+0000\n" "Last-Translator: Rafael Proença \n" "Language-Team: Ubuntu-BR \n" @@ -287,7 +287,7 @@ msgid "Non-DFSG-compatible Software" msgstr "Programas não compatíveis com a DFSG" #. TRANSLATORS: %s is a country -#: ../aptsources/distro.py:343 +#: ../aptsources/distro.py:192 ../aptsources/distro.py:399 #, python-format msgid "Server for %s" msgstr "Servidor no(a) %s" @@ -295,12 +295,12 @@ msgstr "Servidor no(a) %s" #. More than one server is used. Since we don't handle this case #. in the user interface we set "custom servers" to true and #. append a list of all used servers -#: ../aptsources/distro.py:355 ../aptsources/distro.py:360 -#: ../aptsources/distro.py:374 +#: ../aptsources/distro.py:211 ../aptsources/distro.py:216 +#: ../aptsources/distro.py:230 msgid "Main server" msgstr "Servidor principal" -#: ../aptsources/distro.py:377 +#: ../aptsources/distro.py:233 msgid "Custom servers" msgstr "Servidores personalizados" diff --git a/po/python-apt.pot b/po/python-apt.pot index 2ed35a69..e8fbfc41 100644 --- a/po/python-apt.pot +++ b/po/python-apt.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2007-04-07 10:08+0200\n" +"POT-Creation-Date: 2007-07-30 22:28+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -274,7 +274,7 @@ msgid "Non-DFSG-compatible Software" msgstr "" #. TRANSLATORS: %s is a country -#: ../aptsources/distro.py:343 +#: ../aptsources/distro.py:192 ../aptsources/distro.py:399 #, python-format msgid "Server for %s" msgstr "" @@ -282,11 +282,11 @@ msgstr "" #. More than one server is used. Since we don't handle this case #. in the user interface we set "custom servers" to true and #. append a list of all used servers -#: ../aptsources/distro.py:355 ../aptsources/distro.py:360 -#: ../aptsources/distro.py:374 +#: ../aptsources/distro.py:211 ../aptsources/distro.py:216 +#: ../aptsources/distro.py:230 msgid "Main server" msgstr "" -#: ../aptsources/distro.py:377 +#: ../aptsources/distro.py:233 msgid "Custom servers" msgstr "" diff --git a/po/qu.po b/po/qu.po index a5d77be4..3d2ef49c 100644 --- a/po/qu.po +++ b/po/qu.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: update-manager\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2007-04-07 10:08+0200\n" +"POT-Creation-Date: 2007-07-30 22:28+0200\n" "PO-Revision-Date: 2006-10-09 15:50+0000\n" "Last-Translator: Rosetta Administrators \n" "Language-Team: Quechua \n" @@ -275,7 +275,7 @@ msgid "Non-DFSG-compatible Software" msgstr "" #. TRANSLATORS: %s is a country -#: ../aptsources/distro.py:343 +#: ../aptsources/distro.py:192 ../aptsources/distro.py:399 #, python-format msgid "Server for %s" msgstr "" @@ -283,12 +283,12 @@ msgstr "" #. More than one server is used. Since we don't handle this case #. in the user interface we set "custom servers" to true and #. append a list of all used servers -#: ../aptsources/distro.py:355 ../aptsources/distro.py:360 -#: ../aptsources/distro.py:374 +#: ../aptsources/distro.py:211 ../aptsources/distro.py:216 +#: ../aptsources/distro.py:230 msgid "Main server" msgstr "" -#: ../aptsources/distro.py:377 +#: ../aptsources/distro.py:233 msgid "Custom servers" msgstr "" diff --git a/po/ro.po b/po/ro.po index 4f40bea7..57ddf8b9 100644 --- a/po/ro.po +++ b/po/ro.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: update-manager\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2007-04-07 10:08+0200\n" +"POT-Creation-Date: 2007-07-30 22:28+0200\n" "PO-Revision-Date: 2006-10-16 04:13+0000\n" "Last-Translator: Sami POTIRCA \n" "Language-Team: Romanian \n" @@ -291,7 +291,7 @@ msgid "Non-DFSG-compatible Software" msgstr "Software incompatibil DFSG" #. TRANSLATORS: %s is a country -#: ../aptsources/distro.py:343 +#: ../aptsources/distro.py:192 ../aptsources/distro.py:399 #, python-format msgid "Server for %s" msgstr "Server pentru %s" @@ -299,12 +299,12 @@ msgstr "Server pentru %s" #. More than one server is used. Since we don't handle this case #. in the user interface we set "custom servers" to true and #. append a list of all used servers -#: ../aptsources/distro.py:355 ../aptsources/distro.py:360 -#: ../aptsources/distro.py:374 +#: ../aptsources/distro.py:211 ../aptsources/distro.py:216 +#: ../aptsources/distro.py:230 msgid "Main server" msgstr "Server principal" -#: ../aptsources/distro.py:377 +#: ../aptsources/distro.py:233 msgid "Custom servers" msgstr "Servere preferenţiale" diff --git a/po/ru.po b/po/ru.po index 5c14cc98..408a7e36 100644 --- a/po/ru.po +++ b/po/ru.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: update-manager\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2007-04-07 10:08+0200\n" +"POT-Creation-Date: 2007-07-30 22:28+0200\n" "PO-Revision-Date: 2006-10-18 09:11+0000\n" "Last-Translator: Igor Zubarev \n" "Language-Team: Russian \n" @@ -289,7 +289,7 @@ msgid "Non-DFSG-compatible Software" msgstr "Не-DFSG-совместимое ПО" #. TRANSLATORS: %s is a country -#: ../aptsources/distro.py:343 +#: ../aptsources/distro.py:192 ../aptsources/distro.py:399 #, python-format msgid "Server for %s" msgstr "Сервер %s" @@ -297,12 +297,12 @@ msgstr "Сервер %s" #. More than one server is used. Since we don't handle this case #. in the user interface we set "custom servers" to true and #. append a list of all used servers -#: ../aptsources/distro.py:355 ../aptsources/distro.py:360 -#: ../aptsources/distro.py:374 +#: ../aptsources/distro.py:211 ../aptsources/distro.py:216 +#: ../aptsources/distro.py:230 msgid "Main server" msgstr "Основной сервер" -#: ../aptsources/distro.py:377 +#: ../aptsources/distro.py:233 msgid "Custom servers" msgstr "Свои сервера" diff --git a/po/rw.po b/po/rw.po index a2a3e80e..64a456ef 100644 --- a/po/rw.po +++ b/po/rw.po @@ -15,7 +15,7 @@ msgid "" msgstr "" "Project-Id-Version: update-manager HEAD\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2007-04-07 10:08+0200\n" +"POT-Creation-Date: 2007-07-30 22:28+0200\n" "PO-Revision-Date: 2006-10-16 04:17+0000\n" "Last-Translator: Steve Murphy \n" "Language-Team: Kinyarwanda \n" @@ -312,7 +312,7 @@ msgid "Non-DFSG-compatible Software" msgstr "" #. TRANSLATORS: %s is a country -#: ../aptsources/distro.py:343 +#: ../aptsources/distro.py:192 ../aptsources/distro.py:399 #, python-format msgid "Server for %s" msgstr "" @@ -320,12 +320,12 @@ msgstr "" #. More than one server is used. Since we don't handle this case #. in the user interface we set "custom servers" to true and #. append a list of all used servers -#: ../aptsources/distro.py:355 ../aptsources/distro.py:360 -#: ../aptsources/distro.py:374 +#: ../aptsources/distro.py:211 ../aptsources/distro.py:216 +#: ../aptsources/distro.py:230 msgid "Main server" msgstr "" -#: ../aptsources/distro.py:377 +#: ../aptsources/distro.py:233 msgid "Custom servers" msgstr "" diff --git a/po/sk.po b/po/sk.po index b8c4fcec..cc679d98 100644 --- a/po/sk.po +++ b/po/sk.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: update-manager\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2007-04-07 10:08+0200\n" +"POT-Creation-Date: 2007-07-30 22:28+0200\n" "PO-Revision-Date: 2006-10-16 04:17+0000\n" "Last-Translator: Peter Chabada \n" "Language-Team: Slovak \n" @@ -308,7 +308,7 @@ msgid "Non-DFSG-compatible Software" msgstr "Softvér nekompatibilný s DFSG" #. TRANSLATORS: %s is a country -#: ../aptsources/distro.py:343 +#: ../aptsources/distro.py:192 ../aptsources/distro.py:399 #, python-format msgid "Server for %s" msgstr "Server pre %s" @@ -316,13 +316,13 @@ msgstr "Server pre %s" #. More than one server is used. Since we don't handle this case #. in the user interface we set "custom servers" to true and #. append a list of all used servers -#: ../aptsources/distro.py:355 ../aptsources/distro.py:360 -#: ../aptsources/distro.py:374 +#: ../aptsources/distro.py:211 ../aptsources/distro.py:216 +#: ../aptsources/distro.py:230 #, fuzzy msgid "Main server" msgstr "Najbližší server" -#: ../aptsources/distro.py:377 +#: ../aptsources/distro.py:233 #, fuzzy msgid "Custom servers" msgstr "Najbližší server" diff --git a/po/sl.po b/po/sl.po index c349c667..62865651 100644 --- a/po/sl.po +++ b/po/sl.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: update-manager\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2007-04-07 10:08+0200\n" +"POT-Creation-Date: 2007-07-30 22:28+0200\n" "PO-Revision-Date: 2006-10-16 04:06+0000\n" "Last-Translator: Tadej \n" "Language-Team: Slovenian \n" @@ -276,7 +276,7 @@ msgid "Non-DFSG-compatible Software" msgstr "" #. TRANSLATORS: %s is a country -#: ../aptsources/distro.py:343 +#: ../aptsources/distro.py:192 ../aptsources/distro.py:399 #, python-format msgid "Server for %s" msgstr "" @@ -284,12 +284,12 @@ msgstr "" #. More than one server is used. Since we don't handle this case #. in the user interface we set "custom servers" to true and #. append a list of all used servers -#: ../aptsources/distro.py:355 ../aptsources/distro.py:360 -#: ../aptsources/distro.py:374 +#: ../aptsources/distro.py:211 ../aptsources/distro.py:216 +#: ../aptsources/distro.py:230 msgid "Main server" msgstr "" -#: ../aptsources/distro.py:377 +#: ../aptsources/distro.py:233 msgid "Custom servers" msgstr "" diff --git a/po/sq.po b/po/sq.po index 3c06e017..cc975b1d 100644 --- a/po/sq.po +++ b/po/sq.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: update-manager\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2007-04-07 10:08+0200\n" +"POT-Creation-Date: 2007-07-30 22:28+0200\n" "PO-Revision-Date: 2006-10-09 15:50+0000\n" "Last-Translator: Alejdin Tirolli \n" "Language-Team: Albanian \n" @@ -277,7 +277,7 @@ msgid "Non-DFSG-compatible Software" msgstr "" #. TRANSLATORS: %s is a country -#: ../aptsources/distro.py:343 +#: ../aptsources/distro.py:192 ../aptsources/distro.py:399 #, python-format msgid "Server for %s" msgstr "Serveri për %s" @@ -285,13 +285,13 @@ msgstr "Serveri për %s" #. More than one server is used. Since we don't handle this case #. in the user interface we set "custom servers" to true and #. append a list of all used servers -#: ../aptsources/distro.py:355 ../aptsources/distro.py:360 -#: ../aptsources/distro.py:374 +#: ../aptsources/distro.py:211 ../aptsources/distro.py:216 +#: ../aptsources/distro.py:230 #, fuzzy msgid "Main server" msgstr "Serveri më i afërt" -#: ../aptsources/distro.py:377 +#: ../aptsources/distro.py:233 #, fuzzy msgid "Custom servers" msgstr "Serveri më i afërt" diff --git a/po/sr.po b/po/sr.po index 4ede031f..461de261 100644 --- a/po/sr.po +++ b/po/sr.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: update-manager\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2007-04-07 10:08+0200\n" +"POT-Creation-Date: 2007-07-30 22:28+0200\n" "PO-Revision-Date: 2006-10-16 04:17+0000\n" "Last-Translator: Vladimir Samardzic \n" "Language-Team: Serbian \n" @@ -276,7 +276,7 @@ msgid "Non-DFSG-compatible Software" msgstr "" #. TRANSLATORS: %s is a country -#: ../aptsources/distro.py:343 +#: ../aptsources/distro.py:192 ../aptsources/distro.py:399 #, python-format msgid "Server for %s" msgstr "" @@ -284,12 +284,12 @@ msgstr "" #. More than one server is used. Since we don't handle this case #. in the user interface we set "custom servers" to true and #. append a list of all used servers -#: ../aptsources/distro.py:355 ../aptsources/distro.py:360 -#: ../aptsources/distro.py:374 +#: ../aptsources/distro.py:211 ../aptsources/distro.py:216 +#: ../aptsources/distro.py:230 msgid "Main server" msgstr "" -#: ../aptsources/distro.py:377 +#: ../aptsources/distro.py:233 msgid "Custom servers" msgstr "" diff --git a/po/sv.po b/po/sv.po index 545e5ba2..570ae6ea 100644 --- a/po/sv.po +++ b/po/sv.po @@ -9,7 +9,7 @@ msgid "" msgstr "" "Project-Id-Version: update-manager\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2007-04-07 10:08+0200\n" +"POT-Creation-Date: 2007-07-30 22:28+0200\n" "PO-Revision-Date: 2006-10-16 05:06+0000\n" "Last-Translator: Daniel Nylander \n" "Language-Team: Swedish \n" @@ -289,7 +289,7 @@ msgid "Non-DFSG-compatible Software" msgstr "Icke-DFSG-kompatibel programvara" #. TRANSLATORS: %s is a country -#: ../aptsources/distro.py:343 +#: ../aptsources/distro.py:192 ../aptsources/distro.py:399 #, python-format msgid "Server for %s" msgstr "Server för %s" @@ -297,12 +297,12 @@ msgstr "Server för %s" #. More than one server is used. Since we don't handle this case #. in the user interface we set "custom servers" to true and #. append a list of all used servers -#: ../aptsources/distro.py:355 ../aptsources/distro.py:360 -#: ../aptsources/distro.py:374 +#: ../aptsources/distro.py:211 ../aptsources/distro.py:216 +#: ../aptsources/distro.py:230 msgid "Main server" msgstr "Huvudserver" -#: ../aptsources/distro.py:377 +#: ../aptsources/distro.py:233 msgid "Custom servers" msgstr "Anpassade servrar" diff --git a/po/ta.po b/po/ta.po index d96ecb02..07a9220e 100644 --- a/po/ta.po +++ b/po/ta.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: update-manager\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2007-04-07 10:08+0200\n" +"POT-Creation-Date: 2007-07-30 22:28+0200\n" "PO-Revision-Date: 2006-10-16 04:06+0000\n" "Last-Translator: Raghavan \n" "Language-Team: Tamil \n" @@ -275,7 +275,7 @@ msgid "Non-DFSG-compatible Software" msgstr "" #. TRANSLATORS: %s is a country -#: ../aptsources/distro.py:343 +#: ../aptsources/distro.py:192 ../aptsources/distro.py:399 #, python-format msgid "Server for %s" msgstr "" @@ -283,12 +283,12 @@ msgstr "" #. More than one server is used. Since we don't handle this case #. in the user interface we set "custom servers" to true and #. append a list of all used servers -#: ../aptsources/distro.py:355 ../aptsources/distro.py:360 -#: ../aptsources/distro.py:374 +#: ../aptsources/distro.py:211 ../aptsources/distro.py:216 +#: ../aptsources/distro.py:230 msgid "Main server" msgstr "" -#: ../aptsources/distro.py:377 +#: ../aptsources/distro.py:233 msgid "Custom servers" msgstr "" diff --git a/po/th.po b/po/th.po index 4d780be0..af6bd96b 100644 --- a/po/th.po +++ b/po/th.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: update-manager\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2007-04-07 10:08+0200\n" +"POT-Creation-Date: 2007-07-30 22:28+0200\n" "PO-Revision-Date: 2006-10-16 04:17+0000\n" "Last-Translator: Roys Hengwatanakul \n" "Language-Team: Thai \n" @@ -287,7 +287,7 @@ msgid "Non-DFSG-compatible Software" msgstr "ไม่เข้ากับ DFSG ซอฟแวร์" #. TRANSLATORS: %s is a country -#: ../aptsources/distro.py:343 +#: ../aptsources/distro.py:192 ../aptsources/distro.py:399 #, python-format msgid "Server for %s" msgstr "เซิร์ฟเวอร์สำหรับประเทศ %s" @@ -295,12 +295,12 @@ msgstr "เซิร์ฟเวอร์สำหรับประเทศ %s #. More than one server is used. Since we don't handle this case #. in the user interface we set "custom servers" to true and #. append a list of all used servers -#: ../aptsources/distro.py:355 ../aptsources/distro.py:360 -#: ../aptsources/distro.py:374 +#: ../aptsources/distro.py:211 ../aptsources/distro.py:216 +#: ../aptsources/distro.py:230 msgid "Main server" msgstr "เซิร์ฟเวอร์หลัก" -#: ../aptsources/distro.py:377 +#: ../aptsources/distro.py:233 msgid "Custom servers" msgstr "เซิร์ฟเวอร์ที่กำหนดเอาเอง" diff --git a/po/tl.po b/po/tl.po index c01bb6c9..b49987cc 100644 --- a/po/tl.po +++ b/po/tl.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: update-manager\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2007-04-07 10:08+0200\n" +"POT-Creation-Date: 2007-07-30 22:28+0200\n" "PO-Revision-Date: 2006-09-16 15:44+0000\n" "Last-Translator: Ariel S. Betan \n" "Language-Team: Tagalog \n" @@ -285,7 +285,7 @@ msgid "Non-DFSG-compatible Software" msgstr "Software na Di-DFSG-compatible" #. TRANSLATORS: %s is a country -#: ../aptsources/distro.py:343 +#: ../aptsources/distro.py:192 ../aptsources/distro.py:399 #, python-format msgid "Server for %s" msgstr "" @@ -293,12 +293,12 @@ msgstr "" #. More than one server is used. Since we don't handle this case #. in the user interface we set "custom servers" to true and #. append a list of all used servers -#: ../aptsources/distro.py:355 ../aptsources/distro.py:360 -#: ../aptsources/distro.py:374 +#: ../aptsources/distro.py:211 ../aptsources/distro.py:216 +#: ../aptsources/distro.py:230 msgid "Main server" msgstr "" -#: ../aptsources/distro.py:377 +#: ../aptsources/distro.py:233 msgid "Custom servers" msgstr "" diff --git a/po/tr.po b/po/tr.po index b2314cd2..22f74965 100644 --- a/po/tr.po +++ b/po/tr.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: update-manager\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2007-04-07 10:08+0200\n" +"POT-Creation-Date: 2007-07-30 22:28+0200\n" "PO-Revision-Date: 2006-10-21 20:58+0000\n" "Last-Translator: Atilla Karaman \n" "Language-Team: Turkish \n" @@ -288,7 +288,7 @@ msgid "Non-DFSG-compatible Software" msgstr "DFSG Uyumlu Olmayan Yazılım" #. TRANSLATORS: %s is a country -#: ../aptsources/distro.py:343 +#: ../aptsources/distro.py:192 ../aptsources/distro.py:399 #, python-format msgid "Server for %s" msgstr "%s sunucusu" @@ -296,12 +296,12 @@ msgstr "%s sunucusu" #. More than one server is used. Since we don't handle this case #. in the user interface we set "custom servers" to true and #. append a list of all used servers -#: ../aptsources/distro.py:355 ../aptsources/distro.py:360 -#: ../aptsources/distro.py:374 +#: ../aptsources/distro.py:211 ../aptsources/distro.py:216 +#: ../aptsources/distro.py:230 msgid "Main server" msgstr "Ana sunucu" -#: ../aptsources/distro.py:377 +#: ../aptsources/distro.py:233 msgid "Custom servers" msgstr "Özel sunucular" diff --git a/po/uk.po b/po/uk.po index 4fc9d03b..93f1db6e 100644 --- a/po/uk.po +++ b/po/uk.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: uk(5)\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2007-04-07 10:08+0200\n" +"POT-Creation-Date: 2007-07-30 22:28+0200\n" "PO-Revision-Date: 2006-10-16 04:15+0000\n" "Last-Translator: Vadim Abramchuck \n" "Language-Team: Ukrainian \n" @@ -285,7 +285,7 @@ msgid "Non-DFSG-compatible Software" msgstr "" #. TRANSLATORS: %s is a country -#: ../aptsources/distro.py:343 +#: ../aptsources/distro.py:192 ../aptsources/distro.py:399 #, python-format msgid "Server for %s" msgstr "" @@ -293,12 +293,12 @@ msgstr "" #. More than one server is used. Since we don't handle this case #. in the user interface we set "custom servers" to true and #. append a list of all used servers -#: ../aptsources/distro.py:355 ../aptsources/distro.py:360 -#: ../aptsources/distro.py:374 +#: ../aptsources/distro.py:211 ../aptsources/distro.py:216 +#: ../aptsources/distro.py:230 msgid "Main server" msgstr "" -#: ../aptsources/distro.py:377 +#: ../aptsources/distro.py:233 msgid "Custom servers" msgstr "" diff --git a/po/ur.po b/po/ur.po index 19c870d8..8754bff0 100644 --- a/po/ur.po +++ b/po/ur.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: update-manager\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2007-04-07 10:08+0200\n" +"POT-Creation-Date: 2007-07-30 22:28+0200\n" "PO-Revision-Date: 2006-05-19 02:46+0000\n" "Last-Translator: Hameed محمد حمید \n" "Language-Team: Urdu \n" @@ -275,7 +275,7 @@ msgid "Non-DFSG-compatible Software" msgstr "" #. TRANSLATORS: %s is a country -#: ../aptsources/distro.py:343 +#: ../aptsources/distro.py:192 ../aptsources/distro.py:399 #, python-format msgid "Server for %s" msgstr "" @@ -283,12 +283,12 @@ msgstr "" #. More than one server is used. Since we don't handle this case #. in the user interface we set "custom servers" to true and #. append a list of all used servers -#: ../aptsources/distro.py:355 ../aptsources/distro.py:360 -#: ../aptsources/distro.py:374 +#: ../aptsources/distro.py:211 ../aptsources/distro.py:216 +#: ../aptsources/distro.py:230 msgid "Main server" msgstr "" -#: ../aptsources/distro.py:377 +#: ../aptsources/distro.py:233 msgid "Custom servers" msgstr "" diff --git a/po/urd.po b/po/urd.po index d8700ba3..b8c487b8 100644 --- a/po/urd.po +++ b/po/urd.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: update-manager\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2007-04-07 10:08+0200\n" +"POT-Creation-Date: 2007-07-30 22:28+0200\n" "PO-Revision-Date: 2006-05-07 01:53+0000\n" "Last-Translator: Hameed محمد حمید \n" "Language-Team: Urdu \n" @@ -275,7 +275,7 @@ msgid "Non-DFSG-compatible Software" msgstr "" #. TRANSLATORS: %s is a country -#: ../aptsources/distro.py:343 +#: ../aptsources/distro.py:192 ../aptsources/distro.py:399 #, python-format msgid "Server for %s" msgstr "" @@ -283,12 +283,12 @@ msgstr "" #. More than one server is used. Since we don't handle this case #. in the user interface we set "custom servers" to true and #. append a list of all used servers -#: ../aptsources/distro.py:355 ../aptsources/distro.py:360 -#: ../aptsources/distro.py:374 +#: ../aptsources/distro.py:211 ../aptsources/distro.py:216 +#: ../aptsources/distro.py:230 msgid "Main server" msgstr "" -#: ../aptsources/distro.py:377 +#: ../aptsources/distro.py:233 msgid "Custom servers" msgstr "" diff --git a/po/vi.po b/po/vi.po index 55d643fa..a03be4cd 100644 --- a/po/vi.po +++ b/po/vi.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: update-manager Gnome HEAD\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2007-04-07 10:08+0200\n" +"POT-Creation-Date: 2007-07-30 22:28+0200\n" "PO-Revision-Date: 2006-10-16 04:17+0000\n" "Last-Translator: Tran The Trung \n" "Language-Team: Vietnamese \n" @@ -310,7 +310,7 @@ msgid "Non-DFSG-compatible Software" msgstr "" #. TRANSLATORS: %s is a country -#: ../aptsources/distro.py:343 +#: ../aptsources/distro.py:192 ../aptsources/distro.py:399 #, python-format msgid "Server for %s" msgstr "" @@ -318,12 +318,12 @@ msgstr "" #. More than one server is used. Since we don't handle this case #. in the user interface we set "custom servers" to true and #. append a list of all used servers -#: ../aptsources/distro.py:355 ../aptsources/distro.py:360 -#: ../aptsources/distro.py:374 +#: ../aptsources/distro.py:211 ../aptsources/distro.py:216 +#: ../aptsources/distro.py:230 msgid "Main server" msgstr "" -#: ../aptsources/distro.py:377 +#: ../aptsources/distro.py:233 msgid "Custom servers" msgstr "" diff --git a/po/xh.po b/po/xh.po index d7879b33..b3e5cc74 100644 --- a/po/xh.po +++ b/po/xh.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: update-notifier\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2007-04-07 10:08+0200\n" +"POT-Creation-Date: 2007-07-30 22:28+0200\n" "PO-Revision-Date: 2006-10-05 20:45+0000\n" "Last-Translator: Canonical Ltd \n" "Language-Team: Xhosa \n" @@ -280,7 +280,7 @@ msgid "Non-DFSG-compatible Software" msgstr "" #. TRANSLATORS: %s is a country -#: ../aptsources/distro.py:343 +#: ../aptsources/distro.py:192 ../aptsources/distro.py:399 #, python-format msgid "Server for %s" msgstr "" @@ -288,12 +288,12 @@ msgstr "" #. More than one server is used. Since we don't handle this case #. in the user interface we set "custom servers" to true and #. append a list of all used servers -#: ../aptsources/distro.py:355 ../aptsources/distro.py:360 -#: ../aptsources/distro.py:374 +#: ../aptsources/distro.py:211 ../aptsources/distro.py:216 +#: ../aptsources/distro.py:230 msgid "Main server" msgstr "" -#: ../aptsources/distro.py:377 +#: ../aptsources/distro.py:233 msgid "Custom servers" msgstr "" diff --git a/po/zh_CN.po b/po/zh_CN.po index 9709b18a..af823ea3 100644 --- a/po/zh_CN.po +++ b/po/zh_CN.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: update-manager HEAD\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2007-04-07 10:08+0200\n" +"POT-Creation-Date: 2007-07-30 22:28+0200\n" "PO-Revision-Date: 2006-10-16 04:00+0000\n" "Last-Translator: catinsnow \n" "Language-Team: zh_CN \n" @@ -288,7 +288,7 @@ msgid "Non-DFSG-compatible Software" msgstr "非DFSG兼容软件" #. TRANSLATORS: %s is a country -#: ../aptsources/distro.py:343 +#: ../aptsources/distro.py:192 ../aptsources/distro.py:399 #, python-format msgid "Server for %s" msgstr "%s 的服务器" @@ -296,12 +296,12 @@ msgstr "%s 的服务器" #. More than one server is used. Since we don't handle this case #. in the user interface we set "custom servers" to true and #. append a list of all used servers -#: ../aptsources/distro.py:355 ../aptsources/distro.py:360 -#: ../aptsources/distro.py:374 +#: ../aptsources/distro.py:211 ../aptsources/distro.py:216 +#: ../aptsources/distro.py:230 msgid "Main server" msgstr "主服务器" -#: ../aptsources/distro.py:377 +#: ../aptsources/distro.py:233 msgid "Custom servers" msgstr "自定义服务器" diff --git a/po/zh_HK.po b/po/zh_HK.po index 729d1af9..6571d85d 100644 --- a/po/zh_HK.po +++ b/po/zh_HK.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: update-manager 0.42.2\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2007-04-07 10:08+0200\n" +"POT-Creation-Date: 2007-07-30 22:28+0200\n" "PO-Revision-Date: 2006-10-16 04:15+0000\n" "Last-Translator: Abel Cheung \n" "Language-Team: Chinese (Hong Kong) \n" @@ -283,7 +283,7 @@ msgid "Non-DFSG-compatible Software" msgstr "和 DFSG 不相容的軟件" #. TRANSLATORS: %s is a country -#: ../aptsources/distro.py:343 +#: ../aptsources/distro.py:192 ../aptsources/distro.py:399 #, python-format msgid "Server for %s" msgstr "" @@ -291,12 +291,12 @@ msgstr "" #. More than one server is used. Since we don't handle this case #. in the user interface we set "custom servers" to true and #. append a list of all used servers -#: ../aptsources/distro.py:355 ../aptsources/distro.py:360 -#: ../aptsources/distro.py:374 +#: ../aptsources/distro.py:211 ../aptsources/distro.py:216 +#: ../aptsources/distro.py:230 msgid "Main server" msgstr "" -#: ../aptsources/distro.py:377 +#: ../aptsources/distro.py:233 msgid "Custom servers" msgstr "" diff --git a/po/zh_TW.po b/po/zh_TW.po index 51931b72..e5ac71de 100644 --- a/po/zh_TW.po +++ b/po/zh_TW.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: update-manager 0.41.1\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2007-04-07 10:08+0200\n" +"POT-Creation-Date: 2007-07-30 22:28+0200\n" "PO-Revision-Date: 2006-10-16 04:15+0000\n" "Last-Translator: SOC Ho \n" "Language-Team: Chinese (Taiwan) \n" @@ -281,7 +281,7 @@ msgid "Non-DFSG-compatible Software" msgstr "不符合 DFSG 的軟體" #. TRANSLATORS: %s is a country -#: ../aptsources/distro.py:343 +#: ../aptsources/distro.py:192 ../aptsources/distro.py:399 #, python-format msgid "Server for %s" msgstr "位於%s的伺服器" @@ -289,12 +289,12 @@ msgstr "位於%s的伺服器" #. More than one server is used. Since we don't handle this case #. in the user interface we set "custom servers" to true and #. append a list of all used servers -#: ../aptsources/distro.py:355 ../aptsources/distro.py:360 -#: ../aptsources/distro.py:374 +#: ../aptsources/distro.py:211 ../aptsources/distro.py:216 +#: ../aptsources/distro.py:230 msgid "Main server" msgstr "主要伺服器" -#: ../aptsources/distro.py:377 +#: ../aptsources/distro.py:233 msgid "Custom servers" msgstr "個人伺服器" diff --git a/python/apt_instmodule.cc b/python/apt_instmodule.cc index d672a40a..43d5e7f7 100644 --- a/python/apt_instmodule.cc +++ b/python/apt_instmodule.cc @@ -102,15 +102,44 @@ static PyObject *debExtractArchive(PyObject *Self,PyObject *Args) return HandleErrors(Py_BuildValue("b",res)); } /*}}}*/ +// arFindMember - Find member in AR archive /*{{{*/ +// --------------------------------------------------------------------- +static char *doc_arCheckMember = +"arCheckMember(File, membername) -> Bool\n"; +static PyObject *arCheckMember(PyObject *Self,PyObject *Args) +{ + char *Member = NULL; + bool res = false; + PyObject *File; + if (PyArg_ParseTuple(Args,"O!s",&PyFile_Type,&File,&Member) == 0) + return 0; + + // Open the file and associate the .deb + FileFd Fd(fileno(PyFile_AsFile(File)),false); + ARArchive AR(Fd); + if (_error->PendingError() == true) + return HandleErrors(Py_BuildValue("b",res)); + + if(AR.FindMember(Member) != 0) + res = true; + + return HandleErrors(Py_BuildValue("b",res)); +} + /*}}}*/ // initapt_inst - Core Module Initialization /*{{{*/ // --------------------------------------------------------------------- /* */ static PyMethodDef methods[] = { - // Stuff + // access to ar files + {"arCheckMember", arCheckMember, METH_VARARGS, doc_arCheckMember}, + + // access to deb files {"debExtractControl",debExtractControl,METH_VARARGS,doc_debExtractControl}, {"debExtractArchive",debExtractArchive,METH_VARARGS,doc_debExtractArchive}, + + // access to tar streams {"tarExtract",tarExtract,METH_VARARGS,doc_tarExtract}, {"debExtract",debExtract,METH_VARARGS,doc_debExtract}, -- cgit v1.2.3