diff options
| -rw-r--r-- | apt/debfile.py | 58 | ||||
| -rw-r--r-- | debian/changelog | 12 | ||||
| -rw-r--r-- | po/am.po | 10 | ||||
| -rw-r--r-- | po/ar.po | 10 | ||||
| -rw-r--r-- | po/be.po | 10 | ||||
| -rw-r--r-- | po/bg.po | 10 | ||||
| -rw-r--r-- | po/bn.po | 10 | ||||
| -rw-r--r-- | po/br.po | 10 | ||||
| -rw-r--r-- | po/ca.po | 10 | ||||
| -rw-r--r-- | po/cs.po | 10 | ||||
| -rw-r--r-- | po/csb.po | 10 | ||||
| -rw-r--r-- | po/da.po | 10 | ||||
| -rw-r--r-- | po/de.po | 12 | ||||
| -rw-r--r-- | po/el.po | 10 | ||||
| -rw-r--r-- | po/en_AU.po | 10 | ||||
| -rw-r--r-- | po/en_CA.po | 10 | ||||
| -rw-r--r-- | po/en_GB.po | 10 | ||||
| -rw-r--r-- | po/eo.po | 10 | ||||
| -rw-r--r-- | po/es.po | 10 | ||||
| -rw-r--r-- | po/et.po | 10 | ||||
| -rw-r--r-- | po/eu.po | 10 | ||||
| -rw-r--r-- | po/fa.po | 10 | ||||
| -rw-r--r-- | po/fi.po | 10 | ||||
| -rw-r--r-- | po/fr.po | 10 | ||||
| -rw-r--r-- | po/fur.po | 10 | ||||
| -rw-r--r-- | po/gl.po | 10 | ||||
| -rw-r--r-- | po/he.po | 10 | ||||
| -rw-r--r-- | po/hi.po | 10 | ||||
| -rw-r--r-- | po/hr.po | 10 | ||||
| -rw-r--r-- | po/hu.po | 10 | ||||
| -rw-r--r-- | po/id.po | 10 | ||||
| -rw-r--r-- | po/it.po | 10 | ||||
| -rw-r--r-- | po/ja.po | 10 | ||||
| -rw-r--r-- | po/ka.po | 10 | ||||
| -rw-r--r-- | po/ko.po | 10 | ||||
| -rw-r--r-- | po/ku.po | 10 | ||||
| -rw-r--r-- | po/lt.po | 10 | ||||
| -rw-r--r-- | po/lv.po | 10 | ||||
| -rw-r--r-- | po/mk.po | 10 | ||||
| -rw-r--r-- | po/mr.po | 10 | ||||
| -rw-r--r-- | po/ms.po | 10 | ||||
| -rw-r--r-- | po/nb.po | 10 | ||||
| -rw-r--r-- | po/ne.po | 10 | ||||
| -rw-r--r-- | po/nl.po | 10 | ||||
| -rw-r--r-- | po/nn.po | 10 | ||||
| -rw-r--r-- | po/no.po | 10 | ||||
| -rw-r--r-- | po/oc.po | 10 | ||||
| -rw-r--r-- | po/pa.po | 10 | ||||
| -rw-r--r-- | po/pl.po | 10 | ||||
| -rw-r--r-- | po/ps.po | 10 | ||||
| -rw-r--r-- | po/pt.po | 10 | ||||
| -rw-r--r-- | po/pt_BR.po | 10 | ||||
| -rw-r--r-- | po/python-apt.pot | 10 | ||||
| -rw-r--r-- | po/qu.po | 10 | ||||
| -rw-r--r-- | po/ro.po | 10 | ||||
| -rw-r--r-- | po/ru.po | 10 | ||||
| -rw-r--r-- | po/rw.po | 10 | ||||
| -rw-r--r-- | po/sk.po | 10 | ||||
| -rw-r--r-- | po/sl.po | 10 | ||||
| -rw-r--r-- | po/sq.po | 10 | ||||
| -rw-r--r-- | po/sr.po | 10 | ||||
| -rw-r--r-- | po/sv.po | 10 | ||||
| -rw-r--r-- | po/ta.po | 10 | ||||
| -rw-r--r-- | po/th.po | 10 | ||||
| -rw-r--r-- | po/tl.po | 10 | ||||
| -rw-r--r-- | po/tr.po | 10 | ||||
| -rw-r--r-- | po/uk.po | 10 | ||||
| -rw-r--r-- | po/ur.po | 10 | ||||
| -rw-r--r-- | po/urd.po | 10 | ||||
| -rw-r--r-- | po/vi.po | 10 | ||||
| -rw-r--r-- | po/xh.po | 10 | ||||
| -rw-r--r-- | po/zh_CN.po | 10 | ||||
| -rw-r--r-- | po/zh_HK.po | 10 | ||||
| -rw-r--r-- | po/zh_TW.po | 10 | ||||
| -rw-r--r-- | python/apt_instmodule.cc | 31 |
75 files changed, 460 insertions, 363 deletions
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 <michael.vogt@ubuntu.com> 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 <michael.vogt@ubuntu.com> Fri, 27 Jul 2007 16:57:28 +0200 python-apt (0.7.2) unstable; urgency=low @@ -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 <adbaru@gmail.com>\n" "Language-Team: Amharic <am@li.org>\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 "" @@ -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 <kirk.lock@gmail.com>\n" "Language-Team: Arabic <ar@li.org>\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 "" @@ -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 <nyakhaychyk@gmail.com>\n" "Language-Team: Belarusian <be@li.org>\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 "" @@ -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 <nikola.kasabov@gmail.com>\n" "Language-Team: Bulgarian <dict@fsa-bg.org>\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 "" @@ -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 <suzan@bengalinux.org>\n" "Language-Team: Bengali <bn@li.org>\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 "" @@ -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 <oublieuse@gmail.com>\n" "Language-Team: Breton <br@li.org>\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 "" @@ -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 <irazuzta@gmail.com>\n" "Language-Team: Catalan <tradgnome@softcatala.org>\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" @@ -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 <Dominik.Sauer@gmail.com>\n" "Language-Team: Czech <cs@li.org>\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" @@ -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 <ostrowski.michal@gmail.com>\n" "Language-Team: Kashubian <csb@li.org>\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ë" @@ -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 <lbm@fatalerror.dk>\n" "Language-Team: Danish <da@li.org>\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" @@ -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 <ubuntu@glatzor.de>\n" "Language-Team: German GNOME Translations <gnome-de@gnome.org>\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" @@ -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 <pkst@gmx.net>\n" "Language-Team: Greek <team@gnome.gr>\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 <david@davidsatchell.net>\n" "Language-Team: English (Australia) <en_AU@li.org>\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 <adamw@gnome.org>\n" "Language-Team: Canadian English <adamw@gnome.org>\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 <thepizzaking@gmail.com>\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" @@ -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 <herzo2@gmail.com>\n" "Language-Team: Esperanto <eo@li.org>\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 "" @@ -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 <ricardo@iesdonana.org>\n" "Language-Team: Spanish <traductores@gnome.org>\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" @@ -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 <margus723@hot.ee>\n" "Language-Team: Estonian <et@li.org>\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 "" @@ -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 <xezpeleta@mendikute.com>\n" "Language-Team: Basque <eu@li.org>\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 "" @@ -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 <pedram.ganjeh-hadidi@students.jku." "at>\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 "" @@ -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 <timo.jyrinki@iki.fi>\n" "Language-Team: Finnish <ubuntu-fi@lists.ubuntu.com>\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" @@ -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 <etienne.malandain@free.fr>\n" "Language-Team: French <gnomefr@traduc.org>\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" @@ -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 <marcuz@linux.it>\n" "Language-Team: Friulian <fur@li.org>\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 "" @@ -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 <xil@det.uvigo.es>\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" @@ -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 <yanivabir@gmail.com>\n" "Language-Team: Hebrew <he@li.org>\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 "השרת הקרוב ביותר" @@ -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 <gauravtechie@gmail.com>\n" "Language-Team: Hindi <hi@li.org>\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 "" @@ -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ć <ivoks@grad.hr>\n" "Language-Team: Croatian <hr@li.org>\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" @@ -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 <kelemengabor@linuxforum.hu>\n" "Language-Team: Hungarian <gnome@gnome.hu>\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" @@ -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 <imtheface@gmail.com>\n" "Language-Team: Indonesian <id@li.org>\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 "" @@ -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 <elle.uca@libero.it>\n" "Language-Team: Italian <it@li.org>\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" @@ -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 <ikuya@fruitsbasket.info>\n" "Language-Team: Ubuntu Japanese Team <ubuntu-ja-users@freeml.com>\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 "カスタムサーバ" @@ -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 <malxaz@gmail.com>\n" "Language-Team: Georgian <geognome@googlegroups.com>\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 "საკუთარი სერვერები" @@ -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 <eungkyu@gmail.com>\n" "Language-Team: Korean <ko@li.org>\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 "사용자 정의 서버" @@ -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 <rizoxerzi@gmail.com>\n" "Language-Team: Kurdish <ku@li.org>\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" @@ -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 <mantas@akl.lt>\n" "Language-Team: Lithuanian <komp_lt@konferencijos.lt>\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 "" @@ -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 <orvils@gmail.com>\n" "Language-Team: Latvian <locale@laka.lv>\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 "" @@ -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: Арангел Ангов <ufo@linux.net.mk>\n" "Language-Team: Macedonian <ossm-members@hedona.on.net.mk>\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 "" @@ -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 <EMAIL@ADDRESS>\n" "Language-Team: Marathi <mr@li.org>\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 "" @@ -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 <azlinux@gmail.com>\n" "Language-Team: Malay <ms@li.org>\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 "" @@ -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 <hanspb@bluezone.no>\n" "Language-Team: Norwegian Bokmal <i18n-nb@lister.ping.uio.no>\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" @@ -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 <zaydeep@hotmail.com>\n" "Language-Team: Nepali <info@mpp.org.np>\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 "" @@ -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 <a.t.meinen@chello.nl>\n" "Language-Team: Nederlands <vertaling@vrijschrift.org>\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" @@ -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 <root@willyandre.net>\n" "Language-Team: Norwegian Nynorsk <nn@li.org>\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 "" @@ -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 <terance@lyse.net>\n" "Language-Team: Norwegian Bokmal <i18n-nb@lister.ping.uio.no>\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 "" @@ -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) <yannick.marchegay@lokanova." "com>\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" @@ -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 <amanpreetalam@yahoo.com>\n" "Language-Team: Punjabi <fedora-transa-pa@redhat.com>\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 "" @@ -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 <doza@sztorm.net>\n" "Language-Team: Polish <translators@gnomepl.org>\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" @@ -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 <EMAIL@ADDRESS>\n" "Language-Team: Pushto <ps@li.org>\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 "" @@ -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 <tiagosilva29@gmail.com>\n" "Language-Team: Ubuntu Portuguese Team <ubuntu-pt.org>\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 <cypherbios@ubuntu.com>\n" "Language-Team: Ubuntu-BR <tradutores@listas.ubuntubrasil.org>\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 <EMAIL@ADDRESS>\n" "Language-Team: LANGUAGE <LL@li.org>\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 "" @@ -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 <rosetta@launchpad.net>\n" "Language-Team: Quechua <qu@li.org>\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 "" @@ -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 <spotirca@gmail.com>\n" "Language-Team: Romanian <gnomero-list@lists.sourceforge.net>\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" @@ -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 <igor4u@gmail.com>\n" "Language-Team: Russian <ru@li.org>\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 "Свои сервера" @@ -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 <murf@e-tools.com>\n" "Language-Team: Kinyarwanda <translation-team-rw@lists.sourceforge.net>\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 "" @@ -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 <ubuntu@chabada.sk>\n" "Language-Team: Slovak <sk-i18n@linux.sk>\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" @@ -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 <tadej.888@gmail.com>\n" "Language-Team: Slovenian <sl@li.org>\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 "" @@ -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 <a.tirolli@hotmail.com>\n" "Language-Team: Albanian <sq@li.org>\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" @@ -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 <vladosam@hotmail.com>\n" "Language-Team: Serbian <sr@li.org>\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 "" @@ -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 <po@danielnylander.se>\n" "Language-Team: Swedish <tp-sv@listor.tp-sv.se>\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" @@ -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 <vijay.raghavan08@gmail.com>\n" "Language-Team: Tamil <ta@li.org>\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 "" @@ -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 <roysheng@gmail.com>\n" "Language-Team: Thai <th@li.org>\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 "เซิร์ฟเวอร์ที่กำหนดเอาเอง" @@ -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 <ariel.betan@up.edu.ph>\n" "Language-Team: Tagalog <tl@li.org>\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 "" @@ -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 <atillakaraman@gmail.com>\n" "Language-Team: Turkish <tr@li.org>\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" @@ -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 <abram@email.ua>\n" "Language-Team: Ukrainian <uk@li.org>\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 "" @@ -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 محمد حمید <hameeduddin517@yahoo.com>\n" "Language-Team: Urdu <urd@li.org>\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 "" @@ -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 محمد حمید <hameeduddin517@yahoo.com>\n" "Language-Team: Urdu <urd@li.org>\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 "" @@ -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 <tttrung@hotmail.com>\n" "Language-Team: Vietnamese <gnomevi-list@lists.sourceforge.net>\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 "" @@ -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 <translations@canonical.com>\n" "Language-Team: Xhosa <xh-translate@ubuntu.com>\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 <catinsnow@gmail.com>\n" "Language-Team: zh_CN <i18n-translation@lists.linux.net.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 <abelcheung@gmail.com>\n" "Language-Team: Chinese (Hong Kong) <community@linuxhall.org>\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 <soc.scho@gmail.com>\n" "Language-Team: Chinese (Taiwan) <zh-l10n@linux.org.tw>\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}, |
